diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..dedd68e --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "mnapoli/phpunit-easymock", + "description": "Helpers to build PHPUnit mocks", + "keywords": ["phpunit", "mock"], + "homepage": "https://github.com/mnapoli/phpunit-easymock", + "license": "MIT", + "type": "library", + "autoload": { + "psr-4": { + "EasyMock\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "EasyMock\\Test\\": "tests/" + } + }, + "require": { + "php": "~5.4|~7.0", + "phpunit/phpunit-mock-objects": "~2.0|~3.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0|~5.0" + } +} |