forked from lstrojny/phpunit-function-mocker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 822 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 822 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
{
"name": "lstrojny/phpunit-function-mocker",
"description": "Allows mocking otherwise untestable PHP functions through the use of namespaces. PHP 8.1 compatible fork of the eponymous library by Lars Strojny",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0 || ^8.1"
},
"require-dev": {
"phpunit/phpunit": "~9",
"squizlabs/php_codesniffer": "~3"
},
"authors": [
{
"name": "Lars Strojny",
"email": "lstrojny@php.net"
},
{
"name": "Andre Polykanine",
"email": "andre.polykanine@internations.org"
}
],
"autoload": {
"psr-4": {"PHPUnit\\Extension\\": "src/PHPUnit/Extension"}
},
"autoload-dev": {
"psr-4": {"PHPUnitTests\\Extension\\": "tests/"}
}
}