Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created August 29, 2012 16:13
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 ziadoz/3515000 to your computer and use it in GitHub Desktop.
Save ziadoz/3515000 to your computer and use it in GitHub Desktop.
Advanced Composer Examples (PHPMailer from zip, local repository)
{
"require": {
"phpmailer/phpmailer": "5.2.1"
},
"repositories": [
{
"type": "package",
"package": {
"name": "phpmailer/phpmailer",
"version": "5.2.1",
"dist": {
"url": "http://phpmailer.apache-extras.org.codespot.com/files/PHPMailer_5.2.1.zip",
"type": "zip"
}
}
},
{
"type": "vcs",
"url": "/path/to/local/repo"
}
]
"autoload": {
"classmap": ["vendor/phpmailer/phpmailer"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment