redmoon/tinker-server

Tinker with your variables while working on your application.

1.0.0 2019-08-05 01:14 UTC

This package is auto-updated.

Last update: 2024-04-06 06:44:21 UTC


README

Latest Version on Packagist Codeship Status for rlunar/tinker-server StyleCI Quality Score Scrutinizer Code Quality Code Coverage Build Status Code Intelligence Status Total Downloads Build Status

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.

Installation

You can install the package via composer:

composer require redmoon/tinker-server

The package will register itself automatically.

Optionally you can publish the package configuration using:

php artisan vendor:publish --provider=RedMoon\\TinkerServer\\TinkerServerServiceProvider

This will publish a file called 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 rluna@webdcg.com instead of using the issue tracker.

Credits

License

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