Skip to content
Closed
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
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: php

php:
- 5.4
- 5.5
- 5.6
- 7.0

matrix:
include:
- php: 5.6
env: SYMFONY_VERSION="2.3.*"
- php: 5.6
env: SYMFONY_VERSION="2.4.*"
- php: 5.6
env: SYMFONY_VERSION="2.5.*"
- php: 5.6
env: SYMFONY_VERSION="2.6.*"
- php: 5.6
env: SYMFONY_VERSION="2.7.*"

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

install:
- composer update --prefer-dist

script:
- ./vendor/bin/phpunit --configuration phpunit.xml.dist --testsuite tests
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# CommandBusLauncherBundle

[![Build Status](https://travis-ci.org/Lucaszz/CommandBusLauncherBundle.svg?branch=improvements%2Ftests)](https://travis-ci.org/Lucaszz/CommandBusLauncherBundle)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe ClearcodeHQ should have an account on Travis CI?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll try to authirize myself.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I does not have an access to clearcodehq :/

13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,17 @@
"require": {
"php": ">=5.4",
"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"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"doctrine/orm": "~2.3",
"symfony/symfony": "~2.7",
"symfony/browser-kit": "~2.7"
"phpunit/phpunit": "~4.0"
},
"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