-
Notifications
You must be signed in to change notification settings - Fork 135
/
composer.json
42 lines (42 loc) · 1.05 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
{
"name": "commerceguys/addressing",
"type": "library",
"description": "Addressing library powered by CLDR and Google's address data.",
"keywords": ["postal", "address", "internationalization", "localization"],
"license": "MIT",
"require": {
"php": ">=8.0",
"doctrine/collections": "^1.6 || ^2.0"
},
"require-dev": {
"symfony/validator": "^5.4 || ^6.3 || ^7.0",
"phpunit/phpunit": "^9.6",
"mikey179/vfsstream": "^1.6.11",
"squizlabs/php_codesniffer": "^3.7",
"ext-json": "*"
},
"suggest": {
"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": "2.x-dev"
}
}
}