summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-12-05 09:08:48 +0100
committerRemi Collet <remi@remirepo.net>2017-12-05 09:08:48 +0100
commit3142a0be530bcb72bbee1fe0e27454397001d56a (patch)
treea36f73176c38d6e51fc27482a5a1528e4dc9b0cc /composer.json
duplicate php-mock-phpunit
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json30
1 files changed, 30 insertions, 0 deletions
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"
+ }
+}