PHP code example of iyaki / the-no-framework

1. Go to this page and download the library: Download iyaki/the-no-framework library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

iyaki / the-no-framework example snippets






declare(strict_types = 1);

use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;

final class MyRequestHandler implements RequestHandlerInterface
{
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        /* Do stuffs */
    }
}
\TheNoFramework\ApplicationWrapper::run(MyRequestHandler::class);
ini
auto_prepend_file = /full/path/to/bootstrap.php
shell
php -d auto_prepend_file=path/to/bootstrap.php -S localhost:8080 -t public/