intonate/tinker-zero
Use laravel/tinker on your laravel-zero applications
Maintainers
Requires
- php: ^7.2.5|^8.0
- laravel/tinker: ^1.0|^2.0
Requires (Dev)
- orchestra/testbench: ^4.0
- phpunit/phpunit: ^8.4
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT ebf7cdf9c7550de3fa2774629b659820358cc46c
- Jorge GonzΓ‘lez <scrub.mx.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-25 06:48:34 UTC
README
π PHPUnit
π StyleCI
π Total Downloads
π Latest Stable Version
π License
This is a community project and not an official Laravel or Laravel Zero package
Introduction
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.
Installation
- To get started install it using composer:
composer require intonate/tinker-zero
- Then add
TinkerZeroServiceProviderto yourconfig/app.phpfile:
'providers' => [
App\Providers\AppServiceProvider::class,
++ Intonate\TinkerZero\TinkerZeroServiceProvider::class,
],
Usage
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
Credits
License
Tinker Zero is open-sourced software licensed under the MIT license.
