diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 184fa62..32a1a00 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -17,6 +17,7 @@ jobs: php: - "8.2" - "8.3" + - "8.4" steps: - name: Checkout diff --git a/.laminas-ci.json b/.laminas-ci.json index 82cd446..29216fa 100644 --- a/.laminas-ci.json +++ b/.laminas-ci.json @@ -1,6 +1,3 @@ { - "ignore_php_platform_requirements": { - "8.4": true - }, "backwardCompatibilityCheck": true } diff --git a/README.md b/README.md index 295b0b4..92bbeb9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Dotkernel component used to create services through [Laminas Service Manager](ht This package can clean up your code, by getting rid of all the factories you write, sometimes just to inject a dependency or two. ![OSS Lifecycle](https://img.shields.io/osslifecycle?file_url=https%3A%2F%2Fgithub.com%2Fdotkernel%2Fdot-annotated-services%2Fblob%2F4.0%2FOSSMETADATA) -![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-annotated-services/4.2.0) +![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-annotated-services/4.2.1) [![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-annotated-services)](https://github.com/dotkernel/dot-annotated-services/issues) [![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-annotated-services)](https://github.com/dotkernel/dot-annotated-services/network) diff --git a/composer.json b/composer.json index 1cafef9..01a86ab 100644 --- a/composer.json +++ b/composer.json @@ -21,15 +21,15 @@ ], "require": { "php": "~8.2.0 || ~8.3.0 || ~8.4.0", - "laminas/laminas-servicemanager": "^3.22.1", "doctrine/annotations": "^1.14.3", "doctrine/cache": "^1.12.1 || ^2.1.1", - "doctrine/orm" : "^2.20" + "doctrine/orm" : "^2.20", + "laminas/laminas-servicemanager": "^3.22.1" }, "require-dev": { + "laminas/laminas-coding-standard": "^3.0", "phpunit/phpunit": "^10.5.9", - "vimeo/psalm": "^5.20", - "laminas/laminas-coding-standard": "^3.0" + "vimeo/psalm": "^6.0" }, "autoload": { "psr-4": { diff --git a/docs/book/v5/configuration.md b/docs/book/v5/configuration.md index bdebef1..3c707d9 100644 --- a/docs/book/v5/configuration.md +++ b/docs/book/v5/configuration.md @@ -2,4 +2,6 @@ After installation, register `dot-annotated-services` in your project by adding the below line to your configuration aggregator (usually: `config/config.php`): - Dot\AnnotatedServices\ConfigProvider::class, +```php +Dot\AnnotatedServices\ConfigProvider::class, +``` diff --git a/docs/book/v5/installation.md b/docs/book/v5/installation.md index 8d628ea..13b0b2a 100644 --- a/docs/book/v5/installation.md +++ b/docs/book/v5/installation.md @@ -2,4 +2,6 @@ Install `dotkernel/dot-annotated-services` by executing the following Composer command: - composer require dotkernel/dot-annotated-services +```shell +composer require dotkernel/dot-annotated-services +```