From 13a676daf6a3716aae2e056a584e68c6bddc4993 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 16 Jun 2016 07:13:28 +0200 Subject: php-mock-phpunit: 1.1.2 --- php-mock-phpunit/composer.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 php-mock-phpunit/composer.json (limited to 'php-mock-phpunit/composer.json') diff --git a/php-mock-phpunit/composer.json b/php-mock-phpunit/composer.json new file mode 100644 index 0000000..9a1aa20 --- /dev/null +++ b/php-mock-phpunit/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