generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.36 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
{
"name": "renoki-co/laravel-ec2-metadata",
"description": "Retrieve the EC2 Metadata using Laravel's eloquent syntax.",
"keywords": [
"laravel",
"php",
"ec2",
"aws",
"metadata",
"instance",
"imds",
"amazon",
"amazonaws"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-ec2-metadata",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/http": "^9.0",
"illuminate/support": "^9.0"
},
"autoload": {
"psr-4": {
"RenokiCo\\Ec2Metadata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\Ec2Metadata\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.6",
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"RenokiCo\\Ec2Metadata\\Ec2MetadataServiceProvider"
]
}
}
}