Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
src | 2017-07-31 | ||
composer.json | 2017-07-31 | 1.2 kB | |
LICENSE.txt | 2017-07-31 | 1.1 kB | |
README.md | 2017-07-31 | 1.3 kB | |
Totals: 4 Items | 3.5 kB | 0 |
Introduction
Laravel Tinker is a powerful REPL for the Laravel framework.
Installation
To get started with Laravel Tinker, simply run:
composer require laravel/tinker
Next, register the Laravel\Tinker\TinkerServiceProvider
in your config/app.php
file:
'providers' => [
// Other service providers...
Laravel\Tinker\TinkerServiceProvider::class,
],
Basic Usage
From your console, execute the php artisan tinker
command.
License
Laravel Tinker is open-sourced software licensed under the MIT license