No description, website, or topics provided.
Clone or download
Latest commit aa6260d Dec 21, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
config formatting Oct 12, 2018
src Add support for laravel/framework < v5.4.17 Aug 22, 2018
tests Unify test namespaces Dec 6, 2018
.editorconfig Update .editorconfig Dec 21, 2018
.gitattributes Initial commit Dec 21, 2016
.gitignore Initial commit Dec 21, 2016
.travis.yml Disable xdebug Nov 23, 2018
LICENSE.txt Initial commit Dec 21, 2016
README.md formatting Nov 2, 2018
composer.json Unify test namespaces Dec 6, 2018
phpunit.xml Fix testsuite name Jan 31, 2017

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

Basic Usage

From your console, execute the php artisan tinker command.

Dispatching Jobs

The dispatch helper function and dispatch method on the Dispatchable class depends on garbage collection to place the job on the queue. Therefore, when using tinker, you should use Bus::dispatch or Queue::push to dispatch jobs.

License

Laravel Tinker is open-sourced software licensed under the MIT license.