beyondcode/laravel-tinker-server

This package is abandoned and no longer maintained. No replacement package was suggested.

Tinker with your variables while working on your application.

1.0.0 2019-02-14 19:59 UTC

This package is auto-updated.

Last update: 2024-01-10 07:13:29 UTC


README

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 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.