Download the PHP package martinshaw/decomposer without Composer
On this page you can find all versions of the php package martinshaw/decomposer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download martinshaw/decomposer
More information about martinshaw/decomposer
Files in martinshaw/decomposer
Package decomposer
Short Description List Composer 'vendor' directories on your system, how heavy they are, then you can select which ones you want to delete to free up space (NPM's npkill but for PHP Composer)
License GPL-3.0-or-later
Informations about the package decomposer
decomposer
List Composer 'vendor' directories on your system, how heavy they are, then you can select which ones you want to delete to free up space (NPM's npkill but for PHP Composer)
Screenshot
Usage
Installation
This will install the decomposer
command in your global composer bin directory, which is usually ~/.composer/vendor/bin
or ~/.config/composer/vendor/bin
on Unix systems and %APPDATA%\Composer\vendor\bin
on Windows.
To access the decomposer
command from anywhere, you need to add the global composer bin directory to your system's PATH environment variable.
On Windows
- Open the Control Panel.
- Click on System and Security.
- Click on System.
- Click on Advanced system settings.
- Click on Environment Variables.
- Under System variables, find and select the
Path
variable, then click on Edit. - Click on New and add the path to your global composer bin directory.
- Click on OK on all windows to apply the changes.
On Linux and macOS
Depending on if your global composer bin directory is ~/.composer/vendor/bin
or ~/.config/composer/vendor/bin
, you need to add the following line to your ~/.bashrc
, ~/.zshrc
, or ~/.profile
file:
or
Then, run the following command to apply the changes:
or source ~/.zshrc
or source ~/.profile
depending on which file you added the line to.