PHP code example of bangnokia / cdn-image
1. Go to this page and download the library: Download bangnokia/cdn-image library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bangnokia / cdn-image example snippets
return [
'default' => 'statically',
'services' => [
'statically' => [
'domain' => 'cdn.statically.io'
],
'cloud_image' => [
'domain' => 'cloudimg.io',
'token' => env('CLOUD_IMAGE_TOKEN'),
'version' => env('CLOUD_IMAGE_VERSION', 'v7')
]
]
];
bash
php artisan vendor:publish --provider="BangNokia\CdnImage\CdnImageServiceProvider" --tag="cdn-image-config"