davejamesmiller / laravel-boris
This package is abandoned and no longer maintained.
The author suggests using the laravel/tinker package instead.
Adds an 'artisan boris' command to run the Boris REPL in the Laravel environment.
1.0.2
2013-12-19 21:49 UTC
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-masterto>=1.0
1.0.2
- Change Boris version to
~1.0so it won't automatically update to2.0in the future.
License
MIT License. See LICENSE.txt.