-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
47 lines (47 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
{
"name": "jasara/php-amzn-selling-partner-api",
"description": "A fluent interface for Amazon's Selling Partner API in PHP",
"type": "library",
"license": "CC-BY-NC-SA-4.0",
"authors": [
{
"name": "Jasara Technology Inc.",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jasara\\AmznSPA\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Jasara\\AmznSPA\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.4",
"aws/aws-sdk-php": "^3.199",
"illuminate/http": "^10.0 || ^11.0",
"vlucas/phpdotenv": "^5.3",
"brick/money": "^0.5 || ^0.6 || ^0.7 || ^0.8 || ^0.9",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/validation": "^10.0 || ^11.0",
"php-units-of-measure/php-units-of-measure": "^2.1",
"psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"spatie/ray": "^1.30",
"laravel/pint": "^1.10",
"rector/rector": "dev-main as 1.2.10",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0"
}
}