Skip to content

Commit 75d22e0

Browse files
authored
Merge pull request #18 from netlogix/feat/php85
feat: Allow PHP 8.5
2 parents 2eb1ddd + 4958a6b commit 75d22e0

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/unittests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php-version: [8.0, 8.1, 8.2, 8.3, 8.4]
14-
flow-version: [8.3, '9.0.0-beta']
13+
php-version: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
14+
flow-version: ['8.3.0', '9.0.0']
1515

1616
exclude:
1717
- php-version: 8.0
18-
flow-version: '9.0.0-beta'
18+
flow-version: '9.0.0'
1919
- php-version: 8.1
20-
flow-version: '9.0.0-beta'
20+
flow-version: '9.0.0'
2121

2222
env:
2323
FLOW_CONTEXT: Testing/Unit
@@ -31,15 +31,15 @@ jobs:
3131
ini-values: opcache.fast_shutdown=0
3232

3333
- name: "[1/5] Create composer project - Cache composer dependencies"
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.composer/cache
3737
key: php-${{ matrix.php-version }}-flow-${{ matrix.flow-version }}-composer-${{ hashFiles('composer.json') }}
3838
restore-keys: |
3939
php-${{ matrix.php-version }}-flow-${{ matrix.flow-version }}-composer-
4040
php-${{ matrix.php-version }}-flow-
4141
- name: "[2/5] Create composer project - No install"
42-
run: composer create-project neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} --prefer-dist --no-progress --no-install "^${{ matrix.flow-version }}"
42+
run: composer create-project neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} --prefer-dist --no-progress --no-install "~${{ matrix.flow-version }}"
4343

4444
- name: "[3/5] Allow neos composer plugin"
4545
run: composer config --no-plugins allow-plugins.neos/composer-plugin true
@@ -54,7 +54,7 @@ jobs:
5454
working-directory: ${{ env.FLOW_DIST_FOLDER }}
5555

5656
- name: Checkout code
57-
uses: actions/checkout@v2
57+
uses: actions/checkout@v6
5858
with:
5959
path: ${{ env.FLOW_DIST_FOLDER }}/DistributionPackages/Netlogix.Migrations
6060

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"MIT"
88
],
99
"require": {
10-
"php": ">=8.0 <8.5",
10+
"php": ">=8.0 <8.6",
1111
"neos/flow": "^8.0 || ^9.0",
1212
"doctrine/migrations": "^3.1"
1313
},

0 commit comments

Comments
 (0)