-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 1012 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
29
30
31
32
33
34
35
36
37
38
{
"name": "boxuk/postcodes-io-bundle",
"type": "library",
"description": "A Symfony2 bundle for interaction with the postcodes.io service.",
"keywords": ["postcode", "postcodes.io", "guzzle"],
"license": "MIT",
"authors": [
{
"name": "Chris Collins",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": "2.*",
"guzzlehttp/guzzle-services": "~0.1"
},
"require-dev": {
"symfony/browser-kit": "~2.5",
"phpunit/phpunit": "~4.7",
"squizlabs/php_codesniffer": "~1.5",
"phpmd/phpmd": "~2.0",
"phploc/phploc": "~2.0",
"sebastian/phpcpd": "~2.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-0": { "BoxUk\\PostcodesIoBundle": "" }
},
"target-dir": "BoxUk/PostcodesIoBundle",
"config": {
"bin-dir": "bin"
}
}