omi / slim-doctrine-skeleton
A Slim Framework skeleton application for rapid development with doctrine
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: ^7.2
- ext-json: *
- doctrine/annotations: ^1.11
- doctrine/orm: ^2.8
- illuminate/database: ^8.25
- monolog/monolog: ^2.0
- php-di/php-di: ^6.1
- phpoption/phpoption: ^1.7
- slim/psr7: ^1.1
- slim/slim: ^4.5
- vlucas/phpdotenv: ^5.3
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is not auto-updated.
Last update: 2025-04-14 15:00:43 UTC
README
Use this skeleton application to quickly setup and start working on a new Slim Framework 4 application. This application uses the latest Slim 4 with Slim PSR-7 implementation and PHP-DI container implementation. It also uses the Monolog logger.
This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.
Install the Application
Run this command from the directory in which you want to install your new Slim Framework application.
composer create-project omi/slim-doctrine-skeleton [my-app-name]
Replace [my-app-name]
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.