From fb69813d5354514327c911f1a00a95561be6ec33 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 5 Dec 2017 08:58:11 +0100 Subject: duplicate php-mock-integration --- 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..c8e1c73 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "php-mock/php-mock-integration", + "type": "library", + "description": "Integration package for PHP-Mock", + "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"], + "homepage": "https://github.com/php-mock/php-mock-integration", + "license": "WTFPL", + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "autoload": { + "psr-4": {"phpmock\\integration\\": "classes/"} + }, + "require": { + "php": ">=5.5", + "php-mock/php-mock": "^1", + "phpunit/php-text-template": "^1" + }, + "require-dev": { + "phpunit/phpunit": "^4|^5" + }, + "archive": { + "exclude": ["/tests"] + } +} -- cgit