Skip to content

Commit

Permalink
bump to php 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SergiuBota1 committed Oct 25, 2024
1 parent 7fbb4d6 commit 3e35550
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 15 deletions.
6 changes: 6 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ignore_php_platform_requirements": {
"8.4": true
},
"backwardCompatibilityCheck": true
}
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@

> [!IMPORTANT]
> dot-mail is a wrapper on top of [laminas-mail](https://github.com/laminas/laminas-mail)
>
> ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.github.com%2Frepos%2Flaminas%2Flaminas-mail%2Fproperties%2Fvalues&query=%24%5B%3F(%40.property_name%3D%3D%22maintenance-mode%22)%5D.value&label=Maintenance%20Mode&color=%23d43442)
## dot-mail badges

![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-mail)
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/4.1.1)
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/4.3.0)

[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-mail)](https://github.com/dotkernel/dot-mail/issues)
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-mail)](https://github.com/dotkernel/dot-mail/network)
Expand All @@ -18,7 +16,13 @@
[![Build Static](https://github.com/dotkernel/dot-mail/actions/workflows/continuous-integration.yml/badge.svg?branch=4.0)](https://github.com/dotkernel/dot-mail/actions/workflows/continuous-integration.yml)
[![codecov](https://codecov.io/gh/dotkernel/dot-mail/branch/4.0/graph/badge.svg?token=G51NEHYKD3)](https://codecov.io/gh/dotkernel/dot-mail)

[![SymfonyInsight](https://insight.symfony.com/projects/1995ea7c-3b34-4eee-ac48-3571860d0307/big.svg)](https://insight.symfony.com/projects/1995ea7c-3b34-4eee-ac48-3571860d0307)
# Installation

Check failure on line 19 in README.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (README Linting [8.1, latest], ubuntu-latest, laminas/laminas-continuous-integration-ac...

Multiple top-level headings in the same document [Context: "# Installation"]

Check failure on line 19 in README.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (README Linting [8.1, latest], ubuntu-latest, laminas/laminas-continuous-integration-ac...

Multiple top-level headings in the same document [Context: "# Installation"]

Install `dotkernel/dot-mail` by executing the following Composer command:

```shell
composer require dotkernel/dot-mail
```

## Configuration

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| Version | Supported | PHP Version |
|---------|--------------------|----------------------------------------------------------------------------------------------------------|
| 4.x | :white_check_mark: | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/4.1.1) |
| 4.x | :white_check_mark: | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-mail/4.3.0) |
| <= 3.x | :x: | |


Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dotkernel/dot-mail",
"type": "library",
"description": "DotKernel mail component based on laminas-mail",
"description": "Dotkernel mail component based on laminas-mail",
"license": "MIT",
"homepage": "https://github.com/dotkernel/dot-mail",
"keywords": [
Expand All @@ -15,7 +15,7 @@
],
"authors": [
{
"name": "DotKernel Team",
"name": "Dotkernel Team",
"email": "[email protected]"
}
],
Expand All @@ -26,15 +26,15 @@
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-fileinfo": "*",
"ext-json": "*",
"laminas/laminas-servicemanager": "^3.22",
"laminas/laminas-mail": "^2.25",
"dotkernel/dot-event": "^3.4"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.5",
"laminas/laminas-coding-standard": "^3.0",
"mikey179/vfsstream": "^v1.6.11",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.23"
Expand Down
2 changes: 1 addition & 1 deletion config/mail.global.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
return [

/**
* DotKernel mail module configuration
* Dotkernel mail module configuration
* Note that many of these options can be set programmatically too, when sending mail messages
* actually that is what you'll usually do, these config provide just default and options that remain the same for all mails
*/
Expand Down
1 change: 0 additions & 1 deletion docs/book/index.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/book/index.md
4 changes: 3 additions & 1 deletion docs/book/v4/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

Install `dotkernel/dot-mail` by executing the following Composer command:

composer require dotkernel/dot-mail
```shell
composer require dotkernel/dot-mail
```

Check failure on line 7 in docs/book/v4/installation.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (Documentation Linting [8.1, latest], ubuntu-latest, laminas/laminas-continuous-integra...

Files should end with a single newline character

Check failure on line 7 in docs/book/v4/installation.md

View workflow job for this annotation

GitHub Actions / ci / QA Checks (Documentation Linting [8.1, latest], ubuntu-latest, laminas/laminas-continuous-integra...

Files should end with a single newline character
2 changes: 0 additions & 2 deletions docs/book/v4/overview.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Overview

> dot-mail is a wrapper on top of [laminas-mail](https://github.com/laminas/laminas-mail)
>
> ![OSS Lifecycle](https://img.shields.io/osslifecycle/laminas/laminas-mail)
## Extra features

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ nav:
- Usage: v4/usage.md
- Transports: v4/transports.md
site_name: dot-mail
site_description: "DotKernel's mail service"
site_description: "Dotkernel's mail service"
repo_url: "https://github.com/dotkernel/dot-mail"
plugins:
- search

0 comments on commit 3e35550

Please sign in to comment.