3 Bounded Contexts (Sales, Invoicing, LegacyFulfillment) avec : - Domaines complets (agrégats, VOs, événements, invariants) - Couche application (commands, queries, ports) - Infrastructure in-memory (repos, gateway fake) - Controllers HTTP Symfony - Couplage naïf synchrone entre BC via NaiveSalesEventPublisher - 20 tests unitaires et d'intégration passants
22 lines
596 B
PHP
Executable File
22 lines
596 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Kernel;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
|
use Symfony\Component\Dotenv\Dotenv;
|
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
(new Dotenv())->bootEnv(dirname(__DIR__) . '/.env');
|
|
|
|
$input = new ArgvInput();
|
|
$env = $input->getParameterOption(['--env', '-e'], $_SERVER['APP_ENV'] ?? 'dev', true);
|
|
$debug = (bool) ($_SERVER['APP_DEBUG'] ?? ($env !== 'prod'));
|
|
|
|
$kernel = new Kernel($env, $debug);
|
|
$application = new Application($kernel);
|
|
$application->run($input);
|