PHP code example of gamee / nette-auto-registrator
1. Go to this page and download the library: Download gamee/nette-auto-registrator 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/ */
gamee / nette-auto-registrator example snippets
declare(strict_types=1);
namespace MyProject\Foo\DI;
use Gamee\AutoRegistrator\DI\AutoRegistratorExtension;
use Nette\DI\CompilerExtension;
final class FooExtension extends CompilerExtension
{
public function loadConfiguration(): void
{
AutoRegistratorExtension::configure(
$this->compiler,
[
'scanDirs' => [__DIR__ . '/..'],
'skipDirs' => [
'Enum'
],
'skipFilesPatterns' => [
'/Extension\.php$/',
'/Event\.php$/',
],
'skipClasses' => [],
]
);
}
}