forked from rapidwebltd/php-postcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 960 Bytes
/
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
{
"name": "divineomega/php-postcodes",
"type": "library",
"description": "This library handles various UK postcode related tasks such as address lookup by postcode, postcode validation, generation of valid UK postcodes and getting a postcode's outward and inward codes.",
"keywords": ["postcodes", "PHP", "PHP library", "PHP postcodes library", "PHP postcodes"],
"homepage": "https://github.com/divineomega/php-postcodes",
"license": "LGPL-3.0-only",
"require": {
"php": "^7.1||^8.0",
"guzzlehttp/guzzle": "^6.0||^7.0",
"ext-json": "*"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^9.6",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"DivineOmega\\Postcodes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\Postcodes\\Tests\\": "tests/Unit/"
}
}
}