Skip to content

Commit

Permalink
Fix minimum SF version, now it's 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroTroller committed May 18, 2016
1 parent 52e7498 commit cf4459f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 11 deletions.
25 changes: 22 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,36 @@
sudo: false

language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0


cache:
directories:
- $HOME/.composer/cache

matrix:
include:
- php: 5.3
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 5.4
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 5.5
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 5.6
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: 7.0
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'

branches:
only:
- master

before_script:
- composer update --prefer-source
- composer update --prefer-source $COMPOSER_FLAGS

script:
- bin/phpspec run -fpretty
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DictionaryBundle
Are you often tired to repeat static choices like gender or civility in your apps ?

## Requirements
- Symfony >= 2.4
- Symfony >= 2.5

## Installation
Add the DictionaryBundle to your `composer.json`:
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"minimum-stability": "stable",
"require": {
"php": ">=5.3",
"symfony/http-kernel": "~2.4",
"symfony/dependency-injection": "~2.4",
"symfony/http-foundation": "~2.4",
"symfony/config": "~2.4",
"symfony/form": "~2.4",
"symfony/validator": "~2.4",
"symfony/http-kernel": "~2.5",
"symfony/dependency-injection": "~2.5",
"symfony/http-foundation": "~2.5",
"symfony/config": "~2.5",
"symfony/form": "~2.5",
"symfony/validator": "~2.5",
"twig/twig": "~1.11",
"fzaninotto/faker": "^1.5"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"phpspec/phpspec": "~2.5",
"bossa/phpspec2-expect": "~1.0"
},
"config": {
Expand Down

0 comments on commit cf4459f

Please sign in to comment.