Slim Framework 4 Starter Application
A skeleton for a simple PHP application built on Slim Framework 4 (and Bootstrap 4).
Requirements
- PHP 7.3 or newer
- Composer
Installation
- Clone this repository into your local machine using the terminal (MAC) or Gitbash (Windows)
git clone https://github.com/nbayramberdiyev/slim-4-starter.git
. - Go to the project folder
cd slim-4-starter
. - Run
composer install
to install the project dependencies. - Run
cp .env.example .env
to create a copy of .env.example. - Start localhost web server
php -S localhost:8888 -t public
. - Open http://localhost:8888 in your browser.
That's it! Now go build something cool.