forked from shivammathur/countrycity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1011 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
{
"name": "shivammathur/countrycity",
"description": "API to get all countries and all cities in a country.",
"keywords": ["cities","countries","php","rest","router", "psr7","geolocation"],
"homepage": "http://github.com/shivammathur",
"license": "MIT",
"version": "1.0.1",
"authors": [
{
"name": "Shivam Mathur",
"email": "[email protected]",
"homepage": "https://shivammathur.com"
}
],
"require": {
"php": ">=5.6.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"mongodb/mongodb": "^1.0",
"satooshi/php-coveralls": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"CountryCity\\API\\": "api/v1/",
"CountryCity\\Templates\\": "templates/",
"CountryCity\\Tests\\API\\": "tests/api/v1"
}
}
}