title | updated | permalink |
---|---|---|
How to make your own PHP framework? |
October 3, 2015 |
/faq/php-frameworks/how-to-make-your-own-framework/ |
Building your own framework can be useful for the following reasons:
- You can learn a lot - advanced design patterns, concepts and software architecture
- You know exactly what certain parts of your code does without learning from the documentation of others
However on the PHP market there are a lot of really quality open source frameworks that many projects and organizations use to build software better and faster. Picking established open source framework has its benefits:
- When working in a team, people that already know certain open source framework can faster join the project
- Better quality and a lot of identified and fixed bugs than your custom framework that hasn't been tested in a lot of projects yet
For creating a framework you will have to know OOP, design patterns, ORM, authentication, MVC (model view controller) and other advanced concepts.
Here are listed some useful resources and tutorials that can also help you create your own modern and quality PHP framework.
- Building your own framework on top of Symfony components - Build a modern PHP framework on top of quality Symfony components.
- Frameworkless - Tutorial how to create custom framework with Composer and PHP packages and components.
- No Framework tutorial
- PHP Frameworking - Introduction to frameworks and how to create your own framework.