├── .github └── workflows │ └── tests.yml ├── LICENSE ├── composer.json └── src ├── Decorator.php ├── PresentableInterface.php ├── Presenter.php ├── PresenterServiceProvider.php └── View ├── Factory.php └── View.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/composer.json -------------------------------------------------------------------------------- /src/Decorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/Decorator.php -------------------------------------------------------------------------------- /src/PresentableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/PresentableInterface.php -------------------------------------------------------------------------------- /src/Presenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/Presenter.php -------------------------------------------------------------------------------- /src/PresenterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/PresenterServiceProvider.php -------------------------------------------------------------------------------- /src/View/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/View/Factory.php -------------------------------------------------------------------------------- /src/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robclancy/presenter/HEAD/src/View/View.php --------------------------------------------------------------------------------