forked from sirprize/postal-code-validator
-
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) · 778 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 778 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": "sirprize/postal-code-validator",
"description": "Validate Formatting Of World-Wide Postal Codes",
"keywords": ["postal code", "zip code", "validator"],
"homepage": "https://github.com/sirprize/postal-code-validator",
"license": "MIT",
"authors": [
{ "name": "Christian Hoegl", "email": "chrigu@sirprize.me" }
],
"autoload": {
"psr-4": { "Sirprize\\PostalCodeValidator\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Sirprize\\PostalCodeValidator\\Tests\\": "tests/" }
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
}
}