├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── README_TESTING.md ├── composer.json ├── config └── spy.php ├── database └── migrations │ └── create_spy_http_logs_table.php.stub ├── docker-compose.yml ├── laravel-spy.svg ├── phpunit.xml ├── pint.json ├── resources └── views │ └── dashboard.blade.php ├── routes └── web.php ├── run-tests.sh ├── src ├── Commands │ └── CleanCommand.php ├── Http │ └── Controllers │ │ └── LaravelSpyController.php ├── LaravelSpy.php ├── LaravelSpyServiceProvider.php └── Models │ └── HttpLog.php └── tests ├── Feature └── HttpLoggingTest.php ├── TestCase.php ├── Unit ├── CleanCommandTest.php ├── HttpLogModelTest.php └── LaravelSpyTest.php └── bootstrap.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/README.md -------------------------------------------------------------------------------- /README_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/README_TESTING.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/composer.json -------------------------------------------------------------------------------- /config/spy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/config/spy.php -------------------------------------------------------------------------------- /database/migrations/create_spy_http_logs_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/database/migrations/create_spy_http_logs_table.php.stub -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /laravel-spy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/laravel-spy.svg -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/pint.json -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/routes/web.php -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/run-tests.sh -------------------------------------------------------------------------------- /src/Commands/CleanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/src/Commands/CleanCommand.php -------------------------------------------------------------------------------- /src/Http/Controllers/LaravelSpyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/src/Http/Controllers/LaravelSpyController.php -------------------------------------------------------------------------------- /src/LaravelSpy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/src/LaravelSpy.php -------------------------------------------------------------------------------- /src/LaravelSpyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/src/LaravelSpyServiceProvider.php -------------------------------------------------------------------------------- /src/Models/HttpLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/src/Models/HttpLog.php -------------------------------------------------------------------------------- /tests/Feature/HttpLoggingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/tests/Feature/HttpLoggingTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/CleanCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/tests/Unit/CleanCommandTest.php -------------------------------------------------------------------------------- /tests/Unit/HttpLogModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/tests/Unit/HttpLogModelTest.php -------------------------------------------------------------------------------- /tests/Unit/LaravelSpyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farayaz/laravel-spy/HEAD/tests/Unit/LaravelSpyTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |