summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-02-07 16:51:29 +0100
committerRemi Collet <fedora@famillecollet.com>2017-02-07 16:51:29 +0100
commita5ed0e3cb7d8477fc3a09eb692a417f7078ec5e0 (patch)
treefb48be60704ee5e1ac2bf3784a7965b9b0a3374f /composer.json
php-phpunit-mock-objects4: 4.0.0 - New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json53
1 files changed, 53 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d445041
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,53 @@
+{
+ "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": "^7.0",
+ "phpunit/php-text-template": "^1.2",
+ "doctrine/instantiator": "^1.0.2",
+ "sebastian/exporter": "^2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<6.0"
+ },
+ "suggest": {
+ "ext-soap": "*"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/_fixture/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0.x-dev"
+ }
+ }
+}
+