Skip to content

Commit 29f4052

Browse files
author
Tim Helfensdörfer
committed
Upgraded to php 7.2
1 parent 1ec48ed commit 29f4052

File tree

6 files changed

+538
-403
lines changed

6 files changed

+538
-403
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
config.php
22
composer.lock
3+
.phpunit.result.cache
34

5+
.idea/
46
/build/
57
/vendor/

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ language: php
33
matrix:
44
fast_finish: true
55
include:
6-
- php: 7.1
7-
- php: 7.2
8-
- php: nightly
6+
- php: "7.2"
7+
- php: "7.3"
98
allow_failures:
109
- php: nightly
1110

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "API wrapper for matomo",
44
"license": "MIT",
55
"require": {
6-
"php": ">=7",
6+
"php": ">=7.2",
77
"ext-json": "*",
88
"voku/httpful": "0.4.*"
99
},
1010
"require-dev": {
11-
"phpunit/phpunit": "7.4.*"
11+
"phpunit/phpunit": "8.1.*"
1212
},
1313
"autoload": {
1414
"psr-4": {

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
</whitelist>
1919
</filter>
2020
<logging>
21-
<log type="coverage-clover" target="build/logs/clover.xml"/>
21+
<log type="coverage-html" target="build/coverage/"/>
2222
</logging>
2323
</phpunit>

0 commit comments

Comments
 (0)