PHP code example of locomotivemtl / charcoal-app
1. Go to this page and download the library: Download locomotivemtl/charcoal-app 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/ */
locomotivemtl / charcoal-app example snippets
use \Charcoal\App\App;
use \Charcoal\App\AppConfig;
use \Charcoal\App\AppContainer;
ig->set('ROOT', dirname(__DIR__) . '/');
// Create container and configure it (with charcoal-config)
$container = new AppContainer([
'settings' => [
'displayErrorDetails' => true
],
'config' => $config
]);
// Charcoal / Slim is the main app
$app = App::instance($container);
$app->run();