-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 797 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 797 Bytes
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
{
"name": "drew/debug-statements-fixers",
"description": "Removes debug statements, which shouldn't be in production ever",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrew Kovalyov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4" : {
"Drew\\DebugStatementsFixers\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCsFixer\\Tests\\": "vendor/friendsofphp/php-cs-fixer/tests/"
}
},
"require": {
"friendsofphp/php-cs-fixer": "^2.0"
},
"require-dev": {
"gecko-packages/gecko-php-unit": "^2.0 || ^3.0",
"phpunit/phpunit": "^4.5|^5|^6",
"satooshi/php-coveralls": "^1.0 || ^2.0"
}
}