Skip to content

Commit

Permalink
Merge pull request #165 from JeremyDunn/php8
Browse files Browse the repository at this point in the history
PHP 8 compatibility
  • Loading branch information
JeremyDunn authored Feb 13, 2021
2 parents 58e3d0a + 70af5f9 commit 8e51a2e
Show file tree
Hide file tree
Showing 10 changed files with 1,604 additions and 534 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ nbproject
examples/credentials.php
doc/
tests/logs

.phpunit.result.cache
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 5.0.1 (released 2021-02-13)
- PHP 8 compatibility: [#264](https://github.com/JeremyDunn/php-fedex-api-wrapper/issues/164)

## 5.0 (released 2020-11-28)
- Updated Rate service
- Updated Location service
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
}
],
"require": {
"php": ">=5.4.0",
"ext-soap": "*"
},
"require-dev": {
"symfony/console": "2.*",
"fzaninotto/faker": "^1.6",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^6.5"
"fzaninotto/faker": "^1.5",
"symfony/console": "^5.2",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
Expand All @@ -30,6 +29,7 @@
}
},
"scripts": {
"generate-src": "@php ./util/generate-classes-from-wsdls.php generate"
"generate-src": "@php ./util/generate-classes-from-wsdls.php generate",
"run-tests": "XDEBUG_MODE=coverage phpunit"
}
}
Loading

0 comments on commit 8e51a2e

Please sign in to comment.