PHP code example of isaeken / plugin-system

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

    

isaeken / plugin-system example snippets


// config/plugins.php


return [
    'directory' => base_path('plugins'),
    'namespace' => '',
];

\IsaEken\PluginSystem\PluginSystemServiceProvider::class

$pluginSystem = new \IsaEken\PluginSystem\PluginSystem();
$pluginSystem->load(__DIR__ . '/plugins');
$pluginSystem->handle();

app('plugins')->handle();
bash
php artisan vendor:publish --provider="IsaEken\PluginSystem\PluginSystemServiceProvider"