-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
50 lines (50 loc) · 1.34 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
{
"name": "shopwarelabs/sw-cli-tools",
"description": "A CLI toolset for shopware",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"dnoegel/php-xdg-base-dir": "~0.1",
"fakerphp/faker": "^1.21.0",
"guzzlehttp/guzzle": "^7.7.0",
"laravel-zero/phar-updater": "^1.1",
"shopwarelabs/plugin-info": "0.1.0",
"symfony/config": "~5.4",
"symfony/console": "~5.4",
"symfony/dependency-injection": "~5.4",
"symfony/process": "~5.4",
"symfony/yaml": "~5.4"
},
"require-dev": {
"ext-phar": "*",
"friendsofphp/php-cs-fixer": "^3.17.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^v3.14.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "~5.4"
},
"replace": {
"symfony/polyfill-php73": "*"
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run -v",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit"
},
"autoload": {
"psr-4": {
"ShopwareCli\\": "src/",
"Shopware\\": "src/Extensions/Shopware"
}
},
"autoload-dev": {
"psr-4": {
"ShopwareCli\\Tests\\": "tests/"
}
},
"bin": ["bin/sw"],
"config": {
"sort-packages": true
}
}