From 74487ee9cd39eb1974506005e23d9b45cc930bf9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 13 May 2018 10:44:59 +0200 Subject: v1.1.0 --- composer.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 5961925..12f23f6 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,9 @@ { "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.", + "description": "Mockery is a simple yet flexible PHP mock object framework", + "scripts": { + "docs": "phpdoc -d library -t docs/api" + }, "keywords": [ "bdd", "library", @@ -13,7 +16,7 @@ "test double", "testing" ], - "homepage": "http://github.com/mockery/mockery", + "homepage": "https://github.com/mockery/mockery", "license": "BSD-3-Clause", "authors": [ { @@ -33,13 +36,19 @@ "hamcrest/hamcrest-php": "~2.0" }, "require-dev": { - "phpunit/phpunit": "~5.7|~6.1" + "phpunit/phpunit": "~5.7.10|~6.5", + "phpdocumentor/phpdocumentor": "^2.9" }, "autoload": { "psr-0": { "Mockery": "library/" } }, + "autoload-dev": { + "psr-4": { + "test\\": "tests/" + } + }, "extra": { "branch-alias": { "dev-master": "1.0.x-dev" -- cgit