i'm trying to use Skeleton Generator but every time i try to use it i receive the error below:
Fatal error: Class 'SebastianBergmann\PHPUnit\SkeletonGenerator\CLI\Application' not found in [path_to_project]/vendor/phpunit/phpunit-skeleton-generator/phpunit-skelgen on line 63
THE CONTEXT
I've installed SkeletonGenerator through Composer.
The not found class in reality exists in the path /vendor/phpunit/phpunit-skeleton-generator/src/CLI/Application
I don't understand why the class exists but it isn't seen.
What can i do to solve the problem? Is it related to the autoloading of packages by composer?
GitHub issue: https://github.com/sebastianbergmann/phpunit-skeleton-generator/issues/46
use ...;line in order to import the class? - A.L