-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.22 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
{
"name": "bizkit/phpunit-function-mock",
"description": "Provides a simple way to mock built-in PHP functions in PHPUnit tests.",
"type": "library",
"keywords": [
"phpunit",
"phpunit extension",
"testing",
"mock",
"mock functions",
"monkey patching"
],
"homepage": "https://github.com/HypeMC/phpunit-function-mock",
"license": "MIT",
"authors": [
{
"name": "HypeMC",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.14 || ^9.5"
},
"conflict": {
"phpunit/phpunit": "<8.5.14"
},
"autoload": {
"psr-4": {
"Bizkit\\FunctionMock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bizkit\\FunctionMock\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"lint": "php-cs-fixer fix -v && php-cs-fixer fix -v --config .php-cs-fixer.test.dist.php",
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}