diff options
author | Remi Collet <remi@remirepo.net> | 2017-05-11 07:29:07 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-05-11 07:29:07 +0200 |
commit | 1fd4a038b3ffb546cbd395b7ccea918875dbe605 (patch) | |
tree | 2b375a44cac682bd05dd495c15bac63090dc3692 /php-mock/composer.json | |
parent | 7360e1427a7917692cc64c6dd1a7159fbf281d6f (diff) |
Diffstat (limited to 'php-mock/composer.json')
-rw-r--r-- | php-mock/composer.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/php-mock/composer.json b/php-mock/composer.json new file mode 100644 index 0000000..b48be43 --- /dev/null +++ b/php-mock/composer.json @@ -0,0 +1,38 @@ +{ + "name": "php-mock/php-mock", + "type": "library", + "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.", + "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"], + "homepage": "https://github.com/php-mock/php-mock", + "license": "WTFPL", + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "autoload": { + "psr-4": { + "phpmock\\": ["classes/", "tests/unit/"] + } + }, + "require": { + "php": ">=5.5", + "phpunit/php-text-template": "^1" + }, + "require-dev": { + "phpunit/phpunit": "^4|^5" + }, + "replace": { + "malkusch/php-mock": "*" + }, + "suggest": { + "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock.", + "php-mock/php-mock-mockery": "Allows using PHPMockery for Mockery integration" + }, + "archive": { + "exclude": ["/tests"] + } +} |