-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
38 lines (38 loc) · 1.08 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
38
{
"name": "what3words/w3w-php-wrapper",
"description": "A PHP library to use the what3words RESTful API",
"type": "library",
"keywords": ["what3words", "geocoding", "3 word address"],
"homepage": "https://github.com/what3words/w3w-php-wrapper",
"license": "MIT",
"authors": [
{
"name": "what3words",
"email": "support@what3words.com",
"homepage": "http://developer.what3words.com"
}
],
"support": {
"email": "support@what3words.com",
"issues": "https://github.com/what3words/w3w-php-wrapper/issues",
"source": "https://github.com/what3words/w3w-php-wrapper",
"docs": "https://developer.what3words.com"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.3"
},
"archive": {
"exclude": ["vendor", ".DS_Store"]
},
"autoload": {
"psr-4": {
"What3words\\Geocoder\\": "src"
}
},
"extra": {
"thanks": "Thanks from all of us at index.home.raft for using what3words"
}
}