-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.77 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "softspring/command-controller",
"description": "This library allows running commands from Symfony controllers.",
"license": "AGPL-3.0-or-later",
"type": "library",
"require": {
"php": ">=8.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.50",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Softspring\\Component\\CommandController\\": "src"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-6.0": "6.0.x-dev"
}
},
"scripts": {
"fix": [
"vendor/bin/rector process src tests",
"vendor/bin/php-cs-fixer fix",
"composer normalize"
],
"run-tests": [
"composer validate --strict --no-check-lock --ansi",
"vendor/bin/rector process src tests --dry-run",
"vendor/bin/phpstan analyse src --level 5",
"vendor/bin/php-cs-fixer fix --dry-run --diff",
"vendor/bin/yaml-lint .github/ -vvv --parse-tags"
],
"test": [
"composer update --no-scripts --ansi",
"@run-tests"
],
"test-bc": [
"composer update --no-scripts --ansi --prefer-lowest --prefer-stable",
"@run-tests"
]
}
}