-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
51 lines (51 loc) · 1.08 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
47
48
49
50
51
{
"name" : "gossi/php-code-formatter",
"type" : "library",
"description" : "A code formatter for php code",
"license" : "MIT",
"authors" : [{
"name" : "Thomas Gossmann",
"homepage" : "http://gos.si"
}
],
"keywords" : [
"php",
"formatter",
"beautifier"
],
"support" : {
"issues" : "https://github.com/gossi/php-code-formatter/issues"
},
"autoload" : {
"psr-4" : {
"gossi\\formatter\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"gossi\\formatter\\tests\\" : "tests"
}
},
"require" : {
"php" : ">=7.2",
"gossi/php-code-profiles" : "dev-master",
"symfony/config" : "^5.0",
"symfony/yaml" : "^5.0",
"symfony/event-dispatcher" : "~2|^3|^4",
"symfony/console" : "~2|^3|^4",
"phootwork/collection" : "^1.5",
"phootwork/tokenizer" : "~0"
},
"require-dev" : {
"phpunit/phpunit" : "^5.7",
"sami/sami" : "^4|^3",
"phootwork/php-cs-fixer-config" : "~0.1"
},
"scripts" : {
"check" : "@cs",
"cs" : "php-cs-fixer fix -v --diff --dry-run",
"cs-fix" : "php-cs-fixer fix -v --diff",
"test" : "phpunit",
"api" : "sami.php update sami.php"
}
}