Skip to content

Commit a43772d

Browse files
authored
Update minimal version to PHP 7.1 (#13)
1 parent ac04061 commit a43772d

11 files changed

+828
-546
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
build:
55
docker:
6-
- image: circleci/php:7.0
6+
- image: circleci/php:7.1
77
- image: systemli/etherpad-lite:1.6.1
88
steps:
99
- checkout

.scrutinizer.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
checks:
2-
php:
3-
code_rating: true
4-
duplication: true
2+
php:
3+
code_rating: true
4+
duplication: true
55

66
build:
7-
tests:
8-
override:
9-
-
10-
command: 'vendor/bin/phpunit --coverage-clover=coverage.xml'
11-
coverage:
12-
file: 'coverage.xml'
13-
format: 'clover'
7+
tests:
8+
override:
9+
- command: 'vendor/bin/phpunit --coverage-clover=coverage.xml'
10+
coverage:
11+
file: 'coverage.xml'
12+
format: 'clover'
1413

1514
filter:
16-
excluded_paths:
17-
- src/EtherpadLite/Tests/*
18-
- features/*
15+
excluded_paths:
16+
- src/EtherpadLite/Tests/*
17+
- features/*

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"psr-4": { "": "src/" }
1313
},
1414
"require": {
15-
"php": "^5.6|^7.0",
16-
"guzzlehttp/guzzle": "~6.0"
15+
"php": "^7.1",
16+
"guzzlehttp/guzzle": "~6.3"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "~5.7",
19+
"phpunit/phpunit": "~7.5",
2020
"behat/behat": "^3.3"
2121
}
2222
}

0 commit comments

Comments
 (0)