-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
66 lines (66 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shopware/deployment-helper",
"type": "library",
"description": "Shopware deployment tools",
"keywords": ["shopware", "deployment"],
"license": "MIT",
"bin": [
"bin/shopware-deployment-helper"
],
"require": {
"php": ">=8.2",
"ext-dom": "*",
"ext-pdo": "*",
"digilist/dependency-graph": ">=0.4.1",
"doctrine/dbal": "^3.0 || ^4.0",
"symfony/config": "^7.0 || ^6.0",
"symfony/console": "^7.0 || ^6.0",
"symfony/dependency-injection": "^7.0 || ^6.0",
"symfony/dotenv": "^7.0 || ^6.0",
"symfony/event-dispatcher": "^7.0 || ^6.0",
"symfony/filesystem": "^7.0 || ^6.0",
"symfony/finder": "^7.0 || ^6.0",
"symfony/process": "^7.0 || ^6.0",
"symfony/yaml": "^7.0 || ^6.0",
"symfony/http-client": "^7.0 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "v3.64.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.0.1",
"phpstan/phpstan-deprecation-rules": "2.0.0",
"phpstan/phpstan-phpunit": "2.0.0",
"phpstan/phpstan-strict-rules": "2.0.0",
"phpstan/phpstan-symfony": "2.0.0",
"phpunit/phpunit": "~11.3",
"symfony/var-dumper": "^7.0 || ^6.0",
"zalas/phpunit-globals": "^3.3"
},
"autoload": {
"psr-4": {
"Shopware\\Deployment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shopware\\Deployment\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-dry": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"phpstan": [
"DEV_MODE=true PROJECT_ROOT=. bin/shopware-deployment-helper -q",
"phpstan"
],
"test": "phpunit",
"test-coverage-html": "phpunit --coverage-html=build/coverage",
"test-coverage-cobertura": "phpunit --coverage-cobertura coverage.xml"
}
}