forked from aferrandini/Maxmind-GeoIp
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
36 lines (36 loc) · 1002 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
{
"name": "maxmind/geoip",
"type": "symfony-bundle",
"description": "MaxMind GeoIP Symfony2 Bundle",
"keywords": ["maxmind geoip"],
"license": "BSD-2-Clause",
"require": {
"php": ">=5.3 || ^7.0",
"symfony/framework-bundle": "~2.3 || ~3.0 || ^4.0",
"symfony/dependency-injection": "~2.3 || ~3.0 || ^4.0",
"symfony/console": "~2.3 || ~3.0 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"authors": [
{
"name": "Ariel Ferrandini",
"email": "[email protected]",
"homepage": "http://ferrandini.com",
"role": "Developer"
},
{
"name": "Sébastien Roch",
"role": "Developer"
},
{
"name": "Gabriel BONDAZ",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Maxmind\\": "src/Maxmind/" }
}
}