Skip to content

Commit

Permalink
Merge pull request #87 from darylldoyle/feature/5.6-support
Browse files Browse the repository at this point in the history
PHP 5.6 compatibility
  • Loading branch information
darylldoyle authored Mar 20, 2023
2 parents cce18bc + 71c6297 commit 239e257
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
fail-fast: false

steps:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"php": "^7.0 || ^8.0",
"php": "^5.6 || ^7.0 || ^8.0",
"ezyang/htmlpurifier": "^4.16"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^8.5"
"phpunit/phpunit": "^5.7 || ^6.5 || ^8.5"
}
}

0 comments on commit 239e257

Please sign in to comment.