Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaemnnosttv/composer-hash-plugin
Composer plugin for writing the composer hash to a file on install/update.
https://github.com/aaemnnosttv/composer-hash-plugin
composer-plugin
Last synced: 21 days ago
JSON representation
Composer plugin for writing the composer hash to a file on install/update.
- Host: GitHub
- URL: https://github.com/aaemnnosttv/composer-hash-plugin
- Owner: aaemnnosttv
- Created: 2019-09-15T15:12:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T14:11:20.000Z (over 3 years ago)
- Last Synced: 2024-10-19T16:28:24.635Z (about 1 month ago)
- Topics: composer-plugin
- Language: PHP
- Size: 30.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Composer Hash Plugin
[![Tests](https://github.com/aaemnnosttv/composer-hash-plugin/actions/workflows/test.yml/badge.svg)](https://github.com/aaemnnosttv/composer-hash-plugin/actions/workflows/test.yml)
A Composer plugin for writing the Composer hash to a file on install/update to verify parity with VCS.
## Overview
This package aims to solve the problem of your installed dependencies getting out of sync with those defined by your lock file.
As such, it is intended to be used in projects where the `composer.lock` file is under version control.Once installed, the plugin will write the current `content-hash` from your `composer.lock` file to a new `composer.hash` file after each `composer install` or `update`.
This is the only thing it will do automatically.**This new file is intended to be excluded from version control.**
The hashes can then be verified, but that has to be done (semi) manually. See below.## API
Since the hash file is written automatically, the API exposes methods for verifying the hashes.
### CLI
```sh
$ composer hash-verify
```If hash verification fails, the command provides additional feedback and exits with a non-zero exit code.
### PHP
The plugin exposes a `ComposerHash\Hash::verify($path)` method where `$path` is the absolute path to the project's root directory containing `composer.json`.
This function checks that the `composer.hash` matches the corresponding hash in the `composer.lock` file (if it doesn't, a `HashMismatchException` is thrown.
Other exceptions are thrown if called with an invalid path or if Composer files are unreadable.
## Installation```sh
$ composer require aaemnnosttv/composer-hash-plugin
```Note: the generated `composer.hash` file is intended to be ignored by source control so be sure to update your `.gitignore` or other VCS equivalent accordingly.