-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (36 loc) · 929 Bytes
/
composer.json
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
43
{
"name": "serps/error-dispatcher",
"description": "Takes input named error and dispatches them following the given configuration",
"type": "library",
"keywords": [],
"homepage": "https://github.com/gsouf/php-package-skeleton",
"license": "Fair",
"authors": [
{
"name": "Soufiane GHZAL",
"homepage": "https://github.com/gsouf"
}
],
"autoload":{
"psr-4" : {
"Serps\\ErrorDispatcher\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"Serps\\ErrorDispatcher\\Test\\": "test/suites"
}
},
"require": {
"php": ">=5.5.9"
},
"require-dev":{
"phpunit/phpunit": "4.1.2",
"squizlabs/php_codesniffer": "~2.5"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.dist.xml && echo \"\\n>> Checking code standards\\n\" && test/bin/phpcs.bash emacs",
"csfix": "test/bin/phpcbf.bash",
"cscheck": "test/bin/phpcs.bash emacs"
}
}