-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·36 lines (36 loc) · 1.06 KB
/
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": "wucdbm/php-cs-fixers",
"type": "library",
"description": "Fixers for friendsofphp/php-cs-fixer",
"keywords": ["php cs", "php cs fixer", "blank line after class opening"],
"authors": [
{
"name": "Martin Kirilov",
"email": "wucdbm@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"friendsofphp/php-cs-fixer": "~2.8"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "^1.1 || ^2.0@dev",
"justinrainbow/json-schema": "^5.0",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls": "^2.0",
"php-cs-fixer/accessible-object": "^1.0",
"phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.5",
"symfony/phpunit-bridge": "^3.2.2 || ^4.1.12"
},
"autoload": {
"psr-4": { "Wucdbm\\PhpCsFixer\\": "src" }
},
"autoload-dev": {
"psr-4": { "Wucdbm\\PhpCsFixer\\Tests\\": "tests/" }
},
"config": {
"bin-dir": "bin"
},
"license": "MIT"
}