- 
                Notifications
    
You must be signed in to change notification settings  - Fork 2
 
Closed
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
Description
When installing the composer package, the autoloader can not be found, as the path you are trying to resolve for the autoload, has a additional depth of 2.
Adding another line within the $paths array, within vendor/aeliot/php-cs-fixer-baseline/bin/pcsf-baseline in my case, helped me out:
$paths = [
        __DIR__ . '/vendor/autoload.php',
        __DIR__ . '/../vendor/autoload.php',
        __DIR__ . '/../../vendor/autoload.php',
        __DIR__ . '/../../../../vendor/autoload.php',
    ];
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed