PHP code example of flagbit / shopware-maintenance

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

    

flagbit / shopware-maintenance example snippets


// config/bundles.php

return [
    // ...
    Flagbit\Shopware\ShopwareMaintenance\ShopwareMaintenance::class => ['all' => true],
];

# config/plugins.php

 declare(strict_types=1);

# be a were this is a sorted list because of plugin dependencies may occur
return [
    'SwagMarkets' => false,          # disabled
    'SwagPayPal' => true,            # enabled
    'SwagPlatformDemoData' => false, # disabled
];