-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 988 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 988 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "jord-jd/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/Jord-JD/php-postcodes",
"license": "LGPL-3.0-only",
"require": {
"php": "^7.1||^8.0",
"guzzlehttp/guzzle": "^6.0||^7.0",
"fakerphp/faker": "^1.9.1",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"JordJD\\Postcodes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JordJD\\Postcodes\\Tests\\": "tests/Unit/"
}
},
"replace": {
"divineomega/php-postcodes": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}