Skip to content

Commit

Permalink
Merge pull request #160 from elliotchance/1.4/160-lower-requirement-t…
Browse files Browse the repository at this point in the history
…o-phpunit

Lower requirement to PHPUnit >= 3.7
  • Loading branch information
elliotchance committed Sep 14, 2014
2 parents 3c739b5 + 788d561 commit 2737beb
Show file tree
Hide file tree
Showing 6 changed files with 2,460 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -8,6 +8,10 @@ matrix:
include:
- php: 5.6
env: PHPUNIT_OPTIONS="--coverage-clover build/logs/clover.xml"
- php: 5.6
env: COMPOSER=composer41.json
- php: 5.6
env: COMPOSER=composer40.json

install:
- composer install
Expand Down
28 changes: 28 additions & 0 deletions composer40.json
@@ -0,0 +1,28 @@
{
"name": "elliotchance/concise",
"type": "library",
"description": "Concise is test framework for using plain English and minimal code, built on PHPUnit.",
"keywords": ["unit testing", "unit", "test", "phpunit", "tdd", "mocking", "mock", "assert", "assertion"],
"homepage": "https://github.com/elliotchance/concise",
"license": "MIT",
"authors": [
{
"name": "Elliot Chance",
"email": "elliotchance@gmail.com"
}
],
"bin": ["bin/concise"],
"require": {
"php": ">=5.3.0",
"kevinlebrun/colors.php": ">= 0.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"": [ "tests/", "src/" ]
}
}
}

0 comments on commit 2737beb

Please sign in to comment.