-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "ctf0/asset-cache-bust", | ||
"description": "Automatic Assets CacheBust in Laravel", | ||
"keywords": [ | ||
"ctf0", | ||
"AssetCacheBust" | ||
], | ||
"homepage": "https://github.com/ctf0/Asset-Cache-Bust", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Muah", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"illuminate/support": "~5.2", | ||
"php" : "~5.6|~7.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ctf0\\AssetCacheBust\\": "src" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace ctf0\AssetCacheBust; | ||
|
||
use Illuminate\Support\ServiceProvider; | ||
|
||
class AssetCacheBustServiceProvider extends ServiceProvider | ||
{ | ||
/** | ||
* Perform post-registration booting of services. | ||
*/ | ||
public function boot() | ||
{ | ||
require_once 'CacheBust.php'; | ||
} | ||
|
||
/** | ||
* Register any package services. | ||
*/ | ||
public function register() | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters