Package Data | |
---|---|
Maintainer Username: | torann |
Maintainer Contact: | daniel@lyften.com (Daniel Stainback) |
Package Create Date: | 2014-01-21 |
Package Last Update: | 2018-05-30 |
Home Page: | http://lyften.com/projects/laravel-promise |
Language: | PHP |
License: | BSD-2-Clause |
Last Refreshed: | 2025-01-15 03:07:31 |
Package Statistics | |
---|---|
Total Downloads: | 1,145 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 13 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
Simple Roles and Permissions for Laravel 5. Homepage
To get the latest version of Promise simply require it in your composer.json
file.
"torann/promise": "0.2.*@dev"
You'll then need to run composer install
to download it and have the autoloader updated.
Once Promise is installed you need to register the service provider with the application. Open up config/app.php
and find the providers
key.
'providers' => array(
'Torann\Promise\PromiseServiceProvider',
)
Run this on the command line from the root of your project:
$ php artisan vendor:publish
A configuration file will be publish to config/promise.php
and a migration file to database/migrations/
View the official documentation.