Composer

Message
Autor
Port2
Příspěvky: 502
Registrován: 08 pro 2015, 22:52
Reputation: 18
Bydliště: Pod mostem :/

Composer

#1 Příspěvekod Port2 » 27 čer 2017, 16:18

Zdravím, pomohl by mi někdo prosím s instalací composeru na VPS? Pořád mi to nejde.
LOG:

Kód: Vybrat vše

root@vps-250914:/home/admin# php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
root@vps-250914:/home/admin# php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
Installer verified
root@vps-250914:/home/admin# php composer-setup.php
All settings correct for using Composer
Downloading...

Composer (version 1.4.2) successfully installed to: /home/admin/composer.phar
Use it: php composer.phar

root@vps-250914:/home/admin# php composer-setup.php --install-dir=bin
The defined install dir (bin) does not exist.
root@vps-250914:/home/admin# php composer-setup.php --filename=composer
All settings correct for using Composer
Downloading...

Composer (version 1.4.2) successfully installed to: /home/admin/composer
Use it: php composer

root@vps-250914:/home/admin# composer
bash: composer: command not found
root@vps-250914:/home/admin# php composer-setup.php --install-dir=bin
The defined install dir (bin) does not exist.
root@vps-250914:/home/admin# php -r "unlink('composer-setup.php');"
root@vps-250914:/home/admin# composer
bash: composer: command not found
root@vps-250914:/home/admin#

82.208.17.214

Uživatelský avatar
Mysteria
Příspěvky: 9122
Registrován: 26 pro 2009, 15:40
Reputation: 7
Bydliště: Česká republika
Kontaktovat uživatele:

Re: Composer

#2 Příspěvekod Mysteria » 27 čer 2017, 17:28

Composer (version 1.4.2) successfully installed to: /home/admin/composer
Use it: php composer

Takže bych zkusil třeba místo psaní composer napsat php composer...

Port2
Příspěvky: 502
Registrován: 08 pro 2015, 22:52
Reputation: 18
Bydliště: Pod mostem :/

Re: Composer

#3 Příspěvekod Port2 » 27 čer 2017, 17:50

Jaj, díky, toho jsem si nevšiml, kdysi se psalo jen composer.
EDIT: Přece jenom:

Kód: Vybrat vše

Could not open input file: composer

Uživatelský avatar
Mysteria
Příspěvky: 9122
Registrován: 26 pro 2009, 15:40
Reputation: 7
Bydliště: Česká republika
Kontaktovat uživatele:

Re: Composer

#4 Příspěvekod Mysteria » 27 čer 2017, 18:08

Nevím podle jakého návodu jsi to instaloval, nicméně když jsem to zkusil já, tak mi na Debianu bez problémů funguje:

Kód: Vybrat vše

root@vps# cd /tmp
root@vps# wget https://getcomposer.org/installer
root@vps# php /tmp/installer --install-dir=/usr/local/bin --filename=composer
All settings correct for using Composer
Downloading...

Composer (version 1.4.2) successfully installed to: /usr/local/bin/composer
Use it: php /usr/local/bin/composer

root@vps# composer
Do not run Composer as root/super user! See https://getcomposer.org/root for details
   ______
  / ____/___  ____ ___  ____  ____  ________  _____
 / /   / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__  )  __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
                    /_/
Composer version 1.4.2 2017-05-17 08:17:52

Usage:
  command [options] [arguments]

