-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.98 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
{
"name": "turbine-kreuzberg/spryker-deploy-tasks",
"type": "library",
"license": "MIT",
"description": "Deploy tasks for Spryker to execute once after deployment based on the environment and store",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Bernd Alter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TurbineKreuzberg\\": "src/TurbineKreuzberg/"
}
},
"autoload-dev": {
"psr-4": {
"TurbineKreuzbergTest\\": "tests/TurbineKreuzbergTest/",
"Generated\\": "tests/src/Generated/",
"Orm\\": "tests/src/Orm/",
"Pyz\\": "tests/src/Pyz/"
},
"files": [
"test-autoload.php"
]
},
"require": {
"php": ">=8.1",
"spryker/console": "^4.10",
"spryker/kernel": "^3.54.0",
"spryker/propel-orm": "^1.14"
},
"require-dev": {
"codeception/module-asserts": "*",
"codeception/module-db": "*",
"codeception/module-phpbrowser": "*",
"fond-of-codeception/spryker": "*",
"phpstan/phpstan": "*",
"spryker/code-sniffer": "*",
"spryker/container": "*",
"spryker/propel": "*",
"spryker/testify": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"tests": "vendor/bin/codecept run -g DeployTasksGeneratorTest && vendor/bin/codecept run",
"tests-coverage": "vendor/bin/phpunit --colors=always -c tests/phpunit.xml --coverage-text --coverage-html=tests/_output",
"phpstan": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/phpcs -ps --standard=./config/codesniffer_ruleset.xml src/ tests/",
"cs-fix": "vendor/bin/phpcbf -p --standard=./config/codesniffer_ruleset.xml src/ tests/"
}
}