From 3142a0be530bcb72bbee1fe0e27454397001d56a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 5 Dec 2017 09:08:48 +0100 Subject: duplicate php-mock-phpunit --- composer.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9a1aa20 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "php-mock/php-mock-phpunit", + "type": "library", + "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.", + "keywords": ["phpunit", "mock", "stub", "test double", "function", "test", "TDD", "BDD"], + "homepage": "https://github.com/php-mock/php-mock-phpunit", + "license": "WTFPL", + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "autoload": { + "psr-4": {"phpmock\\phpunit\\": "classes/"} + }, + "require": { + "php": ">=5.5", + "phpunit/phpunit": "^4.0.0 || ^5.0.0", + "php-mock/php-mock-integration": "^1" + }, + "archive": { + "exclude": ["/tests"] + }, + "conflict": { + "phpunit/phpunit-mock-objects": "3.2.0" + } +} -- cgit