forked from eloquent/phony-kahlan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "teamgantt/phony-kahlan",
"description": "Phony for Kahlan.",
"keywords": [
"mock",
"mocking",
"stub",
"stubbing",
"spy",
"dummy",
"double",
"test",
"fake"
],
"homepage": "http://eloquent-software.com/phony/",
"license": "MIT",
"authors": [
{
"name": "Erin Millard",
"email": "[email protected]",
"homepage": "http://ezzatron.com/"
},
{
"name": "Nathan Tech",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"teamgantt/phony": "^1",
"kahlan/kahlan": "^5"
},
"require-dev": {
"eloquent/code-style": "^1",
"eloquent/phpstan-phony": "^0.7",
"errors/exceptions": "^0.2",
"friendsofphp/php-cs-fixer": "^2",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"Eloquent\\Phony\\Kahlan\\": "src"
},
"files": [
"src/initialize.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Eloquent\\Phony\\Kahlan\\": "test/src"
},
"files": [
"test/src/object.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}