Skip to content

Commit 98ad5c3

Browse files
authored
Upgrade changes (#39)
1 parent faaca8e commit 98ad5c3

File tree

5 files changed

+275
-265
lines changed

5 files changed

+275
-265
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: php
33
sudo: false
44

55
php:
6-
- 7.0
76
- 7.1
87
- 7.2
98
- 7.3
@@ -40,7 +39,7 @@ before_script:
4039
- mkdir -p build/logs
4140

4241
script:
43-
- ./vendor/bin/phpunit --stop-on-error --stop-on-failure --coverage-clover build/logs/clover.xml
42+
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
4443

4544
after_script:
4645
- test -e build/logs/clover.xml && wget https://scrutinizer-ci.com/ocular.phar

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
}
1111
],
1212
"require" : {
13-
"php": ">=7.0",
13+
"php": "^7.1",
1414
"swiftmailer/swiftmailer": "^5.1 || ^6.0",
1515
"tijsverkoyen/css-to-inline-styles": "^2.1"
1616
},
1717
"require-dev" : {
18-
"phpunit/phpunit": "^5.7.10 || ^6.0",
19-
"symfony/css-selector": "^2.0.5|^3.0"
18+
"symfony/css-selector": "^2.0.5|^3.0",
19+
"phpunit/phpunit": "^7"
2020
},
2121
"autoload": {
2222
"psr-4": {
@@ -30,7 +30,7 @@
3030
},
3131
"config": {
3232
"platform": {
33-
"php": "7.0"
33+
"php": "7.1.8"
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)