├── .gitignore ├── app ├── commands │ ├── .gitkeep │ ├── CleanTableCommand.php │ └── WebsocketServerCommand.php ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── lowendping.php │ ├── mail.php │ ├── packages │ │ └── .gitkeep │ ├── queue.php │ ├── remote.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── ApiController.php │ ├── BaseController.php │ └── HomeController.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_03_09_112337_create_queries_table.php │ │ ├── 2014_03_09_113619_create_responses_table.php │ │ └── 2014_03_17_031627_crate_ratelimit_table.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── filters.php ├── helpers.php ├── jobs │ └── QueryJob.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── lib │ └── LowEndPing │ │ └── Pusher.php ├── models │ ├── Query.php │ ├── QueryResponse.php │ ├── RateLimit.php │ └── User.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── ExampleTest.php │ └── TestCase.php ├── validators.php └── views │ ├── emails │ └── auth │ │ └── reminder.blade.php │ ├── home.blade.php │ ├── layouts │ ├── main.blade.php │ └── navbar.blade.php │ └── result.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── daemon ├── lep.py └── lepconf.py ├── index.php ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── application.css │ └── bootstrap │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.php ├── js │ ├── application.js │ ├── autobahn.min.js │ └── bootstrap │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── packages │ └── .gitkeep └── robots.txt ├── readme.md └── server.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/.gitignore -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/CleanTableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/commands/CleanTableCommand.php -------------------------------------------------------------------------------- /app/commands/WebsocketServerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/commands/WebsocketServerCommand.php -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/lowendping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/lowendping.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/controllers/ApiController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2014_03_09_112337_create_queries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/database/migrations/2014_03_09_112337_create_queries_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_03_09_113619_create_responses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/database/migrations/2014_03_09_113619_create_responses_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_03_17_031627_crate_ratelimit_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/database/migrations/2014_03_17_031627_crate_ratelimit_table.php -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/database/production.sqlite -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/helpers.php -------------------------------------------------------------------------------- /app/jobs/QueryJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/jobs/QueryJob.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/lib/LowEndPing/Pusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/lib/LowEndPing/Pusher.php -------------------------------------------------------------------------------- /app/models/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/models/Query.php -------------------------------------------------------------------------------- /app/models/QueryResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/models/QueryResponse.php -------------------------------------------------------------------------------- /app/models/RateLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/models/RateLimit.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkiii/lowendping/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |