-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
52 lines (52 loc) · 1.59 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
52
{
"name": "jonathantorres/construct",
"description": "PHP project/micro-package generator.",
"keywords": ["php", "project", "package", "structure", "cli"],
"license": "MIT",
"authors": [
{
"name": "Jonathan Torres",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"league/container": "^2.4",
"symfony/console": "^2.6 || ^3.0",
"symfony/yaml": "^2.6 || ^3.0",
"composer/composer": "^1.10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.12.81",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Construct\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Construct\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"bin": ["bin/construct"],
"scripts": {
"construct:test": "phpunit",
"construct:cs-fix": "php-cs-fixer fix . -vv || true",
"construct:cs-lint": "php-cs-fixer fix --diff --stop-on-violation --verbose --dry-run",
"construct:static-analysis": "vendor/bin/phpstan analyse -l max -c phpstan.neon src tests"
},
"scripts-descriptions": {
"construct:test": "Runs all tests.",
"construct:cs-fix": "Fixes existing coding standard violations.",
"construct:cs-lint": "Checks for coding standard violations.",
"construct:static-analysis": "Runs a static code analysis."
},
"minimum-stability": "stable"
}