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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/composer.lock
/vendor/
/bin/
12 changes: 10 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ php:
# Commands to be run before your environment runs.
before_script:
- composer self-update
- composer install --prefer-source --no-interaction
- if [ "$SYMFONY" != "" ]; then composer require "symfony/symfony:${SYMFONY}" --no-update; fi;
- composer update --prefer-source --no-interaction ${COMPOSER_FLAGS}


# Commands you want to run that will verify your build.
Expand All @@ -28,8 +29,15 @@ matrix:
# - php: 7
# - php: hhvm
fast_finish: true
include:
- php: '7.0'
env: COMPOSER_FLAGS="--prefer-lowest"
- php: '7.0'
env: SYMFONY=2.8.*
- php: '7.0'
env: SYMFONY=3.0.*

# Customize when the notification emails are sent.
notifications:
on_success: never
on_failure: always
on_failure: always
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "algatux/influxdb-bundle",
"description": "InfluxDB Bundle",
"require": {

"php": ">=7.0",

"influxdb/influxdb-php": "^1.2",
"symfony/dependency-injection": "^3.0",
"symfony/config": "^3.0",
"symfony/http-kernel": "^3.0",
"symfony/dependency-injection": "^2.8 || ^3.0",
"symfony/config": "^2.8 || ^3.0",
"symfony/http-kernel": "^2.8 || ^3.0",
"doctrine/collections": "^1.3",
"symfony/event-dispatcher": "^3.0"
"symfony/event-dispatcher": "^2.8 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1",
Expand Down
Loading