Options:
  -h, --help                     Display this help message
  -q, --quiet                    Do not output any message
  -V, --version                  Display this application version
      --ansi                     Force ANSI output
      --no-ansi                  Disable ANSI output
  -n, --no-interaction           Do not ask any interactive question
      --profile                  Display timing and memory usage information
      --no-plugins               Whether to disable plugins.
  -d, --working-dir=WORKING-DIR  If specified, use the given directory as working directory.
  -v|vv|vvv, --verbose           Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Available commands:
  about           Short information about Composer.
  archive         Create an archive of this composer package.
  browse          Opens the package's repository URL or homepage in your browser.
  clear-cache     Clears composer's internal package cache.
  clearcache      Clears composer's internal package cache.
  config          Set config options.
  create-project  Create new project from a package into given directory.
  depends         Shows which packages cause the given package to be installed.
  diagnose        Diagnoses the system to identify common errors.
  dump-autoload   Dumps the autoloader.
  dumpautoload    Dumps the autoloader.
  exec            Execute a vendored binary/script.
  global          Allows running commands in the global composer dir ($COMPOSER_HOME).
  help            Displays help for a command
  home            Opens the package's repository URL or homepage in your browser.
  info            Show information about packages.
  init            Creates a basic composer.json file in current directory.
  install         Installs the project dependencies from the composer.lock file if present, or falls back on the composer.json.
  licenses        Show information about licenses of dependencies.
  list            Lists commands
  outdated        Shows a list of installed packages that have updates available, including their latest version.
  prohibits       Shows which packages prevent the given package from being installed.
  remove          Removes a package from the require or require-dev.
  require         Adds required packages to your composer.json and installs them.
  run-script      Run the scripts defined in composer.json.
  search          Search for packages.
  self-update     Updates composer.phar to the latest version.
  selfupdate      Updates composer.phar to the latest version.
  show            Show information about packages.
  status          Show a list of locally modified packages.
  suggests        Show package suggestions.
  update          Updates your dependencies to the latest version according to composer.json, and updates the composer.lock file.
  validate        Validates a composer.json and composer.lock.
  why             Shows which packages cause the given package to be installed.
  why-not         Shows which packages prevent the given package from being installed.

Port2
Příspěvky: 502
Registrován: 08 pro 2015, 22:52
Reputation: 18
Bydliště: Pod mostem :/

Re: Composer

#5 Příspěvekod Port2 » 27 čer 2017, 18:15

Tohle mi také jde, ale pak php composer install ne.

Uživatelský avatar
Mysteria
Příspěvky: 9122
Registrován: 26 pro 2009, 15:40
Reputation: 7
Bydliště: Česká republika
Kontaktovat uživatele:

Re: Composer

#6 Příspěvekod Mysteria » 27 čer 2017, 18:18

Když uděláš to samý, co jsem ti posílal, tak ti to napíše, že composer neexistuje? Ani ten prefix php tam není potřeba dávat. Já ho tam taky nepoužil. Máš Debian?

Port2
Příspěvky: 502
Registrován: 08 pro 2015, 22:52
Reputation: 18
Bydliště: Pod mostem :/

Re: Composer

#7 Příspěvekod Port2 » 27 čer 2017, 18:28

Když napíšu to stejné co ty, tak to napíše, že neexistuje..
A ano, mám Debian.

Uživatelský avatar
Mysteria
Příspěvky: 9122
Registrován: 26 pro 2009, 15:40
Reputation: 7
Bydliště: Česká republika
Kontaktovat uživatele:

Re: Composer

#8 Příspěvekod Mysteria » 27 čer 2017, 18:40

Tak to máš nějaký rozbitý. Já mám čistou instalaci Debianu 9 + Nginx + PHP + MariaDB a normálně mi to funguje. S tímhle ti už asi víc neporadím...

Port2
Příspěvky: 502
Registrován: 08 pro 2015, 22:52
Reputation: 18
Bydliště: Pod mostem :/

Re: Composer

#9 Příspěvekod Port2 » 27 čer 2017, 18:44

Tím, že mám Debian 8 to nebude, co?

Uživatelský avatar
Mysteria
Příspěvky: 9122
Registrován: 26 pro 2009, 15:40
Reputation: 7
Bydliště: Česká republika
Kontaktovat uživatele:

Re: Composer

#10 Příspěvekod Mysteria » 27 čer 2017, 20:28

To by podle mne nemělo mít vliv. Asi to budeš muset zkusit progooglit.


Zpět na „VPS (Virtual private Server)“

Kdo je online

Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 5 hostů