Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to PHP 8.4 #64

Merged
merged 3 commits into from
Oct 28, 2024
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
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

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
6 changes: 3 additions & 3 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 @@ -34,7 +34,7 @@
"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
```
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
Loading