summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-05-13 10:44:59 +0200
committerRemi Collet <remi@remirepo.net>2018-05-13 10:44:59 +0200
commit74487ee9cd39eb1974506005e23d9b45cc930bf9 (patch)
treee3d0b620bf089c2953425086fbc2a11262fe3cb6 /composer.json
parenteaf2efe5dbe08d49e674a904aed46b05f75a02bd (diff)
v1.1.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json15
1 files changed, 12 insertions, 3 deletions
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"