Merge pull request #13 from bagisto-europe/master
This commit is contained in:
commit
a704d53331
|
|
@ -1,6 +1,6 @@
|
|||
APP_NAME=Bagisto
|
||||
APP_ENV=local
|
||||
APP_VERSION=1.3.1
|
||||
APP_VERSION=1.3.2
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_VERSION=1.3.1
|
||||
APP_VERSION=1.3.2
|
||||
APP_KEY=base64:G4KY3tUsTaY9ONo1n/QyJvVLQZdJDgbIkSJswFK01HE=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
|
@ -43,4 +43,4 @@ MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
|||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
||||
|
||||
SHOP_MAIL_FROM=test@example.com
|
||||
ADMIN_MAIL_TO=test@example.com
|
||||
ADMIN_MAIL_TO=test@example.com
|
||||
|
|
|
|||
|
|
@ -153,5 +153,11 @@
|
|||
"optimize-autoloader": true
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
"prefer-stable": true,
|
||||
"support": {
|
||||
"issues": "https://github.com/bagisto/bagisto/issues",
|
||||
"forum": "https://forums.bagisto.com",
|
||||
"source": "https://github.com/bagisto/bagisto",
|
||||
"docs": "https://devdocs.bagisto.com"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class Install extends Command
|
|||
|
||||
// running `php artisan vendor:publish --all`
|
||||
$this->warn('Step: Publishing assets and configurations...');
|
||||
$result = $this->call('vendor:publish', ['--all']);
|
||||
$result = $this->call('vendor:publish', ['--all' => true, '--force' => true]);
|
||||
$this->info($result);
|
||||
|
||||
// running `php artisan storage:link`
|
||||
|
|
|
|||
Loading…
Reference in New Issue