Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.11 KB

README.md

File metadata and controls

24 lines (16 loc) · 1.11 KB

PHP API Pro

This is the repository which accompanies PHP API Pro. A comprehensive step-by-step video course guiding you through the process of creating awesome APIs in PHP.

Setup

In the course, I use Docker to create my development environment and created custom images especially for this course. It is a very simple setup consisting of PHP, Nginx, and MariaDB (MySQL) containers. Spin it up with these two commands.

docker compose up -d
docker compose exec app composer install

This will give you the exact same setup as me with the exact same versions of all the dependencies. This will make it much easier for me to help you, should you encounter problems.

Branches

Each individual lesson has a corresponding branch in this repo. There is a link to the branch in the lesson text e.g.

Branch: https://github.com/GaryClarke/php-api-pro/tree/3-phpstan-composer-script

Happy Coding!