beyondcode / laravel-tinker-server
Tinker with your variables while working on your application.
Installs: 58 887
Dependents: 0
Suggesters: 0
Security: 0
Stars: 203
Watchers: 5
Forks: 10
Open Issues: 1
Requires
- php: ^7.1
- clue/stdio-react: ^2.2
- illuminate/support: 5.6.*|5.7.*|5.8.*
- laravel/tinker: ^1.0
- psy/psysh: ^0.9.9
- react/socket: ^1.2
Requires (Dev)
- orchestra/testbench: 3.7.*
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-01-10 07:13:29 UTC
README
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 marcel@beyondco.de 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.