bkwld / auto-publish
Automatically publish all Laravel workbench assets on every request
Installs: 25 149
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 10
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
- illuminate/support: <4.3,>=4.0
This package is auto-updated.
Last update: 2024-10-21 19:36:15 UTC
README
A small package that automatically publishes the assets of Laravel packages you currently have in your workbench. You would use it to have an easier workflow for testing css, js, or img changes while developing packages. The logic ONLY runs on your local enviornment.
Installation
-
Add it to your composer.json (
"bkwld/auto-publish": "~1.0"
) and do a composer install. -
Add the service provider to your app.php config file providers:
'Bkwld\AutoPublish\ServiceProvider',
Usage
After installing, there is nothing left to do. All packages in your workbench will have their assets published anew on every browser request.