summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-03-10 07:05:49 +0100
committerRemi Collet <remi@php.net>2025-03-10 07:05:49 +0100
commit26aceaed3e0b7c4fc0067bae3f6448848d3ac3ee (patch)
tree185b67fc6ebd0f30170f58028056d51bcde47c30 /composer.json
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..ee11b60
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "php-mock/php-mock-integration",
+ "type": "library",
+ "description": "Integration package for PHP-Mock",
+ "keywords": ["mock", "stub", "test double", "function", "test", "TDD", "BDD"],
+ "homepage": "https://github.com/php-mock/php-mock-integration",
+ "license": "WTFPL",
+ "authors": [
+ {
+ "name": "Markus Malkusch",
+ "email": "markus@malkusch.de",
+ "homepage": "http://markus.malkusch.de",
+ "role": "Developer"
+ }
+ ],
+ "autoload": {
+ "psr-4": {"phpmock\\integration\\": "classes/"}
+ },
+ "autoload-dev": {
+ "files": ["tests/autoload.php"],
+ "psr-4": {"phpmock\\integration\\": "tests/"}
+ },
+ "require": {
+ "php": ">=5.6",
+ "php-mock/php-mock": "^2.5",
+ "phpunit/php-text-template": "^1 || ^2 || ^3 || ^4 || ^5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12"
+ },
+ "archive": {
+ "exclude": ["/tests"]
+ }
+}