27 lines
593 B
JSON
27 lines
593 B
JSON
|
|
{
|
||
|
|
"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", "GPL-3.0"],
|
||
|
|
"authors": [
|
||
|
|
{
|
||
|
|
"name": "David Grudl",
|
||
|
|
"homepage": "https://davidgrudl.com"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"require": {
|
||
|
|
"php": ">=7.1"
|
||
|
|
},
|
||
|
|
"require-dev": {
|
||
|
|
"nette/tester": "^2.3",
|
||
|
|
"phpstan/phpstan": "^0.12"
|
||
|
|
},
|
||
|
|
"autoload": {
|
||
|
|
"classmap": ["src/"]
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"phpstan": "phpstan analyse",
|
||
|
|
"tester": "tester tests -s"
|
||
|
|
}
|
||
|
|
}
|