-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 1.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "shopware/app-php-sdk",
"type": "library",
"description": "Shopware App SDK for PHP",
"keywords": [
"shopware",
"app-system"
],
"homepage": "https://www.shopware.com",
"license": "MIT",
"support": {
"issues": "https://issues.shopware.com",
"forum": "https://forum.shopware.com",
"wiki": "https://developer.shopware.com",
"docs": "https://developer.shopware.com",
"chat": "https://slack.shopware.com"
},
"require": {
"php": "^8.1",
"lcobucci/clock": "^3",
"lcobucci/jwt": "^4.0 || ^5.0",
"php-http/discovery": "^1.17",
"psr/clock-implementation": "*",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.0 || ^2.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"infection/infection": "^0.26.21",
"nyholm/psr7": "^1.7.0",
"nyholm/psr7-server": "^1.0",
"php-http/curl-client": "^2.2",
"phpstan/phpstan": "^1.10.14",
"phpunit/phpunit": "^10.5",
"async-aws/dynamo-db": "~3.2",
"symfony/polyfill-uuid": "^1.31",
"symfony/http-client": ">=6.4.16"
},
"suggest": {
"async-aws/dynamo-db": "For using the DynamoDBRepository"
},
"autoload": {
"psr-4": {
"Shopware\\App\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shopware\\App\\SDK\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"infection/extension-installer": true
}
},
"scripts": {
"test": "phpunit",
"check": [
"phpunit",
"php-cs-fixer fix",
"phpstan analyse"
]
}
}