-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.29 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "peraleks/error-handler",
"type": "library",
"description": "Easy debugging and error handling for PHP",
"keywords": ["peraleks", "error-handler", "error", "handler", "debug", "php", "php7"
],
"homepage": "https://github.com/peraleks/error-handler",
"license": "MIT",
"authors": [
{
"name": "Aleksey Perevoshchikov",
"email": "aleksey.perevoshchikov.n@gmail.com",
"homepage": "https://github.com/peraleks",
"role": "Developer"
}
],
"require": {
"php" : "^7.0"
},
"require-dev": {
"phpunit/phpunit" : "^6.0",
"squizlabs/php_codesniffer": "^2.0",
"phpdocumentor/phpdocumentor": "2.*"
},
"autoload": {
"psr-4": {
"Peraleks\\ErrorHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Peraleks\\ErrorHandler\\": "tests"
}
},
"scripts": {
"test": "phpunit --coverage-text --coverage-clover=coverage.clover",
"check-style": "phpcs -p --colors --encoding=utf-8 --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpdoc": "phpdoc -d src -t phpdoc"
},
"minimum-stability": "dev",
"prefer-stable": true
}