Carlos A Sastre
Carlos A Sastre
Right now only classes defined by PSR-0 or PSR-4 are extracted from composer.json We should also extract the ones defined by 'files' ``` "autoload": { "files": [ "src/SomeClass.php", "src/functions.php" ],...
**Enhancement description** It would be great to have the option of checking if a class has some dependency/inheritance/mixin/composition not only by itself but coming from a parent. **Suggested approach or...
I want to automate the update of our Postman collection from our OAS file during the pipeline. However, every time that I run the script, the example data (id, texts,...
When the option `ignore_built_in_classes` is enabled, and there is a rule like: ``` return PHPat::rule() ->classes(Selector::namespace('App\Whatever')) ->shouldImplement() ->classes(Selector::classname(\JsonSerializable::class)); ``` PHPat reports: > App\Whatever\MyClass should implement JsonSerializable --- Built-in classes should...