diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f36893..b9bba79 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,21 +17,15 @@ jobs: fail-fast: false matrix: php-version: - - '7.4' - - '8.0' - '8.1' + - '8.2' symfony-version: - - '4.4.*' - - '5.4.*' - - '6.0.*' - - '6.1.*' + - '6.2.*' + - '6.4.*' + - '7.0.*' exclude: - - php-version: '7.4' - symfony-version: '6.0.*' - - php-version: '7.4' - symfony-version: '6.1.*' - - php-version: '8.0' - symfony-version: '6.1.*' + - php-version: '8.1' + symfony-version: '7.0.*' steps: - name: Checkout uses: actions/checkout@v3 @@ -70,7 +64,7 @@ jobs: with: coverage: none ini-values: "memory_limit=-1, zend.assertions=1" - php-version: 7.4 + php-version: 8.1 tools: composer:v2, flex - name: Install dependencies @@ -94,7 +88,7 @@ jobs: with: coverage: none ini-values: "memory_limit=-1, zend.assertions=1" - php-version: 8.1 + php-version: 8.2 tools: composer:v2, flex - name: Validate composer.json @@ -113,7 +107,7 @@ jobs: with: coverage: none ini-values: "memory_limit=-1, zend.assertions=1" - php-version: 8.1 + php-version: 8.2 tools: composer:v2, flex - name: Install dependencies diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index fdfe9d1..c34b1c1 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -11,7 +11,7 @@ If you're starting a new project, we recommend to use Symfony with Flex as it's the most straightforward way. If you're adding this extension to an existing project, pick the method that fits it the best. -### Symfony 4/5 (with Flex) +### Symfony 6/7 (with Flex) 1. Require this extension using *Composer* and allow for using contrib recipes: @@ -19,7 +19,7 @@ If you're adding this extension to an existing project, pick the method that fit composer require --dev friends-of-behat/symfony-extension:^2.0 ``` -### Symfony 4/5 (new directory structure, without Flex) +### Symfony 6/7 (new directory structure, without Flex) 1. Require this extension using *Composer*: diff --git a/README.md b/README.md index 1d52165..2364e5a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@