maherelgamil / cachebusting
Easy and useful tool to change version of file if it modified for laravel 4 .
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is auto-updated.
Last update: 2024-10-29 04:04:01 UTC
README
Easy and useful tool to change version of file if it modified for laravel 4 .
Installation
Composer
Add Laravel Cachebusting to your composer.json
file.
"maherelgamil/cachebusting": "dev-master"
Run composer install
to get the latest version of the package.
Manually
It's recommended that you use Composer, however you can download and install from this repository.
Laravel 4
Cachebusting comes with a service provider for Laravel 4. You'll need to add it to your composer.json
as mentioned in the above steps, then register the service provider with your application.
Open app/config/app.php
and find the providers
key. Add Cachebusting\CachebustingServiceProvider
to the array.
... 'Maherelgamil\Cachebusting\CachebustingServiceProvider' ...
You can also add an alias to the list of class aliases in the same app.php
... 'Bust' => 'Maherelgamil\Cachebusting\Facades\Cachebusting' ...
Useage
<link rel="stylesheet" type="text/css" href="{{ Bust::url('css/style.css') }}" />
License
Cachebusting is an open-sourced laravel package licensed under the MIT license