Skip to content
Merged
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
23 changes: 7 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,24 @@ language: php
dist: trusty

php:
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "7.1"
- "7.2"
- "hhvm-3.12"
- "hhvm-3.18"
- "hhvm-3.24"
- "nightly"
- 7.1
- 7.2
- 7.3
- nightly

matrix:
fast_finish: true
allow_failures:
- php: "nightly"
- php: nightly
include:
- php: "7.2"
- php: 7.2
env: DOCS=yes
- php: "7.1"
- php: 7.1
env: REQUIRE="phpmyadmin/motranslator:^3.0"
- dist: precise
php: "5.3"

sudo: false

install:
- if [ $(php -r "echo PHP_MAJOR_VERSION;") -lt 7 ] ; then sed -i '/sami/D' composer.json ; fi
- if [ -n "$REQUIRE" ] ; then composer require "$REQUIRE" ; fi
- composer install

Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

* Drop support for PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, PHP 7.0 and HHVM

## [4.3.1] - 2019-01-05

* Fixed incorrect error thrown on DEFAULT keyword in ALTER statement (#218)
Expand Down Expand Up @@ -333,4 +335,3 @@ __Breaking changes:__
## [1.0.0] - 2015-08-20

* First release of this library.

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"source": "https://github.com/phpmyadmin/sql-parser"
},
"require": {
"php": ">=5.3.0",
"php": "^7.1",
"symfony/polyfill-mbstring": "^1.3"
},
"require-dev": {
"sami/sami": "^4.0",
"phpunit/php-code-coverage": "*",
"phpunit/phpunit": "~4.8 || ~5.7 || ~6.5"
"phpunit/phpunit": "^7.4"
},
"conflict": {
"phpmyadmin/motranslator": "<3.0"
Expand Down
3 changes: 1 addition & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
stopOnFailure="false">
<logging>
<log type="coverage-clover" target="coverage.xml" />
</logging>
Expand Down