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 .docker/main/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-alpine
FROM php:8.3-alpine

WORKDIR /app
EXPOSE 9000
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ on:
- push
jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest' ]
php-version: [ '8.3', '8.4' ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: ${{ matrix.php-version }}
- name: Prepare
run: composer install
- name: Lint
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
],
"homepage": "https://github.com/jigarius/phpake",
"require": {
"php": ">= 8.0",
"php": "^8.3",
"phpdocumentor/reflection-docblock": "^5.2",
"symfony/console": "^5.3"
"symfony/console": "^6 || ^7"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"drupal/coder": "^8.3",
"ergebnis/composer-normalize": "^2.28",
"phpro/grumphp": "^1.13",
"phpro/grumphp": "^2",
"phpunit/phpunit": "^9.5"
},
"autoload": {
Expand All @@ -39,8 +39,8 @@
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
}
}
}
Loading
Loading