https://github.com/vluzrmos/lumen-tinker
[ABANDONED] An Interactive Shell to Lumen Framework.
https://github.com/vluzrmos/lumen-tinker
Last synced: about 1 year ago
JSON representation
[ABANDONED] An Interactive Shell to Lumen Framework.
- Host: GitHub
- URL: https://github.com/vluzrmos/lumen-tinker
- Owner: vluzrmos
- Created: 2015-05-27T02:39:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-06-04T09:14:33.000Z (about 7 years ago)
- Last Synced: 2024-04-23T17:52:45.735Z (about 2 years ago)
- Language: PHP
- Homepage:
- Size: 36.1 KB
- Stars: 110
- Watchers: 3
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-lumen - Lumen Tinker - An interactive shell to Lumen framework (Packages and Middleware / Videos)
README
# ABANDONED
Please consider to use the official Laravel Tinker, it is also compatible with Lumen: [laravel/tinker](https://github.com/laravel/tinker)
# Lumen Artisan Tinker
[](https://gitter.im/vluzrmos/lumen-tinker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://packagist.org/packages/vluzrmos/tinker)
[](https://packagist.org/packages/vluzrmos/tinker)
[](https://packagist.org/packages/vluzrmos/tinker)
[](https://travis-ci.org/vluzrmos/lumen-tinker)
[](https://styleci.io/repos/36338064)
[](https://scrutinizer-ci.com/g/vluzrmos/lumen-tinker/?branch=master)
An Interactive Shell to Lumen Framework.
[](https://github.com/vluzrmos/lumen-tinker)
# Installation
Package Versions:
| Lumen | Tinker |
|-------|--------|
| 5.0 | 1.0.* |
| 5.1 | 1.1.* |
| 5.3 | 1.3.0 |
| 5.4+ | 1.3.* |
Download from packagist:
`composer require vluzrmos/tinker`
Add the Service Provider to the `artisan` file:
```php
if(class_exists('Vluzrmos\Tinker\TinkerServiceProvider')) {
$app->register('Vluzrmos\Tinker\TinkerServiceProvider');
}
```
> Note: *This will not affect the performance of your application.*
And that is it, to see if it works do `php artisan`, and be sure to
see the command `tinker` there.
To use the shell:
`php artisan tinker`
# Credits
That package is a partial modification
of [illuminate/framework](https://github.com/illuminate/framework) and that is copyright of [Taylor Otwell](https://github.com/taylorotwell).