Installation Development mode
Create a fresh Laravel Install
composer create-project laravel/laravel TextstemDevelop
Change into the new project directory
cd TextstemDevelop
Run npm install and build it
npm install && npm run build
Double check your default laravel install is running and good to go:
php artisan serve
Adding Textstem Package
Textstem Repo location
The Textstem package is stored in a private repository so we need to tell composer where to find it. To tell composer to get the textstem code from github, add a repository directory to your composer.json:
"repositories": [
{
"type": "vcs",
"url": "git@github.com:MeccaMedialight/textstem-laravel.git"
}
]
Add Textstem
As this is still in private mode run composer require from the command line as you may have to enter a key. ( If you do, composer provides a link to click which will help you set it up and then paste it into the command line when required.).
Or your SSH access already set up may do the trick.
composer require medialight/textstem-laravel:@dev
Next steps.
Seed some data:
php artisan textstem:dbseed