Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-push-test-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6

- name: Build the app
uses: openconext/build-and-publish-test-container/php82-node20@main
uses: openconext/build-and-publish-test-container/php85-node24@main
with:
use_yarn: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run:
working-directory: /var/www/html/
container:
image: ghcr.io/openconext/openconext-basecontainers/php82-apache2-node20-composer2:latest
image: ghcr.io/openconext/openconext-basecontainers/php85-apache2-node24:latest
volumes:
- .:/var/www/html

Expand Down
4 changes: 2 additions & 2 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ build:
# Use Ubuntu 22.04.5 LTS (Jammy Jellyfish)
image: default-jammy
environment:
php: 8.2
node: v20
php: 8.5
node: v24

filter:
excluded_paths:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

# 6.0.1
- Upgrade Docker base images, Composer dependencies, and npm dependencies to support PHP 8.5 #533

# 6.0.0
- Upgrade code to run on Symfony 7.4

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This component is part of "Step-up Authentication as-a Service" and requires oth

## Requirements

* PHP 8.2
* PHP 8.5
* [Composer](https://getcomposer.org/)
* A web server (Apache, Nginx)
* A working [Gateway](https://github.com/OpenConext/Stepup-Gateway)
Expand Down
5 changes: 5 additions & 0 deletions ci/qa/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

return RectorConfig::configure()
->withPaths([
__DIR__ . '/../../bin',
__DIR__ . '/../../config',
__DIR__ . '/../../src',
__DIR__ . '/../../templates',
Expand All @@ -15,4 +16,8 @@
->withComposerBased(twig: true, doctrine: true, phpunit: true, symfony: true)
->withPHPStanConfigs([__DIR__.'/phpstan.neon'])
// ->withPreparedSets(deadCode: true)
->withSkip([
\Rector\Php84\Rector\MethodCall\NewMethodCallWithoutParenthesesRector::class,
\Rector\Php84\Rector\Class_\DeprecatedAnnotationToDeprecatedAttributeRector::class,
])
;
4 changes: 2 additions & 2 deletions component_info
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PHP_VERSION=82
PHP_VERSION=85
SYMFONY_VERSION=7
ENCORE=yes
NODE_VERSION=20
NODE_VERSION=24
ASSETIC=no
COMPOSER_VERSION=2
TEST_EXTRA_DIRS="ci/"
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"php": "^8.5",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand Down Expand Up @@ -55,7 +55,7 @@
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^11.5.48",
"rector/rector": "^2.3",
"rector/rector": "^2.4",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.26",
"squizlabs/php_codesniffer": "^4.0",
Expand Down Expand Up @@ -122,7 +122,7 @@
"endroid/installer": false
},
"platform": {
"php": "8.2"
"php": "8.5"
},
"optimize-autoloader": true,
"sort-packages": true
Expand Down
Loading