-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.11 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
37
38
39
40
41
42
43
44
45
46
{
"name": "xmarcos/php-cs-fixer-config",
"description": "PHP Coding Standards Fixer Config",
"type": "library",
"license": "MIT",
"keywords": [
"cs-fixer",
"php-cs-fixer-config",
"php-cs-fixer",
"xmarcos"
],
"authors": [
{
"name": "Marcos Sader",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^5.6 || >=7.0 <7.3",
"friendsofphp/php-cs-fixer": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.4",
"vimeo/psalm": "^0.3.59"
},
"autoload": {
"psr-4": {
"xmarcos\\PhpCsFixer\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"xmarcos\\PhpCsFixer\\Config\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --config=.php_cs.dist -v --diff --dry-run --ansi",
"cs-fix": "php-cs-fixer fix --config=.php_cs.dist -v --diff --ansi",
"sa": "psalm"
}
}