forked from giggsey/libphonenumber-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.59 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
52
53
{
"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": "giggsey@gmail.com",
"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": {
"php": ">=5.3.2",
"ext-mbstring": "*",
"giggsey/locale": "^1.0"
},
"require-dev": {
"phing/phing": "^2.7",
"pear/versioncontrol_git": "dev-master",
"pear/pear-core-minimal": "^1.9",
"pear/pear_exception": "^1.0",
"phpunit/phpunit": "^4.8|^5.0",
"symfony/console": "^2.8|^3.0",
"satooshi/php-coveralls": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
}
}