-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 923 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
{
"name": "happyoniens/hulk",
"description": "PHP MVC Framework",
"license": "MIT",
"authors": [
{
"name": "Dante Stoppini",
"email": "[email protected]"
},
{
"name": "Gabriel Lovric",
"email": "[email protected]"
}
],
"require": {
"filp/whoops": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "5.1.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"Hulk\\": "src/",
"Hulk\\Core\\": "src/core/"
},
"files": ["src/autoloader.php"]
},
"scripts": {
"check": [
"vendor\\bin\\phpcbf.bat src/ --standard=ruleset.xml --no-patch",
"vendor\\bin\\phpcs.bat src/ --standard=ruleset.xml -n",
"vendor\\bin\\phpunit.bat tests/"
]
}
}