install
Closed this issue · 1 comments
Deleted user commented
i'm sorry for this stupid question ,, but i don't know to install this package
swt83 commented
In your composer.json
file, use the VCS
commands to link to this repository, then require the name of this package which is travis/smtp
.
http://getcomposer.org/doc/05-repositories.md#vcs
{
"name": "foo/bar",
"description": "Your project.",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/swt83/php-laravel-smtp.git"
}
],
"require": {
"php": ">=5.3.0",
"travis/smtp": "*"
},
"minimum-stability": "dev"
}
Then do a composer install
or composer update
from the command line.