Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Last active May 31, 2017 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahuggins/81d1bef959d75c825aac345aee498753 to your computer and use it in GitHub Desktop.
Save ahuggins/81d1bef959d75c825aac345aee498753 to your computer and use it in GitHub Desktop.
The composer.json for the package
// truncated composer.json file for the packge:
"autoload": {
"psr-4": {
"Namespace\\": "src/"
}
}
}
{
// truncated composer.json for application
"require": {
// Other dependencies
"PackageVendor\PackageName": "*"
}
// truncated to show important parts for local dev of package.
"repositories": [
{
"type": "path",
"url": "./../path/to/package
}
],
"minimum-stability": "dev"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment