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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
vendor/
.idea/
composer.lock
build/
.idea/
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- 7.0
Expand All @@ -21,10 +20,13 @@ matrix:

before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/http-kernel:$SYMFONY_VERSION symfony/dependency-injection:$SYMFONY_VERSION symfony/framework-bundle:$SYMFONY_VERSION; fi
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/framework-bundle:$SYMFONY_VERSION symfony/console:$SYMFONY_VERSION symfony/dependency-injection:$SYMFONY_VERSION symfony/http-kernel:$SYMFONY_VERSION symfony/config:$SYMFONY_VERSION; fi

install:
- composer update --prefer-dist

script:
- ./vendor/bin/phpunit --configuration phpunit.xml.dist --testsuite tests
- vendor/bin/phpunit

after_script:
- vendor/bin/coveralls
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# CommandBusLauncherBundle

[![Build Status](https://travis-ci.org/ClearcodeHQ/CommandBusLauncherBundle.svg?branch=master)](https://travis-ci.org/ClearcodeHQ/CommandBusLauncherBundle)
[![Coverage Status](https://coveralls.io/repos/ClearcodeHQ/CommandBusLauncherBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/ClearcodeHQ/CommandBusLauncherBundle?branch=master)
17 changes: 10 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,23 @@
}
],
"require": {
"php": ">=5.4",
"php": ">=5.5",
"simple-bus/symfony-bridge": "^4.1",
"clearcodehq/command-bus-launcher": "dev-master"
"clearcodehq/command-bus-launcher": "dev-master",
"symfony/framework-bundle": "~2.3",
"symfony/console": "~2.3",
"symfony/dependency-injection": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/config": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"doctrine/orm": "~2.3",
"symfony/symfony": "~2.7",
"symfony/browser-kit": "~2.7"
"satooshi/php-coveralls": "^0.6.1"
},
"autoload": {
"psr-4" : { "ClearcodeHQ\\CommandBusLauncherBundle\\": "src/" }
"psr-4" : { "ClearcodeHQ\\CommandBusLauncherBundle\\": "src" }
},
"autoload-dev": {
"psr-4" : { "tests\\ClearcodeHQ\\CommandBusLauncherBundle\\" : "tests/" }
"psr-4" : { "tests\\ClearcodeHQ\\CommandBusLauncherBundle\\" : "tests" }
}
}
Loading