asapo/remove-vendor-plugin

There is no license information available for the latest version (0.1.0) of this package.

A Composer plugin to remove specific folders after installation or update.

Installs: 2 904

Dependents: 18

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:composer-plugin

0.1.0 2024-06-21 20:10 UTC

This package is auto-updated.

Last update: 2024-08-21 20:31:44 UTC


README

A Composer plugin to remove specific folders inside the vendor directory after installation or updating.

Installation

  1. Add the plugin to your project's composer.json:

    {
      "require": {
        "asapo/remove-vendor-plugin": "*"
      },
      "config": {
        "allow-plugins": {
          "asapo/remove-vendor-plugin": true
        }
      }
    }
  2. Run Composer install or update:

    composer install

    or

    composer update

Configuration

To configure the folders to be removed, add the remove-folders option under the extra key in your composer.json:

{
    "extra": {
        "remove-folders": [
            "modelflow-ai/*/vendor"
        ]
    }
}

You can specify multiple patterns if needed.

Usage

This plugin hooks into Composer's post-install-cmd and post-update-cmd events. After running composer install or composer update, it will automatically remove the specified folders.

Development

Directory Structure

remove-vendor-plugin/
├── composer.json
├── src/
│   ├── Plugin.php
│   ├── EventSubscriber.php
└── README.md

Namespaces

Ensure that the namespaces in your PHP files match the directory structure and autoload configuration in composer.json.