Files
php-flasher/make/composer.mk
T
KHOUBZA Younes ac6d046c63 Prepare v1.0 release
rename template adapter to flasher, and add title to base notification class

Wip
2022-05-16 08:18:15 +01:00

10 lines
310 B
Makefile

.PHONY: install update
## 🧙‍ Installs the project dependencies and assets
install: composer.lock
$(COMPOSER) install $(COMPOSER_ARGS)
## Upgrades your dependencies to the latest version according to composer.json, and updates the composer.lock file.
update:
$(COMPOSER) update --lock $(COMPOSER_ARGS)