Skip to content

Commit c93fe44

Browse files
authored
Merge pull request #57 from dotkernel/issue-56
Issue #56: Bump Psalm to 6.x
2 parents 1264cc2 + 492bc67 commit c93fe44

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php:
1818
- "8.2"
1919
- "8.3"
20+
- "8.4"
2021

2122
steps:
2223
- name: Checkout

.laminas-ci.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"ignore_php_platform_requirements": {
3-
"8.4": true
4-
},
52
"backwardCompatibilityCheck": true
63
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Dotkernel component used to create services through [Laminas Service Manager](ht
55
This package can clean up your code, by getting rid of all the factories you write, sometimes just to inject a dependency or two.
66

77
![OSS Lifecycle](https://img.shields.io/osslifecycle?file_url=https%3A%2F%2Fgithub.com%2Fdotkernel%2Fdot-annotated-services%2Fblob%2F4.0%2FOSSMETADATA)
8-
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-annotated-services/4.2.0)
8+
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-annotated-services/4.2.1)
99

1010
[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-annotated-services)](https://github.com/dotkernel/dot-annotated-services/issues)
1111
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-annotated-services)](https://github.com/dotkernel/dot-annotated-services/network)

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
],
2222
"require": {
2323
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
24-
"laminas/laminas-servicemanager": "^3.22.1",
2524
"doctrine/annotations": "^1.14.3",
2625
"doctrine/cache": "^1.12.1 || ^2.1.1",
27-
"doctrine/orm" : "^2.20"
26+
"doctrine/orm" : "^2.20",
27+
"laminas/laminas-servicemanager": "^3.22.1"
2828
},
2929
"require-dev": {
30+
"laminas/laminas-coding-standard": "^3.0",
3031
"phpunit/phpunit": "^10.5.9",
31-
"vimeo/psalm": "^5.20",
32-
"laminas/laminas-coding-standard": "^3.0"
32+
"vimeo/psalm": "^6.0"
3333
},
3434
"autoload": {
3535
"psr-4": {

docs/book/v5/configuration.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
After installation, register `dot-annotated-services` in your project by adding the below line to your configuration aggregator (usually: `config/config.php`):
44

5-
Dot\AnnotatedServices\ConfigProvider::class,
5+
```php
6+
Dot\AnnotatedServices\ConfigProvider::class,
7+
```

docs/book/v5/installation.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
Install `dotkernel/dot-annotated-services` by executing the following Composer command:
44

5-
composer require dotkernel/dot-annotated-services
5+
```shell
6+
composer require dotkernel/dot-annotated-services
7+
```

0 commit comments

Comments
 (0)