Skip to content

Commit

Permalink
Fix PHPUnit dependency specification to be development-only
Browse files Browse the repository at this point in the history
  • Loading branch information
acoulton committed Dec 3, 2015
1 parent d83df3a commit 1a66209
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

## 2.0.1

* Corrected the phpunit dependency specification in composer.json - it is only required for development.

## 2.0.0

Major rewrite to support namespaces, dependency injection and better separation of concerns. This is a
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,15 @@
"require": {
"composer/installers": "~1.0",
"kohana/core": "3.3.*",
"php": "^5.5",
"phpunit/phpunit": "^4.8"
"php": "^5.5"
},
"require-dev": {
"kohana/koharness": "dev-master",
"phpunit/phpunit": "^4.8",
"mikey179/vfsStream": "^1.6",
"zeelot/kohana-dependencies": "0.7.x-dev@dev"
},
"suggest": {
"zeelot/kohana-dependencies": "Dependency Injection container for Kohana 3.x"
},
"minimum-stability": "dev"
}
}

0 comments on commit 1a66209

Please sign in to comment.