forked from rapidwebltd/php-postcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
23 lines (23 loc) · 836 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
{
"name": "rapidwebltd/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/rapidwebltd/php-postcodes",
"license": "LGPL-3.0-only",
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "~6.0",
"fzaninotto/faker": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"fzaninotto/faker": "^1.6",
"satooshi/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"RapidWeb\\Postcodes\\": "src/"
}
}
}