Skip to content

Commit 76d51b9

Browse files
committed
Bump min. PHP version to 8 and fix tests
1 parent 7de2692 commit 76d51b9

8 files changed

Lines changed: 825 additions & 545 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/public/.htaccess
33
config.php
44
vendor
5+
.phpunit.result.cache

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ tools:
2424
php_pdepend:
2525
enabled: true
2626
excluded_dirs: ["test", "vendor"]
27-
php_analyzer: true
2827
php_analyzer:
28+
enabled: true
2929
filter:
3030
paths: ["src/*", "test/*"]
3131
sensiolabs_security_checker: true

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: php
22

33
php:
4-
- "7.0"
5-
- "7.1"
4+
- "8.0"
5+
- "8.1"
66
- "nightly"
77

88
before_script:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^7"
16+
"php": "^8"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^6"
19+
"phpunit/phpunit": "^9"
2020
}
2121
}

0 commit comments

Comments
 (0)