-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 768 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 768 Bytes
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
{
"name": "moln/ip-query",
"type": "project",
"description": "IP查询接口",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "moln.xie",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"geoip2/geoip2": "^2.6",
"laminas/laminas-log": "^2.9",
"laminas/laminas-servicemanager": "^3.0",
"guzzlehttp/guzzle": "^7.4.5",
"psr/simple-cache": "^1.0",
"ext-redis": "*",
"ext-json": "*",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"swoole/ide-helper": "^4.4",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Moln\\IpQuery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MolnTest\\IpQuery\\": "test/"
}
}
}