-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "bovigo/callmap",
"description": "Allows to stub and mock method calls by applying a callmap.",
"license": "BSD-3-Clause",
"require": {
"php": "^8.3",
"bovigo/assert": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"xp-framework/core": "^11.6",
"xp-framework/unittest": "^11.1"
},
"suggest": {
"bovigo/assert": "To use argument verification",
"phpunit/phpunit": "Alternative option for argument verification"
},
"autoload": {
"psr-4": {
"bovigo\\callmap\\": "src/main/php"
},
"files": ["src/main/php/functions.php"]
},
"autoload-dev": {
"psr-4": {
"bovigo\\callmap\\": "src/test/php"
},
"files": ["src/test/php/helper/functions.php"]
},
"extra": {
"branch-alias": {
"dev-main": "8.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}