BackwardCompatibilityCheck

:ab: Tool to compare two revisions of a class API to check for BC breaks

Github星跟踪图

Roave Backward Compatibility Check

Build Status Scrutinizer Code Quality Latest Stable Version License

A tool that can be used to verify BC breaks between two versions
of a PHP library.

Pre-requisites/assumptions

  • Your project uses git
  • Your project uses composer.json to define its dependencies

Installation

composer require --dev roave/backward-compatibility-check

Install with Docker

You can also use Docker to run roave-backward-compatibility-check:

docker run --rm -v `pwd`:/app nyholm/roave-bc-check

Usage

Adding to a continuous integration pipeline

The typical intended usage is to just add roave-backward-compatibility-check
to your CI build:

vendor/bin/roave-backward-compatibility-check

This will automatically detect the last minor version tagged, and
compare the API against the current HEAD. If any BC breaks are found,
the tool returns a non-zero status, which on most CI systems will cause
the build to fail.

NOTE: detecting the base version only works if you have git tags in
the SemVer-compliant x.y.z format, such as 1.2.3.

Github action

You can use it as a Github Action like this:

.github/main.workflow

on: [push]
name: Test
jobs:
    roave_bc_check:
        name: Roave BC Check
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@master
            - name: fetch tags
              run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
            - name: Roave BC Check
              uses: docker://nyholm/roave-bc-check-ga

Running manually

To generate additional documentation for changelogs:

vendor/bin/roave-backward-compatibility-check --format=markdown > results.md

Documentation

If you need further guidance:

vendor/bin/roave-backward-compatibility-check --help

Configuration

There are currently no configuration options available.

主要指标

概览
名称与所有者Roave/BackwardCompatibilityCheck
主编程语言PHP
编程语言PHP (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2017-10-27 20:40:27
推送于2025-11-04 13:00:52
最后一次提交
发布数45
最新版本名称8.15.0 (发布于 2025-10-21 00:32:47)
第一版名称1.0.0 (发布于 2018-05-26 22:43:28)
用户参与
星数585
关注者数9
派生数61
提交数1.8k
已启用问题?
问题数150
打开的问题数35
拉请求数662
打开的拉请求数4
关闭的拉请求数136
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?