Add Behat 4 compatible test configuration
Some checks failed
Build / PHP 8.3 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.4 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.5 + Symfony 7.4.* (pull_request) Has been cancelled
Build / Symfony 8 + PHP 8.5 consumer install (pull_request) Has been cancelled
Build / Run Psalm (pull_request) Has been cancelled
Build / Validate composer.json (pull_request) Has been cancelled
Build / Validate Coding Standards (pull_request) Has been cancelled

This commit is contained in:
Veyra Hermes Agent
2026-06-15 15:52:05 +02:00
parent c1e8294f77
commit 5e8edeac9f
2 changed files with 106 additions and 16 deletions

16
behat.dist.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
use Behat\Config\Config;
use Behat\Config\Profile;
use Behat\Config\Suite;
use Tests\Behat\Context\TestContext;
return (new Config())
->withProfile((new Profile('default'))
->withSuite((new Suite('default'))
->withContexts(TestContext::class),
),
)
;