AspireSync/config/bundles.php
Chuck Adams 565d1d1660
use php-cs-fixer for style linting (#37)
* chore: add friendsofphp/php-cs-fixer

* chore: run make fix

* ci: add style check as first test action

* chore: use .cache dir for phpunit
2024-12-01 09:41:52 -07:00

17 lines
606 B
PHP

<?php
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
use League\FlysystemBundle\FlysystemBundle;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\MakerBundle\MakerBundle;
use Symfony\Bundle\MonologBundle\MonologBundle;
return [
FrameworkBundle::class => ['all' => true],
FlysystemBundle::class => ['all' => true],
DoctrineBundle::class => ['all' => true],
MonologBundle::class => ['all' => true],
MakerBundle::class => ['dev' => true],
DoctrineMigrationsBundle::class => ['all' => true],
];