LaravelPackages.net
Acme Inc.
Toggle sidebar
stephenkhoo/laravel-vapor-deploy-helper

Helpers for laravel deployment with vapor

3.598
0
1.0.0
About stephenkhoo/laravel-vapor-deploy-helper

stephenkhoo/laravel-vapor-deploy-helper is a Laravel package for helpers for laravel deployment with vapor. It currently has 0 GitHub stars and 3.598 downloads on Packagist (latest version 1.0.0). Install it with composer require stephenkhoo/laravel-vapor-deploy-helper. Discover more Laravel packages by stephenkhoo or browse all Laravel packages to compare alternatives.

Last updated

Introduction

Attempt to solve the problem faced by Window user that cannot override the COMPOSER_MIRROR_PATH_REPOS value from command line. Add this step to the build step in vapor and remove the override code php artisan build:composer-mirror.

This will allow different environments still able to have COMPOSER_MIRROR_PATH_REPOS override to true only at deploy build step.

The update will look like this Before

build:
    - 'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev'

After

build:
    - 'php artisan build:composer-mirror'
    - 'composer install --no-dev'

To do

  • [ ] Installation command
Comments