Skip to content

Commit 8305dc5

Browse files
committed
Use PHP 8.3
1 parent 2d5ea64 commit 8305dc5

File tree

5 files changed

+2472
-1212
lines changed

5 files changed

+2472
-1212
lines changed

.docker/main/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-alpine
1+
FROM php:8.3-alpine
22

33
WORKDIR /app
44
EXPOSE 9000

.github/workflows/validation.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ on:
33
- push
44
jobs:
55
test:
6-
runs-on: ubuntu-latest
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
matrix:
9+
os: [ 'ubuntu-latest' ]
10+
php-version: [ '8.3', '8.4' ]
711
steps:
812
- uses: actions/checkout@v2
913
- uses: shivammathur/setup-php@v2
1014
with:
11-
php-version: '8.0'
15+
php-version: ${{ matrix.php-version }}
1216
- name: Prepare
1317
run: composer install
1418
- name: Lint

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
],
1515
"homepage": "https://github.com/jigarius/phpake",
1616
"require": {
17-
"php": ">= 8.0",
17+
"php": "^8.3",
1818
"phpdocumentor/reflection-docblock": "^5.2",
19-
"symfony/console": "^5.3"
19+
"symfony/console": "^6 || ^7"
2020
},
2121
"require-dev": {
2222
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
2323
"drupal/coder": "^8.3",
2424
"ergebnis/composer-normalize": "^2.28",
25-
"phpro/grumphp": "^1.13",
25+
"phpro/grumphp": "^2",
2626
"phpunit/phpunit": "^9.5"
2727
},
2828
"autoload": {
@@ -39,8 +39,8 @@
3939
"config": {
4040
"allow-plugins": {
4141
"dealerdirect/phpcodesniffer-composer-installer": true,
42-
"phpro/grumphp": true,
43-
"ergebnis/composer-normalize": true
42+
"ergebnis/composer-normalize": true,
43+
"phpro/grumphp": true
4444
}
4545
}
4646
}

0 commit comments

Comments
 (0)