No description
Find a file
2014-09-19 15:50:19 +02:00
1-front-controller.md added code formatting 2014-09-17 22:07:26 +02:00
2-composer.md added code formatting 2014-09-17 22:07:26 +02:00
3-error-handler.md added code formatting 2014-09-17 22:07:26 +02:00
4-http.md changed to correct version number 2014-09-17 22:45:17 +02:00
5-router.md switched from uri to path 2014-09-17 22:14:25 +02:00
6-controllers.md added code formatting 2014-09-17 22:06:16 +02:00
7-inversion-of-control.md added code formatting 2014-09-17 22:06:16 +02:00
8-dependency-injector.md changed di recommendation 2014-09-19 15:50:19 +02:00
README.md finished inversion of control part 2014-09-16 21:48:41 +02:00

Create a PHP application without a framework

Introduction

If you are really new to the language, this is not for you. This tutorial is aimed at people who have grasped the basics of PHP and know a little bit about object-oriented programming.

You should at least heard of SOLID. If you are not familiar with it, now would be a good time to familiarize yourself with the principles before you start with the tutorial.

I saw a lot of people coming into the Stack Overflow PHP chatroom and asking if framework X 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 third party packages is much, much easier than some people think.

So let's get started right away with the first part.

Parts

  1. Front Controller
  2. Composer
  3. Error Handler
  4. HTTP
  5. Router
  6. Controllers
  7. Inversion of Control
  8. Dependency Injector