Skip to content

Commit

Permalink
[DEV] Add composer update & install to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoffmann1979 committed Jun 27, 2024
1 parent fc6ed72 commit 1fee3b7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,16 @@ typo3-rebuild-caches:
echo "$(EMOJI_hot_face) rebuilding DI cache on foreign"
docker compose exec foreign-php ./vendor/bin/typo3 help > /dev/null

## Starts composer-update
composer-update:
echo "$(EMOJI_package) updating composer dependencies"
docker compose exec -u app local-php composer update -W
docker compose exec -u app foreign-php composer update -W

## Starts composer-install
composer-install:
echo "$(EMOJI_package) Installing composer dependencies"
docker compose exec -u app local-php composer install
docker compose exec -u app foreign-php composer install

include .env

0 comments on commit 1fee3b7

Please sign in to comment.