-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 887 Bytes
/
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
{
"name": "timacdonald/callable-fake",
"description": "A testing utility that allows you to fake and capture invokations of a callable / Closure",
"keywords": [
"callable",
"Closure",
"fake",
"testing"
],
"license": "MIT",
"authors": [
{
"name": "Tim MacDonald",
"email": "[email protected]",
"homepage": "https://timacdonald.me"
}
],
"require": {
"php": "^8.1",
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"TiMacDonald\\CallableFake\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}