Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for PHP 8.4 #134

Merged
merged 2 commits into from
Oct 16, 2024
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
12 changes: 8 additions & 4 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"extensions": [
"sqlite3"
]
}
"extensions": [
"sqlite3"
],
"backwardCompatibilityCheck": true,
"ignore_php_platform_requirements": {
"8.4": true
}
}
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0.1 || ^2.0.0",
"psr/http-server-middleware": "^1.0",
Expand All @@ -45,9 +45,9 @@
"require-dev": {
"ext-sqlite3": "*",
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^10.4.2",
"phpunit/phpunit": "^10.5.36",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.16"
"vimeo/psalm": "^5.26.1"
},
"conflict": {
"container-interop/container-interop": "<1.2.0",
Expand Down
18 changes: 9 additions & 9 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/book/v1/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ You need to specify the service for authentication using the name
using the service name `Mezzio\Authentication\UserRepositoryInterface::class`.

For instance, using `laminas-servicemanager` you can easily configure these two
services using `aliases`. Below is an example of configuration using the *HTTP
Basic Access Authentication* adapter and the *htpasswd* file as the user
services using `aliases`. Below is an example of configuration using the _HTTP
Basic Access Authentication_ adapter and the _htpasswd_ file as the user
repository.

```php
Expand Down