forked from gpslab/geoip2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.01 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
{
"name": "gpslab/geoip2",
"license": "MIT",
"type": "symfony-bundle",
"homepage": "https://github.com/gpslab/geoip2",
"description": "A Symfony Bundle for the Maxmind GeoIP2 API",
"autoload": {
"psr-4": {
"GpsLab\\Bundle\\GeoIP2Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GpsLab\\Bundle\\GeoIP2Bundle\\Tests\\": "tests/"
}
},
"require": {
"ext-phar": "*",
"ext-zlib": "*",
"php": ">=7.1.0",
"geoip2/geoip2": "~2.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0|~5.0",
"symfony/expression-language": "~2.3|~3.0|~4.0|~5.0",
"symfony/config": "~2.3|~3.0|~4.0|~5.0",
"symfony/console": "~2.3|~3.0|~4.0|~5.0",
"symfony/filesystem": "~2.3|~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0|~8.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12"
}
}