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
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.2"
- "8.3"
- "8.4"

steps:
- name: Checkout
Expand Down
3 changes: 0 additions & 3 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"ignore_php_platform_requirements": {
"8.4": true
},
"backwardCompatibilityCheck": true
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
4 changes: 3 additions & 1 deletion docs/book/v5/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
```
4 changes: 3 additions & 1 deletion docs/book/v5/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Loading