Package Data | |
---|---|
Maintainer Username: | etrepat |
Maintainer Contact: | jason.lewis1991@gmail.com (Jason Lewis) |
Package Create Date: | 2013-05-17 |
Package Last Update: | 2014-08-21 |
Home Page: | http://jasonlewis.me/code/basset |
Language: | PHP |
License: | BSD-2-Clause |
Last Refreshed: | 2024-11-07 15:00:51 |
Package Statistics | |
---|---|
Total Downloads: | 9,569 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 14 |
Total Watchers: | 4 |
Total Forks: | 2 |
Total Open Issues: | 1 |
Basset is a better asset management package for the Laravel framework. Basset shares the same philosophy as Laravel. Development should be an enjoyable and fulfilling experience. When it comes to managing your assets it can become quite complex and a pain in the backside. These days developers are able to use a range of pre-processors such as Sass, Less, and CoffeeScript. Basset is able to handle the processing of these assets instead of relying on a number of individual tools.
Status:
Please, take a look at the CHANGELOG.md, or browse the commits to know what has changed from the original.
To get the latest version of Basset simply require it in your composer.json
file:
"etrepat/basset": "~4.0.1"
You'll then need to run composer install
to download it and have the autoloader
updated.
Once Basset is installed you need to register the service provider with the
application. Open up app/config/app.php
and find the providers
key.
'providers' => array(
'Basset\BassetServiceProvider'
)
Basset also ships with a facade which provides the static syntax for creating
collections. You can register the facade in the aliases
key of
your app/config/app.php
file.
'aliases' => array(
'Basset' => 'Basset\Facade'
)
View the official documentation.
Please see the CHANGELOG.md file.