Skip to content

Commit 423dd23

Browse files
Merge pull request #39 from netlogix/feat/neos9
feat: Update for Flow 9
2 parents d42718a + f07c791 commit 423dd23

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/workflows/functionaltests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php-version: [ 7.4, 8.0, 8.1 ]
14-
flow-version: [ 7.3, 8.0 ]
13+
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
14+
flow-version: [ 8.0, '9.0.0-beta' ]
1515
exclude:
16-
# Disable Flow 8.0 on PHP 7, as 8.0 is required
17-
- php-version: 7.4
18-
flow-version: 8.0
16+
- php-version: 8.0
17+
flow-version: '9.0.0-beta'
18+
- php-version: 8.1
19+
flow-version: '9.0.0-beta'
1920

2021
env:
2122
APP_ENV: true

.github/workflows/unittests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php-version: [ 7.4, 8.0, 8.1 ]
14-
flow-version: [ 7.3, 8.0 ]
13+
php-version: [ 8.0, 8.1, 8.2, 8.3 ]
14+
flow-version: [ 8.3, '9.0.0-beta' ]
1515
exclude:
16-
# Disable Flow 8.0 on PHP 7, as 8.0 is required
17-
- php-version: 7.4
18-
flow-version: 8.0
16+
- php-version: 8.0
17+
flow-version: '9.0.0-beta'
18+
- php-version: 8.1
19+
flow-version: '9.0.0-beta'
1920

2021
env:
2122
APP_ENV: true

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Currently the following Flow versions are supported:
1414

1515
* `^7.3`
1616
* `^8.0`
17+
* `^9.0`
1718

1819
## Setup
1920

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"type": "neos-package",
55
"license": "MIT",
66
"require": {
7-
"php": "^7.4 || ^8.0",
8-
"neos/flow": "^7.3.6 || ^8.0.4",
7+
"php": "^8.0",
8+
"neos/flow": "^7.3.6 || ^8.0.4 || ~9.0.0",
99
"sentry/sdk": "^3.1",
1010
"ext-openssl": "*",
1111
"ext-json": "*"

0 commit comments

Comments
 (0)