├── .gitignore ├── .styleci.yml ├── .travis.yml ├── composer.json ├── composer.lock ├── phpunit.xml ├── readme.md ├── src ├── Context.php ├── ContextFacade.php └── ContextServiceProvider.php └── tests └── ContextTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | test.php 3 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | linting: true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/readme.md -------------------------------------------------------------------------------- /src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/src/Context.php -------------------------------------------------------------------------------- /src/ContextFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/src/ContextFacade.php -------------------------------------------------------------------------------- /src/ContextServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/src/ContextServiceProvider.php -------------------------------------------------------------------------------- /tests/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxi/laravel-context/HEAD/tests/ContextTest.php --------------------------------------------------------------------------------