-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.73 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
{
"name": "solutiondrive/sdswpluginmanager",
"description": "Alternative to Shopware's plugin manager that works basically independent from Shopware core.",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=7.1",
"ext-json": "*",
"aws/aws-sdk-php": "^3.67",
"guzzlehttp/guzzle": "^6.3",
"symfony/config": "~3.4",
"symfony/console": "~3.4",
"symfony/dependency-injection": "~3.4",
"symfony/yaml": "~3.4"
},
"autoload": {
"psr-4": {
"sd\\SwPluginManager\\": "./src"
}
},
"bin": [
"bin/sd-plugin-manager"
],
"require-dev": {
"mikey179/vfsstream": "^1.6",
"solutiondrive/standalone-build-tools": "^2.0",
"symfony/var-dumper": "^2.1"
},
"config": {
"sort-packages": true,
"standalone-build-tools": {
"phpspec-standalone.php7.1.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.1.phar",
"phpspec-standalone.php7.2.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.2.phar",
"phpspec-standalone.php7.3.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.3.phar",
"phpspec-standalone.php7.4.phar": "http://build-tools.cloud.solutiondrive.de/phar/phpspec-standalone.php7.4.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.1.yml"
},
"allow-plugins": {
"solutiondrive/standalone-build-tools": true
}
}
}