-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
50 lines (50 loc) · 1.37 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "thebiggive/php-govtalk",
"type": "library",
"description": "A library for applications which interface with the UK Government Gateway",
"homepage": "https://github.com/thebiggive/php-govtalk",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Jonathon Wardman - Fubra Limited",
"homepage": "http://www.fubra.com/"
},
{
"name": "Justin Busschau",
"email": "[email protected]"
},
{
"name": "Noel Light-Hilary",
"email": "[email protected]",
"homepage": "https://noellh.com/"
}
],
"autoload": {
"psr-4": { "GovTalk\\" : "src/" }
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.0.28"
},
"sort-packages": true
},
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"guzzlehttp/guzzle": "^7.3.0",
"psr/log": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.7",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6.0"
},
"scripts": {
"lint:check": "phpcs --standard=PSR2 src",
"test": "XDEBUG_MODE=coverage phpunit --coverage-text"
}
}