Last active
February 12, 2016 21:10
-
-
Save ryanwinchester/722f465e401b60d369a8 to your computer and use it in GitHub Desktop.
Installing and updating Flashtag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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