Skip to content

Commit

Permalink
Merge pull request #19 from netlogix/feature/flow-8
Browse files Browse the repository at this point in the history
FEATURE: Allow usage with Flow 8.0
  • Loading branch information
saschanowak committed Apr 9, 2022
2 parents bebab1c + c6e2082 commit 5aa3090
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 8 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/functionaltests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,30 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ 7.2, 7.3, 7.4, 8.0 ]
flow-version: [ 5.3, 6.3, 7.0 ]
php-version: [ 7.2, 7.3, 7.4, 8.0, 8.1 ]
flow-version: [ 5.3, 6.3, 7.3, 8.0 ]
exclude:
# Disable Flow 5.3 and 6.3 on PHP 8.0, as only ^7.2 is supported
- php-version: 8.0
flow-version: 5.3
- php-version: 8.0
flow-version: 6.3
- php-version: 8.1
flow-version: 5.3
- php-version: 8.1
flow-version: 6.3

# Disable Flow 7.0 on PHP 7.2, as 7.3 is required
- php-version: 7.2
flow-version: 7.0
flow-version: 7.3

# Disable Flow 8.0 on PHP 7, as 8.0 is required
- php-version: 7.2
flow-version: 8.0
- php-version: 7.3
flow-version: 8.0
- php-version: 7.4
flow-version: 8.0

env:
APP_ENV: true
Expand Down
20 changes: 16 additions & 4 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,30 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ 7.2, 7.3, 7.4, 8.0 ]
flow-version: [ 5.3, 6.3, 7.0 ]
php-version: [ 7.2, 7.3, 7.4, 8.0, 8.1 ]
flow-version: [ 5.3, 6.3, 7.3, 8.0 ]
exclude:
# Disable Flow 5.3 and 6.3 on PHP 8.0, as only ^7.2 is supported
- php-version: 8.0
flow-version: 5.3
- php-version: 8.0
flow-version: 6.3
- php-version: 8.1
flow-version: 5.3
- php-version: 8.1
flow-version: 6.3

# Disable Flow 7.0 on PHP 7.2, as 7.3 is required
- php-version: 7.2
flow-version: 7.3

# Disable Flow 7.0 on PHP 7.2, as 7.3 is required
# Disable Flow 8.0 on PHP 7, as 8.0 is required
- php-version: 7.2
flow-version: 7.0
flow-version: 8.0
- php-version: 7.3
flow-version: 8.0
- php-version: 7.4
flow-version: 8.0

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 @@ -15,6 +15,7 @@ Currently the following Flow versions are supported:
* `^5.3`
* `^6.3`
* `^7.0`
* `^8.0`

## Setup

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"neos/flow": "^5.3 || ^6.3 || ^7.0",
"neos/flow": "^5.3 || ^6.3 || ^7.0 || ^8.0",
"sentry/sdk": "^3.1"
},
"autoload": {
Expand Down

0 comments on commit 5aa3090

Please sign in to comment.