-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.12 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Startwind\\Forrest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Startwind\\Forrest\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": "~7.4",
"symfony/console": "^5.4",
"symfony/yaml": "^5.4",
"guzzlehttp/guzzle": "^7.5",
"consolidation/self-update": "2.x-dev",
"cache/filesystem-adapter": "1.2.0",
"symfony/process": "^5.4",
"symfony/polyfill": "1.27.*",
"rector/rector": "0.17.*"
},
"require-dev": {
"phpstan/phpstan": "1.11.x-dev",
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "dev-master",
"squizlabs/php_codesniffer": "4.0.x-dev"
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"cs": "vendor/bin/php-cs-fixer fix --rules=@PSR12 .",
"phpstan": "vendor/bin/phpstan analyse",
"yamllint": "find . -path \\*/vendor -prune -false -o -name \\*.y\\*ml | xargs yamllint -d \"{extends: relaxed, rules: {line-length: {max: 120}}}\"",
"fix": [
"@cs",
"@phpstan",
"@yamllint"
]
}
}