Skip to content

Instantly share code, notes, and snippets.

@ryanwinchester
Last active February 12, 2016 21:10
Show Gist options
  • Select an option

  • Save ryanwinchester/722f465e401b60d369a8 to your computer and use it in GitHub Desktop.

Select an option

Save ryanwinchester/722f465e401b60d369a8 to your computer and use it in GitHub Desktop.
Installing and updating Flashtag
{
"repositories": [
{
"type": "vcs",
"url": "[email protected]:flashtag/admin.git"
},
{
"type": "vcs",
"url": "[email protected]:flashtag/api.git"
},
{
"type": "vcs",
"url": "[email protected]:flashtag/front.git"
},
{
"type": "vcs",
"url": "[email protected]:flashtag/data.git"
}
],
"require": {
"flashtag/admin": "dev-develop@dev",
"flashtag/api": "dev-develop@dev",
"flashtag/data": "dev-develop@dev",
"flashtag/front": "dev-develop@dev"
}
}
#!/usr/bin/env bash
composer update flashtag/*;
php artisan vendor:publish --provider="Flashtag\Admin\Providers\AdminServiceProvider" --force;
php artisan vendor:publish --provider="Flashtag\Data\Providers\DataServiceProvider" --force;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment