-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 770 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 770 Bytes
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
{
"name": "mv/postal-address",
"type": "library",
"description": "Manage address in PHP, particulary AFNOR XPZ 10-011 for french postal address",
"keywords": ["postal address", "address", "afnor", "adresse", "adresse postale"],
"homepage": "https://github.com/phpmike/PostalAddress",
"license": "GPL",
"authors": [
{
"name": "Michaël VEROUX",
"homepage": "https://github.com/phpmike"
}
],
"archive": {
"exclude": ["Tests/", "build/", "/.travis.yml", "/build.xml", "phpunit.xml.dist"]
},
"autoload": {
"psr-4": { "Mv\\PostalAddress\\": "lib/" }
},
"require": {
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}