summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json14
1 files changed, 8 insertions, 6 deletions
diff --git a/composer.json b/composer.json
index 5500e4e..f2d926e 100644
--- a/composer.json
+++ b/composer.json
@@ -2,7 +2,7 @@
"name": "php-mock/php-mock",
"type": "library",
"description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.",
- "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"],
+ "keywords": ["mock", "stub", "test double", "function", "test", "testing", "TDD", "BDD"],
"homepage": "https://github.com/php-mock/php-mock",
"license": "WTFPL",
"authors": [
@@ -14,25 +14,27 @@
}
],
"autoload": {
+ "files": ["autoload.php"],
"psr-4": {
"phpmock\\": ["classes/", "tests/"]
}
},
"autoload-dev": {
- "files": ["autoload.php"]
+ "files": ["tests/autoload.php"]
},
"require": {
- "php": "^5.6 || ^7.0",
- "phpunit/php-text-template": "^1"
+ "php": "^5.6 || ^7.0 || ^8.0",
+ "phpunit/php-text-template": "^1 || ^2 || ^3 || ^4"
},
"require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0"
+ "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
+ "squizlabs/php_codesniffer": "^3.8"
},
"replace": {
"malkusch/php-mock": "*"
},
"suggest": {
- "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock."
+ "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock."
},
"archive": {
"exclude": ["/tests"]