operations/project-bin-scripts

Include bin scripts in top level composer projects.

2.1.0 2024-01-25 15:15 UTC

This package is auto-updated.

Last update: 2024-05-12 16:12:24 UTC


README

Your scripts in the Composer bin-dir.

This plugin allows you to add your own scripts as composer bins to projects.

It works just like dependent packages "bin" scripts work: a link is created from your vendor bin directory to the script.

Advantages:

  1. All commands for your project can be run from the same directory, the vendor bin dir.
  2. The composer bin dir and autoloader path are available via bash or PHP variables.
  3. Scripts can use ensure they are calling exact versions of scripts such as drush or npm by including this path.

See Composer "Vendor Binaries" Documentation for more information.

Usage

  1. Install the plugin.

    $ composer require operations/project-bin-scripts
    
  2. Create a script file.

    #!/usr/bin/env bash
    # File: scripts/hello-world
    
    # If your script wants to rely on the other scripts in bin-dir, check for $COMPOSER_RUNTIME_BIN_DIR
    if [[ -z $COMPOSER_RUNTIME_BIN_DIR ]]; then
      echo "ERROR: The COMPOSER_RUNTIME_BIN_DIR environment variable is missing. Run this script from the composer vendor bin directory."
      exit 1
    fi
    
    # Set the PATH variable to include COMPOSER_RUNTIME_BIN_DIR to allow calling
    # other bin scripts directly.
    PATH=$PATH:$COMPOSER_RUNTIME_BIN_DIR
    
    echo "Hello World!"
    echo "You are here:"
    pwd
    
    # To confirm this works, try using "which"
    echo "You are using this drush: "
    which drush
    drush --version
    
  3. Add to composer.json:

    {
      "bin": [
        "scripts/hello-world"
      ]
    }
  4. Run composer install:

    $ composer install
    
  5. Run your script from the composer bin path:

    ./vendor/bin/hello-world

    Or, if you set PATH, just use the command.

    PATH=$PATH:./vendor/bin
    hello-world

NOTE about composer schema for "bin"

This is the same configuration used by composer.json schema for dependencies. Using this same config here might cause some confusion.

The main reason this was used is so the plugin could use the exact same code to install project binaries as it does dependency binaries.

If you think this is confusing and should change, please submit a pull request.

About