-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathcomposer.json
44 lines (44 loc) · 2.04 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": "ronanguilloux/isocodes",
"description": "PHP library - Validators for standards from ISO, International Finance, Public Administrations, GS1, Book and Music Industries, Phone numbers & Zipcodes for many countries",
"keywords": ["validator", "standard", "ISO", "Finance", "Public Administrations", "GS1", "Book", "IBAN", "SWIFT", "BIC", "BBAN", "RIB", "Credit Card number", "INSEE", "VAT", "NSS", "Siren", "Siret", "Ssn", "NINO", "ZipCode", "ISBN", "ISMN", "ISWC", "SSCC", "GS1", "GS-1", "UDI", "EAN13", "GTIN", "GLN", "GRAI", "GDTI", "GSRN", "DUN", "ITF", "UPC-A", "UCC-13", "DUN-14", "ITF" ,"CIF", "NIF", "SEDOL", "ISIN", "phone number", "zipcode", "HETU"],
"type": "library",
"homepage": "https://github.com/ronanguilloux/IsoCodes",
"authors": [
{
"name": "Ronan Guilloux",
"email": "[email protected]",
"homepage": "http://github.com/ronanguilloux",
"role": "Developer"
}],
"support": {
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.3|^8.0",
"giggsey/libphonenumber-for-php": "^7.2|~8.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "~3",
"sebastian/phpcpd": "~6",
"phploc/phploc" : "~7",
"phpmd/phpmd" : "@stable",
"pdepend/pdepend" : "~2",
"friendsofphp/php-cs-fixer": "@stable",
"php-coveralls/php-coveralls": "^2",
"symfony/phpunit-bridge": "^5"
},
"suggest": {
"sllh/iso-codes-validator": "For Symfony or Silex integration with ease",
"gourmet/validation": "For CakePHP 3 integration",
"pixelpeter/laravel5-isocodes-validation": "For Laravel 5 integration"
},
"autoload": {
"psr-0": {"IsoCodes": "src/"}
},
"config": {
"bin-dir": "bin"
}
}