forked from cloudinary-community/cloudinary-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.51 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
50
51
52
53
54
55
56
{
"name": "cloudinary-labs/cloudinary-laravel",
"description": "A Laravel Cloudinary Package",
"license": "MIT",
"authors": [
{
"name": "Prosper Otemuyiwa",
"email": "[email protected]",
"homepage": "https://github.com/unicodeveloper"
}
],
"homepage": "https://github.com/cloudinary-labs/cloudinary-laravel",
"keywords": [
"Laravel",
"cloudinary-laravel",
"File Uploads",
"Media Management",
"Cloudinary",
"File Transformations"
],
"require": {
"php": ">=7.2",
"illuminate/support": "~6|~7|~8|^9.0",
"cloudinary/cloudinary_php": "^2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.5.10",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~4|~5|~6|^7.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"CloudinaryLabs\\CloudinaryLaravel\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"CloudinaryLabs\\CloudinaryLaravel\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"CloudinaryLabs\\CloudinaryLaravel\\CloudinaryServiceProvider"
],
"aliases": {
"Cloudinary": "CloudinaryLabs\\CloudinaryLaravel\\Facades\\Cloudinary"
}
}
}
}