From eaf2efe5dbe08d49e674a904aed46b05f75a02bd Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 22 Jan 2018 11:10:49 +0100 Subject: 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+ --- composer.json | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) (limited to 'composer.json') 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" } } } -- cgit