Skip to content

Commit

Permalink
ci: add php 8 support (#13)
Browse files Browse the repository at this point in the history
- adds php 8 support
- removes package-versions
- updates dependencies

Fixes #8
  • Loading branch information
geerteltink committed Dec 26, 2020
1 parent be196ac commit c07456a
Show file tree
Hide file tree
Showing 5 changed files with 764 additions and 473 deletions.
1 change: 1 addition & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php-version:
- 7.3
- 7.4
- 8.0
operating-system:
- ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/coveralls-upload.json
/phpunit.xml
/vendor/
.phpunit.result.cache
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@
],
"license": "MIT",
"require": {
"php": "^7.2",
"ocramius/package-versions": "^1.3",
"php": "^7.3 || ^8.0",
"psr/container": "^1.0",
"symfony/console": "^4.0 || ^5.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.2"
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit c07456a

Please sign in to comment.