Download the PHP package iwink/composer-global-installer without Composer

On this page you can find all versions of the php package iwink/composer-global-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package composer-global-installer

Composer global installer

License Tag

A plugin to install stable, remote Composer packages in a global vendor directory. The path to a global installed package is [global-vendor-dir]/[pretty-package-name]/[pretty-package-version]; for example, symfony/console:v5.3.1 might be found under /usr/local/lib/composer/vendor/symfony/console/v5.3.1. It creates symlinks in the local vendor directory (/path/to/project/vendor) to assist IDEs. The autoloader will point to the resolved global vendor/package directory. You should make sure the global vendor directory is writable.

Installation

To install this package, run composer require iwink/composer-global-installer. It's also possible to install the plugin global: composer global require iwink/composer-global-installer.

Options

You can configure the plugin using the extra.global-installer key in composer.json (and in the global $COMPOSER_HOME/composer.json):

Example:

To disable the entire plugin, you can pass false to the extra.global-installer key:

Caveats

Unsupported libraries

Some libraries, like laminas/laminas-zendframework-bridge and phpunit/phpunit, expect the package to be installed locally. If one or more of your projects depend on such libraries, you can exclude them in the global composer configuration:

composer global config --json extra.global-installer.exclude '["laminas/laminas-zendframework-bridge", "phpunit/phpunit"]'

Packages with patches

If you use a seperate plugin (for example cweagans/composer-patches) to apply patches to packages, it might not be a good idea to install those packages globally. Other projects which use the same package will receive the changes from the applied patch as well. To prevent this, we recommend excluding packages which you have patched.


All versions of composer-global-installer with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
composer-plugin-api Version ^2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package iwink/composer-global-installer contains the following files

Loading the files please wait ....