-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.21 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
{
"name": "robier/mock-global-php-functions",
"authors": [
{
"name": "Robert Premar",
"email": "[email protected]",
"role": "Developer"
}
],
"description": "Mock any function that exists in global namespace",
"keywords" : [
"mock",
"function",
"global",
"mock time",
"mock sleep"
],
"readme": "./README.md",
"license": "MIT",
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Robier\\MockGlobalFunction\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Robier\\MockGlobalFunction\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit --process-isolation",
"test:coverage": "XDEBUG_MODE=coverage phpunit --process-isolation --coverage-text",
"test:coverage:html": "XDEBUG_MODE=coverage phpunit --process-isolation --coverage-html .cache/coverage"
},
"scripts-descriptions": {
"test": "Run all tests in process isolation mode",
"test:coverage": "Run all tests in process isolation mode with text coverage",
"test:coverage:html": "Run all tests in process isolation mode with html coverage that is generated inside .cache/coverage directory"
}
}