akincand / larasocket
Socket connection for Laravel
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/akincand/larasocket
Requires (Dev)
- orchestra/testbench: ^8.21
This package is not auto-updated.
Last update: 2025-12-23 10:49:00 UTC
README
Simple socket application for Laravel
Installation
Install the package through Composer.
Run the Composer require command from the Terminal:
composer require akincand/larasocket
If you're using Laravel 5.5, this is all there is to do.
Should you still be on version 5.4 of Laravel, the final steps for you are to add the service provider of the package and alias the package. To do this open your config/app.php file.
Add a new line to the providers array:
AkincanD\LaraSocket\PackageServiceProvider::class
And optionally add a new line to the aliases array:
'LaraSocket' => AkincanD\LaraSocket\Facades\LaraSocket::class,
Now you're ready to start using the larasocket in your application.