gmaissa/composer-remove-parameter-handler

Provides Composer script to remove parameters files generated with incenteev/composer-parameter-handler package

1.0.0 2017-01-29 20:48 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:59:03 UTC


README

About

This bundle provides tools to remove files generated with Incenteev/ParameterHandler package, from which it uses the configuration.

It provides a script, to be used in composer group of scripts.

Installation

With composer :

php composer.phar require gmaissa/composer-remove-parameter-handler

You can than add the provided script to your composer.json scripts section :

...
"scripts": {
    ...
    "post-install-cmd": [
        ...,
        "GMaissa\\ComposerParameterHandler\\Composer\\ScriptHandler::removeHandledFiles",
        ...
    ],
    "post-update-cmd": [
        ...,
        "GMaissa\\ComposerParameterHandler\\Composer\\ScriptHandler::removeHandledFiles",
        ...
    ]
}

Contributing

In order to be accepted, your contribution needs to pass a few controls :

  • PHP files should be valid
  • PHP files should follow the PSR-2 standard
  • PHP files should be phpmd and phpcpd warning/error free

To ease the validation process, install the pre-commit framework and install the repository pre-commit hook :

pre-commit install

Finally, in order to homogenize commit messages across contributors (and to ease generation of the CHANGELOG), please apply this git commit message hook onto your local repository.