tozogluburak/laravel-cdn-helper

A Laravel package for CDN integration

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/tozogluburak/laravel-cdn-helper

v1.8.0 2024-08-21 02:15 UTC

This package is auto-updated.

Last update: 2025-12-21 05:28:36 UTC


README

This package provides a simple way to integrate CDN support into your Laravel application.

Installation

  1. Add the package to your project via Composer:

    composer require tozogluburak/laravel-cdn-helper:^1.8
  2. Publish the package's configuration file:

    php artisan vendor:publish --provider="tozogluburak\CdnHelper\Discovery\CdnHelperDiscovery"
  3. After installation, the package will automatically add the CDN helper function to your project.

Configuration

The standard asset() function will be called if no CDN URLs are defined in the ./config/app.php config file.

Define the CDN URLs in the ./config/app.php file:

Add the following configuration to your app.php file:

<?php

return [
    /*
    |--------------------------------------------------------------------------
    | Application CDN domains
    |--------------------------------------------------------------------------
    |
    | Specify different domains for your assets.
    |
    */
    'cdn' => [
        "cdn.example.com" => "",
    ],
];