Skip to content

Commit b4856f5

Browse files
authored
Support PHP 7.2+ only (#10)
1 parent 464a769 commit b4856f5

33 files changed

+521
-714
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
sudo: false
22
language: php
33
php:
4-
- 5.6
5-
- 7
6-
- 7.1
7-
- 7.2
4+
- 7.2
85

96
install:
10-
- composer install
7+
- composer install --prefer-dist
118

129
script:
13-
- composer cs
14-
- composer test
10+
- composer cs
11+
- composer test
12+
13+
cache:
14+
directories:
15+
- $HOME/.composer/cache/files

circle.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
]
3131
},
3232
"require": {
33-
"php": ">=5.6.0",
34-
"webignition/internet-media-type-interface":">=0.1,<1.0",
33+
"php": ">=7.2.0",
34+
"webignition/internet-media-type-interface":">=0.4,<1.0",
3535
"webignition/quoted-string":">=0.2.1,<1.0",
3636
"webignition/string-parser":">=0.2.3,<1.0"
3737

3838
},
3939
"require-dev": {
40-
"phpunit/phpunit": "~5.0",
41-
"squizlabs/php_codesniffer": "3.*"
40+
"phpunit/phpunit": "^7",
41+
"squizlabs/php_codesniffer": "^3"
4242
},
4343
"minimum-stability":"stable",
4444
"prefer-stable":true

0 commit comments

Comments
 (0)