summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-04-21 06:11:37 +0200
committerRemi Collet <fedora@famillecollet.com>2016-04-21 06:11:37 +0200
commit103d27bfa954a38f81f9360006403e7c9168c42a (patch)
tree55c879e8ffe301e9c85fe1ba906518457a159024 /composer.json
parentbe8c3ac451bc6bf04b588230e5bd16692ca62bfb (diff)
php-phpunit-PHPUnit-MockObject: 3.1.3
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json50
1 files changed, 50 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..12fb934
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,50 @@
+{
+ "name": "phpunit/phpunit-mock-objects",
+ "description": "Mock Object library for PHPUnit",
+ "type": "library",
+ "keywords": [
+ "xunit",
+ "mock"
+ ],
+ "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sb@sebastian-bergmann.de",
+ "role": "lead"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
+ "irc": "irc://irc.freenode.net/phpunit"
+ },
+ "require": {
+ "php": ">=5.3.3",
+ "phpunit/php-text-template": "~1.2",
+ "doctrine/instantiator": "^1.0.2",
+ "sebastian/exporter": "~1.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.4"
+ },
+ "suggest": {
+ "ext-soap": "*"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/_fixture/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.3.x-dev"
+ }
+ }
+}
+