sasin91 / laravel-tc-interaction
Laravel 5 - Interactions for communicating with a TrinityCore server.
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/sasin91/laravel-tc-interaction
Requires
- artisaninweb/laravel-soap: 0.3.*
Requires (Dev)
- orchestra/testbench: ~3.0
This package is auto-updated.
Last update: 2025-10-12 06:09:31 UTC
README
Installation
Composer
Execute the following command to get the latest version of the package:
composer require sasin91/laravel-tc-interaction
Note, to pull this in you might need to set your minimum stability in composer.json
"minimum-stability":"dev",
Laravel
In your config/app.php
add
Sasin91\LaravelInteractions\InteractionServiceProvider::class
Sasin91\LaravelTrinityCoreInteractions\TrinityCoreInteractionsServiceProvider::class
to the end of the Package Service Providers
array:
'providers' => [ ... Sasin91\LaravelInteractions\InteractionServiceProvider::class, Sasin91\LaravelTrinityCoreInteractions\TrinityCoreInteractionsServiceProvider::class, ],