forked from giggsey/libphonenumber-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "giggsey/libphonenumber-for-php",
"type": "library",
"description": "PHP Port of Google's libphonenumber",
"keywords": ["phonenumber", "libphonenumber", "mobile", "validation", "geocoding", "geolocation"],
"homepage": "https://github.com/giggsey/libphonenumber-for-php",
"license": "Apache-2.0",
"support": {
"irc": "irc://irc.appliedirc.com/lobby",
"source": "https://github.com/giggsey/libphonenumber-for-php",
"issues": "https://github.com/giggsey/libphonenumber-for-php/issues"
},
"authors": [
{
"name": "Joshua Gigg",
"email": "[email protected]",
"homepage": "http://giggsey.com/"
}
],
"autoload": {
"psr-0": {
"libphonenumber": "src/"
}
},
"autoload-dev": {
"psr-0": {
"libphonenumber\\buildtools": "build/",
"libphonenumber\\Tests": "Tests/"
}
},
"archive": {
"exclude": ["Tests/", "build/", "/.travis.yml", "/build.xml", "phpunit.xml.dist", "libphonenumber-for-php.spec"]
},
"require": {
"ext-mbstring": "*"
},
"require-dev": {
"phing/phing": "~2.7",
"phpunit/phpunit": "~4.0",
"symfony/console": "~2.4",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"ext-intl": "To use the geocoder and carrier mapping"
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
}
}