Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lower requirement to PHPUnit >= 3.7 #160

Merged
merged 3 commits into from
Sep 14, 2014
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: 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/" ]
}
}
}
Loading