-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
executable file
·47 lines (47 loc) · 1.28 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
{
"name": "vin-sw/shopware-sdk",
"description": "A PHP SDK for Shopware 6 Platform",
"type": "library",
"license": "MIT",
"version": "2.1.0",
"authors": [
{
"name": "vin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0 || ^8.1 || ^8.2 || ^8.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "3.*",
"symplify/easy-coding-standard": "9.3.20",
"symplify/config-transformer": "^9.3",
"phpstan/phpstan": "^0.12.89",
"symfony/var-dumper": "^5.3"
},
"autoload": {
"psr-4": {
"Vin\\ShopwareSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vin\\ShopwareSdkTest\\": "tests/"
}
},
"scripts": {
"ecs": "vendor/bin/ecs check src",
"test": "vendor/bin/phpunit",
"check-style": "phpcs src",
"analyse": "vendor/bin/phpstan analyse src",
"fix-style": "phpcbf src",
"lint": "vendor/bin/ecs check src && phpcs src",
"lint-fix": "vendor/bin/ecs check src --fix && phpcbf src"
}
}