Skip to content

Commit 0736c3c

Browse files
Add php versions support (#46)
* Add php versions support * Upgrade changes * Move cover annotation to class level Co-authored-by: Trayan Ivanov <trayan.ivanov@gmail.com>
1 parent 8187aee commit 0736c3c

6 files changed

Lines changed: 756 additions & 323 deletions

File tree

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ language: php
33
sudo: false
44

55
php:
6-
- 5.3
7-
- 5.4
8-
- 5.5
9-
- 5.6
10-
- 7.0
116
- 7.1
7+
- 7.2
8+
- 7.3
129

1310
env:
1411
- DEPS=normal

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
}
1111
],
1212
"require" : {
13-
"php": ">=5.3.2",
13+
"php": "^7.1",
1414
"lib-curl": "*",
1515
"swiftmailer/swiftmailer": "^5.0"
1616
},
1717
"require-dev" : {
18-
"phpunit/phpunit": ">=4.0,<6.0"
18+
"phpunit/phpunit": "^7"
1919
},
2020
"autoload": {
2121
"psr-4": {"Openbuildings\\Postmark\\": "src/"}
@@ -30,7 +30,7 @@
3030
},
3131
"config": {
3232
"platform": {
33-
"php": "5.4"
33+
"php": "7.1.8"
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)