├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laravel-uptime-monitor-api.php ├── phpunit.xml.dist ├── src ├── Http │ ├── Controller │ │ └── MonitorController.php │ └── routes.php └── UptimeMonitorAPIServiceProvider.php └── tests ├── API └── MonitorControllerTest.php └── TestCase.php /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-uptime-monitor-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/config/laravel-uptime-monitor-api.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Http/Controller/MonitorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/src/Http/Controller/MonitorController.php -------------------------------------------------------------------------------- /src/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/src/Http/routes.php -------------------------------------------------------------------------------- /src/UptimeMonitorAPIServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/src/UptimeMonitorAPIServiceProvider.php -------------------------------------------------------------------------------- /tests/API/MonitorControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/tests/API/MonitorControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKaemmerling/laravel-uptime-monitor-api/HEAD/tests/TestCase.php --------------------------------------------------------------------------------