/
cloud-castle
/
curl
Обзор
Документация
Войти
/
cloud-castle
/
curl
Код
Запросы
0
Вики
Пакеты
0
Релизы
0
Аналитика
main
rector.php
17 строк
400 B
Алексей Зорин
chore: scaffold cloud-castle/curl package
23 июл 2026, 06:34
23 июл 2026, 06:34
df9fe47
Код
Авторство
О чём код?
<?php declare(strict_types=1); use Rector\Config\RectorConfig; return RectorConfig::configure() ->withPaths([ __DIR__ . '/src', __DIR__ . '/tests', ]) ->withSkip([ __DIR__ . '/tests/Fixtures', ]) ->withCache(__DIR__ . '/var/cache/rector') ->withPhpSets(php81: true) ->withPreparedSets(deadCode: true, codeQuality: true, typeDeclarations: true);