├── .gitignore ├── README.md ├── composer.json └── src ├── Command ├── CleanLogCommand.php └── RunningTimeCommand.php ├── Middleware └── RunningTimeMiddleware.php ├── RunningTimeServiceProvider.php ├── Web └── Controllers │ └── RunningTimeController.php ├── config.php └── route.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/composer.json -------------------------------------------------------------------------------- /src/Command/CleanLogCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/Command/CleanLogCommand.php -------------------------------------------------------------------------------- /src/Command/RunningTimeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/Command/RunningTimeCommand.php -------------------------------------------------------------------------------- /src/Middleware/RunningTimeMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/Middleware/RunningTimeMiddleware.php -------------------------------------------------------------------------------- /src/RunningTimeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/RunningTimeServiceProvider.php -------------------------------------------------------------------------------- /src/Web/Controllers/RunningTimeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/Web/Controllers/RunningTimeController.php -------------------------------------------------------------------------------- /src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y-ui/laravel-running-time/HEAD/src/config.php -------------------------------------------------------------------------------- /src/route.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------