Skip to content

Commit

Permalink
Merge pull request #39 from netlogix/feat/neos9
Browse files Browse the repository at this point in the history
feat: Update for Flow 9
  • Loading branch information
stephanschuler authored Nov 4, 2024
2 parents d42718a + f07c791 commit 423dd23
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/functionaltests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ 7.4, 8.0, 8.1 ]
flow-version: [ 7.3, 8.0 ]
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
flow-version: [ 8.0, '9.0.0-beta' ]
exclude:
# Disable Flow 8.0 on PHP 7, as 8.0 is required
- php-version: 7.4
flow-version: 8.0
- php-version: 8.0
flow-version: '9.0.0-beta'
- php-version: 8.1
flow-version: '9.0.0-beta'

env:
APP_ENV: true
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ 7.4, 8.0, 8.1 ]
flow-version: [ 7.3, 8.0 ]
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
flow-version: [ 8.3, '9.0.0-beta' ]
exclude:
# Disable Flow 8.0 on PHP 7, as 8.0 is required
- php-version: 7.4
flow-version: 8.0
- php-version: 8.0
flow-version: '9.0.0-beta'
- php-version: 8.1
flow-version: '9.0.0-beta'

env:
APP_ENV: true
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Currently the following Flow versions are supported:

* `^7.3`
* `^8.0`
* `^9.0`

## Setup

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "neos-package",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"neos/flow": "^7.3.6 || ^8.0.4",
"php": "^8.0",
"neos/flow": "^7.3.6 || ^8.0.4 || ~9.0.0",
"sentry/sdk": "^3.1",
"ext-openssl": "*",
"ext-json": "*"
Expand Down

0 comments on commit 423dd23

Please sign in to comment.