forked from krizzdev/shopware-api-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.11 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
{
"name": "genyaa/shopware-api-sdk",
"description": "Laravel package for the shopware API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Auke de Jong",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"GeNyaa\\ShopwareApiSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GeNyaa\\ShopwareApiSdk\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"GeNyaa\\ShopwareApiSdk\\ShopwareApiSdkServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"nesbot/carbon": "^2.45",
"illuminate/support": "^9.0",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5",
"barryvdh/laravel-ide-helper": "^2.9"
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
}
}