Download Latest Version textfile.zip (202 Bytes)
Email in envelope

Get an email when there's a new version of Laravel

Name Modified Size InfoDownloads / Week
Parent folder
Console 2017-07-31
TinkerCaster.php 2017-07-31 2.3 kB
TinkerServiceProvider.php 2017-07-31 755 Bytes
ClassAliasAutoloader.php 2017-07-31 2.3 kB
Totals: 4 Items   5.3 kB 0

Build Status Total Downloads Latest Stable Version License

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

Source: README.md, updated 2017-07-31