Skip to content

intonate/tinker-zero

Folders and files

NameName
Last commit message
Last commit date
Apr 24, 2024
Mar 24, 2020
Mar 24, 2020
Apr 17, 2024
Apr 17, 2024
Mar 10, 2021
Apr 24, 2024
Apr 25, 2024
Apr 18, 2024
Apr 25, 2024
Mar 24, 2020

Repository files navigation

Logo Tinker Zero

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 TinkerZeroServiceProvider to your config/app.php file:
'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.