summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-01-22 11:10:49 +0100
committerRemi Collet <remi@remirepo.net>2018-01-22 11:10:49 +0100
commiteaf2efe5dbe08d49e674a904aed46b05f75a02bd (patch)
tree1e0e70f148c0bd5845b2c70ba2208d3992ef3378 /composer.json
parentd30532646e05be2d361348ba6287e51346e2069f (diff)
Update to 1.0
rename to php-mockery and move to /usr/share/php/Mockery1 raise dependency on PHP 5.6 raise dependency on hamcrest/hamcrest-php 2.0 use phpunit6 on F26+
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json27
1 files changed, 20 insertions, 7 deletions
diff --git a/composer.json b/composer.json
index d538f0d..5961925 100644
--- a/composer.json
+++ b/composer.json
@@ -1,8 +1,19 @@
{
"name": "mockery/mockery",
"description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
- "keywords": ["library", "testing", "test", "stub", "mock", "mockery", "test double", "tdd", "bdd", "mock objects"],
- "homepage": "http://github.com/padraic/mockery",
+ "keywords": [
+ "bdd",
+ "library",
+ "mock",
+ "mock objects",
+ "mockery",
+ "stub",
+ "tdd",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "homepage": "http://github.com/mockery/mockery",
"license": "BSD-3-Clause",
"authors": [
{
@@ -17,19 +28,21 @@
}
],
"require": {
- "php": ">=5.3.2",
+ "php": ">=5.6.0",
"lib-pcre": ">=7.0",
- "hamcrest/hamcrest-php": "~1.1"
+ "hamcrest/hamcrest-php": "~2.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "phpunit/phpunit": "~5.7|~6.1"
},
"autoload": {
- "psr-0": { "Mockery": "library/" }
+ "psr-0": {
+ "Mockery": "library/"
+ }
},
"extra": {
"branch-alias": {
- "dev-master": "0.9.x-dev"
+ "dev-master": "1.0.x-dev"
}
}
}