forked from commerceguys/addressing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.16 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
{
"name": "commerceguys/addressing",
"type": "library",
"description": "Addressing library powered by Google's address data.",
"keywords": ["postal", "address", "internationalization", "localization"],
"license": "MIT",
"require": {
"php": ">=5.5.0",
"doctrine/collections": "~1.0"
},
"require-dev": {
"symfony/validator": ">=3.2",
"symfony/intl": ">=3.2",
"phpunit/phpunit": "~4.0",
"mikey179/vfsStream": "1.*",
"squizlabs/php_codesniffer": "2.*"
},
"suggest": {
"commerceguys/intl": "to use it as the source of country data",
"symfony/intl": "to use it as the source of country data",
"symfony/validator": "to validate addresses"
},
"autoload": {
"psr-4": { "CommerceGuys\\Addressing\\": "src" }
},
"autoload-dev": {
"psr-4": {
"CommerceGuys\\Addressing\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Bojan Zivanovic"
},
{
"name": "Damien Tournoud"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}