-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.64 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
54
55
{
"name": "sas/shopware-laravel-sdk",
"description": "Shopware SDK for Laravel 8",
"type": "library",
"version": "2.0.0",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/psr-http-message-bridge": "*",
"vin-sw/shopware-sdk": "1.*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Sas\\ShopwareLaravelSdk\\": "src/"
}
},
"authors": [
{
"name": "Shape & Shift",
"email": "hello@shapeandshift.dev",
"homepage": "https://shapeandshift.dev"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Sas\\ShopwareLaravelSdk\\ServiceProvider\\ShopwareSdkServiceProvider",
"Sas\\ShopwareLaravelSdk\\ServiceProvider\\ContextServiceProvider"
],
"aliases": {
"AppHelper": "Sas\\ShopwareLaravelSdk\\Facade\\AppHelper"
}
}
},
"require-dev": {
"illuminate/auth": "*",
"illuminate/database": "*",
"illuminate/support": "*",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "3.*",
"symplify/easy-coding-standard": "9.3.20",
"symplify/config-transformer": "^9.3",
"phpstan/phpstan": "^0.12.89"
},
"scripts": {
"ecs": "vendor/bin/ecs check src",
"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"
}
}