You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
KodeStar c3b571724b Add vendor and .env to make usable 7 years ago
..
src Add vendor and .env to make usable 7 years ago
LICENSE.txt Add vendor and .env to make usable 7 years ago
README.md Add vendor and .env to make usable 7 years ago
composer.json Add vendor and .env to make usable 7 years ago

README.md

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

If you are using Laravel 5.5+, there is no need to manually register the service provider. However, if you are using an earlier version of Laravel, register the TinkerServiceProvider in your app configuration 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