arueckauer/package-info

Verifying composer packages requirements of GitHub organizations

Maintainers

Package info

github.com/arueckauer/package-info

Type:project

pkg:composer/arueckauer/package-info

Transparency log

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 1

3.0.1 2025-12-30 12:24 UTC

This package is auto-updated.

Last update: 2026-08-25 05:04:05 UTC


README

Verifying requirements of composer packages of a GitHub organization

Requirements

  • PHP 8.5

Installation

Clone the repository and install dependencies.

git clone git@github.com:arueckauer/package-info.git
cd package-info
composer i

Configuration

The application comes with sample configurations for various PHP framework organizations. Copy one of the config\autoload\local-*.dist files to config\autoload\local.php . Or alternatively create your own configuration based on any of the sample configurations.

Place your personal access token in github_api_token and provide a cache_file_path.

Configuration options

  • github_api_token Your personal access tokens (see GitHub / Settings / Developer settings)
  • organizations An array of organization names whose repositories will be checked.
  • ignore_repositories An array of package names, that will be ignored and thus not checked.
  • ignore_branches An array of branch names, that will be ignored and thus not checked.
  • cache_file_path Location of the cache path.

Development

Quality Tools

On the first run, vendor/bin/mago downloads the binary from GitHub. Set GITHUB_TOKEN to avoid rate-limit issues:

export GITHUB_TOKEN=$(gh auth token)
Check Command
Lint vendor/bin/mago lint
Format check vendor/bin/mago format --check
Auto-format vendor/bin/mago format
Static analysis vendor/bin/mago analyze --baseline mago-baseline.toml
Tests vendor/bin/phpunit
Refactoring vendor/bin/rector process --dry-run

To suppress a newly accepted issue in the analyzer baseline:

vendor/bin/mago analyze --baseline mago-baseline.toml --generate-baseline

There are three commands available.

Build cache

This will be the first step. To not repeatedly fetch all information from GitHub, package information is cached. To build the cache, execute the following command. Depending on the size of the organization, this may take a while.

php bin/console cache:build

Show information for a single package

This command shows information such as available heads (branches, releases and pull requests) for a single package.

php bin/console get <package-name>

Check requirements

The check command performs the actual check against given requirements.

Examples:

To check which repositories are supporting PHP 8.5, run the following command.

php bin/console check -r php:^8.5

The results of the previous command include branches and pull requests. To check only releases, run the following command.

php bin/console check -r php:^8.5 -t release

To include only repositories of a specific organization, run the following command.

php bin/console check -r php:^8.5 --vendor mezzio

For a complete list of options, execute the following command.

php bin/console help check