Hey @dr24 so I would follow this process, my development environment is a windows / homestead box.
- Add the following to composer.json below require-dev with your package
- "repositories": [
{
"type": "path",
"url": "./packages/james-n-m/chuck-norris-jokes",
"options": {
"symlink": true
}
}
],
- Put your package in your laravel_app/packages/intervention/zodiac
my personal project example
packages/james-n-m/chuck-norris-jokes
-
if your running a homestead vagrant box you must run as administrator, make sure your vm is completely off before re-running shell as admin or it will lock. Go as far as checking virutal box to make sure its powered off.
-
composer require name of package james-n-m/chuck-norris-jokes this will set up the symlink. Symlink just means youll be able to edit from packages/intervention/the-package
-
"symlinking from" when dependencies added means its working
-
your composer.json will have the "dev-master" next to the package name. I think your missing the intervention in "url" for repositories.