-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
48 lines (48 loc) · 1.31 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": "healthengine/laravel-easy-aws",
"description": "Cache dynamic AWS credentials",
"keywords": ["laravel", "aws", "cache", "credentials"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jarryd Tilbrook",
"email": "[email protected]"
}
],
"require": {
"aws/aws-sdk-php": "^3.155",
"aws/aws-sdk-php-laravel": "^3.0",
"illuminate/cache": "^10.0 || ^11.0",
"illuminate/contracts": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.1",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"EasyAws\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EasyAws\\Tests\\": "tests/"
}
},
"scripts": {
"coverage": "@php vendor/bin/phpunit --colors=always --coverage-text",
"fix": "@php vendor/bin/php-cs-fixer fix",
"lint": "@php vendor/bin/php-cs-fixer fix --diff --dry-run",
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"EasyAws\\ServiceProvider"
]
}
}
}