PHP

This is some text about php.


The 12 Factor PHP App – Part 3

📁 php

This is Part 3 of a 3 part series: - Part 1: Codebase, Dependencies, Configuration and Backing Services. - Part 2: Build Release Run, Processes, Port Binding and Concurrency. - Part 3: Disposability, Dev/prod parity, Logs, Admin Processes. This series takes the development guidelines specified in…

Read more...

The 12 Factor PHP App – Part 2

📁 php

This is Part 2 of a 3 part series: - Part 1: Codebase, Dependencies, Configuration and Backing Services. - Part 2: Build Release Run, Processes, Port Binding and Concurrency. - Part 3: Disposability, Dev/prod parity, Logs, Admin Processes. This series takes the precepts specified in the 12 Factor…

Read more...

The 12 Factor PHP App – Part 1

📁 php

This is Part 1 of a 3 part series: - Part 1: Codebase, Dependencies, Configuration and Backing Services. - Part 2: Build Release Run, Processes, Port Binding and Concurrency. - Part 3: Disposability, Dev/prod parity, Logs, Admin Processes. In this series we’re going to look at ways of building sc…

Read more...

Dependency Management with Composer

📁 php

## What you’ll learn - How to manage dependencies on third-party vendor libraries using Composer - Loading, namespacing and autoloading dependency managed code using Composer’s built-in PSR-0 autoloader - Publishing your own libraries via Packagist ## What is Dependency Management? Web applicati…

Read more...