1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 11:22:42 +01:00
freescout/vendor/laravel/tinker
2018-07-23 03:08:32 -07:00
..
config Vendor 2018-07-23 03:08:32 -07:00
src Vendor 2018-07-23 03:08:32 -07:00
composer.json Vendor 2018-07-23 03:08:32 -07:00
LICENSE.txt Vendor 2018-07-23 03:08:32 -07:00
README.md Vendor 2018-07-23 03:08:32 -07:00

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