-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update UPGRADE.md for clarity and formatting improvements
- Loading branch information
Showing
1 changed file
with
8 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
This document will help you upgrading from a Version into another. | ||
This document will guide you through upgrading from one version to another. | ||
|
||
# 2.x to 3.0 | ||
# Upgrading from 2.x to 3.0 | ||
|
||
+ Raised minimum PHP version to 8.x | ||
+ Added php `json` extensions are required in composer defintion | ||
+ Removed deprecated methods `_exec()` use `exec()`, `setReferrer()` use `setReferer()` and `verbose()` use `setVerbose()` | ||
+ **Raised minimum PHP version** to 8.x. | ||
+ **Added the `json` extension** to Composer requirements, as formatting payloads to JSON is a common use case. | ||
+ **Removed deprecated methods**: | ||
- `_exec()` → Use `exec()` | ||
- `setReferrer()` → Use `setReferer()` | ||
- `verbose()` → Use `setVerbose()` |