Skip to content

Commit 525ffdc

Browse files
committed
chore: bump PHP and update dependencies
I bumped the minimum PHP version to 8.1 because now this is the minimum stable PHP version available, PHP <= 8.0 is EOL. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 8582253 commit 525ffdc

2 files changed

Lines changed: 51 additions & 2066 deletions

File tree

composer.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
],
2020
"minimum-stability": "stable",
2121
"require": {
22-
"php": "^7.4|^8.0",
22+
"php": "^8.1",
2323
"ext-openssl": "*",
2424
"ext-json": "*"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^9.5"
27+
"bamarni/composer-bin-plugin": "^1.8"
2828
},
2929
"autoload": {
3030
"psr-4": {
@@ -39,5 +39,19 @@
3939
"scripts": {
4040
"test:unit": "vendor/bin/phpunit --no-coverage --colors=always --fail-on-warning --fail-on-risky",
4141
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit"
42+
},
43+
"extra": {
44+
"bamarni-bin": {
45+
"bin-links": true,
46+
"forward-command": true
47+
}
48+
},
49+
"config": {
50+
"allow-plugins": {
51+
"bamarni/composer-bin-plugin": true
52+
},
53+
"platform": {
54+
"php": "8.1"
55+
}
4256
}
4357
}

0 commit comments

Comments
 (0)