1. Go to this page and download the library: Download drago-ex/bootstrap 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/ */
drago-ex / bootstrap example snippets
use Drago\Bootstrap\Drago\Bootstrap\ExtraConfigurator;
$configurator = new ExtraConfigurator();
// Add configuration files from the 'config' directory
$configurator->addFindConfig(__DIR__ . '/config');
// Access the application (you can configure services, routing, etc.)
$app = $configurator->app();
use Tracy\Debugger;
// Enable production mode to use persistent cache
Debugger::$productionMode = true;
// Cache is automatically handled and invalidated only when necessary
$configurator->addFindConfig(__DIR__ . '/config');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.