PHP code example of nemo64 / environment
1. Go to this page and download the library: Download nemo64/environment 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/ */
nemo64 / environment example snippets
class MyConfigurator implements \Nemo64\Environment\Configurator\ConfiguratorInterface
{
public function getInfluences(): array
{
return [
\Nemo64\Environment\Configurator\GitignoreConfigurator::class,
];
}
public function configure(\Nemo64\Environment\ExecutionContext $context): void
{
$context->get(\Nemo64\Environment\Configurator\GitignoreConfigurator::class)->add('/tmpdir');
}
}