├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Engine.php └── LaravelPlatesServiceProvider.php └── tests ├── .gitkeep └── EngineTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/src/Engine.php -------------------------------------------------------------------------------- /src/LaravelPlatesServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/src/LaravelPlatesServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/EngineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franzliedke/laravel-plates/HEAD/tests/EngineTest.php --------------------------------------------------------------------------------