├── .gitignore ├── LICENSE ├── README.md ├── app ├── bootstrap.php └── config.php ├── composer.json ├── console.php ├── screenshot.png ├── src └── SuperBlog │ ├── Command │ └── ArticleDetailCommand.php │ ├── Controller │ ├── ArticleController.php │ └── HomeController.php │ ├── Model │ ├── Article.php │ └── ArticleRepository.php │ ├── Persistence │ └── InMemoryArticleRepository.php │ └── Views │ ├── article.twig │ ├── home.twig │ └── layout.twig └── web ├── .htaccess └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/README.md -------------------------------------------------------------------------------- /app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/app/bootstrap.php -------------------------------------------------------------------------------- /app/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/app/config.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/composer.json -------------------------------------------------------------------------------- /console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/console.php -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/SuperBlog/Command/ArticleDetailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Command/ArticleDetailCommand.php -------------------------------------------------------------------------------- /src/SuperBlog/Controller/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Controller/ArticleController.php -------------------------------------------------------------------------------- /src/SuperBlog/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Controller/HomeController.php -------------------------------------------------------------------------------- /src/SuperBlog/Model/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Model/Article.php -------------------------------------------------------------------------------- /src/SuperBlog/Model/ArticleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Model/ArticleRepository.php -------------------------------------------------------------------------------- /src/SuperBlog/Persistence/InMemoryArticleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Persistence/InMemoryArticleRepository.php -------------------------------------------------------------------------------- /src/SuperBlog/Views/article.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Views/article.twig -------------------------------------------------------------------------------- /src/SuperBlog/Views/home.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Views/home.twig -------------------------------------------------------------------------------- /src/SuperBlog/Views/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/src/SuperBlog/Views/layout.twig -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-DI/demo/HEAD/web/index.php --------------------------------------------------------------------------------