-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.72 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
51
52
53
54
55
56
57
58
{
"name": "thebiggive/hmrc-gift-aid",
"type": "library",
"description": "A library for charities and CASCs to claim Gift Aid (including Small Donations) from HMRC",
"homepage": "https://github.com/thebiggive/hmrc-gift-aid",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Jonathon Wardman - Fubra Limited",
"homepage": "http://www.fubra.com/"
},
{
"name": "Long Luong - Veda Consulting",
"email": "[email protected]",
"homepage": "http://www.vedaconsulting.co.uk/uk-hrmc-gift-aid-online-submission/"
},
{
"name": "Justin Busschau",
"email": "[email protected]"
},
{
"name": "Noel Light-Hilary",
"email": "[email protected]",
"homepage": "https://noellh.com/"
}
],
"autoload": {
"psr-4": { "GovTalk\\GiftAid\\" : "src/" }
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.0.28"
},
"sort-packages": true
},
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"ext-zlib": "*",
"thebiggive/php-govtalk": "^1.0.1"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"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"
}
}