-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (39 loc) · 1.25 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
{
"name": "madmatt/id3global-service",
"description": "Allows a PHP-powered website to communicate with the GBG ID3global API to verify identities. This library is not affiliated with GBG PLC in any way.",
"type": "library",
"keywords": [ "id3global", "GBG", "GBG PLC", "ID3Global", "ID3global", "identity verification", "identity" ],
"homepage": "https://github.com/madmatt/id3global-service/",
"license": "BSD-3-Clause",
"require": {
"php": "^7.4||^8.0",
"ext-soap": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.8",
"slevomat/coding-standard": "^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^0.5.0"
},
"authors": [
{
"name": "madmatt",
"homepage": "https://github.com/madmatt/",
"role": "Lead Developer"
}
],
"support": {
"issues": "https://github.com/madmatt/id3global-service/issues",
"source": "https://github.com/madmatt/id3global-service"
},
"autoload": {
"psr-4": {
"ID3Global\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ID3Global\\Tests\\": "tests/"
}
}
}