Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit 8141587

Browse files
authored
More use of OOP in JWT implementation (#4)
1 parent 5c21f8b commit 8141587

39 files changed

+742
-589
lines changed

symfony/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ci:
22
composer validate
33
vendor/bin/ecs check
44
bin/phpunit tests
5+
#vendor/bin/phpstan analyze -c phpstan.neon
56
run:
67
composer install --no-interaction --prefer-dist
78
exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf

symfony/composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"symfony/yaml": "^5.2"
2222
},
2323
"require-dev": {
24+
"phpstan/phpstan": "^0.12",
25+
"phpstan/phpstan-phpunit": "^0.12",
26+
"phpstan/phpstan-symfony": "^0.12",
2427
"roave/security-advisories": "dev-master",
2528
"symfony/browser-kit": "^5.2",
2629
"symfony/phpunit-bridge": "^5.2",
@@ -55,7 +58,7 @@
5558
"extra": {
5659
"symfony": {
5760
"allow-contrib": false,
58-
"require": "^5.2"
61+
"require": "5.2.*"
5962
}
6063
}
6164
}

0 commit comments

Comments
 (0)