Files
water_new/init_composer.sh
2023-03-08 09:16:04 +08:00

9 lines
139 B
Bash

#!/bin/sh
packages=$(php -f 'parseComposer.php')
if [ "$packages" != "" ];then
composer require $packages
fi
composer install --no-dev