├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Active.php ├── ActiveServiceProvider.php ├── Facades │ └── Active.php └── helpers.php └── tests ├── ActiveTest.php ├── Http ├── DumpController.php ├── DumpMiddleware.php └── Kernel.php └── StubModel.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Active.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/src/Active.php -------------------------------------------------------------------------------- /src/ActiveServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/src/ActiveServiceProvider.php -------------------------------------------------------------------------------- /src/Facades/Active.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/src/Facades/Active.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/ActiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/tests/ActiveTest.php -------------------------------------------------------------------------------- /tests/Http/DumpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/tests/Http/DumpController.php -------------------------------------------------------------------------------- /tests/Http/DumpMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/tests/Http/DumpMiddleware.php -------------------------------------------------------------------------------- /tests/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/tests/Http/Kernel.php -------------------------------------------------------------------------------- /tests/StubModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/letrunghieu/active/HEAD/tests/StubModel.php --------------------------------------------------------------------------------