Skip to content

Commit d8724b8

Browse files
committed
Drop php7 requirement and update development dependencies
1 parent 1df0801 commit d8724b8

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
php: [ '7.4', '8.0', '8.1' ]
13+
php: ['8.1']
1414
composer-flags: [ '' ]
1515
phpunit-flags: [ '--coverage-text' ]
1616
steps:

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,24 @@
4040
"psl"
4141
],
4242
"require": {
43-
"php": "^7.4 || ^8.0",
43+
"php": "^8.1",
4444
"ext-filter": "*",
4545
"ext-intl": "*",
4646
"ext-json": "*"
4747
},
4848
"require-dev": {
49-
"friendsofphp/php-cs-fixer": "^v3.5.0",
50-
"guzzlehttp/guzzle": "^7.0",
51-
"guzzlehttp/psr7": "^1.6||^2.0",
52-
"phpstan/phpstan": "^1.4.6.",
53-
"phpstan/phpstan-phpunit": "^1.0.0",
54-
"phpstan/phpstan-strict-rules": "^1.1.0",
55-
"phpunit/phpunit": "^9.5.13",
56-
"psalm/plugin-phpunit": "^0.15.2",
49+
"friendsofphp/php-cs-fixer": "^v3.8.0",
50+
"guzzlehttp/guzzle": "^7.4.3",
51+
"guzzlehttp/psr7": "^1.6 || ^2.2.1",
52+
"phpstan/phpstan": "^1.7.3",
53+
"phpstan/phpstan-phpunit": "^1.1.1",
54+
"phpstan/phpstan-strict-rules": "^1.2.3",
55+
"phpunit/phpunit": "^9.5.20",
56+
"psalm/plugin-phpunit": "^0.16.1",
5757
"psr/http-factory": "^1.0",
5858
"psr/simple-cache": "^1.0",
59-
"symfony/cache": "^v5.0",
60-
"vimeo/psalm": "^4.20"
59+
"symfony/cache": "^v5.0.0 || ^v6.0.0",
60+
"vimeo/psalm": "^4.23.0"
6161
},
6262
"suggest": {
6363
"psr/http-client-implementation": "To use the storage functionnality which depends on PSR-18",
@@ -75,7 +75,7 @@
7575
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
7676
"phpstan": "phpstan analyse -l max -c phpstan.neon src --memory-limit=256M --ansi",
7777
"psalm": "psalm --show-info=true",
78-
"phpunit": "phpunit --coverage-text",
78+
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
7979
"test": [
8080
"@phpunit",
8181
"@phpstan",

0 commit comments

Comments
 (0)