Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Apr 15, 2024
1 parent 5d4f4af commit 9152eba
Show file tree
Hide file tree
Showing 7 changed files with 275 additions and 261 deletions.
4 changes: 4 additions & 0 deletions api/bin/console
Expand Up @@ -4,6 +4,10 @@
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;

if (!is_dir(dirname(__DIR__).'/vendor')) {
throw new LogicException('Dependencies are missing. Try running "composer install".');
}

if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
Expand Down
114 changes: 58 additions & 56 deletions api/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions api/config/packages/doctrine.yaml
Expand Up @@ -22,6 +22,8 @@ doctrine:
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App
controller_resolver:
auto_mapping: true

when@test:
doctrine:
Expand Down

0 comments on commit 9152eba

Please sign in to comment.