kg-bot / laravel-rackbeat
Laravel Integration With Rackbeat App
Installs: 1 148
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 3
Open Issues: 1
Requires
- php: >=7.1
- ext-json: *
- guzzlehttp/guzzle: *
- laravel/framework: ^5.5|^6|^7|^8
- spatie/guzzle-rate-limiter-middleware: ^1.0
- dev-master
- v2.x-dev
- v2.5.14
- v2.5.13
- v2.5.12
- v2.5.11
- v2.5.10
- v2.5.9
- v2.5.8
- v2.5.7
- v2.5.6
- v2.5.5
- v2.5.4
- v2.5.3
- v2.5.2
- v2.5.1
- v2.5.0
- v2.4.1
- v2.4.0
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.25
- v2.2.24
- v2.2.22
- v2.2.21
- v2.2.20
- v2.2.19
- v2.2.18
- v2.2.17
- v2.2.16
- v2.2.15
- v2.2.14
- v2.2.13
- v2.2.12
- v2.2.11
- v2.2.2.23
- v2.2.1
- v2.2.0
- v2.1.24
- v2.1.23
- v2.1.22
- V2.1.21
- v2.1.20
- v2.1.19
- v2.1.18
- v2.1.17
- v2.1.16
- v2.1.15
- v2.1.14
- v2.1.13
- v2.1.12
- v2.1.11
- v2.1.10
- v2.1.9
- v2.1.8
- v2.1.7
- v2.1.6
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.0
- v1.1
- v1.0
- dev-improved_filtering
This package is auto-updated.
Last update: 2024-10-23 22:38:14 UTC
README
Installation
- Require using composer
composer require kg-bot/laravel-rackbeat
In Laravel 5.5, and above, the package will auto-register the service provider. In Laravel 5.4 you must install this service provider.
- Add the RackbeatServiceProvider to your
config/app.php
providers array.
<?php 'providers' => [ // ... \Rackbeat\RackbeatServiceProvider::class, // ... ]
- Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Rackbeat\RackbeatServiceProvider"