Skip to content

Commit ba4f4b2

Browse files
authored
Merge pull request #991 from azjezz/migrate-to-psl-6
chore: migrate to php-standard-library version 6 and drop php 8.3
2 parents 858325e + 540908b commit ba4f4b2

11 files changed

Lines changed: 2252 additions & 438 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
dependencies:
4646
- "locked"
4747
php-version:
48-
- "8.3"
4948
- "8.4"
5049
- "8.5"
5150
operating-system:
@@ -98,7 +97,7 @@ jobs:
9897
dependencies:
9998
- "locked"
10099
php-version:
101-
- "8.3"
100+
- "8.4"
102101
operating-system:
103102
- "ubuntu-latest"
104103

composer.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22
"name": "roave/backward-compatibility-check",
33
"description": "Tool to compare two revisions of a public API to check for BC breaks",
44
"require": {
5-
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
5+
"php": "~8.4.0 || ~8.5.0",
66
"ext-dom": "*",
77
"ext-json": "*",
88
"ext-libxml": "*",
99
"ext-simplexml": "*",
10-
"azjezz/psl": "^4.2.1",
10+
"php-standard-library/iter": "^6.0",
11+
"php-standard-library/async": "^6.0",
12+
"php-standard-library/str": "^6.0",
13+
"php-standard-library/env": "^6.0",
14+
"php-standard-library/filesystem": "^6.0",
15+
"php-standard-library/json": "^6.0",
16+
"php-standard-library/type": "^6.0",
17+
"php-standard-library/regex": "^6.0",
18+
"php-standard-library/foundation": "^6.0",
19+
"php-standard-library/dict": "^6.0",
20+
"php-standard-library/file": "^6.0",
21+
"php-standard-library/vec": "^6.0",
22+
"php-standard-library/shell": "^6.0",
1123
"composer/composer": "^2.9.5",
1224
"nikic/php-parser": "^5.7.0",
1325
"nikolaposa/version": "^4.2.1",
@@ -29,6 +41,8 @@
2941
"require-dev": {
3042
"doctrine/coding-standard": "^14.0.0",
3143
"justinrainbow/json-schema": "^6.7.2",
44+
"php-standard-library/hash": "^6.0",
45+
"php-standard-library/secure-random": "^6.0",
3246
"php-standard-library/psalm-plugin": "^2.3.0",
3347
"phpunit/phpunit": "^12.5.12",
3448
"psalm/plugin-phpunit": "^0.19.5",
@@ -58,7 +72,7 @@
5872
"config": {
5973
"sort-packages": true,
6074
"platform": {
61-
"php": "8.3.99"
75+
"php": "8.4.99"
6276
},
6377
"allow-plugins": {
6478
"dealerdirect/phpcodesniffer-composer-installer": true,

0 commit comments

Comments
 (0)