PHP code example of matesofmate / composer-extension
1. Go to this page and download the library: Download matesofmate/composer-extension 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/ */
matesofmate / composer-extension example snippets
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $container): void {
$container->parameters()->set('matesofmate_composer.custom_command', [
'docker', 'compose', 'exec', 'php', 'composer',
]);
};