mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
ac6d046c63
rename template adapter to flasher, and add title to base notification class Wip
10 lines
310 B
Makefile
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)
|