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
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
sudo: false

language: php
php:
- 'master'
Expand Down Expand Up @@ -32,7 +30,7 @@ cache:
apt: true
timeout: 604800
directories:
- ${HOME}/.local/opt/re2c
- ${HOME}/.local/opt
- ${HOME}/.cache/re2c

before_install:
Expand All @@ -45,10 +43,10 @@ install:
- aclocal && libtoolize --copy --force && autoheader && autoconf
- |
./configure \
--with-php-config=$(phpenv which php-config) \
--enable-zephir-parser \
--enable-zephir-parser-debug \
--enable-coverage
--with-php-config=$(phpenv which php-config) \
--enable-zephir-parser \
--enable-zephir-parser-debug \
--enable-coverage
- make -j"$(getconf _NPROCESSORS_ONLN)"

before_script:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- Fixed syntax error with final class and use of extends and implements [#48](https://github.com/phalcon/php-zephir-parser/issues/48)

### Removed
- PHP 5.x no longer supported. PHP 5.x users should use previous releases

Expand Down
Loading