Skip to content

Commit

Permalink
Merge pull request #33 from atomiix/php81
Browse files Browse the repository at this point in the history
Update dependencies to make it php81 compatible
  • Loading branch information
kpodemski authored Nov 23, 2021
2 parents 89b1bcf + 315d40b commit 8e91521
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
php-versions: ['7.2','7.4']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
runs-on: ubuntu-latest
name: PHPUnit
steps:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
composer.lock
vendor/
vendor/
tests/.phpunit.result.cache
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}
],
"require": {
"php": "^7.1",
"phpstan/phpstan": "^0.12.48"
"php": "^7.2|^8.0",
"phpstan/phpstan": "^1.2.0"
},
"require-dev": {
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpunit/phpunit": "^7.5.20",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.1.0",
"phpunit/phpunit": "^8.5",
"symfony/console": "^5.2",
"nikic/php-parser": "^4.10"
},
Expand Down

0 comments on commit 8e91521

Please sign in to comment.