-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "cloudconvert/cloudconvert-php",
"description": "PHP SDK for CloudConvert APIs",
"homepage": "https://github.com/cloudconvert/cloudconvert-php",
"authors": [
{
"name": "Josias Montag",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"php-http/httplug": "^2.4",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.17",
"php-http/multipart-stream-builder": "^1.3",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-client-implementation": "^1.0",
"symfony/options-resolver": "^4.2 || ^5.0 || ^6.0 || ^7.0",
"netresearch/jsonmapper": "^4.0"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^9.3",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"CloudConvert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudConvert\\Tests\\": "tests/"
}
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}