-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.46 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": "stolt/composer-multitest",
"description": "Composer script to run a Composer test or spec script against all versions managed by PHPBrew or phpenv.",
"keywords": ["composer script", "phpbrew", "phpenv", "multitest", "local ci"],
"homepage": "https://github.com/raphaelstolt/composer-phpbrew-multitest",
"license": "MIT",
"authors": [
{
"name": "Raphael Stolt",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"symfony/process": "^3.1",
"symfony/yaml": "^3.1"
},
"require-dev": {
"composer/composer": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^4.8 || ^5.0",
"stolt/lean-package-validator": "^1.6"
},
"autoload": {
"psr-4": {
"Stolt\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stolt\\Composer\\Tests\\": "tests/"
}
},
"scripts": {
"cm:test": "phpunit",
"cm:test-with-coverage": "phpunit --coverage-html coverage-reports",
"cm:cs-fix": "php-cs-fixer fix . -vv || true",
"cm:cs-lint": "php-cs-fixer fix --diff --stop-on-violation --verbose --dry-run",
"cm:gitattributes-validation": "lean-package-validator validate --enforce-strict-order"
}
}