We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
composer.lock
1 parent 15b735c commit f8c7f72Copy full SHA for f8c7f72
.github/workflows/ci.yml
@@ -79,7 +79,12 @@ jobs:
79
working-directory: rollbar-test-app
80
# This adds time, so only run this if the previous step fails.
81
if: ${{ steps.composer_require.outcome == 'failure' }}
82
- run: composer update
+ # We are ok removing the lock file since it was generated in step 3,
83
+ # before we included all our requirements.
84
+ run: |
85
+ rm composer.lock
86
+ composer require rollbar/rollbar-laravel
87
+ composer install
88
89
- name: Setup .env
90
0 commit comments