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

Updated the package to v3.0-beta #22

Merged
merged 3 commits into from
Nov 23, 2021
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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,82 @@
# Changelog

All notable changes to the wrapper will be documented in this file.

## [3.0.0]
### Updated
- Dropped support for all versions below PHP 7.4
- Some minor code-style changes
- Made class properties typed and worked on type consistency
- Updated guzzle from `6.x|7.x` to `^9`
- Minor changes in the readme
- Updated the phpunit.xml configuration file
### Added
- Added support for PHP 8.0
- Added the `disableFreeSan` field for requests.
- Added an interface for the requests
- Added tests for the ApiRequests
### Removed
- Dropped support for all versions below PHP 7.4
- Removed functions previously marked deprecated
- Removed deprecated RequestDCV class

## [2.0.1]

### Updated

- Returntype of getMessage method (issue #18)

## [2.0.0]

### Updated

- Support for PHP upgraded to >= 7.2
- Support for PHP 5.6 is now on deprecated. Latest version supporting this is 1.8.4
- Refactored UnitTests for compatibility with PHPUnit 8
- Removed method sendComodoSAEmail on Request Endpoint
- Lowered Endpoint class creation count ($client->certificate()->... is now $client->certificates->...)

### Added

- Created seperate namespace for Helpers that return API Strings

## [1.8.3]

### Added

- Added support for SSLCheck
- Added support for Invoices
- Added support for scheduling validation calls

### Updated

- Updated Client with remaining request count
- Added sa_email and referenceOrderNr to Request (Pull request #12)
- Deprecated sendComodoSAEmail, replaced by sendSectigoSAEmail

## [1.6.2]

### Updated

- Made the request notes visible in the request endpoint

## [1.6.1]

### Updated

- Error handling in Client (pull request #5)
- Correct extra domain and price information for MDC in support/products

## [1.6.0]

### Added

- Compatability with Xolphin REST Api v1.6.0
- Support for the new Comodo DCV method
- Supports the uniqueValueDcv (optional) to send an own unique DCV token
- Compatability with Encryption Everywhere

### Updated

- Better error handling
- Updated markup of the code
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,22 @@
{
"name": "Bart van Kalmthout",
"email": "bart@xolphin.nl"
},
{
"name": "Mike van Diepen",
"email": "mike@xolphin.nl"
}
],
"support": {
"email": "api@xolphin.com"
},
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": "~6|^7.0",
"ext-json": "*"
"php": ">=7.4|8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "~8"
"phpunit/phpunit": "9.5.*"
},
"autoload": {
"psr-4": {
Expand Down
Loading