Skip to content

Commit

Permalink
Merge pull request #22 from Roave/php-8-support
Browse files Browse the repository at this point in the history
Added support for PHP 8
  • Loading branch information
Ocramius committed Jan 25, 2021
2 parents bbbcc31 + dded3b9 commit 5b5bb94
Show file tree
Hide file tree
Showing 6 changed files with 388 additions and 454 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
operating-system:
- "ubuntu-latest"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "locked"
php-version:
- "7.4"
- "8.0"
operating-system:
- "ubuntu-latest"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
operating-system:
- "ubuntu-latest"

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"description": "Sign and verify stuff",
"license": "MIT",
"require": {
"php": "7.4.*"
"php": "7.4.*|8.0.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"infection/infection": "^0.17.5",
"doctrine/coding-standard": "^8.1",
"vimeo/psalm": "^3.16"
"phpunit/phpunit": "^9.5.1",
"infection/infection": "^0.20.2",
"doctrine/coding-standard": "^8.2",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 5b5bb94

Please sign in to comment.