Skip to content

Commit

Permalink
Update build matrix to include recent symfony versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Aug 30, 2017
1 parent 62a75ea commit 82cd4b8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 17 deletions.
31 changes: 22 additions & 9 deletions .travis.yml
Expand Up @@ -3,12 +3,8 @@ language: php
php:
- 5.5
- 5.6
- 7
- hhvm

matrix:
allow_failures:
- php: hhvm
- 7.0
- 7.1

sudo: false

Expand All @@ -17,9 +13,26 @@ cache:
- $HOME/.composer/cache/files

env:
- SYMFONY_VERSION='2.8.*'
- SYMFONY_VERSION='3.0.*'
- SYMFONY_VERSION='3.1.*'
- SYMFONY_VERSION='3.3.*'

matrix:
include:
- php: 5.5
env:
- COMPOSER_FLAGS="--prefer-lowest"
- SYMFONY_VERSION='2.8.*'
- php: 7.1
env:
env:
- SYMFONY_VERSION='2.8.*'
- php: 7.1
env:
- SYMFONY_VERSION='3.1.*'
- php: 7.1
env:
- SYMFONY_VERSION='3.2.*'
- php: hhvm
dist: trusty

before_install:
- phpenv config-rm xdebug.ini || true
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# LuneticsLocaleBundle

This bundle allows you to guess the Locale from different parameters in your Symfony2 applications.
This bundle allows you to guess the Locale from different parameters in your Symfony applications.

[![Build Status](https://travis-ci.org/lunetics/LocaleBundle.svg?branch=master)](https://travis-ci.org/lunetics/LocaleBundle)

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -16,17 +16,17 @@
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": "^2.8|^3.0",
"symfony/yaml": "^2.8|^3.0",
"symfony/intl": "^2.8|^3.0",
"symfony/validator": "^2.8|^3.0",
"php": "^5.5.9 || ^7.0",
"symfony/framework-bundle": "^2.8 || ^3.0",
"symfony/yaml": "^2.8 || ^3.0",
"symfony/intl": "^2.8 || ^3.0",
"symfony/validator": "^2.8 || ^3.0",
"psr/log": "~1.0"
},
"require-dev": {
"ext-intl": "*",
"twig/twig": "1.*|2.*",
"symfony/form": "^2.8|^3.0"
"twig/twig": "1.* || 2.*",
"symfony/form": "^2.8 || ^3.0"
},
"suggest": {
"ext-intl": "Needed for displaying the country name in the locale language"
Expand Down

0 comments on commit 82cd4b8

Please sign in to comment.