Skip to content

Commit 987eb91

Browse files
committed
[TASK] Add Tests For PHP 8.2
Resolves: #86
1 parent 9ffcd2c commit 987eb91

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitlab-ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ lint:php81:
8080
script:
8181
- find . -name \*.php -exec php -l "{}" \;
8282

83+
lint:php82:
84+
stage: lint
85+
image: php:8.2-alpine
86+
script:
87+
- find . -name \*.php -exec php -l "{}" \;
88+
8389
.test: &test_php
8490
stage: test
8591
services:
@@ -145,25 +151,36 @@ test:php74:typo3_10:
145151
TYPO3_VERSION: ^10.4
146152
COVERAGE: 0
147153

154+
# Build in PHP 7.4 and TYPO3 11.5
148155
test:php74:typo3_11:
149156
<<: *test_php
150157
variables:
151158
DOCKER_TAG: 7.4-alpine
152159
TYPO3_VERSION: ^11.5
153160
COVERAGE: 0
154161

162+
# Build in PHP 8.0 and TYPO3 11.5
155163
test:php80:typo3_11:
156164
<<: *test_php
157165
variables:
158166
DOCKER_TAG: 8.0-alpine
159167
TYPO3_VERSION: ^11.5
160168
COVERAGE: 0
161169

170+
# Build in PHP 8.1 and TYPO3 11.5
162171
test:php81:typo3_11:
163172
<<: *test_php
164173
variables:
165174
DOCKER_TAG: 8.1-alpine
166175
TYPO3_VERSION: ^11.5
176+
COVERAGE: 0
177+
178+
# Build in PHP 8.2 and TYPO3 11.5
179+
test:php82:typo3_11:
180+
<<: *test_php
181+
variables:
182+
DOCKER_TAG: 8.2-alpine
183+
TYPO3_VERSION: ^11.5
167184
COVERAGE: 1
168185

169186
documentation:

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'modify_tables' => '',
1818
'clearCacheOnLoad' => 0,
1919
'lockType' => '',
20-
'version' => '4.0.2',
20+
'version' => '4.1.0',
2121
'constraints' => [
2222
'depends' => [
2323
'typo3' => '10.4.0-11.5.99',

0 commit comments

Comments
 (0)