Skip to content

Commit 34bc469

Browse files
authored
Merge pull request #15 from veewee/PHP83
Allow PHP83
2 parents 4ef7477 + 530d0f9 commit 34bc469

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/analyzers.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2']
10+
php-versions: ['8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.github/workflows/code-style.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2']
10+
php-versions: ['8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.1', '8.2']
10+
php-versions: ['8.1', '8.2', '8.3']
1111
fail-fast: false
1212
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
1313
steps:

.phive/phars.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="psalm" version="^5.9.0" installed="5.9.0" location="./tools/psalm.phar" copy="true"/>
3+
<phar name="psalm" version="^5.9.0" installed="5.16.0" location="./tools/psalm.phar" copy="true"/>
44
<phar name="php-cs-fixer" version="^3.30.0" installed="3.39.0" location="./tools/php-cs-fixer.phar" copy="true"/>
55
</phive>

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.1.0 || ~8.2.0",
22+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
2323
"ext-dom": "*",
2424
"ext-openssl": "*",
2525
"azjezz/psl": "^2.1",
@@ -47,7 +47,8 @@
4747
},
4848
"config": {
4949
"allow-plugins": {
50-
"cweagans/composer-patches": true
50+
"cweagans/composer-patches": true,
51+
"php-http/discovery": true
5152
}
5253
}
5354
}

tools/psalm.phar

324 KB
Binary file not shown.

0 commit comments

Comments
 (0)