jschreuder / middle-skeleton
A Middle framework setup for a new project.
Requires
- php: >=8.3
- ext-pdo: *
- jschreuder/middle: ^2.1
- jschreuder/middle-di: ^1.0
- laminas/laminas-diactoros: ^3.5
- laminas/laminas-httphandlerrunner: ^2.11
- monolog/monolog: ^3.8
- robmorgan/phinx: ^0.16
- symfony/console: ^7.2
- symfony/routing: ^7.2
Requires (Dev)
- mockery/mockery: ^1.6
- pestphp/pest: ^3.7
This package is auto-updated.
Last update: 2025-03-16 10:41:14 UTC
README
A basic (though opinionated) setup for Middle framework. It is set up with the following:
- Laminas Diactoros as HTTP Message implementation, along with Laminas HTTP handlerrunner for emitting responses
- Monolog for logging
- Symfony Router
- Pest PHP for elegant testing
- Phinx for database migrations
- Symfony console for commandline commands
- JSON middleware to support requests with a JSON content-type body
Installation
On the commandline use composer:
composer create-project jschreuder/middle-skeleton myapp dev-master
After this you will have to make the logs directory writeable:
chmod 0755 var/logs
Next you'll setup your configuration files. Modify the database credentials in dev.php
to your liking. You can change environment by renaming the dev.php
file and editing the return value of env.php
to return that name.
mv etc/dev.php.dist etc/dev.php mv etc/env.php.dist etc/env.php
After this you should also set the correct credentials in the environment config file if you intend to use a database.
Finally: you might want to put everything under a different namespace ;-)
Test if it works
Go to the commandline and enter ./console middle:example MyName
to show a welcome message. The command is located in src/Command/ExampleCommand.php
.
Go to the commandline and into the web
directory, enter php -S localhost:8080
and go to http://localhost:8080
in your browser. It should show a JSON encoded Hello World message. The controller for this is located in src/Controller/ExampleController.php
, the routing is set up in src/GeneralRoutingProvider.php
.
Run ./vendor/bin/pest
to run the test suite.
The wiring
There's a few files in which the application is wired together:
- The
etc/app_init.php
which loads the autoloader, sets some reasonable environment settings, sets up Monolog, and initiates the DiC with theGeneralServiceProvider
- The
web/index.php
which is the entry point for the web application and will load the routes & run the request through the application - The
console
which registers the commands - The DiC is configured in the
ServiceContainer
class - Routing is configured in the
GeneralRoutingProvider
class - Console commands are configured in the
ConsoleCommandsProvider
class
Included in Middle framework
There's a few things included in Middle framework you might want to consider but have not been set up yet:
- Sessions: You can use the
SessionMiddleware
along with the Laminas implementation to add session support to the application. Note that you will need to install the Laminas Session package as well. - Views / templates: You can use the
View
andRenderer
classes with Twig to generate output from powerful templates. Or implement your own view layer based on the available interfaces. - Use request validators & request filters to check HTTP requests before they reach their controller.