Skip to content

Commit 8e91521

Browse files
authored
Merge pull request #33 from atomiix/php81
Update dependencies to make it php81 compatible
2 parents 89b1bcf + 315d40b commit 8e91521

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
strategy:
66
matrix:
7-
php-versions: ['7.2','7.4']
7+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
88
runs-on: ubuntu-latest
99
name: PHPUnit
1010
steps:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
composer.lock
2-
vendor/
2+
vendor/
3+
tests/.phpunit.result.cache

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^7.1",
16-
"phpstan/phpstan": "^0.12.48"
15+
"php": "^7.2|^8.0",
16+
"phpstan/phpstan": "^1.2.0"
1717
},
1818
"require-dev": {
19-
"phpstan/phpstan-phpunit": "^0.12.16",
20-
"phpstan/phpstan-strict-rules": "^0.12.5",
21-
"phpunit/phpunit": "^7.5.20",
19+
"phpstan/phpstan-phpunit": "^1.0.0",
20+
"phpstan/phpstan-strict-rules": "^1.1.0",
21+
"phpunit/phpunit": "^8.5",
2222
"symfony/console": "^5.2",
2323
"nikic/php-parser": "^4.10"
2424
},

0 commit comments

Comments
 (0)