Skip to content

Commit

Permalink
Merge pull request #134 from gsteel/PHP-8.4
Browse files Browse the repository at this point in the history
Add support for PHP 8.4
  • Loading branch information
gsteel authored Oct 16, 2024
2 parents cc64b40 + 063c816 commit e0b7247
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
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
6 changes: 3 additions & 3 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

0 comments on commit e0b7247

Please sign in to comment.