-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 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
{
"name": "arubacao/aws-ip-range-middleware",
"description": "Laravel Middleware for Amazon Web Services (AWS) IP Address Range",
"keywords": [
"laravel",
"aws",
"ip-range",
"middleware"
],
"homepage": "https://github.com/arubacao/aws-ip-range-middleware",
"license": "MIT",
"authors": [
{
"name": "Christopher Lass",
"homepage": "https://github.com/arubacao"
}
],
"require": {
"php": "^7.0|^8.0",
"graham-campbell/guzzle-factory": "^3.0|^4.0|^5.0",
"illuminate/cache": "^5.0|^6.0|^7.0|^8.0",
"symfony/http-foundation": "~2.0|~3.0|~4.0|~5.0"
},
"require-dev": {
"orchestra/testbench": "~3.0|4.*|5.*|6.*",
"phpunit/phpunit": "~4.8.36 || >=5.7.21"
},
"autoload": {
"psr-4": {
"Arubacao\\AwsIpRange\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arubacao\\AwsIpRange\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}