Skip to content

Commit 8e51a2e

Browse files
authored
Merge pull request #165 from JeremyDunn/php8
PHP 8 compatibility
2 parents 58e3d0a + 70af5f9 commit 8e51a2e

10 files changed

+1604
-534
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ nbproject
5656
examples/credentials.php
5757
doc/
5858
tests/logs
59-
59+
.phpunit.result.cache

CHANGELOG.md

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

3+
## 5.0.1 (released 2021-02-13)
4+
- PHP 8 compatibility: [#264](https://github.com/JeremyDunn/php-fedex-api-wrapper/issues/164)
5+
36
## 5.0 (released 2020-11-28)
47
- Updated Rate service
58
- Updated Location service

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
1313
}
1414
],
1515
"require": {
16-
"php": ">=5.4.0",
1716
"ext-soap": "*"
1817
},
1918
"require-dev": {
20-
"symfony/console": "2.*",
21-
"fzaninotto/faker": "^1.6",
22-
"squizlabs/php_codesniffer": "*",
23-
"phpunit/phpunit": "^6.5"
19+
"fzaninotto/faker": "^1.5",
20+
"symfony/console": "^5.2",
21+
"phpunit/phpunit": "^9.5",
22+
"squizlabs/php_codesniffer": "^3.5"
2423
},
2524
"autoload": {
2625
"psr-4": {
@@ -30,6 +29,7 @@
3029
}
3130
},
3231
"scripts": {
33-
"generate-src": "@php ./util/generate-classes-from-wsdls.php generate"
32+
"generate-src": "@php ./util/generate-classes-from-wsdls.php generate",
33+
"run-tests": "XDEBUG_MODE=coverage phpunit"
3434
}
3535
}

0 commit comments

Comments
 (0)