Skip to content

Commit 85c3b57

Browse files
authored
PHP 8.4 support (#111)
1 parent d44d3cf commit 85c3b57

9 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/bc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
os: >-
3131
['ubuntu-latest']
3232
php: >-
33-
['8.3']
33+
['8.4']

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: >-
3232
['ubuntu-latest', 'windows-latest']
3333
php: >-
34-
['8.1', '8.2', '8.3']
34+
['8.1', '8.2', '8.3', '8.4']

.github/workflows/composer-require-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: >-
3232
['ubuntu-latest']
3333
php: >-
34-
['8.1', '8.2', '8.3']
34+
['8.1', '8.2', '8.3', '8.4']

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
os: >-
2222
['ubuntu-latest']
2323
php: >-
24-
['8.3']
24+
['8.4']

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
os: >-
3030
['ubuntu-latest']
3131
php: >-
32-
['8.1', '8.2', '8.3']
32+
['8.1', '8.2', '8.3', '8.4']

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 2.0.1 under development
44

55
- Enh #110: Bump `yiisoft/rbac` version to `^2.1` (@vjik)
6+
- Chg #111: Change PHP constraint in `composer.json` to `8.1 - 8.4` (@vjik)
67

78
## 2.0.0 March 07, 2024
89

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
],
3030
"require": {
31-
"php": "^8.1",
31+
"php": "8.1 - 8.4",
3232
"yiisoft/rbac": "^2.1",
3333
"yiisoft/var-dumper": "^1.7"
3434
},
@@ -39,7 +39,7 @@
3939
"rector/rector": "^2.0.11",
4040
"roave/infection-static-analysis-plugin": "^1.35",
4141
"spatie/phpunit-watcher": "^1.24",
42-
"vimeo/psalm": "^5.26.1",
42+
"vimeo/psalm": "^5.26.1 || ^6.10",
4343
"yiisoft/files": "^1.0.2"
4444
},
4545
"autoload": {

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
colors="true"
66
failOnRisky="true"
77
failOnWarning="true"
8+
failOnDeprecation="true"
89
stopOnFailure="false"
910
executionOrder="random"
1011
resolveDependencies="true"

psalm.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
errorLevel="1"
44
findUnusedBaselineEntry="true"
55
findUnusedCode="false"
6+
ensureOverrideAttribute="false"
67
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
78
xmlns="https://getpsalm.org/schema/config"
89
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"

0 commit comments

Comments
 (0)