akaramires / laravel-uptimerobot-api
Laravel UpTimeRobot is an UptimeRobot API client for Laravel 5.*
dev-master
2016-10-12 12:51 UTC
Requires
- php: >= 5.4
- guzzlehttp/guzzle: 6.*
Requires (Dev)
- illuminate/support: ~5.0|~5.1
This package is auto-updated.
Last update: 2024-10-24 17:37:22 UTC
README
Installation
Please check the system requirements before installing Laravel UptimeRobot API.
To get the latest version of Laravel UptimeRobot API, simply require "akaramires/laravel-uptimerobot-api": "*"
in your composer.json
file.
Open up app/config/app.php
and add the following to the providers
key.
Akaramires\Monitors\MonitorsServiceProvider::class
Also add the following to the aliases
key:
'Monitors' => Akaramires\Monitors\Facades\Monitors::class
Configuration
Laravel UptimeRobot API requires configuration.
To get started, first publish the package config file:
php artisan vendor:publish --provider="Akaramires\Monitors\MonitorsServiceProvider"