-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcloudinary.php
More file actions
executable file
·42 lines (36 loc) · 1.24 KB
/
cloudinary.php
File metadata and controls
executable file
·42 lines (36 loc) · 1.24 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
<?php
/*
* This file is part of the Laravel Cloudinary package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
/*
|--------------------------------------------------------------------------
| Cloudinary Configuration
|--------------------------------------------------------------------------
|
| An HTTP or HTTPS URL to notify your application (a webhook) when the process of uploads, deletes, and any API
| that accepts notification_url has completed.
|
|
*/
'notification_url' => env('CLOUDINARY_NOTIFICATION_URL'),
/*
|--------------------------------------------------------------------------
| Cloudinary Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your Cloudinary settings. Cloudinary is a cloud hosted
| media management service for all file uploads, storage, delivery and transformation needs.
|
|
*/
'cloud_url' => 'https://api.cloudinary.com/v1_1/techdiary-dev/image/upload',
/**
* Upload Preset From Cloudinary Dashboard
*
*/
'upload_preset' => 'techdiary-article-assets'
];