This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
59 lines (59 loc) · 1.53 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
{
"name": "eloquent/phony",
"description": "Mocks, stubs, and spies for PHP.",
"keywords": ["mock", "mocking", "stub", "stubbing", "spy", "dummy", "double", "test", "fake"],
"homepage": "https://eloquent-software.com/phony/",
"license": "MIT",
"authors": [
{
"name": "Erin Millard",
"email": "[email protected]",
"homepage": "https://ezzatron.com/"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "^8"
},
"require-dev": {
"ext-pdo": "*",
"eloquent/code-style": "^2",
"eloquent/phpstan-phony": "^0.8",
"friendsofphp/php-cs-fixer": "^3",
"hamcrest/hamcrest-php": "^2",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Eloquent\\Phony\\": "src"
},
"files": [
"src/initialize.php",
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Eloquent\\Phony\\": ["test/src"]
},
"files": [
"test/src/ClassA.php",
"test/src/ClassWithProperty.php",
"test/src/initialize.php",
"test/src/Test/functions.php",
"test/src/TestClass.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "5.1.x-dev"
}
}
}