wjezowski / laravel-eureka
Eureka starter pack for Laravel
dev-master
2021-12-13 20:32 UTC
Requires
- php: ^8.0
- ext-dom: *
- ext-pcntl: *
- illuminate/console: ^v8.73
- illuminate/http: ^v8.73
- illuminate/routing: v8.73
- illuminate/support: ^v8.73
- piwvh/php-eureka: dev-master
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-03-27 22:23:50 UTC
README
- Add
wjezowski/laravel-eureka
to your composer.json as requirement - Add to your "providers" array in config/app.php this line:
Wjezowski\LaravelEureka\LaravelEurekaProvider::class
- Your environment should provide variables:
-
- EUREKA_SERVICE_URL - url used to doing heartbeat
-
- SERVICE_IP - app ip
-
- SERVICE_PORT - app port
- Run
php artisan eureka:run-heartbeat
in your app. I use supervisord for this. - That's all! Great job!