-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 960 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 960 Bytes
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
{
"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 || ^12.4"
},
"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": "9.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}