-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 908 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-media-manager-php",
"description": "PHP client for consuming the PBS Media Manager API.",
"type": "library",
"license": "Apache-2.0",
"require": {
"php": "^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"league/uri": "^6.5",
"league/uri-components": "^2.3"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"OpenPublicMedia\\PbsMediaManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenPublicMedia\\PbsMediaManager\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform-check": false,
"platform": {
"php": "8.0"
}
}
}