Skip to content

Commit

Permalink
Upgrade phpunit and tested PHP versions.
Browse files Browse the repository at this point in the history
Need to turn off deprecation warnings for tests to pass (e.g. some
output in the middle of a string being tested on), but will need to be
reactivated and issues fixed before PHP9.
  • Loading branch information
dracos committed Dec 18, 2023
1 parent 4ffc97d commit fcdf9c1
Show file tree
Hide file tree
Showing 27 changed files with 4,865 additions and 2,236 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ["7.0", "7.2", "7.3", "7.4"]
php_version: ["7.3", "7.4", "8.2"]

services:
mariadb:
Expand Down
12 changes: 7 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}
},
"require": {
"php": ">=5.4",
"php": ">=7.3",
"filp/whoops": "2.*",
"ircmaxell/password-compat": "1.0.4",
"facebook/graph-sdk": "^5.6",
Expand All @@ -15,13 +15,15 @@
"phpmailer/phpmailer": "^6.5"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"phpunit/dbunit": ">=1.2",
"phpdocumentor/phpdocumentor": "2.*"
"phpunit/phpunit": "9.*",
"phpdocumentor/phpdocumentor": "3.*"
},
"config": {
"platform": {
"php": "7.0"
"php": "7.3"
},
"allow-plugins": {
"symfony/flex": true
}
}
}
Loading

0 comments on commit fcdf9c1

Please sign in to comment.