PHP without a framework: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
* '''Dependency injection:''' [https://php-di.org/ PHP-DI] | * '''Dependency injection:''' [https://php-di.org/ PHP-DI] | ||
* '''PSR-15 | * '''PSR-15 middleware dispatcher:''' [https://github.com/relayphp/Relay.Relay Relay] | ||
* '''PSR-7 implementation:''' | * '''PSR-7 implementation:''' | ||
* '''Error handling:''' [https://github.com/filp/whoops whoops] | * '''Error handling:''' [https://github.com/filp/whoops whoops] |
Revision as of 16:58, 13 March 2021
Dependencies
The following dependencies are all actively maintained and available via Composer:
- Dependency injection: PHP-DI
- PSR-15 middleware dispatcher: Relay
- PSR-7 implementation:
- Error handling: whoops
PHP built-in server
The PHP built-in server is sufficient for most purposes. Create a configuration file, local.ini
:
error_reporting = E_ALL display_errors = On
Start the server:
php -S localhost:8000 -t public -c local.ini
Instructions
Initialise composer project:
composer init
Create skeleton directory structure:
mkdir public src
Add dependencies:
composer require php-di/php-di composer require filp/whoops
Create Bootstrap file at src/Bootstrap.php
:
<?php declare(strict_types = 1); require_once __DIR__ . '/../vendor/autoload.php'; $whoops = new Whoops\Run; $whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler); $whoops->register();
Create skeleton front controller at public/index.php
:
<?php declare(strict_types = 1); require_once __DIR__ . '/../vendor/autoload.php';
Create HelloWorld
class in src/HelloWorld.php
:
<?php declare(strict_types = 1); namespace MyApp; class HelloWorld { public function hello() : void { echo 'Hello World'; } }