Skip to content

Commit 67a28b2

Browse files
Support for PHP 8 (#41)
1 parent 98ad5c3 commit 67a28b2

File tree

4 files changed

+1318
-387
lines changed

4 files changed

+1318
-387
lines changed

.travis.yml

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

55
php:
6-
- 7.1
7-
- 7.2
86
- 7.3
7+
- 7.4
8+
- 8.0
99

1010
env:
1111
- DEPS=normal

composer.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
}
1111
],
1212
"require" : {
13-
"php": "^7.1",
13+
"php": "^7.3 || ^8.0",
1414
"swiftmailer/swiftmailer": "^5.1 || ^6.0",
1515
"tijsverkoyen/css-to-inline-styles": "^2.1"
1616
},
1717
"require-dev" : {
1818
"symfony/css-selector": "^2.0.5|^3.0",
19-
"phpunit/phpunit": "^7"
19+
"phpunit/phpunit": "^9.3"
2020
},
2121
"autoload": {
2222
"psr-4": {
@@ -30,7 +30,10 @@
3030
},
3131
"config": {
3232
"platform": {
33-
"php": "7.1.8"
33+
"php": "8.0"
3434
}
35+
},
36+
"scripts": {
37+
"test": "phpunit"
3538
}
3639
}

0 commit comments

Comments
 (0)