Skip to content
This repository has been archived by the owner on Jul 1, 2023. It is now read-only.

travis: run pipeline for old php versions on trusty dist #155

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
language: php

php:
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "7.1"
- "7.2"
- "7.3"
matrix:
include:
- php: "5.4"
dist: trusty
- php: "5.5"
dist: trusty
- php: "5.6"
- php: "7.0"
- php: "7.1"
- php: "7.2"
- php: "7.3"

sudo: false

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require-dev": {
"nette/tester": "~1.3",
"jakub-onderka/php-console-highlighter": "~0.3",
"squizlabs/php_codesniffer": "~2.7"
"squizlabs/php_codesniffer": "~3.0"
},
"suggest": {
"jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet"
Expand Down