forked from JustinBusschau/php-govtalk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 835 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 835 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
{
"name": "ignited/php-govtalk",
"type": "library",
"description": "A library for applications which interface with the UK Government Gateway",
"homepage": "https://github.com/justinbusschau/php-govtalk",
"license": "GPLv3",
"authors": [
{
"name": "Jonathon Wardman - Fubra Limited",
"homepage": "http://www.fubra.com/"
},
{
"name": "Justin Busschau",
"email": "justin.busschau@gmail.com"
}
],
"autoload": {
"psr-4": { "GovTalk\\" : "src/" }
},
"require": {
"php": ">=5.3.2",
"guzzle/guzzle": "~3.1"
},
"require-dev": {
"guzzle/plugin-mock": "~3.1",
"mockery/mockery": "~0.8",
"phpunit/phpunit": "~3.7.16",
"squizlabs/php_codesniffer": "~1.4"
}
}