-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·50 lines (50 loc) · 1.69 KB
/
composer.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.69 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
46
47
48
49
50
{
"name": "cloudconvert/cloudconvert-laravel",
"description": "Laravel PHP SDK for CloudConvert APIs",
"homepage": "https://github.com/cloudconvert/cloudconvert-php",
"license": "MIT",
"authors": [
{
"name": "Josias Montag",
"email": "josias@montag.info"
}
],
"require": {
"php": "^7.1 || ^8.0",
"illuminate/container": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0 || ^11.0 || ^12.0 || ^13.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0 || ^11.0 || ^12.0 || ^13.0",
"illuminate/http": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0 || ^11.0 || ^12.0 || ^13.0",
"illuminate/routing": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0 || ^11.0 || ^12.0 || ^13.0",
"cloudconvert/cloudconvert-php": "^3.1.0",
"symfony/psr-http-message-bridge": "^1.2|^2.0 || ^7.0 || ^8.0",
"nyholm/psr7": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.5.10 || ^10.5 || ^11.5.3 || ^12.5.12",
"orchestra/testbench": "~3.8.0|^4.0|^5.0|^6.0|^7.0|^8.0 || ^9.0 || ^10.0 || ^11.0",
"php-http/guzzle7-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"CloudConvert\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CloudConvert\\Laravel\\Tests\\": "tests"
}
},
"scripts": {
"phpunit": "vendor/phpunit/phpunit/phpunit"
},
"extra": {
"laravel": {
"providers": [
"CloudConvert\\Laravel\\Providers\\CloudConvertServiceProvider"
],
"aliases": {
"CloudConvert": "CloudConvert\\Laravel\\Facades\\CloudConvert"
}
}
}
}