-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
45 lines (45 loc) · 914 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
36
37
38
39
40
41
42
43
44
45
{
"name": "bynder/bynder-php-sdk",
"description": "Bynder PHP Library",
"version": "2.2.2",
"keywords": [
"bynder",
"sdk",
"api"
],
"homepage": "https://www.bynder.com",
"license": "MIT",
"authors": [
{
"name": "Bynder",
"homepage": "https://github.com/Bynder/bynder-php-sdk"
}
],
"require": {
"php": ">= 5.6",
"guzzlehttp/guzzle": "~6.0|~7.0",
"league/oauth2-client": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^5",
"mikey179/vfsstream": "~1",
"phpdocumentor/phpdocumentor": "2.*",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"Bynder\\": "src/Bynder"
}
},
"scripts": {
"test": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit tests -c phpunit.xml.dist --whitelist src"
]
},
"autoload-dev": {
"psr-4": {
"Bynder\\Tests\\": "tests"
}
}
}