Here are the docs:
Here is my config.json file
{
"autoload": {
"psr-0": { "": "src/" }
},
"name": "Local Packagist",
"homepage": "http://blah/packagist",
"repositories": [
{ "type": "vcs", "url": "http://blahsvn/myProject/my-bundle" }
],
"require-all": true
}
After running the satis build command I get this in my composer.json file ( SEE HERE ):
{
"require": {
"myProject/my-bundle": "2.1.*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "myProject/my-bundle", <-- HERE
"version": "2.1.1",
...
}
}
]
}
When I generate the packages.json file I see this ( SEE HERE ):
{
"packages": {
"myProject/not-my-bundle-name": {
"2.1.1": {
"name": "myProject/not-my-bundle-name", <-- HERE
"version": "2.1.1",
...
How do I get the two to match so I can pull with composer?