-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 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
37
38
39
40
41
{
"name": "smart-gamma/php-composter-quality-tool",
"description": "PHP Composter Smart Gamma quality tool (pre-commit)",
"license": "MIT",
"authors": [
{
"name": "Evgeniy Kuzmin",
"email": "evgeniy.k@smart-gamma.com"
}
],
"type": "php-composter-action",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type" : "vcs",
"url" : "git@github.com:Evgenas/php-composter.git"
}
],
"require": {
"php-composter/php-composter": "dev-master",
"symfony/console": "^2.5 || ^3.0 || ^4.0",
"symfony/process": "^2.5 || ^3.0 || ^4.0",
"squizlabs/php_codesniffer": "@stable",
"friendsofphp/php-cs-fixer": "^2.11",
"symfony/config": "^2.5 || ^3.0 || ^4.0",
"symfony/yaml": "^2.5 || ^3.0 || ^4.0",
"phpmd/phpmd": "@stable",
"mi-schi/phpmd-extension": "^4.2"
},
"autoload": {
"psr-4": {
"PHPComposter\\GammaQualityTool\\": "src/"
}
},
"extra": {
"php-composter-hooks": {
"10.pre-commit": "PHPComposter\\GammaQualityTool\\Sniffer::preCommit"
}
}
}