-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.51 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
{
"name": "solutiondrive/sddeploymenthelpershopware",
"description": "This plugin contains some helping functions/classes etc. to make a deployment a bit easier",
"type": "shopware-plugin",
"license": "proprietary",
"authors": [
{
"name": "solutionDrive GmbH",
"email": "[email protected]"
}
],
"extra": {
"installer-name": "sdDeploymentHelperShopware"
},
"autoload": {
"psr-4": {
"sdDeploymentHelperShopware\\": "."
}
},
"require": {
"php": "^7.0||^8.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"shopware/shopware": "^5.6",
"solutiondrive/sd-test-environment-shopware": "~0.2",
"solutiondrive/standalone-build-tools": "^2.0"
},
"config": {
"sort-packages": true,
"standalone-build-tools": {
"phpspec-standalone.php7.4.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.4.phar",
"phpspec-standalone.php7.3.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.3.phar",
"phpspec-standalone.php7.2.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.2.phar",
"ecs-standalone.phar": "http://build-tools.cloud.solutiondrive.de/phar/coding-standard-standalone.ecs.php7.2.phar",
"easy-coding-standard.yml": "http://build-tools.cloud.solutiondrive.de/phar/easy-coding-standard-php7.2.yml"
}
}
}