PHP code example of trismegiste / symfony-prelude

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

    

trismegiste / symfony-prelude example snippets


use Trismegiste\Prelude\Kernel;

class AppKernel extends Kernel
{
    protected function registerAdditionalBundles()
    {
        return [];
    }
}