We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scip-php/src/Composer/Composer.php
Line 93 in 9e51c68
Following the instructions in the readme to run the indexer
composer require --dev davidrjenni/scip-php vendor/bin/scip-php src code-intel upload
makes the code always throw an exception, due to the fact that the path checked in the provided link is:
$scipPhpVendorDir = self::join(__DIR__, '..', '..', 'vendor'); if (realpath($scipPhpVendorDir) === false) { throw new RuntimeException("Invalid scip-php vendor directory: {$scipPhpVendorDir}."); }
which always fails due to the use of __DIR__ that refers to the composer.php file location
__DIR__
composer.php
The text was updated successfully, but these errors were encountered:
Is there a workaround for this?
Sorry, something went wrong.
No branches or pull requests
Bug report
Link to repository
scip-php/src/Composer/Composer.php
Line 93 in 9e51c68
Problem
Following the instructions in the readme to run the indexer
makes the code always throw an exception, due to the fact that the path checked in the provided link is:
which always fails due to the use of
__DIR__
that refers to thecomposer.php
file locationThe text was updated successfully, but these errors were encountered: