All Projects → beyondcode → Laravel Tinker Server

beyondcode / Laravel Tinker Server

Licence: mit
Tinker with your variables while working on your Laravel application

Projects that are alternatives of or similar to Laravel Tinker Server

Tinx
⛔️ Laravel Tinx is archived and no longer maintained.
Stars: ✭ 437 (+115.27%)
Mutual labels:  laravel, tinker
Ray
Debug with Ray to fix problems faster
Stars: ✭ 263 (+29.56%)
Mutual labels:  dump, laravel
Backup
MySQL Database backup package for Laravel
Stars: ✭ 66 (-67.49%)
Mutual labels:  dump, laravel
Laravel Sketchpad
An innovative front-end environment for interactive Laravel development
Stars: ✭ 302 (+48.77%)
Mutual labels:  laravel, tinker
Laravelfly
To be an absolutely safe solution to speed up Laravel with Swoole. Preloading + Coroutine and Tinker Online.
Stars: ✭ 459 (+126.11%)
Mutual labels:  laravel, tinker
Laravel Web Tinker
Tinker in your browser
Stars: ✭ 664 (+227.09%)
Mutual labels:  laravel, tinker
Laravel Artisan Dd
Quickly run some code via Artisan
Stars: ✭ 136 (-33%)
Mutual labels:  dump, laravel
Laravel Surveillance
Put malicious users, IP addresses and anonymous browser fingerprints under surveillance, log the URLs they visit and block malicious ones from accessing the Laravel app.
Stars: ✭ 198 (-2.46%)
Mutual labels:  laravel
Voyager Hooks
Hooks system integrated into Voyager.
Stars: ✭ 200 (-1.48%)
Mutual labels:  laravel
Twill
Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible.
Stars: ✭ 2,539 (+1150.74%)
Mutual labels:  laravel
Laradmin
Laradmin后台管理系统
Stars: ✭ 197 (-2.96%)
Mutual labels:  laravel
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (-2.46%)
Mutual labels:  laravel
Voyager Frontend
The Missing Front-end for The Missing Laravel Admin 🔥
Stars: ✭ 200 (-1.48%)
Mutual labels:  laravel
Librenms
Community-based GPL-licensed network monitoring system
Stars: ✭ 2,567 (+1164.53%)
Mutual labels:  laravel
Laravel Categories
Rinvex Categorizable is a polymorphic Laravel package, for category management. You can categorize any eloquent model with ease, and utilize the power of Nested Sets, and the awesomeness of Sluggable, and Translatable models out of the box.
Stars: ✭ 199 (-1.97%)
Mutual labels:  laravel
Laravel Microservice
[DEPRECATED] See https://github.com/lucidarch/lucid
Stars: ✭ 197 (-2.96%)
Mutual labels:  laravel
Hooks
Hooks is a extension system for your Laravel application.
Stars: ✭ 202 (-0.49%)
Mutual labels:  laravel
Mynotes
笔记、Laravel、PHP、面试题、MySQL、HTML、CSS、Java...
Stars: ✭ 201 (-0.99%)
Mutual labels:  laravel
Laravel Elasticsearch
Elasticsearch for Laravel
Stars: ✭ 199 (-1.97%)
Mutual labels:  laravel
Pma
Simple shell script that installs phpMyAdmin on a Laravel Homestead box.
Stars: ✭ 199 (-1.97%)
Mutual labels:  laravel

Laravel Tinker Server

Latest Version on Packagist Build Status Quality Score Total Downloads

This package will give you a tinker server, that collects all your tinker call outputs and allows you to interact with the variables on the fly.

About this package

This package was built as part of my PHP Package Development video course. Register for the course to learn how this package was built.

Installation

You can install the package via composer:

composer require beyondcode/laravel-tinker-server

The package will register itself automatically.

Optionally you can publish the package configuration using:

php artisan vendor:publish --provider=BeyondCode\\LaravelTinkerServer\\LaravelTinkerServerServiceProvider

This will publish a file called laravel-tinker-server.php in your config folder.

In the config file, you can specify the dump server host that you want to listen on, in case you want to change the default value.

Usage

Start the tinker server by calling the artisan command:

php artisan tinker-server

And then you can put tinker calls in your methods to dump variable content as well as instantly making them available in an interactive REPL shell.

$user = App\User::find(1);

tinker($user);

In addition to the tinker method, there is also a td method, that behaves similar to dd. It tinkers the variable and dies the current request.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].