davejamesmiller / laravel-boris
Adds an 'artisan boris' command to run the Boris REPL in the Laravel environment.
Installs: 4 561
Dependents: 0
Suggesters: 0
Security: 0
Stars: 23
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: >=5.3.0
- d11wtq/boris: ~1.0
- illuminate/support: >=4.0
This package is not auto-updated.
Last update: 2019-02-20 19:31:48 UTC
README
Adds an artisan boris
command to Laravel 4.0 that runs the Boris REPL
in the Laravel environment.
Note: This package is not needed in Laravel 4.1 because Boris is included by
default - simply run php artisan tinker
instead. See Laravel issues
#2215 and
#2468.
Installation
1. Install with Composer
composer require davejamesmiller/laravel-boris dev-master
This will update composer.json
and install it into the vendor/
directory.
Note: dev-master
is the latest development version.
See the Packagist website for a list of other versions.
2. Add to app/config/app.php
'providers' => array( // ... 'DaveJamesMiller\Boris\BorisServiceProvider', ),
This registers the Artisan task with Laravel.
Usage
php artisan boris
Changelog
1.0.0
- Initial release
1.0.1
- Change Boris version from
dev-master
to>=1.0
1.0.2
- Change Boris version to
~1.0
so it won't automatically update to2.0
in the future.
License
MIT License. See LICENSE.txt.