PHP code example of mikebirch / anticus-app

1. Go to this page and download the library: Download mikebirch/anticus-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/ */

    

mikebirch / anticus-app example snippets


$config['environment'] = 'dev';
$config['database'] = [
    'type' => 'mysql',
    'name' => 'dbname',
    'host' => 'mysql',
    'username' => 'dbuser',
    'password' => '123',
    'charset' => 'utf8mb4'
];