mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-30 23:44:03 +08:00
* chore: add friendsofphp/php-cs-fixer * chore: run make fix * ci: add style check as first test action * chore: use .cache dir for phpunit
17 lines
606 B
PHP
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],
|
|
];
|