forked from el-factory/ip-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "canebaycomputers/ip-api",
"description": "A simple Laravel package to get IP address information from ip-api.com",
"type": "library",
"keywords": ["ip-api.com", "ip api laravel", "ip api php", "ip api"],
"license": "MIT",
"require": {
"php": ">=7.2",
"illuminate/support": ">=7.0"
},
"require-dev": {
"pestphp/pest": "^2.9",
"orchestra/testbench": "^8.5"
},
"autoload": {
"psr-4": {
"ElFactory\\IpApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElFactory\\IpApi\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ElFactory\\IpApi\\IpApiServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}