-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Require PHP 8.2 * upgrade code quality tools * remove thecodingmachine/safe * switch from PHPCS to PHP-CS-Fixer and fix CS issues * use setup-php in GitHub CI * allow laminas/laminas-diactoros ^3 fixes #9
- Loading branch information
Showing
17 changed files
with
128 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/vendor/ | ||
/composer.lock | ||
/infection-log.txt | ||
/.php-cs-fixer.cache | ||
/vendor/ | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Eventjet\CodingStandard\PhpCsFixer\Config; | ||
|
||
return Config::strict(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,3 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file, in reverse chronological order by release. | ||
|
||
File automatically generated with [phly/keep-a-changelog](https://github.com/phly/keep-a-changelog) | ||
|
||
## 1.1.2 - 2022-02-25 | ||
|
||
### Added | ||
|
||
- [#6](https://github.com/trinet-at/mezzio-test/pull/6) allows using v2 of thecodingmachine/safe | ||
|
||
### Changed | ||
|
||
- Nothing. | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- Nothing. | ||
|
||
### Fixed | ||
|
||
- Nothing. | ||
|
||
## 1.1.1 - 2021-10-15 | ||
|
||
### Added | ||
|
||
- [#5](https://github.com/trinet-at/mezzio-test/pull/5) adds support for PATCH and PUT verbs in requests | ||
|
||
### Changed | ||
|
||
- Nothing. | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- Nothing. | ||
|
||
### Fixed | ||
|
||
- Nothing. | ||
|
||
## 1.1.0 - 2021-09-29 | ||
|
||
### Added | ||
|
||
- [#3](https://github.com/trinet-at/mezzio-test/pull/3) adds the possibility to pass additional headers to dispatch | ||
methods | ||
|
||
### Changed | ||
|
||
- Nothing. | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- Nothing. | ||
|
||
### Fixed | ||
|
||
- Nothing. | ||
|
||
## 1.0.0 - 2021-06-25 | ||
|
||
There are no BC breaks from the previous version. This package was already used enough to tag it as stable 🙂 | ||
|
||
### Added | ||
|
||
- Nothing. | ||
|
||
### Changed | ||
|
||
- [#2](https://github.com/trinet-at/mezzio-test/pull/2) changed minimum PHP version to 7.4 | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- Nothing. | ||
|
||
### Fixed | ||
|
||
- Nothing. | ||
|
||
## 0.3.1 - 2020-12-08 | ||
|
||
### Added | ||
|
||
- [#1](https://github.com/trinet-at/mezzio-test/pull/1) adds support for PHP 8 | ||
|
||
### Changed | ||
|
||
- Nothing. | ||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- Nothing. | ||
|
||
### Fixed | ||
|
||
- Nothing. | ||
All release info can be found in the [GitHub releases tab](https://github.com/trinet-at/mezzio-test/releases). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
"logs": { | ||
"text": "infection-log.txt" | ||
}, | ||
"minMsi": 75, | ||
"minCoveredMsi": 82 | ||
"minMsi": 68, | ||
"minCoveredMsi": 80 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.