intonate/tinker-zero
A minimal, zero-config Tinker setup for Laravel. Quickly run tinker in projects without publishing config or extra boilerplate, keeping your environment clean while still getting an interactive REPL for debugging, experimenting, and inspecting app state.
This is a community project and not an official Laravel or Laravel Zero package
Tinker Zero is a bridge that allows using Laravel Tinker in your Laravel Zero applications.
Laravel Zero was created by Nuno Nuno Maduro and Owen Voke, and is a micro-framework that provides an elegant starting point for your console application. It's a customized version of Laravel optimized for building command-line applications.
composer require intonate/tinker-zero
TinkerZeroServiceProvider to your config/app.php file:'providers' => [
App\Providers\AppServiceProvider::class,
++ Intonate\TinkerZero\TinkerZeroServiceProvider::class,
],
Tinker Zero provides you with all the power of Laravel Tinker.
php application tinker
# Custom application name
php application app:rename movies
php movies tinker
Tinker Zero is open-sourced software licensed under the MIT license.
How can I help you explore Laravel packages today?