laravel.sh 466 B

1234567891011121314151617
  1. #!/bin/bash
  2. set -e
  3. git config --global --add safe.directory "$(dirname -- "$(realpath -- "$PWD")")"
  4. composer require --no-scripts \
  5. guzzlehttp/guzzle opensearch-project/opensearch-php phpoffice/phpspreadsheet aws/aws-sdk-php firebase/php-jwt casbin/casbin
  6. npm install --save \
  7. bootstrap bulma @material/web \
  8. @tabler/core @tabler/icons @tabler/icons-webfont \
  9. @fortawesome/fontawesome-free dayjs \
  10. marked dompurify jsdom
  11. echo 'done.'
  12. exit 0