We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67ccb8 commit d4ca449Copy full SHA for d4ca449
src/Commands/BundleCommand.php
@@ -116,8 +116,10 @@ private function checkComposerJson(): bool
116
$composerJson = json_decode(file_get_contents(base_path('composer.json')), true);
117
118
// Fail if there is symlinked packages
119
- foreach ($composerJson['repositories'] ?? [] as $repository) {
120
- if ($repository['type'] === 'path') {
+ foreach ($composerJson['repositories'] ?? [] as $key => $repository) {
+
121
+ // Unless Eser is working on a PR ^^
122
+ if ($repository['type'] === 'path' && ! in_array($key, ['nativephp-laravel', 'nativephp-electron'])) {
123
$this->error('Symlinked packages are not supported. Please remove them from your composer.json.');
124
125
return false;
0 commit comments