salamander / quick
dev-master
2018-07-19 03:08 UTC
Requires
- container-interop/container-interop: ^1.2
- nikic/fast-route: ^1.0
- pimple/pimple: ^3.0
- psr/container: ^1.0
This package is not auto-updated.
Last update: 2025-03-30 08:04:24 UTC
README
composer require salamander/quick
quick start
<?php
define("ROOT", __DIR__ . '/..');
define('APP', ROOT . '/app');
require ROOT . '/vendor/autoload.php';
$container = [
'settings' => [
'host' => '0.0.0.0',
'port' => 8888
]
];
$app = new \Quick\App($container);
$app->get('/', '\App\Controller\IndexController:show');
$app->start();