You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
373 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <?php
  2. declare(strict_types=1);
  3. use craft\ecs\SetList;
  4. use Symplify\EasyCodingStandard\Config\ECSConfig;
  5. return static function(ECSConfig $ecsConfig): void {
  6. $ecsConfig->parallel();
  7. $ecsConfig->paths([
  8. __DIR__ . '/bootstrap',
  9. __DIR__ . '/src',
  10. __DIR__ . '/tests',
  11. __FILE__,
  12. ]);
  13. $ecsConfig->sets([SetList::CRAFT_CMS_3]);
  14. };