Use this skeleton application to quickly setup and start working on a new Slim Framework 4 application. This application uses the latest Slim 4 & slim Twig templates engine with Slim PSR-7 implementation and PHP-DI container implementation. It also uses the Monolog logger. MySQL default database.
This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.
Run this command from the directory in which you want to install your new Slim Framework application. You will require PHP 8.3 or newer.
composer create-project sushilk/slim-skeleton my-slim-appReplace [my-slim-app] with the desired directory name for your new application. You'll want to:
- Point your virtual host document root to your new application's
public/directory. - Ensure
logs/is web writable.
To run the application in development, you can run these commands.
.env.exampleReplace to.env.
cp .env.example .envcd my-slim-app
composer run serveAfter that, open http://localhost:5000 in your browser.
Run this command in the application directory to run the test suite
composer testThat's it! Now go build something cool.
DB_DRIVER=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_NAME=slim
DB_CHARSET=utf8mb4
DB_USERNAME=root
DB_PASSWORD=