-
Notifications
You must be signed in to change notification settings - Fork 244
/
composer.json
44 lines (44 loc) · 1.39 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
{
"name": "aws/aws-sdk-php-laravel",
"homepage": "https://aws.amazon.com/sdk-for-php/",
"description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
"keywords": ["laravel", "laravel 6", "laravel 7", "laravel 8", "laravel 9", "laravel 10", "laravel 11", "aws", "amazon", "sdk", "s3", "ec2", "dynamodb"],
"type":"library",
"license":"Apache-2.0",
"authors":[
{
"name":"Amazon Web Services",
"homepage":"http://aws.amazon.com"
}
],
"require": {
"php": ">=7.2.5",
"aws/aws-sdk-php": "^3.279.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"laravel/framework": "To test the Laravel bindings",
"laravel/lumen-framework": "To test the Lumen bindings"
},
"autoload": {
"psr-4": { "Aws\\Laravel\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Aws\\Laravel\\Test\\": "tests/" }
},
"extra": {
"laravel": {
"providers": [
"Aws\\Laravel\\AwsServiceProvider"
],
"aliases": {
"AWS": "Aws\\Laravel\\AwsFacade"
}
}
}
}