Skip to content

Commit 93b4224

Browse files
author
Harry Bragg
authored
use 7.3 as default (#12)
* use 7.3 as fefault * code sniffer min version
1 parent 067c18b commit 93b4224

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ cache:
88
- $HOME/.composer/cache/files
99

1010
php:
11-
- 7.0
12-
- 7.1
13-
- 7.2
11+
- '7.0'
12+
- '7.1'
13+
- '7.2'
14+
- '7.3'
1415
- nightly
1516

1617
env:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY composer.lock /app/composer.lock
2020

2121
RUN composer install --no-ansi --no-dev --no-interaction --no-suggest --no-progress --no-scripts --optimize-autoloader --prefer-dist
2222

23-
FROM graze/php-alpine:7.2 AS run
23+
FROM graze/php-alpine:7.3 AS run
2424

2525
RUN set +xe \
2626
&& apk add --no-cache \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SHELL = /bin/sh
22

33
DOCKER = $(shell which docker)
4-
PHP_VER := 7.2
4+
PHP_VER := 7.3
55
IMAGE := graze/php-alpine:${PHP_VER}-test
66
VOLUME := /srv
77
DOCKER_RUN_BASE := ${DOCKER} run --rm -t -v $$(pwd):${VOLUME} -w ${VOLUME}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
"config": {
2626
"platform": {
27-
"php": "7.2"
27+
"php": "7.3"
2828
}
2929
},
3030
"require": {
@@ -43,7 +43,7 @@
4343
"graze/standards": "^2.0",
4444
"mockery/mockery": "^1",
4545
"phpunit/phpunit": "^5.7.21 | ^6 | ^7",
46-
"squizlabs/php_codesniffer": "^3.0"
46+
"squizlabs/php_codesniffer": "^3.3.1"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)