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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/php:1": {
"version": "8.3",
"version": "8.4",
"installComposer": true
}
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401
with:
php-version: '8.3'
php-version: '8.4'
tools: composer, infection
coverage: pcov

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN /usr/bin/composer install \
--classmap-authoritative \
--working-dir=/opt/representer

FROM php:8.3-cli-alpine
FROM php:8.4-cli-alpine

COPY --from=builder /opt/representer /opt/representer

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"type": "project",
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.3",
"league/flysystem": "^3.0",
"league/flysystem-memory": "^3.0",
"nikic/php-parser": "^5.0",
"psr/log": "^3.0",
"symfony/console": "^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"doctrine/coding-standard": "^13.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.1",
"phpunit/phpunit": "^12.1",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
Expand Down
Loading
Loading