First steps with the Slim framework

In this section, you will take you first steps with the Slim framework. For this, you will first use Composer to install the framework and then build a small sample application that will show you the basic principles of the framework.

Installing Slim

The Slim framework can be easily installed using Composer. It requires PHP in at least version 5.5, but also works well with PHP 7. Start by initializing a new project with Composer:

$ composer init .

This will create a new project-level composer.json file for our project. Now you can add the slim/slim package as a dependency:

$ composer require slim/slim

A small sample application

You can now start using the Slim framework in your PHP application. For this, create ...

Get PHP 7 Programming Blueprints now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.