Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intonate/tinker-zero
Bridge laravel/tinker for your laravel-zero applications
https://github.com/intonate/tinker-zero
cli console laravel laravel-packages laravel-zero php psysh repl tinker
Last synced: about 2 months ago
JSON representation
Bridge laravel/tinker for your laravel-zero applications
- Host: GitHub
- URL: https://github.com/intonate/tinker-zero
- Owner: intonate
- License: mit
- Created: 2017-11-11T06:08:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T02:15:40.000Z (9 months ago)
- Last Synced: 2024-04-26T00:53:21.283Z (9 months ago)
- Topics: cli, console, laravel, laravel-packages, laravel-zero, php, psysh, repl, tinker
- Language: PHP
- Homepage: https://laravel-zero.com/docs/tinker-repl
- Size: 35.2 KB
- Stars: 45
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
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](https://github.com/laravel/tinker) in your [Laravel Zero](http://laravel-zero.com) applications.
Laravel Zero was created by Nuno [Nuno Maduro](https://github.com/nunomaduro) and [Owen Voke](https://github.com/owenvoke), 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:
```sh
composer require intonate/tinker-zero
```* Then add `TinkerZeroServiceProvider` to your `config/app.php` file:
```diff
'providers' => [
App\Providers\AppServiceProvider::class,
++ Intonate\TinkerZero\TinkerZeroServiceProvider::class,
],
```## Usage
Tinker Zero provides you with all the power of [Laravel Tinker](https://github.com/laravel/tinker).
```sh
php application tinker# Custom application name
php application app:rename movies
php movies tinker
```## Credits
* [Jorge González](https://github.com/scrubmx)
* [All Contributors](../../contributors)## License
Tinker Zero is open-sourced software licensed under the [MIT license](LICENSE.md).