@@ -18,14 +18,14 @@ local composer(phpversion, params) = {
18
18
volumes: volumes,
19
19
commands: [
20
20
"php -v" ,
21
- "composer update " + params
21
+ "composer update " + params,
22
22
]
23
23
};
24
24
25
25
local phpunit(phpversion) = {
26
26
name: "PHPUnit" ,
27
27
image: "joomlaprojects/docker-images:php" + phpversion,
28
- [if phpversion == "8.0 " 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
{
@@ -110,5 +110,7 @@ local pipeline(name, phpversion, params) = {
110
110
pipeline("7.2" , "7.2" , "--prefer-stable" ),
111
111
pipeline("7.3" , "7.3" , "--prefer-stable" ),
112
112
pipeline("7.4" , "7.4" , "--prefer-stable" ),
113
- pipeline("8.0" , "8.0" , "--ignore-platform-reqs --prefer-stable" )
113
+ pipeline("8.0" , "8.0" , "--prefer-stable" ),
114
+ pipeline("8.1" , "8.1" , "--prefer-stable" ),
115
+ pipeline("8.2" , "8.2" , "--prefer-stable --ignore-platform-reqs" ),
114
116
]
0 commit comments