PHP code example of tecnodesignc / core-module
1. Go to this page and download the library: Download tecnodesignc/core-module 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/ */
tecnodesignc / core-module example snippets
// config/app.php
'providers' => [
...
Modules\Core\Pagecache\ResponseCache\ResponseCacheServiceProvider::class,
];
// config/app.php
'aliases' => [
...
'ResponseCache' => Modules\Core\Pagecache\ResponseCache::class,
];
bash
php artisan vendor:publish --provider="Modules\Core\Pagecache\ResponseCache\ResponseCacheServiceProvider"
bash
php artisan pagecache:clear