Skip to content

Commit e754145

Browse files
committed
update php version and tests
1 parent 8f833fb commit e754145

File tree

4 files changed

+906
-340
lines changed

4 files changed

+906
-340
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: php
22
php:
3-
- '7.2'
43
- '7.3'
54
- '7.4'
5+
- '8.0'
66

77
sudo: false
88

composer.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
}],
2727
"type": "library",
2828
"require": {
29-
"php": ">=7.2"
29+
"php": ">=7.3"
3030
},
3131
"require-dev": {
32-
"phpunit/phpunit": "^8.0"
32+
"phpunit/phpunit": "^9.5.0"
3333
},
3434
"autoload": {
3535
"psr-4": {
@@ -45,5 +45,10 @@
4545
"prefer-install": "dist"
4646
},
4747
"minimum-stability": "dev",
48-
"prefer-stable": true
48+
"prefer-stable": true,
49+
"scripts": {
50+
"test": [
51+
"phpunit tests/*.php"
52+
]
53+
}
4954
}

0 commit comments

Comments
 (0)