Package Data | |
---|---|
Maintainer Username: | mmanos |
Maintainer Contact: | mark@airpac.com (Mark Manos) |
Package Create Date: | 2014-09-01 |
Package Last Update: | 2015-01-02 |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-19 03:03:26 |
Package Statistics | |
---|---|
Total Downloads: | 30 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 1 |
This package contains custom Laravel application utilities to make installation, configuration, and management of Laravel 4 applications easier and less time consuming.
The changes made by this package are highly opinionated and are not suitable for everyone.
Download this installer using Composer.
$ composer global require "mmanos/laravel-utilities=~1.0"
Make sure to place the ~/.composer/vendor/bin
directory in your PATH so the mmanos-laravel
executable is found when you run the mmanos-laravel
command in your terminal.
Simply add this directory to your PATH in your ~/.bash_profile (or ~/.bashrc):
export PATH=~/.composer/vendor/bin:$PATH
Once installed, the simple mmanos-laravel
global composer command will be available to run the project commands listed below.
To keep this package up to date:
$ composer global update mmanos/laravel-utilities
To remove this package, you edit ~/.composer/composer.json
and then run:
$ composer global update
Run the commands below to initialize and/or modify Laravel 4 applications.
Create a fresh Laravel installation with dependencies in the directory you specify. This command also make's the app/storage/* directories writable.
$ mmanos-laravel new [directory]
For instance, mmanos-laravel new blog
would create a directory named blog
containing a fresh Laravel installation.
Note: This runs the composer create-project command to check out the latest version of Laravel and install it's dependencies.
Prepare a fresh version of Laravel by adding helpful functionality. This command will do the following:
$ mmanos-laravel prepare
Note: Run from the base directory of the Laravel application.
Configure an existing Laravel application with helpful front-end functionality. This command will do the following:
$ mmanos-laravel frontend
Note: Run from the base directory of the Laravel application.
Configure an existing Laravel application with authorization functionality. This command will do the following:
$ mmanos-laravel authorize
Note: Run from the base directory of the Laravel application.