Getting Error while "compser install" in laravel project

414 Views Asked by At

I am new to laravel and i am stuck into the error from last few days, I had cloned laravel project from gitlab and want to run this on localhost i have php7.2, laravel 5.3,ubuntu 18.10 but when i tried to run "composer install" on terminal inside project directory i.e /var/www/html/project_name/ it generates an error while installation.

priyanka@desktop:/var/www/html/project_name$ composer install

Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Package operations: 89 installs, 0 updates, 0 removals - Installing aspose/cloud-sdk-php (1.1.1): Downloading (0%) Failed to download aspose/cloud-sdk-php from dist: The "https://codeload.github.com/asposeforcloud/Aspose_Cloud_SDK_For_PHP/legacy.zip/abf381316d109316f995d6a9f2c46d83357dd5a8" file could not be downloaded (HTTP/1.1 404 Not Found) Now trying to download from source

  • Installing aspose/cloud-sdk-php (1.1.1): Cloning abf381316d from cache abf381316d109316f995d6a9f2c46d83357dd5a8 is gone (history was rewritten?)

    [RuntimeException]
    Failed to execute git checkout 'abf381316d109316f995d6a9f2c46d83357dd5a8' -

  • && git reset --hard 'abf381316d109316f995d6a9f2c46d83357dd5a8' --

    fatal: reference is not a tree: abf381316d109316f995d6a9f2c46d83357dd5a8

install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-progress] [--no-suggest] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--ignore-platform-reqs] [--] []...

I've tried the following solutions which i found from different sites

  • composer update
  • composer update --no-scripts
  • composer install --no-scripts
  • sudo apt install zip unzip php7.2-zip
  • composer dump-autoload

enter image description here

0

There are 0 best solutions below