Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
Merge pull request #134 from netglue/PHP-8.2
Browse files Browse the repository at this point in the history
Drop support for PHP 7.4, Add support for PHP 8.2
  • Loading branch information
gsteel authored Oct 31, 2022
2 parents 3a23d0f + 231f32c commit 2018fac
Show file tree
Hide file tree
Showing 16 changed files with 204 additions and 334 deletions.
14 changes: 3 additions & 11 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
{
"extensions": [
"pcov"
],
"extensions": [],
"ini": [],
"additional_checks": [
{
"name": "Coverage",
"job": {
"command": "vendor/bin/phpunit --coverage-clover coverage.xml"
}
}
]
"additional_checks": [],
"stablePHP": "8.0"
}
11 changes: 0 additions & 11 deletions .laminas-ci/post-run.sh

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Postmark Mail Transport for Laminas

![PHPUnit Test Suite](https://github.com/netglue/laminas-postmark-transport/workflows/Continuous%20Integration/badge.svg)
[![codecov](https://codecov.io/gh/netglue/laminas-postmark-transport/branch/main/graph/badge.svg)](https://codecov.io/gh/netglue/laminas-postmark-transport)
[![Type Coverage](https://shepherd.dev/github/netglue/laminas-postmark-transport/coverage.svg)](https://shepherd.dev/github/netglue/laminas-postmark-transport)

### Introduction

Expand Down Expand Up @@ -58,4 +58,3 @@ Hopefully the following configuration should illuminate what's required...
```

Finally, this lib also has a dependency on [netglue/laminas-mail-utils](https://github.com/netglue/laminas-mail-utils) which is primarily a collection of more generic validators for mail messages and message behaviours that are intended for use with other vendors such as SparkPost, MailGun etc. If/when you build your custom validator chain, there are a bunch of validators there that might be useful.

9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
},
"require": {
"php": "^7.4 || ~8.0 || ~8.1",
"php": "~8.0 || ~8.1 || ~8.2",
"laminas/laminas-mail": "^2.11.0",
"laminas/laminas-mime": "^2.9.1",
"laminas/laminas-validator": "^2.23.0",
Expand All @@ -39,10 +39,9 @@
},
"require-dev": {
"doctrine/coding-standard": "^10.0",
"laminas/laminas-config-aggregator": "^1.9",
"laminas/laminas-db": "^2.15",
"laminas/laminas-servicemanager": "^3.17",
"lctrs/psalm-psr-container-plugin": "^1.6.0",
"laminas/laminas-config-aggregator": "^1.11",
"laminas/laminas-servicemanager": "^3.19",
"lctrs/psalm-psr-container-plugin": "^1.8",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.17.0",
"roave/security-advisories": "dev-latest",
Expand Down
Loading

0 comments on commit 2018fac

Please sign in to comment.