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

language: php

php:
- 5.6
- 7
- hhvm

matrix:
allow_failures:
- php: hhvm
- php: 7

before_install:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source

before_script:
- composer install -n

script:
- vendor/bin/phpspec run --config=phpspec.yml --no-interaction

env:
- SYMFONY_VERSION=^2.7
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Use Case Bundle

[![Build Status](https://travis-ci.org/udan/use-case-bundle.svg?branch=master)](https://travis-ci.org/udan/use-case-bundle)

Use Case Bundle is a Symfony bundle that supports Use Case Driven Development with Symfony framework. It encourages
designing your class in a fashion reflects the intention of your application. The tools provided by Use Case Bundle
relieve you of the repetitive task of extracting the information required to perform the right behavior from the
Expand All @@ -8,19 +10,7 @@ application input, which helps you output the results in the desired way.
Installation
============

Add the following content in your composer.json file

"require": {
"lamudi/use-case-bundle" : "~0.2"
},
"repositories": [{
"type": "vcs",
"url": "ssh://git@bitbucket.lamudi.com:7999/lmd/use-case-bundle.git"
}]

then run

$ composer update lamudi/use-case-bundle
$ composer require lamudi/use-case-bundle dev-master

Configuration
=============
Expand Down