-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 757 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 757 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
30
31
32
33
{
"name": "dg/bypass-finals",
"description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
"keywords": ["testing", "unit", "phpunit", "mocking", "finals"],
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"nette/tester": "^2.6",
"phpstan/phpstan": "^2.2",
"phpstan/extension-installer": "^1.4",
"nette/phpstan-rules": "^1.0"
},
"autoload": {
"classmap": ["src/"]
},
"scripts": {
"phpstan": "phpstan analyse",
"tester": "tester tests -s"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}