diff --git a/composer.json b/composer.json index 8b07813..ab2f701 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,9 @@ "require": { "php": ">=5.3.0" }, + "require-dev": { + "mockery/mockery": "dev-master" + }, "autoload": { "psr-0": { "Damnit": "src/" diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..a902fc8 --- /dev/null +++ b/composer.lock @@ -0,0 +1,68 @@ +{ + "hash": "2edcea5ffbd2c56dd4d8c8a6a7d1e208", + "packages": [ + + ], + "packages-dev": [ + { + "name": "mockery/mockery", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/padraic/mockery.git", + "reference": "1174be6aed7b3c1e048834f14902ce796b6483c2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/padraic/mockery/zipball/1174be6aed7b3c1e048834f14902ce796b6483c2", + "reference": "1174be6aed7b3c1e048834f14902ce796b6483c2", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "hamcrest/hamcrest": "1.1.0" + }, + "time": "2013-03-11 13:49:28", + "type": "library", + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succint API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", + "homepage": "http://github.com/padraic/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ] + } + ], + "aliases": [ + + ], + "minimum-stability": "stable", + "stability-flags": { + "mockery/mockery": 20 + } +}