-
Notifications
You must be signed in to change notification settings - Fork 296
/
Copy pathcloudder.php
30 lines (25 loc) · 1016 Bytes
/
cloudder.php
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
<?php
return array(
/*
|--------------------------------------------------------------------------
| Cloudinary API configuration
|--------------------------------------------------------------------------
|
| Before using Cloudinary you need to register and get some detail
| to fill in below, please visit cloudinary.com.
|
*/
'cloudName' => env('CLOUDINARY_CLOUD_NAME'),
'baseUrl' => env('CLOUDINARY_BASE_URL', 'http://res.cloudinary.com/'.env('CLOUDINARY_CLOUD_NAME')),
'secureUrl' => env('CLOUDINARY_SECURE_URL', 'https://res.cloudinary.com/'.env('CLOUDINARY_CLOUD_NAME')),
'apiBaseUrl' => env('CLOUDINARY_API_BASE_URL', 'https://api.cloudinary.com/v1_1/'.env('CLOUDINARY_CLOUD_NAME')),
'apiKey' => env('CLOUDINARY_API_KEY'),
'apiSecret' => env('CLOUDINARY_API_SECRET'),
'scaling' => array(
'format' => 'png',
'width' => 150,
'height' => 150,
'crop' => 'fit',
'effect' => null
)
);