forked from cloudconvert/cloudconvert-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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": "cloudconvert/cloudconvert-php",
"description": "PHP SDK for CloudConvert APIs",
"homepage": "https://github.com/cloudconvert/cloudconvert-php",
"authors": [
{
"name": "Josias Montag",
"email": "josias@montag.info"
}
],
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"symfony/options-resolver": "^4.2",
"netresearch/jsonmapper": "^1.6",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-common": "^2.0",
"php-http/message": "^1.7",
"guzzlehttp/psr7": "^1.0",
"php-http/guzzle6-adapter": "^2.0"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"CloudConvert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudConvert\\Tests\\": "tests/"
}
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
]
}
}