-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 897 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 897 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
{
"name": "betterphp/php-native-mock",
"version": "1.0.0",
"type": "library",
"license": "GPL-3.0",
"description": "PHP Native Mock is a helper class that allows for easy mocking of native PHP functions and class methods in unit tests using the UOPZ extension.",
"keywords": ["mock", "unit test", "test", "redefine", "native", "function"],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/betterphp/php-code-style.git"
}
],
"require": {
"php": ">= 7.0.0",
"ext-uopz": "*"
},
"require-dev": {
"betterphp/php-code-style": "dev-master",
"squizlabs/php_codesniffer": "~3",
"phpunit/phpunit": "~6",
"phpdocumentor/phpdocumentor": "~2"
},
"autoload": {
"psr-4": {
"betterphp\\native_mock\\": "./src/native_mock"
}
}
}