summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
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..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"]
+ }
+}