Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Latest commit

 

History

History
43 lines (23 loc) · 2.36 KB

references.md

File metadata and controls

43 lines (23 loc) · 2.36 KB

References

Coding Standard Documentations

A practical guide on creating websites from beginning to end with concrete5.

This is a collection of concrete5 cheat sheets, based on the C5 V8+ source code.

It's another cheatsheet with nice representation you may want to follow.

concrete5 follows the PHP Framework Interoperability Group's PSR guidelines for code style. For version 7 and version 8 follow PSR-1 PSR-2 For version 9 and above follow PSR-1 PSR-12

PHP: The Right Way is an easy-to-read, quick reference for PHP popular coding standards, links to authoritative tutorials around the Web and what the contributors consider to be best practices at the present time.

IMO, reading this documentation is enough to be a good PHP programmer. Strongly recommended following.

It's a very simple guideline to write clean codes in PHP. Strongly recommended following.

Official Documentations (libraries)

The Carbon is a useful helper class which is inherited from the PHP DateTime class.

The Doctrine Project is the home to several PHP libraries primarily focused on database storage and object mapping. The core projects are the Object Relational Mapper (ORM) and the Database Abstraction Layer (DBAL) it is built upon.

Stash makes it easy to speed up your code by caching the results of expensive functions or code. Certain actions, like database queries or calls to external APIs, take a lot of time to run but tend to have the same results over short periods of time. This makes it much more efficient to store the results and call them back up later.