Skip to content

Commit e08a31f

Browse files
committed
feat(app): support symfony http client 6
1 parent 76fb9e2 commit e08a31f

10 files changed

Lines changed: 211 additions & 321 deletions

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ help: ## affiche cet aide
55
.PHONY: lint
66
lint: vendor/autoload.php ## affiche les erreurs de formatage de code
77
php vendor/bin/phpcs -s
8+
php vendor/bin/phpstan
89

910
.PHONY: lint-fix
1011
lint-fix: vendor/autoload.php ## corrige les erreurs de formatage de code

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@
2525
"minimum-stability": "stable",
2626
"require-dev": {
2727
"squizlabs/php_codesniffer": "^3.6",
28-
"symfony/var-dumper": "^5.3"
28+
"symfony/var-dumper": "^5.3|^6.0",
29+
"phpstan/phpstan": "^1.4"
2930
},
3031
"require": {
3132
"php": ">=8.0",
32-
"symfony/http-client": "^5.3"
33+
"symfony/http-client": "^5.3|^6.0"
3334
},
3435
"repositories": [
3536
{

0 commit comments

Comments
 (0)