Skip to content

Commit bbe2ba3

Browse files
authored
Merge pull request #199 from JeremyDunn/php81
add PHP 8.1 support to composer.json
2 parents 269aa1a + 3b3bbb0 commit bbe2ba3

File tree

2,920 files changed

+9
-9273
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,920 files changed

+9
-9273
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Icon?
4545
# composer
4646
vendor/
4747
composer.phar
48+
composer.lock
4849

4950
# Security tokens
5051
*.pem

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 6.0.1 (released 2022-02-14)
4+
- Increased composer.json PHP version for 8.1
5+
36
## 6.0.0 (released 2021-11-16)
47
- Update services, tests, examples and composer packages [#187](https://github.com/JeremyDunn/php-fedex-api-wrapper/pull/187)
58

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"authors": [
99
{
1010
"name": "Jeremy Dunn",
11-
"email": "[email protected]",
12-
"homepage": "http://www.jsdunn.info"
11+
"email": "[email protected]"
1312
}
1413
],
1514
"require": {
16-
"php": "^7.3|^8.0",
15+
"php": ">=7.3|>=8.0|>=8.1",
1716
"ext-soap": "*"
1817
},
1918
"require-dev": {
19+
"ext-simplexml": "*",
2020
"symfony/console": "^5.2",
2121
"phpunit/phpunit": "^9.5",
2222
"squizlabs/php_codesniffer": "^3.5",

0 commit comments

Comments
 (0)