@@ -25,7 +25,7 @@ local composer(phpversion, params) = {
25
25
local phpunit(phpversion) = {
26
26
name: "PHPUnit" ,
27
27
image: "joomlaprojects/docker-images:php" + phpversion,
28
- [if phpversion == "8.1 " then "failure" ]: "ignore" ,
28
+ [if phpversion == "8.2 " then "failure" ]: "ignore" ,
29
29
commands: ["vendor/bin/phpunit" ]
30
30
};
31
31
@@ -61,7 +61,7 @@ local pipeline(name, phpversion, params) = {
61
61
depends: [ "composer" ],
62
62
commands: [
63
63
"vendor/bin/phpcs --config-set installed_paths vendor/joomla/coding-standards" ,
64
- "vendor/bin/phpcs -p --report=full --extensions=php - -standard=ruleset.xml src/"
64
+ "vendor/bin/phpcs --standard=ruleset.xml src/"
65
65
]
66
66
},
67
67
{
@@ -111,5 +111,6 @@ local pipeline(name, phpversion, params) = {
111
111
pipeline("7.3" , "7.3" , "--prefer-stable" ),
112
112
pipeline("7.4" , "7.4" , "--prefer-stable" ),
113
113
pipeline("8.0" , "8.0" , "--prefer-stable" ),
114
- pipeline("8.1" , "8.1" , "--prefer-stable" )
114
+ pipeline("8.1" , "8.1" , "--prefer-stable" ),
115
+ pipeline("8.2" , "8.2" , "--prefer-stable --ignore-platform-reqs" ),
115
116
]
0 commit comments