Skip to content

Commit

Permalink
Regenerate composer.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraynz committed Jun 4, 2024
1 parent ecbbefb commit 11173b1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: composer validate

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: composer install --prefer-dist --no-progress

- name: Prepare unittests configuration
run: sed -i 's/{MYVERSION}/${{ matrix.php.unittest-version }}/g' phpunit.ci.xml
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt update && \
RUN usermod -u 1000 www-data
RUN groupmod -g 1000 www-data

RUN mkdir -p /app && chown -R www-data:www-data /app
RUN mkdir -p /app/vendor && chown -R www-data:www-data /app

USER www-data
WORKDIR /app
Expand All @@ -27,4 +27,4 @@ COPY --link .docker/php.ini /usr/local/etc/php/php.ini

COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY --link composer.json composer.lock ./
RUN composer install --prefer-dist --no-progress --no-suggest
RUN composer install --prefer-dist --no-progress
7 changes: 7 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,10 @@ tasks:
- docker:build
cmds:
- docker compose run php ./build.sh

lock:
desc: Regenerate composer lockfile
deps:
- docker:build
cmds:
- docker compose run php composer update
22 changes: 12 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 11173b1

Please sign in to comment.