no-framework-tutorial/README.md

18 lines
864 B
Markdown
Raw Normal View History

2014-09-12 11:07:33 +00:00
## Create a PHP application without a framework
2014-09-12 11:06:04 +00:00
2014-09-12 11:06:51 +00:00
### Why this tutorial?
I saw a lot of people coming into the stackoverflow PHP chatroom that asked if X framework is any good. Most of the time the answer was that they should just use PHP and not a framework to build their application. But many are overwhelmed by this and don't know where to start.
So my goal with this is to provide an easy resource that people can be pointed to. In most cases a framework does not make sense and writing an application from scratch with the help of some 3rd party packages is much, much easier than some people think.
2014-09-12 21:21:50 +00:00
So let's get started right away with the [first part](1-front-controller.md).
2014-09-12 16:33:31 +00:00
### Parts
2014-09-12 21:27:04 +00:00
1. [Front Controller](1-front-controller.md)
2. [Composer](2-composer.md)
3. [Error Handler](3-error-handler.md)
4. [HTTP](4-http.md)
5. Router
6. Dependency Injector