forked from shopwareLabs/sw-cli-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.39 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
{
"name": "shopwarelabs/sw-cli-tools",
"description": "A CLI toolset for shopware",
"type": "project",
"license": "MIT",
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"symfony/console": "~2.8",
"symfony/config": "~2.8",
"symfony/yaml": "~2.8",
"symfony/process": "~2.8",
"symfony/dependency-injection": "~2.8",
"dnoegel/php-xdg-base-dir": "~0.1",
"shopwarelabs/plugin-info": "dev-master",
"ramsey/array_column": "~1.1",
"fzaninotto/faker": "^1.5",
"guzzlehttp/guzzle": "^5.3",
"piwik/ini": "^1.0",
"padraic/phar-updater": "^1.0"
},
"require-dev": {
"ext-phar": "*",
"phpunit/phpunit": "@stable",
"fabpot/php-cs-fixer": "^1.10"
},
"scripts": {
"post-install-cmd": "ln -sf ../../hooks/pre-commit .git/hooks/pre-commit",
"post-update-cmd": "ln -sf ../../hooks/pre-commit .git/hooks/pre-commit"
},
"autoload": {
"psr-4": {
"ShopwareCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShopwareCli\\": "src/",
"Shopware\\": "src/Extensions/Shopware"
}
},
"bin": ["bin/sw"],
"config": {
"platform": {
"php": "5.4"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}