-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 936 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
{
"name": "openpublicmedia/pbs-membership-vault-php",
"description": "PHP client for interacting with the PBS Membership Vault (MVault) API.",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"league/uri": "^6.5",
"league/uri-components": "^2.0"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.2",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"OpenPublicMedia\\PbsMembershipVault\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenPublicMedia\\PbsMembershipVault\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform-check": false,
"platform": {
"php": "8.0"
}
}
}