-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.92 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.92 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
60
61
62
63
{
"name": "softspring/cms-sylius-bundle",
"description": "Softspring CMS bundle Sylius integration",
"license": "AGPL-3.0-or-later",
"type": "bundle",
"require": {
"php": ">=8.4",
"softspring/cms-bundle": "^6.0@dev",
"sylius/theme-bundle": "^2.1.1",
"sylius/ui-bundle": "^1.11 || ^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.50",
"friendsofphp/php-cs-fixer": "^3.94",
"guzzlehttp/guzzle": "^7.8.2",
"guzzlehttp/promises": "^2.0",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Softspring\\CmsSyliusBundle\\": "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",
"# XDEBUG_MODE=coverage vendor/bin/phpunit",
"vendor/bin/rector process src tests --dry-run",
"vendor/bin/phpstan analyse src tests --level 5",
"vendor/bin/php-cs-fixer fix --dry-run --diff",
"vendor/bin/yaml-lint .github/ -vvv --parse-tags",
"vendor/bin/yaml-lint config/ -vvv --parse-tags",
"vendor/bin/yaml-lint translations/ -vvv --parse-tags"
],
"test": [
"composer update --no-scripts --ansi",
"@run-tests"
],
"test-bc": [
"composer update --no-scripts --ansi --prefer-lowest --prefer-stable",
"@run-tests"
]
}
}