Skip to content

Commit

Permalink
Adding PHPUnit 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotchance committed Sep 13, 2014
1 parent da68de3 commit 6702645
Show file tree
Hide file tree
Showing 3 changed files with 1,193 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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
Original file line number Diff line number Diff line change
@@ -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 6702645

Please sign in to comment.