Skip to content

Commit 971c15f

Browse files
authored
Merge pull request #84 from dotkernel/issue-83
Issue #83: Bump Psalm to 6.x
2 parents 874b461 + 05b484d commit 971c15f

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.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
@@ -6,7 +6,7 @@
66
## dot-mail badges
77

88
![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-mail)
9-
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/5.2.0)
9+
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/5.2.1)
1010

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
3131
"ext-fileinfo": "*",
3232
"ext-json": "*",
33-
"laminas/laminas-servicemanager": "^3.22 || ^4.0",
3433
"dotkernel/dot-event": "^4.0",
34+
"laminas/laminas-servicemanager": "^3.22 || ^4.0",
3535
"symfony/mailer": "v7.1.6"
3636
},
3737
"require-dev": {
3838
"laminas/laminas-coding-standard": "^3.0",
3939
"mikey179/vfsstream": "^v1.6.11",
4040
"phpunit/phpunit": "^10.5",
41-
"vimeo/psalm": "^5.23"
41+
"vimeo/psalm": "^6.0"
4242
},
4343
"autoload": {
4444
"psr-4": {

docs/book/v4/configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Register `dot-mail` in you project by adding `Dot\Mail\ConfigProvider::class` to your configuration aggregator (to `config/config.php` for example).
44
After registering the `ConfigProvider` copy the configuration file `config/mail.global.php.dist` into your project's `config/autoload/` directory as `mail.global.php`.
55

6-
The resulting `mail.global.php` contains the necessary configurations for all available transport types, message options and logging options in one place. The config file provides a set of default values available to all mails under the `dot-mail.default` key.
6+
The resulting `mail.global.php` contains the necessary configurations for all available transport types, message options and logging options in one place.
7+
The config file provides a set of default values available to all mails under the `dot-mail.default` key.
78

89
Many of these options can be programmatically set when sending the actual email.
910

docs/book/v5/configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Register `dot-mail` in you project by adding `Dot\Mail\ConfigProvider::class` to your configuration aggregator (to `config/config.php` for example).
44
After registering the `ConfigProvider` copy the configuration file `config/mail.global.php.dist` into your project's `config/autoload/` directory as `mail.global.php`.
55

6-
The resulting `mail.global.php` contains the necessary configurations for all available transport types, message options and logging options in one place. The config file provides a set of default values available to all mails under the `dot-mail.default` key.
6+
The resulting `mail.global.php` contains the necessary configurations for all available transport types, message options and logging options in one place.
7+
The config file provides a set of default values available to all mails under the `dot-mail.default` key.
78

89
Many of these options can be programmatically set when sending the actual email.
910

0 commit comments

Comments
 (0)