PHP code example of royalcms / readme

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

    

royalcms / readme example snippets


Royalcms\Component\Readme\ReadmeServiceProvider::class,

public function register()
{
    if ($this->royalcms->environment() == 'local') {
        $this->royalcms->register('Royalcms\Component\Readme\ReadmeServiceProvider');
    }
    // ...
}

'route' => [
        'prefix' => '/readme/{packageName?}',
        'action' => 'Royalcms\Component\Readme\Controllers\ReadmeController@index',
        'name' => 'readme.index',
],
bash
php artisan vendor:publish --tag=readme