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
On Windows there is the following problem:
"test/test4": { "type": "path", "url": "C:\\xampp\\htdocs\\FORKED\\package-testing\\packages/test/test4", "options": { "symlink": true } },
The problem is fixed with the following modification:
// FileHandler.php public function vendorPath() { return $this->packagesPath().'\\'.$this->vendor(); } public function packagePath() { return $this->vendorPath().'\\'.$this->package(); }
The result is now correct:
"test/test5": { "type": "path", "url": "C:\\xampp\\htdocs\\FORKED\\package-testing\\packages\\test\\test5", "options": { "symlink": true } },
PS I don't know if this affects MacOS
Is it ok if I open a PR for this?
The text was updated successfully, but these errors were encountered:
Nice job on describing the issue and working on the PR! 👏
Sorry, something went wrong.
No branches or pull requests
On Windows there is the following problem:
The problem is fixed with the following modification:
The result is now correct:
PS I don't know if this affects MacOS
Is it ok if I open a PR for this?
The text was updated successfully, but these errors were encountered: