This repository was archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) Β· 1.33 KB
/
composer.json
File metadata and controls
49 lines (49 loc) Β· 1.33 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
{
"name": "unicodeveloper/laravel-cloudinary",
"description": "A Laravel Cloudinary Package",
"license": "MIT",
"authors": [
{
"name": "Prosper Otemuyiwa",
"email": "prosperotemuyiwa@gmail.com",
"homepage": "https://github.com/unicodeveloper"
}
],
"homepage": "https://github.com/unicodeveloper/laravel-cloudinary",
"keywords": ["Laravel", "laravel-cloudinary"],
"require": {
"php": "^7.0",
"illuminate/support": "~5|~6|~7",
"cloudinary/cloudinary_php": "2.0.0-beta6",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Unicodeveloper\\Cloudinary\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Unicodeveloper\\Cloudinary\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Unicodeveloper\\Cloudinary\\CloudinaryServiceProvider"
],
"aliases": {
"Cloudinary": "Unicodeveloper\\Cloudinary\\Facades\\Cloudinary"
}
}
}
}