metadrop / drupal-maintenance-reporter
Tools to make maintenance reports in drupal projects
Installs: 3 071
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 2
Open Issues: 2
Requires
- composer/semver: ^3
- davidrjonas/composer-lock-diff: ^1.7
- guzzlehttp/guzzle: >= 6
- symfony/console: ^4 || ^5 || ^6
- symfony/process: ^4 || ^5 || ^6
README
This project contains tools to do maintenance reports.
It allows:
- Showing the updated packages in a specific period.
- Show the fixed securities in a specific period.
Requirements
These packages must be installed globally:
- Git
- Composer 2.4 or higher
- Composer lock diff
Usage
This example command generates a report of the develop branch of February 2023:
cd my-project
./vendor/bin/drupal-maintenance-reporter report develop --from=2023-02-01 --to=2023-02-28
Arguments
- branch: Git branch to analyze.
- from: Y-m-d date to start from.
- to: Y-m-d date to start to.
Examples
-
Generate a full report (packages updated + fixed securities):
cd my-project ./vendor/bin/drupal-maintenance-reporter report develop --from=2023-02-01 --to=2023-02-28
-
Show packages updated given a specific period:
cd my-project ./vendor/bin/drupal-maintenance-reporter composer-lock-diff-period develop --from=2023-02-01 --to=2023-02-28
-
Fixed securities in a specific period:
cd my-project ./vendor/bin/drupal-maintenance-reporter securities-fixed develop --from=2023-02-01 --to=2023-02-28