# How To Register Custom SetList Constant You can have custom `SetList` class that has constants that pointed to your own config, for example: ```php import(SetList::MY_FRAMEWORK_20); $parameters = $containerConfigurator->parameters(); $parameters->set(Option::PATHS, [__DIR__ . '/src']); }; ``` Note that if you are looking for the downgrade categories, there is already the `DowngradeSetList`: ```php import(DowngradeSetList::PHP_70) $parameters = $containerConfigurator->parameters(); $parameters->set(Option::PATHS, [__DIR__ . '/src']); }; ```