forked from shopware5/sw-cli-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1007 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 1007 Bytes
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
{
"name": "shopwarelabs/sw-cli-tools",
"description": "A CLI toolset for shopware",
"type": "project",
"license": "MIT",
"require": {
"php": ">=5.3.2",
"ext-curl": "*",
"symfony/console": "~2.5",
"symfony/config": "~2.5",
"symfony/yaml": "~2.5",
"symfony/process": "~2.5",
"symfony/dependency-injection": "~2.5",
"dnoegel/php-xdg-base-dir": "~0.1",
"shopware-ag/plugin-info": "dev-master",
"kherge/amend": "3.*"
},
"require-dev": {
"ext-phar": "*",
"phpunit/phpunit": "@stable",
"squizlabs/php_codesniffer": "~2"
},
"autoload": {
"psr-4": {
"ShopwareCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShopwareCli\\": "src/",
"Shopware\\": "src/Extensions/Shopware"
}
},
"bin": ["bin/sw"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}