Skip to content

Commit

Permalink
Merge pull request #43 from jonjomckay/feature/add-support-for-php-8
Browse files Browse the repository at this point in the history
Added support for PHP v8.0 and remove support for PHP v7.2
  • Loading branch information
jonjomckay authored Nov 25, 2020
2 parents 20091fa + 08d7b3c commit b382365
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1,759 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
tests:
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0']
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/vendor
/composer.phar
/composer.lock
/build
/.idea
/*.iml
/*.iml
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
}
},
"require": {
"php": ">=7.2",
"php": ">=7.3",
"clue/socket-raw": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"phpunit/phpunit": "^9.4",
"mikey179/vfsstream": "^1.6"
}
}
Loading

0 comments on commit b382365

Please sign in to comment.