Skip to content

Commit

Permalink
Update composer.json & Fix lockfile (#118)
Browse files Browse the repository at this point in the history
* Update composer.json & Fix lock error
  • Loading branch information
Kipjr authored Feb 28, 2024
1 parent 46a2a89 commit a1bad35
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
cp '.env.example' '.env'
fi
- name: Install Dependencies
run: composer require laravel/sail -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: |
composer update --lock
composer require laravel/sail -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

# Login against a Docker registry except on PR
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: |
composer update --lock
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/sail-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
cp '.env.example' '.env'
fi
- name: Install Dependencies
run: composer require laravel/sail -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: |
composer update --lock
composer require laravel/sail -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8.1",
"filp/whoops": "^2.15.2"
"filp/whoops": "^2.15.2",
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6.2",
"laravel/pint": "^1.10.3",
Expand Down

0 comments on commit a1bad35

Please sign in to comment.