youngones / lightspeed
This package is abandoned and no longer maintained.
No replacement package was suggested.
Simple gRPC alternative for existing projects.
dev-master
2021-01-14 11:19 UTC
Requires
- php: ^7.4|^8.0
- 2tvenom/cborencode: ^1.0
- guzzlehttp/psr7: ^1.7
- illuminate/support: ~7|~8
- laminas/laminas-text: ^2.8
- react/socket: ^1.6.0
Requires (Dev)
- orchestra/testbench: ~5|~6
- phpunit/phpunit: ~9.0
This package is not auto-updated.
Last update: 2024-09-06 05:27:33 UTC
README
Lightspeed is a lightweight communication solution for distributed Laravel applications inspired by gRPC. Without Protocol buffers.
What Lightspeed essentially does is run your normal routes, but streams the output over a TCP socket. The data is encoded as CBOR.
Installation
Via Composer
$ composer require youngones/lightspeed
Usage
Server side:
- Define the route you wish to request via Lightspeed:
// ./routes/web.php Route::lightspeed('/test', 'TestController');
- Start the Lightspeed server:
$ php artisan lightspeed:server start
Client side:
// Create an instance of `\YoungOnes\Lightspeed\Client\Client` $client = new \YoungOnes\Lightspeed\Client\Client(); // Create a request $request = new \YoungOnes\Lightspeed\Requests\Request('127.0.0.1:9810', '/api/test', ['Authorization' => 'Bearer'])
Change log
Please see the changelog for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email author email instead of using the issue tracker.
Credits
License
license. Please see the license file for more information.