Stars: 206
Forks: 9
Pull Requests: 9
Issues: 5
Watchers: 5
Last Updated: 2020-02-09 22:36:50
Tinker with your variables while working on your Laravel application
License: MIT License
Languages: PHP
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.
This package was built as part of my PHP Package Development video course. Register for the course to learn how this package was built.
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.
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.
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.