Install php deps on dev setup

Currently the dev setup in readme does not mention that a
`composer install` is required but it is. The effect is that,
the plugin can't be activated on the admin figures this out and
makes the install.

Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
This commit is contained in:
fenn-cs 2023-05-09 10:59:48 +01:00
parent 55f76c9d24
commit 7703c9b0ca
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
all: dev-setup lint build-js-production test
# Dev env management
dev-setup: clean clean-dev npm-init
dev-setup: clean clean-dev npm-init composer-install
npm-init:
npm ci
@ -50,3 +50,6 @@ clean:
clean-dev:
rm -rf node_modules
# Install php deps
composer-install:
composer install