Skip to content

Commit c07456a

Browse files
authored
ci: add php 8 support (#13)
- adds php 8 support - removes package-versions - updates dependencies Fixes #8
1 parent be196ac commit c07456a

File tree

5 files changed

+764
-473
lines changed

5 files changed

+764
-473
lines changed

.github/workflows/phpunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php-version:
1818
- 7.3
1919
- 7.4
20+
- 8.0
2021
operating-system:
2122
- ubuntu-latest
2223

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/coveralls-upload.json
44
/phpunit.xml
55
/vendor/
6+
.phpunit.result.cache

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77
],
88
"license": "MIT",
99
"require": {
10-
"php": "^7.2",
11-
"ocramius/package-versions": "^1.3",
10+
"php": "^7.3 || ^8.0",
1211
"psr/container": "^1.0",
1312
"symfony/console": "^4.0 || ^5.0"
1413
},
1514
"require-dev": {
1615
"laminas/laminas-coding-standard": "^2.0",
1716
"phpspec/prophecy-phpunit": "^2.0",
1817
"phpstan/phpstan": "^0.12",
19-
"phpunit/phpunit": "^9.2"
18+
"phpunit/phpunit": "^9.5"
2019
},
2120
"config": {
2221
"sort-packages": true

0 commit comments

Comments
 (0)