Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Tooling

- Bumped PHPStan from `level: 8` to `level: max` in `phpstan.neon`.
The preceding PRs in the 5.0 series (constructor option shapes,
JSON-payload narrowing, claim shape on `validateIdToken`, JWKS
validation, test-side Mockery / fixture / claim narrowings) cleared
every max-level error; the bump is the final one-line config
change that locks in the strictest analysis level for future
contributions.
- `OpenIdConfigurationProvider::__construct` now declares an
`array{cacheItemPool?: CacheItemPoolInterface,
openIDConnectMetadataUrl?: string, cacheDuration?: int, leeway?: int,
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ includes:
- vendor/phpstan/phpstan-mockery/extension.neon

parameters:
level: 8
level: max
paths:
- src
- tests
Expand Down
Loading