add missing dev package for codeception

This commit is contained in:
Niels Vanpachtenbeke 2022-03-20 23:10:08 +01:00
parent 9d685ce3ec
commit df524d651e
2 changed files with 6 additions and 4 deletions

View File

@ -28,10 +28,11 @@
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*@dev",
"codeception/module-asserts": "*@dev",
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "^6.2"
"codeception/module-cli": "^2.0",
"codeception/module-phpbrowser": "*@dev",
"slevomat/coding-standard": "^6.2",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {

View File

@ -11,6 +11,7 @@ class FakeMetaCommand extends MetaCommand
// by default, the ide-helper throws exceptions when it cannot find a class. However it does not unregister that
// autoloader when it is done, and we certainly do not want to throw exceptions when we are simply checking if
// a certain class exists. We are instead changing this to be a noop.
return function () {};
return function () {
};
}
}