Skip to content

Commit 4ef3bb2

Browse files
authored
Merge pull request #165 from Kharhamel/php74
added a pipeline for php7.4 and dropped support for php7.1
2 parents 50f1e60 + 085fb42 commit 4ef3bb2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
language: php
22
matrix:
3+
fast_finish: true # Don't wait for the allowed failures to build.
34
include:
45
- php: 7.3
56
env: PREFER_LOWEST=""
67
- php: 7.2
78
env: PREFER_LOWEST=""
9+
allow_failures:
10+
# PHP 7.4 testing is allowed to fail because the container isn't ready yet
11+
- php: 7.4
12+
env: PREFER_LOWEST=""
813

914
cache:
1015
directories:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
]
101101
},
102102
"require": {
103-
"php": ">=7.1"
103+
"php": ">=7.2"
104104
},
105105
"require-dev": {
106106
"phpstan/phpstan": "^0.12",

0 commit comments

Comments
 (0)