Skip to content

Instantly share code, notes, and snippets.

@rgrwkmn
Created October 31, 2013 18:48
Show Gist options
  • Select an option

  • Save rgrwkmn/7254857 to your computer and use it in GitHub Desktop.

Select an option

Save rgrwkmn/7254857 to your computer and use it in GitHub Desktop.
Example composer.json to force composer to find vmwarephp classes.
{
"name": "my/example",
"description": "an example",
"license": "gpl",
"require": {
"vmwarephp/vmwarephp": "dev-master"
},
"autoload": {
"classmap": [
"vendor/vmwarephp/vmwarephp/library"
]
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:singlehop/singlehop/vmwarephp.git"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment