-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
37 lines (37 loc) · 1.2 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
{
"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.2.0",
"geoip2/geoip2": "~2.0|~3.0",
"symfony/http-kernel": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/expression-language": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/config": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/console": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/filesystem": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0|~8.0|~9.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3"
},
"suggest": {
"splitbrain/php-archive": "Greatly reduces memory usage for the geoip2:update command"
}
}