Danger runs during your CI process, and gives teams the chance to automate common code review chores.

Overview

Danger PHP

Danger runs during your CI process, and gives teams the chance to automate common code review chores. This project ports Danger to PHP. This project is still in the early phase. Feel free to try it out and contribute!

Currently only Github and Gitlab are supported as Platform

Badges

MIT License codecov

Installation

Composer

Install danger-php using Composer

composer global require shyim/danger-php

Phar Archive

Every release has an phar archive attached

Docker

Use the prebuilt Docker image

Documentation

Disallow multiple commits with same message

 declare(strict_types=1);

use Danger\Config;
use Danger\Rule\DisallowRepeatedCommits;

return (new Config())
    ->useRule(new DisallowRepeatedCommits) // Disallows multiple commits with the same message
;

Only allow one commit in Pull Request

 declare(strict_types=1);

use Danger\Config;
use Danger\Rule\MaxCommit;

return (new Config())
    ->useRule(new MaxCommit(1))
;

Check for modification on CHANGELOG.md

 declare(strict_types=1);

use Danger\Config;
use Danger\Context;

return (new Config())
    ->useRule(function (Context $context): void {
        if (!$context->platform->pullRequest->getFiles()->has('CHANGELOG.md')) {
            $context->failure('Please edit also the CHANGELOG.md');
        }
    })
;

Check for Assignee in PR

 declare(strict_types=1);

use Danger\Config;
use Danger\Context;

return (new Config())
    ->useRule(function (Context $context): void {
        if (count($context->platform->pullRequest->assignees) === 0) {
            $context->warning('This PR currently doesn\'t have an assignee');
        }
    })
;

Screenshots

Example Comment

License

MIT

Comments
Releases(0.2.11)
  • 0.2.11(Nov 27, 2022)

  • 0.2.10(Nov 26, 2022)

  • 0.2.9(Nov 26, 2022)

  • 0.2.8(Nov 26, 2022)

  • 0.2.7(Nov 26, 2022)

  • 0.2.6(Nov 24, 2022)

    Chore

    • deps: bump ridedott/merge-me-action from 2.10.32 to 2.10.34
    • deps: bump phpunit/php-code-coverage from 9.2.18 to 9.2.19
    • deps: bump composer/pcre from 3.0.2 to 3.1.0
    • deps: bump ridedott/merge-me-action from 2.10.31 to 2.10.32
    • deps: bump nikic/php-parser from 4.15.1 to 4.15.2
    • deps: bump phpstan/phpstan from 1.9.1 to 1.9.2
    • deps: bump symfony/polyfill-php81 from 1.26.0 to 1.27.0
    • deps: bump sanmai/pipeline from 6.1 to 6.2
    • deps: bump phpstan/phpstan from 1.9.0 to 1.9.1
    • deps: bump friendsofphp/php-cs-fixer from 3.12.0 to 3.13.0
    • deps: bump phpstan/phpstan-phpunit from 1.2.1 to 1.2.2
    • deps: bump phpstan/phpstan from 1.8.11 to 1.9.0
    • deps: bump jetbrains/qodana-action from 2022.2.2 to 2022.2.3
    • deps: bump symfony/string from 6.0.14 to 6.0.15
    • deps: bump symfony/console from 6.0.14 to 6.0.15
    • deps: bump symfony/http-client from 6.0.14 to 6.0.15
    • deps: bump phpunit/php-code-coverage from 9.2.17 to 9.2.18
    • deps: bump phpunit/phpunit from 9.5.25 to 9.5.26
    • deps: bump phpstan/phpstan-phpunit from 1.1.3 to 1.2.1
    • deps: bump phpstan/phpstan-phpunit from 1.1.1 to 1.1.3
    • deps: bump phpstan/phpstan-phpunit from 1.1.1 to 1.1.3
    • deps: bump knplabs/github-api from 3.8.0 to 3.9.0
    • deps: bump knplabs/github-api from 3.8.0 to 3.9.0
    • deps: bump infection/infection from 0.26.15 to 0.26.16
    • deps: bump infection/infection from 0.26.15 to 0.26.16
    • deps: bump phpstan/extension-installer from 1.1.0 to 1.2.0
    • deps: bump phpstan/extension-installer from 1.1.0 to 1.2.0
    • deps: bump phpstan/phpstan from 1.8.9 to 1.8.10
    • deps: bump phpstan/phpstan from 1.8.9 to 1.8.10
    • deps: bump phpstan/phpstan from 1.8.8 to 1.8.9
    • deps: bump ridedott/merge-me-action from 2.10.30 to 2.10.31
    • deps: bump phpstan/phpstan from 1.8.8 to 1.8.9
    • deps: bump ridedott/merge-me-action from 2.10.30 to 2.10.31
    • deps: bump symfony/http-client from 6.0.13 to 6.0.14
    • deps: bump symfony/console from 6.0.13 to 6.0.14
    • deps: bump symfony/string from 6.0.13 to 6.0.14
    • deps: bump friendsofphp/php-cs-fixer from 3.11.0 to 3.12.0
    • deps: bump symfony/http-client from 6.0.13 to 6.0.14
    • deps: bump symfony/console from 6.0.13 to 6.0.14
    • deps: bump friendsofphp/php-cs-fixer from 3.11.0 to 3.12.0
    • deps: bump symfony/string from 6.0.13 to 6.0.14
    • deps: bump ridedott/merge-me-action from 2.10.29 to 2.10.30
    • deps: bump ridedott/merge-me-action from 2.10.29 to 2.10.30
    • deps: bump thecodingmachine/safe from 2.3.1 to 2.4.0
    • deps: bump thecodingmachine/safe from 2.3.1 to 2.4.0
    • deps: bump phpstan/phpstan from 1.8.7 to 1.8.8
    • deps: bump phpstan/phpstan from 1.8.7 to 1.8.8
    • deps: bump phpstan/phpstan from 1.8.6 to 1.8.7
    • deps: bump phpstan/phpstan from 1.8.6 to 1.8.7
    • deps: bump ridedott/merge-me-action from 2.10.28 to 2.10.29
    • deps: bump ridedott/merge-me-action from 2.10.28 to 2.10.29
    • deps: bump symfony/console from 6.0.12 to 6.0.13
    • deps: bump symfony/filesystem from 6.0.12 to 6.0.13
    • deps: bump symfony/dependency-injection from 6.0.11 to 6.0.13
    • deps: bump symfony/http-client from 6.0.12 to 6.0.13
    • deps: bump symfony/string from 6.0.12 to 6.0.13
    • deps: bump symfony/stopwatch from 6.0.5 to 6.0.13
    • deps: bump ridedott/merge-me-action from 2.10.26 to 2.10.28
    • deps: bump symfony/stopwatch from 6.0.5 to 6.0.13
    • deps: bump symfony/filesystem from 6.0.12 to 6.0.13
    • deps: bump symfony/http-client from 6.0.12 to 6.0.13
    • deps: bump symfony/console from 6.0.12 to 6.0.13
    • deps: bump symfony/dependency-injection from 6.0.11 to 6.0.13
    • deps: bump symfony/string from 6.0.12 to 6.0.13
    • deps: bump ridedott/merge-me-action from 2.10.26 to 2.10.28
    • deps: bump php-http/client-common from 2.5.0 to 2.6.0
    • deps: bump jetbrains/qodana-action from 2022.2.1 to 2022.2.2
    • deps: bump php-http/client-common from 2.5.0 to 2.6.0
    • deps: bump jetbrains/qodana-action from 2022.2.1 to 2022.2.2
    • deps: bump ridedott/merge-me-action from 2.10.25 to 2.10.26
    • deps: bump ridedott/merge-me-action from 2.10.25 to 2.10.26
    • deps: bump ridedott/merge-me-action from 2.10.24 to 2.10.25
    • deps: bump ridedott/merge-me-action from 2.10.24 to 2.10.25
    • deps: bump ridedott/merge-me-action from 2.10.22 to 2.10.24
    • deps: bump ridedott/merge-me-action from 2.10.22 to 2.10.24
    • deps: bump phpstan/phpstan-strict-rules from 1.4.3 to 1.4.4
    • deps: bump phpstan/phpstan-strict-rules from 1.4.3 to 1.4.4
    • deps: bump phpunit/phpunit from 9.5.24 to 9.5.25
    • deps: bump phpstan/phpstan from 1.8.5 to 1.8.6
    • deps: bump phpunit/phpunit from 9.5.24 to 9.5.25
    • deps: bump phpstan/phpstan from 1.8.5 to 1.8.6
    • deps: bump thecodingmachine/safe from 2.3.0 to 2.3.1
    • deps: bump thecodingmachine/safe from 2.3.0 to 2.3.1
    • deps: bump infection/infection from 0.26.14 to 0.26.15
    • deps: bump infection/infection from 0.26.14 to 0.26.15
    • deps: bump ridedott/merge-me-action from 2.10.20 to 2.10.22
    • deps: bump ridedott/merge-me-action from 2.10.20 to 2.10.22
    • deps: bump sebastian/exporter from 4.0.4 to 4.0.5
    • deps: bump sebastian/comparator from 4.0.6 to 4.0.8
    • deps: bump sebastian/exporter from 4.0.4 to 4.0.5
    • deps: bump sebastian/comparator from 4.0.6 to 4.0.8
    • deps: bump thecodingmachine/safe from 2.2.3 to 2.3.0
    • deps: bump thecodingmachine/safe from 2.2.3 to 2.3.0
    • deps: bump sebastian/type from 3.1.0 to 3.2.0
    • deps: bump sebastian/type from 3.1.0 to 3.2.0
    • deps: bump ridedott/merge-me-action from 2.10.19 to 2.10.20
    • deps: bump ridedott/merge-me-action from 2.10.19 to 2.10.20
    • deps: bump phpstan/phpstan from 1.8.4 to 1.8.5
    • deps: bump phpstan/phpstan from 1.8.4 to 1.8.5
    • deps: bump nikic/php-parser from 4.14.0 to 4.15.1
    • deps: bump phpstan/phpstan from 1.8.3 to 1.8.4
    • deps: bump nikic/php-parser from 4.14.0 to 4.15.1
    • deps: bump phpstan/phpstan from 1.8.3 to 1.8.4
    • deps: bump phpstan/phpstan-strict-rules from 1.4.2 to 1.4.3
    • deps: bump phpstan/phpstan-strict-rules from 1.4.2 to 1.4.3
    • deps: bump friendsofphp/php-cs-fixer from 3.10.0 to 3.11.0
    • deps: bump friendsofphp/php-cs-fixer from 3.10.0 to 3.11.0
    • deps: bump infection/infection from 0.26.13 to 0.26.14
    • deps: bump infection/infection from 0.26.13 to 0.26.14
    • deps: bump phpunit/phpunit from 9.5.23 to 9.5.24
    • deps: bump phpunit/php-code-coverage from 9.2.16 to 9.2.17
    • deps: bump phpunit/phpunit from 9.5.23 to 9.5.24
    • deps: bump phpunit/php-code-coverage from 9.2.16 to 9.2.17
    • deps: bump ridedott/merge-me-action from 2.10.18 to 2.10.19
    • deps: bump sebastian/type from 3.0.0 to 3.1.0
    • deps: bump sebastian/type from 3.0.0 to 3.1.0
    • deps: bump ridedott/merge-me-action from 2.10.18 to 2.10.19
    • deps: bump symfony/http-client from 6.0.11 to 6.0.12
    • deps: bump symfony/console from 6.0.11 to 6.0.12
    • deps: bump symfony/string from 6.0.11 to 6.0.12
    • deps: bump symfony/filesystem from 6.0.11 to 6.0.12
    • deps: bump ridedott/merge-me-action from 2.10.17 to 2.10.18
    • deps: bump symfony/http-client from 6.0.11 to 6.0.12
    • deps: bump symfony/console from 6.0.11 to 6.0.12
    • deps: bump symfony/string from 6.0.11 to 6.0.12
    • deps: bump symfony/filesystem from 6.0.11 to 6.0.12
    • deps: bump ridedott/merge-me-action from 2.10.17 to 2.10.18
    • deps: bump phpstan/phpstan-strict-rules from 1.4.0 to 1.4.2
    • deps: bump phpstan/phpstan-strict-rules from 1.4.0 to 1.4.2
    • deps: bump phpstan/phpstan-strict-rules from 1.3.0 to 1.4.0
    • deps: bump phpstan/phpstan-strict-rules from 1.3.0 to 1.4.0

    Features

    • add multiarch docker build
    Source code(tar.gz)
    Source code(zip)
    danger.phar(782.42 KB)
  • 0.2.5(Aug 23, 2022)

  • 0.2.4(Aug 23, 2022)

    Bug Fixes

    • all sonar lint issues
    • make all test urls https
    • Doctypes of collections
    • phpstan upgrade
    • Update CI config for GitHub
    • Revert Dockerfile change
    • Run ci command by default

    Chore

    • Revert "fix: phpstan upgrade"
    • deps: bump phpunit/phpunit from 9.5.22 to 9.5.23
    • deps: bump phpunit/phpunit from 9.5.21 to 9.5.22
    • deps: bump phpunit/php-code-coverage from 9.2.15 to 9.2.16
    • deps: bump phpunit/phpunit from 9.5.21 to 9.5.22
    • deps: bump phpunit/php-code-coverage from 9.2.15 to 9.2.16
    • deps: bump friendsofphp/php-cs-fixer from 3.9.5 to 3.10.0
    • deps: bump friendsofphp/php-cs-fixer from 3.9.5 to 3.10.0
    • deps: bump ridedott/merge-me-action from 2.10.15 to 2.10.17
    • deps: bump ridedott/merge-me-action from 2.10.15 to 2.10.17
    • deps: bump thecodingmachine/safe from 2.2.2 to 2.2.3
    • deps: bump thecodingmachine/safe from 2.2.2 to 2.2.3
    • deps: bump jetbrains/qodana-action from 2022.1.1 to 2022.2.1
    • deps: bump jetbrains/qodana-action from 2022.1.1 to 2022.2.1
    • deps: bump knplabs/github-api from 3.7.0 to 3.8.0
    • deps: bump knplabs/github-api from 3.7.0 to 3.8.0
    • deps: bump symfony/dependency-injection from 6.0.10 to 6.0.11
    • deps: bump symfony/process from 6.0.8 to 6.0.11
    • deps: bump symfony/http-client from 6.0.9 to 6.0.11
    • deps: bump symfony/string from 6.0.10 to 6.0.11
    • deps: bump symfony/filesystem from 6.0.9 to 6.0.11
    • deps: bump symfony/finder from 6.0.8 to 6.0.11
    • deps: bump symfony/config from 6.0.9 to 6.0.11
    • deps: bump symfony/console from 6.0.10 to 6.0.11
    • deps: bump symfony/dependency-injection from 6.0.10 to 6.0.11
    • deps: bump symfony/process from 6.0.8 to 6.0.11
    • deps: bump symfony/filesystem from 6.0.9 to 6.0.11
    • deps: bump symfony/string from 6.0.10 to 6.0.11
    • deps: bump symfony/http-client from 6.0.9 to 6.0.11
    • deps: bump symfony/config from 6.0.9 to 6.0.11
    • deps: bump symfony/console from 6.0.10 to 6.0.11
    • deps: bump symfony/finder from 6.0.8 to 6.0.11
    • deps: bump friendsofphp/php-cs-fixer from 3.9.4 to 3.9.5
    • deps: bump friendsofphp/php-cs-fixer from 3.9.4 to 3.9.5
    • deps: bump phpstan/phpstan from 1.8.1 to 1.8.2
    • deps: bump thecodingmachine/safe from 2.2.1 to 2.2.2
    • deps: bump phpstan/phpstan from 1.8.1 to 1.8.2
    • deps: bump thecodingmachine/safe from 2.2.1 to 2.2.2
    • deps: bump friendsofphp/php-cs-fixer from 3.9.3 to 3.9.4
    • deps: bump ridedott/merge-me-action from 2.10.14 to 2.10.15
    • deps: bump friendsofphp/php-cs-fixer from 3.9.3 to 3.9.4
    • deps: bump ridedott/merge-me-action from 2.10.14 to 2.10.15
    • deps: bump ridedott/merge-me-action from 2.10.13 to 2.10.14
    • deps: bump ridedott/merge-me-action from 2.10.13 to 2.10.14
    • deps: bump friendsofphp/php-cs-fixer from 3.9.2 to 3.9.3
    • deps: bump friendsofphp/php-cs-fixer from 3.9.2 to 3.9.3
    • deps: bump phpstan/phpstan from 1.8.0 to 1.8.1
    • deps: bump ridedott/merge-me-action from 2.10.12 to 2.10.13
    • deps: bump phpstan/phpstan from 1.8.0 to 1.8.1
    • deps: bump ridedott/merge-me-action from 2.10.12 to 2.10.13
    • deps: bump php-http/discovery from 1.14.2 to 1.14.3
    • deps: bump friendsofphp/php-cs-fixer from 3.8.0 to 3.9.2
    • deps: bump php-http/discovery from 1.14.2 to 1.14.3
    • deps: bump friendsofphp/php-cs-fixer from 3.8.0 to 3.9.2
    • deps: bump ridedott/merge-me-action from 2.10.11 to 2.10.12
    • deps: bump ridedott/merge-me-action from 2.10.11 to 2.10.12
    • deps: bump doctrine/annotations from 1.13.2 to 1.13.3
    • deps: bump jetbrains/qodana-action from 5.1.0 to 2022.1.1
    • deps: bump doctrine/annotations from 1.13.2 to 1.13.3
    • deps: bump jetbrains/qodana-action from 5.1.0 to 2022.1.1
    • deps: bump phpstan/phpstan from 1.7.15 to 1.8.0
    • deps: bump phpstan/phpstan from 1.7.15 to 1.8.0
    • deps: bump symfony/http-client-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/service-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/event-dispatcher-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/deprecation-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/http-client-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/service-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/event-dispatcher-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/deprecation-contracts from 3.0.1 to 3.0.2
    • deps: bump symfony/console from 6.0.9 to 6.0.10
    • deps: bump symfony/dependency-injection from 6.0.9 to 6.0.10
    • deps: bump phpstan/phpstan-strict-rules from 1.2.3 to 1.3.0
    • deps: bump symfony/string from 6.0.9 to 6.0.10
    • deps: bump symfony/string from 6.0.9 to 6.0.10
    • deps: bump phpstan/phpstan-strict-rules from 1.2.3 to 1.3.0
    • deps: bump symfony/dependency-injection from 6.0.9 to 6.0.10
    • deps: bump symfony/console from 6.0.9 to 6.0.10
    • deps: bump infection/infection from 0.26.12 to 0.26.13
    • deps: bump ridedott/merge-me-action from 2.10.10 to 2.10.11
    • deps: bump infection/infection from 0.26.12 to 0.26.13
    • deps: bump ridedott/merge-me-action from 2.10.10 to 2.10.11
    • deps: bump nyholm/psr7 from 1.5.0 to 1.5.1
    • deps: bump ridedott/merge-me-action from 2.10.9 to 2.10.10
    • deps: bump nyholm/psr7 from 1.5.0 to 1.5.1
    • deps: bump ridedott/merge-me-action from 2.10.9 to 2.10.10
    • deps: bump infection/infection from 0.26.11 to 0.26.12
    • deps: bump infection/infection from 0.26.11 to 0.26.12
    • deps: bump phpstan/phpstan from 1.7.14 to 1.7.15
    • deps: bump ridedott/merge-me-action from 2.10.8 to 2.10.9
    • deps: bump phpstan/phpstan from 1.7.14 to 1.7.15
    • deps: bump ridedott/merge-me-action from 2.10.8 to 2.10.9
    • deps: bump phpunit/phpunit from 9.5.20 to 9.5.21
    • deps: bump phpunit/phpunit from 9.5.20 to 9.5.21
    • deps: bump ridedott/merge-me-action from 2.10.6 to 2.10.8
    • deps: bump ridedott/merge-me-action from 2.10.6 to 2.10.8
    • deps: bump phpstan/phpstan from 1.7.13 to 1.7.14
    • deps: bump ridedott/merge-me-action from 2.10.5 to 2.10.6
    • deps: bump phpstan/phpstan from 1.7.13 to 1.7.14
    • deps: bump ridedott/merge-me-action from 2.10.5 to 2.10.6
    • deps: bump phpstan/phpstan from 1.7.12 to 1.7.13
    • deps: bump phpstan/phpstan from 1.7.12 to 1.7.13
    • deps: bump infection/infection from 0.26.10 to 0.26.11
    • deps: bump infection/infection from 0.26.10 to 0.26.11
    • deps: bump knplabs/github-api from 3.6.0 to 3.7.0
    • deps: bump knplabs/github-api from 3.6.0 to 3.7.0
    • deps: bump thecodingmachine/safe from 2.2.0 to 2.2.1
    • deps: bump phpstan/phpstan from 1.7.11 to 1.7.12
    • deps: bump thecodingmachine/safe from 2.2.0 to 2.2.1
    • deps: bump phpstan/phpstan from 1.7.11 to 1.7.12
    • deps: bump phpstan/phpstan from 1.7.10 to 1.7.11
    • deps: bump ridedott/merge-me-action from 2.10.4 to 2.10.5
    • deps: bump phpstan/phpstan from 1.7.10 to 1.7.11
    • deps: bump ridedott/merge-me-action from 2.10.4 to 2.10.5
    • deps: bump ridedott/merge-me-action from 2.10.3 to 2.10.4
    • deps: bump ridedott/merge-me-action from 2.10.3 to 2.10.4
    • deps: bump webmozart/assert from 1.10.0 to 1.11.0
    • deps: bump phpstan/phpstan from 1.7.9 to 1.7.10
    • deps: bump ridedott/merge-me-action from 2.10.2 to 2.10.3
    • deps: bump webmozart/assert from 1.10.0 to 1.11.0
    • deps: bump phpstan/phpstan from 1.7.9 to 1.7.10
    • deps: bump ridedott/merge-me-action from 2.10.2 to 2.10.3
    • deps: bump phpstan/phpstan from 1.7.8 to 1.7.9
    • deps: bump symfony/polyfill-php81 from 1.25.0 to 1.26.0
    • deps: bump phpstan/phpstan from 1.7.8 to 1.7.9
    • deps: bump symfony/polyfill-php81 from 1.25.0 to 1.26.0
    • deps: bump phpstan/phpstan from 1.7.7 to 1.7.8
    • deps: bump phpstan/phpstan from 1.7.7 to 1.7.8
    • deps: bump phpstan/phpstan from 1.7.6 to 1.7.7
    • deps: bump nikic/php-parser from 4.13.2 to 4.14.0
    • deps: bump phpstan/phpstan from 1.7.6 to 1.7.7
    • deps: bump nikic/php-parser from 4.13.2 to 4.14.0
    • deps: bump phpstan/phpstan from 1.7.3 to 1.7.6
    • deps: bump phpstan/phpstan from 1.7.3 to 1.7.6
    • deps: bump symfony/event-dispatcher from 6.0.3 to 6.0.9
    • deps: bump symfony/console from 6.0.8 to 6.0.9
    • deps: bump phpstan/phpstan from 1.7.2 to 1.7.3
    • deps: bump symfony/string from 6.0.8 to 6.0.9
    • deps: bump symfony/console from 6.0.8 to 6.0.9
    • deps: bump symfony/http-client from 6.0.8 to 6.0.9
    • deps: bump symfony/dependency-injection from 6.0.8 to 6.0.9
    • deps: bump symfony/config from 6.0.8 to 6.0.9
    • deps: bump phpstan/phpstan from 1.7.2 to 1.7.3
    • deps: bump symfony/filesystem from 6.0.7 to 6.0.9
    • deps: bump symfony/string from 6.0.8 to 6.0.9
    • deps: bump symfony/event-dispatcher from 6.0.3 to 6.0.9
    • deps: bump symfony/config from 6.0.8 to 6.0.9
    • deps: bump symfony/http-client from 6.0.8 to 6.0.9
    • deps: bump symfony/filesystem from 6.0.7 to 6.0.9
    • deps: bump symfony/dependency-injection from 6.0.8 to 6.0.9
    • deps: bump phpstan/phpstan from 1.7.1 to 1.7.2
    • deps: bump phpstan/phpstan from 1.7.1 to 1.7.2
    • deps: bump ridedott/merge-me-action from 2.10.1 to 2.10.2
    • deps: bump ridedott/merge-me-action from 2.10.1 to 2.10.2
    • deps: bump php-http/discovery from 1.14.1 to 1.14.2
    • deps: bump thecodingmachine/safe from 2.1.4 to 2.2.0
    • deps: bump php-http/discovery from 1.14.1 to 1.14.2
    • deps: bump thecodingmachine/safe from 2.1.4 to 2.2.0
    • deps: bump phpstan/phpstan from 1.7.0 to 1.7.1
    • deps: bump phpstan/phpstan from 1.7.0 to 1.7.1
    • deps: bump phpstan/phpstan from 1.6.9 to 1.7.0
    • deps: bump phpstan/phpstan from 1.6.9 to 1.7.0
    • deps: bump phpstan/phpstan from 1.6.8 to 1.6.9
    • deps: bump phpstan/phpstan from 1.6.8 to 1.6.9
    • deps: bump ridedott/merge-me-action from 2.10.0 to 2.10.1
    • deps: bump ridedott/merge-me-action from 2.10.0 to 2.10.1
    • deps: bump ridedott/merge-me-action from 2.9.156 to 2.10.0
    • deps: bump ridedott/merge-me-action from 2.9.156 to 2.10.0
    • deps: bump ridedott/merge-me-action from 2.9.155 to 2.9.156
    • deps: bump ridedott/merge-me-action from 2.9.155 to 2.9.156
    • deps: bump ridedott/merge-me-action from 2.9.154 to 2.9.155
    • deps: bump ridedott/merge-me-action from 2.9.154 to 2.9.155
    • deps: bump jetbrains/qodana-action from 5.0.4 to 5.1.0
    • deps: bump jetbrains/qodana-action from 5.0.4 to 5.1.0
    • deps: bump infection/infection from 0.26.9 to 0.26.10
    • deps: bump infection/infection from 0.26.9 to 0.26.10
    • deps: bump phpstan/phpstan from 1.6.7 to 1.6.8
    • deps: bump ridedott/merge-me-action from 2.9.153 to 2.9.154
    • deps: bump phpstan/phpstan from 1.6.7 to 1.6.8
    • deps: bump ridedott/merge-me-action from 2.9.153 to 2.9.154
    • deps: bump infection/infection from 0.26.8 to 0.26.9
    • deps: bump ridedott/merge-me-action from 2.9.152 to 2.9.153
    • deps: bump infection/infection from 0.26.8 to 0.26.9
    • deps: bump ridedott/merge-me-action from 2.9.152 to 2.9.153
    • deps: bump phpstan/phpstan-strict-rules from 1.2.2 to 1.2.3
    • deps: bump phpstan/phpstan-strict-rules from 1.2.2 to 1.2.3
    • deps: bump phpstan/phpstan from 1.6.4 to 1.6.7
    • deps: bump phpstan/phpstan from 1.6.4 to 1.6.7
    • deps: bump phpstan/phpstan-strict-rules from 1.2.1 to 1.2.2
    • deps: bump phpstan/phpstan-strict-rules from 1.2.1 to 1.2.2
    • deps: bump thecodingmachine/safe from 2.1.3 to 2.1.4
    • deps: bump phpstan/phpstan from 1.6.3 to 1.6.4
    • deps: bump thecodingmachine/safe from 2.1.3 to 2.1.4
    • deps: bump phpstan/phpstan from 1.6.3 to 1.6.4
    • deps: bump ridedott/merge-me-action from 2.9.151 to 2.9.152
    • deps: bump ridedott/merge-me-action from 2.9.151 to 2.9.152
    • deps: bump phpstan/phpstan-strict-rules from 1.2.0 to 1.2.1
    • deps: bump phpstan/phpstan-strict-rules from 1.2.0 to 1.2.1
    • deps: bump phpstan/phpstan from 1.6.2 to 1.6.3
    • deps: bump phpstan/phpstan from 1.6.2 to 1.6.3
    • deps: bump symfony/dependency-injection from 6.0.7 to 6.0.8
    • deps: bump symfony/finder from 6.0.3 to 6.0.8
    • deps: bump phpstan/phpstan from 1.6.1 to 1.6.2
    • deps: bump symfony/console from 6.0.7 to 6.0.8
    • deps: bump symfony/http-client from 6.0.7 to 6.0.8
    • deps: bump symfony/string from 6.0.3 to 6.0.8
    • deps: bump symfony/process from 6.0.7 to 6.0.8
    • deps: bump symfony/dependency-injection from 6.0.7 to 6.0.8
    • deps: bump symfony/config from 6.0.7 to 6.0.8
    • deps: bump phpstan/phpstan from 1.6.1 to 1.6.2
    • deps: bump symfony/finder from 6.0.3 to 6.0.8
    • deps: bump symfony/console from 6.0.7 to 6.0.8
    • deps: bump symfony/http-client from 6.0.7 to 6.0.8
    • deps: bump symfony/string from 6.0.3 to 6.0.8
    • deps: bump symfony/process from 6.0.7 to 6.0.8
    • deps: bump symfony/config from 6.0.7 to 6.0.8
    • deps: bump phpstan/phpstan from 1.6.0 to 1.6.1
    • deps: bump ridedott/merge-me-action from 2.9.150 to 2.9.151
    • deps: bump phpstan/phpstan from 1.6.0 to 1.6.1
    • deps: bump ridedott/merge-me-action from 2.9.150 to 2.9.151
    • deps: bump phpstan/phpstan-strict-rules from 1.1.0 to 1.2.0
    • deps: bump ridedott/merge-me-action from 2.9.149 to 2.9.150
    • deps: bump phpstan/phpstan-strict-rules from 1.1.0 to 1.2.0
    • deps: bump ridedott/merge-me-action from 2.9.149 to 2.9.150
    • deps: bump m4tthumphrey/php-gitlab-api from 11.7.0 to 11.8.0
    • deps: bump m4tthumphrey/php-gitlab-api from 11.7.0 to 11.8.0
    • deps: bump infection/infection from 0.26.7 to 0.26.8
    • deps: bump infection/infection from 0.26.7 to 0.26.8
    • deps: bump infection/infection from 0.26.6 to 0.26.7
    • deps: bump infection/infection from 0.26.6 to 0.26.7
    • deps: bump phpstan/phpstan-phpunit from 1.1.0 to 1.1.1
    • deps: bump phpstan/phpstan-phpunit from 1.1.0 to 1.1.1
    • deps: bump phpstan/phpstan from 1.5.5 to 1.5.6
    • deps: bump phpstan/phpstan from 1.5.5 to 1.5.6
    • deps: bump phpstan/phpstan from 1.5.4 to 1.5.5
    • deps: bump phpstan/phpstan from 1.5.4 to 1.5.5
    • deps: bump justinrainbow/json-schema from 5.2.11 to 5.2.12
    • deps: bump ridedott/merge-me-action from 2.9.148 to 2.9.149
    • deps: bump justinrainbow/json-schema from 5.2.11 to 5.2.12
    • deps: bump ridedott/merge-me-action from 2.9.148 to 2.9.149
    • deps: bump ridedott/merge-me-action from 2.9.146 to 2.9.148
    • deps: bump ridedott/merge-me-action from 2.9.146 to 2.9.148
    • deps: bump jetbrains/qodana-action from 5.0.2 to 5.0.4
    • deps: bump ridedott/merge-me-action from 2.9.143 to 2.9.146
    • deps: bump jetbrains/qodana-action from 5.0.2 to 5.0.4
    • deps: bump ridedott/merge-me-action from 2.9.143 to 2.9.146
    • deps: bump ridedott/merge-me-action from 2.9.142 to 2.9.143
    • deps: bump ridedott/merge-me-action from 2.9.142 to 2.9.143
    • deps: bump ridedott/merge-me-action from 2.9.141 to 2.9.142
    • deps: bump ridedott/merge-me-action from 2.9.141 to 2.9.142
    • deps: bump ridedott/merge-me-action from 2.9.140 to 2.9.141
    • deps: bump ridedott/merge-me-action from 2.9.140 to 2.9.141
    • deps: bump symfony/service-contracts from 3.0.0 to 3.0.1
    • deps: bump symfony/deprecation-contracts from 3.0.0 to 3.0.1
    • deps: bump symfony/event-dispatcher-contracts from 3.0.0 to 3.0.1
    • deps: bump ridedott/merge-me-action from 2.9.139 to 2.9.140
    • deps: bump symfony/http-client-contracts from 3.0.0 to 3.0.1
    • deps: bump codecov/codecov-action from 2.1.0 to 3
    • deps: bump symfony/service-contracts from 3.0.0 to 3.0.1
    • deps: bump symfony/deprecation-contracts from 3.0.0 to 3.0.1
    • deps: bump symfony/event-dispatcher-contracts from 3.0.0 to 3.0.1
    • deps: bump symfony/http-client-contracts from 3.0.0 to 3.0.1
    • deps: bump codecov/codecov-action from 2.1.0 to 3
    • deps: bump ridedott/merge-me-action from 2.9.139 to 2.9.140
    • deps: bump ridedott/merge-me-action from 2.9.138 to 2.9.139
    • deps: bump ridedott/merge-me-action from 2.9.138 to 2.9.139
    • deps: bump seld/jsonlint from 1.8.9 to 1.9.0
    • deps: bump phpunit/phpunit from 9.5.19 to 9.5.20
    • deps: bump symfony/config from 6.0.3 to 6.0.7
    • deps: bump sebastian/environment from 5.1.3 to 5.1.4
    • deps: bump composer/semver from 3.3.1 to 3.3.2
    • deps: bump symfony/http-client from 6.0.5 to 6.0.7
    • deps: bump symfony/dependency-injection from 6.0.6 to 6.0.7
    • deps: bump symfony/console from 6.0.5 to 6.0.7
    • deps: bump phpunit/phpunit from 9.5.19 to 9.5.20
    • deps: bump seld/jsonlint from 1.8.9 to 1.9.0
    • deps: bump symfony/process from 6.0.5 to 6.0.7
    • deps: bump ridedott/merge-me-action from 2.9.135 to 2.9.138
    • deps: bump composer/semver from 3.3.1 to 3.3.2
    • deps: bump phpstan/phpstan from 1.5.3 to 1.5.4
    • deps: bump symfony/config from 6.0.3 to 6.0.7
    • deps: bump symfony/http-client from 6.0.5 to 6.0.7
    • deps: bump sebastian/environment from 5.1.3 to 5.1.4
    • deps: bump symfony/console from 6.0.5 to 6.0.7
    • deps: bump symfony/dependency-injection from 6.0.6 to 6.0.7
    • deps: bump symfony/process from 6.0.5 to 6.0.7
    • deps: bump ridedott/merge-me-action from 2.9.135 to 2.9.138
    • deps: bump phpstan/phpstan from 1.5.3 to 1.5.4
    • deps: bump ridedott/merge-me-action from 2.9.134 to 2.9.135
    • deps: bump seld/jsonlint from 1.8.3 to 1.8.9
    • deps: bump seld/jsonlint from 1.8.3 to 1.8.9
    • deps: bump ridedott/merge-me-action from 2.9.134 to 2.9.135
    • deps: bump phpstan/phpstan from 1.5.2 to 1.5.3
    • deps: bump ridedott/merge-me-action from 2.9.132 to 2.9.134
    • deps: bump phpstan/phpstan from 1.5.2 to 1.5.3
    • deps: bump ridedott/merge-me-action from 2.9.132 to 2.9.134
    • deps: bump phpstan/phpstan from 1.5.1 to 1.5.2
    • deps: bump phpdocumentor/type-resolver from 1.6.0 to 1.6.1
    • deps: bump ridedott/merge-me-action from 2.9.131 to 2.9.132
    • deps: bump phpdocumentor/type-resolver from 1.6.0 to 1.6.1
    • deps: bump phpstan/phpstan from 1.5.1 to 1.5.2
    • deps: bump ridedott/merge-me-action from 2.9.131 to 2.9.132
    • deps: bump phpstan/phpstan-phpunit from 1.0.0 to 1.1.0
    • deps: bump ridedott/merge-me-action from 2.9.128 to 2.9.131
    • deps: bump phpstan/phpstan-phpunit from 1.0.0 to 1.1.0
    • deps: bump ridedott/merge-me-action from 2.9.128 to 2.9.131
    • deps: bump ridedott/merge-me-action from 2.9.127 to 2.9.128
    • deps: bump jetbrains/qodana-action from 4.2.5 to 5.0.2
    • deps: bump ridedott/merge-me-action from 2.9.127 to 2.9.128
    • deps: bump jetbrains/qodana-action from 4.2.5 to 5.0.2
    • deps: bump phpstan/phpstan from 1.4.10 to 1.5.0
    • deps: bump phpstan/phpstan from 1.4.10 to 1.5.0
    • deps: bump knplabs/github-api from 3.5.1 to 3.6.0
    • deps: bump knplabs/github-api from 3.5.1 to 3.6.0
    • deps: bump ridedott/merge-me-action from 2.9.126 to 2.9.127
    • deps: bump ridedott/merge-me-action from 2.9.126 to 2.9.127
    • deps: bump ridedott/merge-me-action from 2.9.125 to 2.9.126
    • deps: bump ridedott/merge-me-action from 2.9.125 to 2.9.126
    • deps: bump friendsofphp/php-cs-fixer from 3.7.0 to 3.8.0
    • deps: bump ridedott/merge-me-action from 2.9.122 to 2.9.125
    • deps: bump friendsofphp/php-cs-fixer from 3.7.0 to 3.8.0
    • deps: bump ridedott/merge-me-action from 2.9.122 to 2.9.125
    • deps: bump composer/semver from 3.3.0 to 3.3.1
    • deps: bump ridedott/merge-me-action from 2.9.121 to 2.9.122
    • deps: bump composer/semver from 3.3.0 to 3.3.1
    • deps: bump ridedott/merge-me-action from 2.9.121 to 2.9.122
    • deps: bump phpunit/phpunit from 9.5.18 to 9.5.19
    • deps: bump composer/semver from 3.2.9 to 3.3.0
    • deps: bump phpunit/phpunit from 9.5.18 to 9.5.19
    • deps: bump composer/semver from 3.2.9 to 3.3.0
    • deps: bump phpstan/phpstan from 1.4.9 to 1.4.10
    • deps: bump ridedott/merge-me-action from 2.9.120 to 2.9.121
    • deps: bump phpstan/phpstan from 1.4.9 to 1.4.10
    • deps: bump ridedott/merge-me-action from 2.9.120 to 2.9.121
    • deps: bump ridedott/merge-me-action from 2.9.117 to 2.9.120
    • deps: bump ridedott/merge-me-action from 2.9.117 to 2.9.120
    • deps: bump phpstan/phpstan from 1.4.8 to 1.4.9
    • deps: bump phpstan/phpstan from 1.4.8 to 1.4.9
    • deps: bump phpunit/phpunit from 9.5.22 to 9.5.23
    • deps: bump ridedott/merge-me-action from 2.9.116 to 2.9.117
    • deps: bump ridedott/merge-me-action from 2.9.116 to 2.9.117
    • deps: bump phpunit/phpunit from 9.5.16 to 9.5.18
    • deps: bump friendsofphp/php-cs-fixer from 3.6.0 to 3.7.0
    • deps: bump friendsofphp/php-cs-fixer from 3.6.0 to 3.7.0
    • deps: bump infection/infection from 0.26.5 to 0.26.6
    • deps: bump phpunit/phpunit from 9.5.16 to 9.5.18
    • deps: bump infection/infection from 0.26.5 to 0.26.6
    • deps: bump phpunit/php-code-coverage from 9.2.14 to 9.2.15
    • deps: bump symfony/dependency-injection from 6.0.5 to 6.0.6
    • deps: bump symfony/filesystem from 6.0.5 to 6.0.6
    • deps: bump phpunit/php-code-coverage from 9.2.14 to 9.2.15
    • deps: bump phpstan/phpstan from 1.4.7 to 1.4.8
    • deps: bump symfony/dependency-injection from 6.0.5 to 6.0.6
    • deps: bump symfony/filesystem from 6.0.5 to 6.0.6
    • deps: bump phpstan/phpstan from 1.4.7 to 1.4.8
    • deps: bump phpstan/phpstan from 1.4.6 to 1.4.7
    • deps: bump doctrine/instantiator from 1.4.0 to 1.4.1
    • deps: bump myclabs/deep-copy from 1.10.3 to 1.11.0
    • deps: bump doctrine/instantiator from 1.4.0 to 1.4.1
    • deps: bump myclabs/deep-copy from 1.10.3 to 1.11.0
    • deps: bump myclabs/deep-copy from 1.10.2 to 1.10.3
    • deps: bump ridedott/merge-me-action from 2.9.114 to 2.9.116
    • deps: bump myclabs/deep-copy from 1.10.2 to 1.10.3
    • deps: bump ridedott/merge-me-action from 2.9.114 to 2.9.116
    • deps: bump actions/checkout from 2.4.0 to 3
    • deps: bump ridedott/merge-me-action from 2.9.113 to 2.9.114
    • deps: bump actions/checkout from 2.4.0 to 3
    • deps: bump ridedott/merge-me-action from 2.9.113 to 2.9.114
    • deps: bump doctrine/lexer from 1.2.2 to 1.2.3
    • deps: bump symfony/http-client from 6.0.3 to 6.0.5
    • deps: bump symfony/filesystem from 6.0.3 to 6.0.5
    • deps: bump symfony/dependency-injection from 6.0.3 to 6.0.5
    • deps: bump phpunit/php-code-coverage from 9.2.13 to 9.2.14
    • deps: bump symfony/process from 6.0.3 to 6.0.5
    • deps: bump symfony/stopwatch from 6.0.3 to 6.0.5
    • deps: bump symfony/console from 6.0.3 to 6.0.5
    • deps: bump doctrine/lexer from 1.2.2 to 1.2.3
    • deps: bump symfony/http-client from 6.0.3 to 6.0.5
    • deps: bump symfony/filesystem from 6.0.3 to 6.0.5
    • deps: bump symfony/dependency-injection from 6.0.3 to 6.0.5
    • deps: bump phpunit/php-code-coverage from 9.2.13 to 9.2.14
    • deps: bump symfony/process from 6.0.3 to 6.0.5
    • deps: bump symfony/stopwatch from 6.0.3 to 6.0.5
    • deps: bump symfony/console from 6.0.3 to 6.0.5
    • deps: bump ridedott/merge-me-action from 2.9.112 to 2.9.113
    • deps: bump composer/xdebug-handler from 3.0.2 to 3.0.3
    • deps: bump ridedott/merge-me-action from 2.9.112 to 2.9.113
    • deps: bump composer/xdebug-handler from 3.0.2 to 3.0.3
    • deps: bump ridedott/merge-me-action from 2.9.111 to 2.9.112
    • deps: bump composer/xdebug-handler from 3.0.1 to 3.0.2
    • deps: bump composer/xdebug-handler from 3.0.1 to 3.0.2
    • deps: bump ridedott/merge-me-action from 2.9.111 to 2.9.112
    • deps: bump phpunit/phpunit from 9.5.14 to 9.5.16
    • deps: bump phpunit/php-code-coverage from 9.2.12 to 9.2.13
    • deps: bump ridedott/merge-me-action from 2.9.110 to 2.9.111
    • deps: bump phpunit/php-code-coverage from 9.2.12 to 9.2.13
    • deps: bump phpunit/phpunit from 9.5.14 to 9.5.16
    • deps: bump ridedott/merge-me-action from 2.9.110 to 2.9.111
    • deps: bump phpunit/php-code-coverage from 9.2.11 to 9.2.12
    • deps: bump phpunit/php-code-coverage from 9.2.11 to 9.2.12
    • deps: bump php-http/httplug from 2.2.0 to 2.3.0
    • deps: bump clue/stream-filter from 1.5.0 to 1.6.0
    • deps: bump php-http/httplug from 2.2.0 to 2.3.0
    • deps: bump clue/stream-filter from 1.5.0 to 1.6.0
    • deps: bump knplabs/github-api from 3.5.0 to 3.5.1
    • deps: bump phpunit/php-code-coverage from 9.2.10 to 9.2.11
    • deps: bump phar-io/version from 3.1.1 to 3.2.1
    • deps: bump phpunit/phpunit from 9.5.13 to 9.5.14
    • deps: bump knplabs/github-api from 3.5.0 to 3.5.1
    • deps: bump phpunit/php-code-coverage from 9.2.10 to 9.2.11
    • deps: bump phar-io/version from 3.1.1 to 3.2.1
    • deps: bump phpunit/phpunit from 9.5.13 to 9.5.14
    • deps: bump ridedott/merge-me-action from 2.9.109 to 2.9.110
    • deps: bump ridedott/merge-me-action from 2.9.109 to 2.9.110
    • deps: bump ridedott/merge-me-action from 2.9.107 to 2.9.109
    • deps: bump sebastian/global-state from 5.0.4 to 5.0.5
    • deps: bump infection/infection from 0.26.4 to 0.26.5
    • deps: bump sebastian/global-state from 5.0.4 to 5.0.5
    • deps: bump infection/infection from 0.26.4 to 0.26.5
    • deps: bump ridedott/merge-me-action from 2.9.107 to 2.9.109
    • deps: bump php-http/message from 1.12.0 to 1.13.0
    • deps: bump php-http/message from 1.12.0 to 1.13.0
    • deps: bump sebastian/global-state from 5.0.3 to 5.0.4
    • deps: bump sebastian/global-state from 5.0.3 to 5.0.4
    • deps: bump ridedott/merge-me-action from 2.9.106 to 2.9.107
    • deps: bump ridedott/merge-me-action from 2.9.106 to 2.9.107
    • deps: bump phar-io/version from 3.1.0 to 3.1.1
    • deps: bump friendsofphp/php-cs-fixer from 3.5.0 to 3.6.0
    • deps: bump ridedott/merge-me-action from 2.9.105 to 2.9.106
    • deps: bump phar-io/version from 3.1.0 to 3.1.1
    • deps: bump friendsofphp/php-cs-fixer from 3.5.0 to 3.6.0
    • deps: bump ridedott/merge-me-action from 2.9.105 to 2.9.106
    • deps: bump composer/semver from 3.2.7 to 3.2.9
    • deps: bump phpstan/phpstan from 1.4.5 to 1.4.6
    • deps: bump ridedott/merge-me-action from 2.9.103 to 2.9.105
    • deps: bump composer/semver from 3.2.7 to 3.2.9
    • deps: bump phpstan/phpstan from 1.4.5 to 1.4.6
    • deps: bump ridedott/merge-me-action from 2.9.103 to 2.9.105
    • deps: bump ridedott/merge-me-action from 2.9.102 to 2.9.103
    • deps: bump ridedott/merge-me-action from 2.9.102 to 2.9.103
    • deps: bump phpstan/phpstan from 1.4.4 to 1.4.5
    • deps: bump phpstan/phpstan from 1.4.4 to 1.4.5
    • deps: bump nyholm/psr7 from 1.4.1 to 1.5.0
    • deps: bump jetbrains/qodana-action from 4.2.4 to 4.2.5
    • deps: bump nyholm/psr7 from 1.4.1 to 1.5.0
    • deps: bump jetbrains/qodana-action from 4.2.4 to 4.2.5
    • deps: bump phpstan/phpstan from 1.4.3 to 1.4.4
    • deps: bump jetbrains/qodana-action from 4.2.3 to 4.2.4
    • deps: bump ridedott/merge-me-action from 2.9.101 to 2.9.102
    • deps: bump phpstan/phpstan from 1.4.3 to 1.4.4
    • deps: bump jetbrains/qodana-action from 4.2.3 to 4.2.4
    • deps: bump ridedott/merge-me-action from 2.9.101 to 2.9.102
    • deps: bump phpstan/phpstan from 1.4.2 to 1.4.3
    • deps: bump phpstan/phpstan from 1.4.2 to 1.4.3
    • deps: bump symfony/http-client from 6.0.2 to 6.0.3
    • deps: bump symfony/filesystem from 6.0.0 to 6.0.3
    • deps: bump symfony/dependency-injection from 6.0.2 to 6.0.3
    • deps: bump symfony/stopwatch from 6.0.0 to 6.0.3
    • deps: bump symfony/finder from 6.0.2 to 6.0.3
    • deps: bump symfony/console from 6.0.2 to 6.0.3
    • deps: bump infection/infection from 0.26.3 to 0.26.4
    • deps: bump symfony/options-resolver from 6.0.0 to 6.0.3
    • deps: bump symfony/event-dispatcher from 6.0.2 to 6.0.3
    • deps: bump symfony/config from 6.0.2 to 6.0.3
    • deps: bump symfony/string from 6.0.2 to 6.0.3
    • deps: bump symfony/filesystem from 6.0.0 to 6.0.3
    • deps: bump symfony/http-client from 6.0.2 to 6.0.3
    • deps: bump symfony/dependency-injection from 6.0.2 to 6.0.3
    • deps: bump symfony/process from 6.0.2 to 6.0.3
    • deps: bump symfony/stopwatch from 6.0.0 to 6.0.3
    • deps: bump symfony/finder from 6.0.2 to 6.0.3
    • deps: bump symfony/console from 6.0.2 to 6.0.3
    • deps: bump infection/infection from 0.26.3 to 0.26.4
    • deps: bump symfony/options-resolver from 6.0.0 to 6.0.3
    • deps: bump symfony/config from 6.0.2 to 6.0.3
    • deps: bump symfony/event-dispatcher from 6.0.2 to 6.0.3
    • deps: bump symfony/string from 6.0.2 to 6.0.3
    • deps: bump symfony/process from 6.0.2 to 6.0.3
    • deps: bump ridedott/merge-me-action from 2.9.99 to 2.9.101
    • deps: bump ridedott/merge-me-action from 2.9.99 to 2.9.101
    • deps: bump infection/infection from 0.26.2 to 0.26.3
    • deps: bump infection/infection from 0.26.2 to 0.26.3
    • deps: bump phpunit/phpunit from 9.5.12 to 9.5.13
    • deps: bump ridedott/merge-me-action from 2.9.98 to 2.9.99
    • deps: bump phpunit/phpunit from 9.5.12 to 9.5.13
    • deps: bump ridedott/merge-me-action from 2.9.98 to 2.9.99
    • deps: bump m4tthumphrey/php-gitlab-api from 11.5.0 to 11.7.0
    • deps: bump m4tthumphrey/php-gitlab-api from 11.5.0 to 11.7.0
    • deps: bump knplabs/github-api from 3.4.0 to 3.5.0
    • deps: bump composer/pcre from 1.0.0 to 1.0.1
    • deps: bump ridedott/merge-me-action from 2.9.96 to 2.9.98
    • deps: bump knplabs/github-api from 3.4.0 to 3.5.0
    • deps: bump composer/pcre from 1.0.0 to 1.0.1
    • deps: bump ridedott/merge-me-action from 2.9.96 to 2.9.98
    • deps: bump phpunit/phpunit from 9.5.11 to 9.5.12
    • deps: bump ridedott/merge-me-action from 2.9.94 to 2.9.96
    • deps: bump phpunit/phpunit from 9.5.11 to 9.5.12
    • deps: bump ridedott/merge-me-action from 2.9.94 to 2.9.96
    • deps: bump infection/infection from 0.26.1 to 0.26.2
    • deps: bump ridedott/merge-me-action from 2.9.93 to 2.9.94
    • deps: bump infection/infection from 0.26.1 to 0.26.2
    • deps: bump ridedott/merge-me-action from 2.9.93 to 2.9.94
    • deps: bump phpstan/phpstan from 1.4.1 to 1.4.2
    • deps: bump php-http/cache-plugin from 1.7.4 to 1.7.5
    • deps: bump phpstan/phpstan from 1.4.1 to 1.4.2
    • deps: bump php-http/cache-plugin from 1.7.4 to 1.7.5
    • deps: bump phpstan/phpstan from 1.4.0 to 1.4.1
    • deps: bump infection/extension-installer from 0.1.1 to 0.1.2
    • deps: bump phpstan/phpstan from 1.4.0 to 1.4.1
    • deps: bump infection/extension-installer from 0.1.1 to 0.1.2
    • deps: bump phpstan/phpstan from 1.3.3 to 1.4.0
    • deps: bump jetbrains/qodana-action from 4.2.2 to 4.2.3
    • deps: bump phpstan/phpstan from 1.3.3 to 1.4.0
    • deps: bump jetbrains/qodana-action from 4.2.2 to 4.2.3
    • deps: bump friendsofphp/php-cs-fixer from 3.4.0 to 3.5.0
    • deps: bump friendsofphp/php-cs-fixer from 3.4.0 to 3.5.0
    • deps: bump doctrine/lexer from 1.2.1 to 1.2.2
    • deps: bump doctrine/lexer from 1.2.1 to 1.2.2
    • deps: bump infection/infection from 0.26.0 to 0.26.1
    • deps: bump ridedott/merge-me-action from 2.9.92 to 2.9.93
    • deps: bump infection/infection from 0.26.0 to 0.26.1
    • deps: bump ridedott/merge-me-action from 2.9.92 to 2.9.93
    • deps: bump infection/infection from 0.25.6 to 0.26.0
    • deps: bump ridedott/merge-me-action from 2.9.90 to 2.9.92
    • deps: bump infection/infection from 0.25.6 to 0.26.0
    • deps: bump ridedott/merge-me-action from 2.9.90 to 2.9.92
    • deps: bump infection/infection from 0.25.5 to 0.25.6
    • deps: bump infection/infection from 0.25.5 to 0.25.6
    • deps: bump ridedott/merge-me-action from 2.9.89 to 2.9.90
    • deps: bump phpstan/phpstan from 1.3.2 to 1.3.3
    • deps: bump phpstan/phpstan from 1.3.2 to 1.3.3
    • deps: bump ridedott/merge-me-action from 2.9.89 to 2.9.90
    • deps: bump phpstan/phpstan from 1.3.1 to 1.3.2
    • deps: bump phpstan/phpstan from 1.3.1 to 1.3.2
    • deps: bump symfony/polyfill-php81 from 1.23.0 to 1.24.0
    • deps: bump symfony/polyfill-php81 from 1.23.0 to 1.24.0
    • deps: bump composer/xdebug-handler from 2.0.3 to 2.0.4
    • deps: bump composer/semver from 3.2.6 to 3.2.7
    • deps: bump phpstan/phpstan from 1.3.0 to 1.3.1
    • deps: bump phpdocumentor/type-resolver from 1.5.1 to 1.6.0
    • deps: bump jetbrains/qodana-action from 4.2.1 to 4.2.2
    • deps: bump composer/xdebug-handler from 2.0.3 to 2.0.4
    • deps: bump composer/semver from 3.2.6 to 3.2.7
    • deps: bump phpstan/phpstan from 1.3.0 to 1.3.1
    • deps: bump phpdocumentor/type-resolver from 1.5.1 to 1.6.0
    • deps: bump jetbrains/qodana-action from 4.2.1 to 4.2.2
    • deps: bump ridedott/merge-me-action from 2.9.88 to 2.9.89
    • deps: bump ridedott/merge-me-action from 2.9.88 to 2.9.89
    • deps: bump jetbrains/qodana-action from 4.2.0 to 4.2.1
    • deps: bump jetbrains/qodana-action from 4.2.0 to 4.2.1
    • deps: bump symfony/dependency-injection from 6.0.1 to 6.0.2
    • deps: bump phpstan/phpstan from 1.2.0 to 1.3.0
    • deps: bump symfony/event-dispatcher from 6.0.1 to 6.0.2
    • deps: bump symfony/config from 6.0.0 to 6.0.2
    • deps: bump symfony/http-client from 6.0.1 to 6.0.2
    • deps: bump symfony/dependency-injection from 6.0.1 to 6.0.2
    • deps: bump symfony/finder from 6.0.0 to 6.0.2
    • deps: bump phpstan/phpstan from 1.2.0 to 1.3.0
    • deps: bump symfony/process from 6.0.0 to 6.0.2
    • deps: bump symfony/event-dispatcher from 6.0.1 to 6.0.2
    • deps: bump ridedott/merge-me-action from 2.9.86 to 2.9.88
    • deps: bump symfony/console from 6.0.1 to 6.0.2
    • deps: bump symfony/config from 6.0.0 to 6.0.2
    • deps: bump symfony/http-client from 6.0.1 to 6.0.2
    • deps: bump symfony/finder from 6.0.0 to 6.0.2
    • deps: bump symfony/process from 6.0.0 to 6.0.2
    • deps: bump symfony/console from 6.0.1 to 6.0.2
    • deps: bump ridedott/merge-me-action from 2.9.86 to 2.9.88
    • deps: bump symfony/config from 5.4.0 to 6.0.0
    • deps: bump symfony/config from 5.4.0 to 6.0.0
    • deps: bump symfony/filesystem from 5.4.0 to 6.0.0
    • deps: bump symfony/filesystem from 5.4.0 to 6.0.0
    • deps: bump symfony/http-client from 5.4.1 to 6.0.1
    • deps: bump symfony/http-client from 5.4.1 to 6.0.1
    • deps: bump symfony/console from 5.4.1 to 6.0.1
    • deps: bump symfony/console from 5.4.1 to 6.0.1
    • deps: bump symfony/dependency-injection from 5.4.1 to 6.0.1
    • deps: bump symfony/dependency-injection from 5.4.1 to 6.0.1
    • deps: bump symfony/finder from 5.4.0 to 6.0.0
    • deps: bump ridedott/merge-me-action from 2.9.84 to 2.9.86
    • deps: bump symfony/finder from 5.4.0 to 6.0.0
    • deps: bump ridedott/merge-me-action from 2.9.84 to 2.9.86
    • deps: bump phpunit/phpunit from 9.5.10 to 9.5.11
    • deps: bump m4tthumphrey/php-gitlab-api from 11.4.0 to 11.5.0
    • deps: bump phpunit/phpunit from 9.5.10 to 9.5.11
    • deps: bump m4tthumphrey/php-gitlab-api from 11.4.0 to 11.5.0
    • deps: bump ridedott/merge-me-action from 2.9.82 to 2.9.84
    • deps: bump ridedott/merge-me-action from 2.9.82 to 2.9.84
    • deps: bump ridedott/merge-me-action from 2.9.81 to 2.9.82
    • deps: bump ridedott/merge-me-action from 2.9.81 to 2.9.82
    • deps: bump infection/infection from 0.25.4 to 0.25.5
    • deps: bump infection/infection from 0.25.4 to 0.25.5
    • deps: bump ridedott/merge-me-action from 2.9.80 to 2.9.81
    • deps: bump ridedott/merge-me-action from 2.9.80 to 2.9.81
    • deps: bump ridedott/merge-me-action from 2.9.79 to 2.9.80
    • deps: bump ridedott/merge-me-action from 2.9.79 to 2.9.80
    • deps: bump friendsofphp/php-cs-fixer from 3.3.2 to 3.4.0
    • deps: bump ridedott/merge-me-action from 2.9.78 to 2.9.79
    • deps: bump friendsofphp/php-cs-fixer from 3.3.2 to 3.4.0
    • deps: bump ridedott/merge-me-action from 2.9.78 to 2.9.79
    • deps: bump symfony/http-client from 5.4.0 to 5.4.1
    • deps: bump symfony/console from 5.4.0 to 5.4.1
    • deps: bump symfony/dependency-injection from 5.4.0 to 5.4.1
    • deps: bump symfony/http-client from 5.4.0 to 5.4.1
    • deps: bump symfony/dependency-injection from 5.4.0 to 5.4.1
    • deps: bump symfony/console from 5.4.0 to 5.4.1
    • deps: bump phpspec/prophecy from 1.14.0 to 1.15.0
    • deps: bump composer/xdebug-handler from 2.0.2 to 2.0.3
    • deps: bump phpspec/prophecy from 1.14.0 to 1.15.0
    • deps: bump composer/xdebug-handler from 2.0.2 to 2.0.3
    • deps: bump ridedott/merge-me-action from 2.9.77 to 2.9.78
    • deps: bump infection/infection from 0.25.3 to 0.25.4
    • deps: bump infection/infection from 0.25.3 to 0.25.4
    • deps: bump ridedott/merge-me-action from 2.9.77 to 2.9.78
    • deps: bump ridedott/merge-me-action from 2.9.76 to 2.9.77
    • deps: bump ridedott/merge-me-action from 2.9.76 to 2.9.77
    • deps: bump phpunit/php-code-coverage from 9.2.9 to 9.2.10
    • deps: bump ridedott/merge-me-action from 2.9.74 to 2.9.76
    • deps: bump phpunit/php-code-coverage from 9.2.9 to 9.2.10
    • deps: bump ridedott/merge-me-action from 2.9.74 to 2.9.76
    • deps: bump phpunit/php-file-iterator from 3.0.5 to 3.0.6
    • deps: bump phpunit/php-file-iterator from 3.0.5 to 3.0.6
    • deps: bump php-http/cache-plugin from 1.7.3 to 1.7.4
    • deps: bump nikic/php-parser from 4.13.1 to 4.13.2
    • deps: bump php-http/cache-plugin from 1.7.3 to 1.7.4
    • deps: bump nikic/php-parser from 4.13.1 to 4.13.2
    • deps: bump symfony/config from 5.3.11 to 5.4.0
    • deps: bump symfony/config from 5.3.11 to 5.4.0
    • deps: bump symfony/finder from 5.3.7 to 5.4.0
    • deps: bump symfony/finder from 5.3.7 to 5.4.0
    • deps: bump symfony/stopwatch from 5.3.4 to 5.4.0
    • deps: bump symfony/filesystem from 5.3.4 to 5.4.0
    • deps: bump symfony/stopwatch from 5.3.4 to 5.4.0
    • deps: bump symfony/options-resolver from 5.3.7 to 5.4.0
    • deps: bump symfony/process from 5.3.12 to 5.4.0
    • deps: bump symfony/string from 5.3.10 to 5.4.0
    • deps: bump symfony/filesystem from 5.3.4 to 5.4.0
    • deps: bump symfony/dependency-injection from 5.3.11 to 5.4.0
    • deps: bump symfony/process from 5.3.12 to 5.4.0
    • deps: bump symfony/dependency-injection from 5.3.11 to 5.4.0
    • deps: bump symfony/event-dispatcher from 5.3.11 to 5.4.0
    • deps: bump symfony/http-client from 5.3.11 to 5.4.0
    • deps: bump symfony/options-resolver from 5.3.7 to 5.4.0
    • deps: bump ridedott/merge-me-action from 2.9.73 to 2.9.74
    • deps: bump symfony/string from 5.3.10 to 5.4.0
    • deps: bump symfony/event-dispatcher from 5.3.11 to 5.4.0
    • deps: bump symfony/http-client from 5.3.11 to 5.4.0
    • deps: bump ridedott/merge-me-action from 2.9.73 to 2.9.74
    • deps: bump php-http/client-common from 2.4.0 to 2.5.0
    • deps: bump php-http/client-common from 2.4.0 to 2.5.0
    • deps: bump ridedott/merge-me-action from 2.9.71 to 2.9.73
    • deps: bump ridedott/merge-me-action from 2.9.71 to 2.9.73

    Features

    • Added possibility to decide on which level a thread is started for gitlab
    Source code(tar.gz)
    Source code(zip)
    danger.phar(780.33 KB)
  • 0.2.3(Nov 25, 2021)

    Bug Fixes

    • Github pull requests with empty body

    Chore

    • Test PHP 8.1
    • deps: bump ridedott/merge-me-action from 2.9.70 to 2.9.71
    • deps: bump psr/log from 2.0.0 to 3.0.0
    • deps: bump ridedott/merge-me-action from 2.9.69 to 2.9.70
    • deps: bump psr/log from 2.0.0 to 3.0.0
    • deps: bump ridedott/merge-me-action from 2.9.69 to 2.9.70
    • deps: bump symfony/service-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/config from 5.3.10 to 5.3.11
    • deps: bump symfony/event-dispatcher from 5.3.7 to 5.3.11
    • deps: bump symfony/event-dispatcher from 5.3.7 to 5.3.11
    • deps: bump symfony/http-client-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/http-client from 5.3.10 to 5.3.11
    • deps: bump symfony/event-dispatcher-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/process from 5.3.7 to 5.3.11
    • deps: bump symfony/service-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/console from 5.3.10 to 5.3.11
    • deps: bump symfony/config from 5.3.10 to 5.3.11
    • deps: bump symfony/dependency-injection from 5.3.10 to 5.3.11
    • deps: bump symfony/http-client-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/http-client from 5.3.10 to 5.3.11
    • deps: bump symfony/process from 5.3.7 to 5.3.11
    • deps: bump symfony/event-dispatcher-contracts from 2.4.0 to 2.5.0
    • deps: bump symfony/console from 5.3.10 to 5.3.11
    • deps: bump symfony/dependency-injection from 5.3.10 to 5.3.11
    • deps: bump phpunit/php-code-coverage from 9.2.8 to 9.2.9
    • deps: bump ridedott/merge-me-action from 2.9.68 to 2.9.69
    • deps: bump phpunit/php-code-coverage from 9.2.8 to 9.2.9
    • deps: bump ridedott/merge-me-action from 2.9.68 to 2.9.69
    • deps: bump ridedott/merge-me-action from 2.9.67 to 2.9.68
    • deps: bump ridedott/merge-me-action from 2.9.67 to 2.9.68
    • deps: bump ridedott/merge-me-action from 2.9.65 to 2.9.67
    • deps: bump ridedott/merge-me-action from 2.9.65 to 2.9.67
    • deps: bump friendsofphp/php-cs-fixer from 3.2.1 to 3.3.2
    • deps: bump friendsofphp/php-cs-fixer from 3.2.1 to 3.3.2
    • deps: bump ridedott/merge-me-action from 2.9.64 to 2.9.65
    • deps: bump ridedott/merge-me-action from 2.9.64 to 2.9.65
    • deps: bump sebastian/exporter from 4.0.3 to 4.0.4
    • deps: bump sebastian/exporter from 4.0.3 to 4.0.4
    • deps: bump ridedott/merge-me-action from 2.9.63 to 2.9.64
    • deps: bump ridedott/merge-me-action from 2.9.63 to 2.9.64
    • deps: bump psr/container from 1.1.1 to 1.1.2
    • deps: bump ridedott/merge-me-action from 2.9.62 to 2.9.63
    • deps: bump psr/container from 1.1.1 to 1.1.2
    • deps: bump ridedott/merge-me-action from 2.9.62 to 2.9.63
    • deps: bump ridedott/merge-me-action from 2.9.61 to 2.9.62
    • deps: bump ridedott/merge-me-action from 2.9.61 to 2.9.62
    • deps: bump php-http/cache-plugin from 1.7.2 to 1.7.3
    • deps: bump nikic/php-parser from 4.13.0 to 4.13.1
    • deps: bump ridedott/merge-me-action from 2.9.60 to 2.9.61
    • deps: bump php-http/cache-plugin from 1.7.2 to 1.7.3
    • deps: bump nikic/php-parser from 4.13.0 to 4.13.1
    • deps: bump ridedott/merge-me-action from 2.9.60 to 2.9.61
    • deps: bump actions/checkout from 2.3.5 to 2.4.0
    • deps: bump actions/checkout from 2.3.5 to 2.4.0
    • deps: bump ridedott/merge-me-action from 2.9.58 to 2.9.60
    • deps: bump ridedott/merge-me-action from 2.9.58 to 2.9.60
    • deps: bump symfony/dependency-injection from 5.3.8 to 5.3.10
    • deps: bump symfony/string from 5.3.7 to 5.3.10
    • deps: bump symfony/console from 5.3.7 to 5.3.10
    • deps: bump symfony/http-client from 5.3.8 to 5.3.10
    • deps: bump phpunit/php-code-coverage from 9.2.7 to 9.2.8
    • deps: bump symfony/config from 5.3.4 to 5.3.10
    • deps: bump symfony/dependency-injection from 5.3.8 to 5.3.10
    • deps: bump symfony/string from 5.3.7 to 5.3.10
    • deps: bump symfony/console from 5.3.7 to 5.3.10
    • deps: bump symfony/http-client from 5.3.8 to 5.3.10
    • deps: bump phpunit/php-code-coverage from 9.2.7 to 9.2.8
    • deps: bump symfony/config from 5.3.4 to 5.3.10
    • deps: bump ridedott/merge-me-action from 2.9.57 to 2.9.58
    • deps: bump ridedott/merge-me-action from 2.9.57 to 2.9.58
    • deps: bump composer/semver from 3.2.5 to 3.2.6
    • deps: bump ridedott/merge-me-action from 2.9.56 to 2.9.57
    • deps: bump composer/semver from 3.2.5 to 3.2.6
    • deps: bump ridedott/merge-me-action from 2.9.56 to 2.9.57
    • deps: bump ridedott/merge-me-action from 2.9.55 to 2.9.56
    • deps: bump ridedott/merge-me-action from 2.9.55 to 2.9.56
    • deps: bump ridedott/merge-me-action from 2.9.54 to 2.9.55
    • deps: bump ridedott/merge-me-action from 2.9.54 to 2.9.55
    • deps: bump ridedott/merge-me-action from 2.9.52 to 2.9.54
    • deps: bump ridedott/merge-me-action from 2.9.52 to 2.9.54
    • deps: bump phpdocumentor/reflection-docblock from 5.2.2 to 5.3.0
    • deps: bump phpdocumentor/reflection-docblock from 5.2.2 to 5.3.0
    • deps: bump ridedott/merge-me-action from 2.9.50 to 2.9.52
    • deps: bump ridedott/merge-me-action from 2.9.50 to 2.9.52
    • deps: bump actions/checkout from 2.3.4 to 2.3.5
    • deps: bump ridedott/merge-me-action from 2.9.49 to 2.9.50
    • deps: bump ridedott/merge-me-action from 2.9.49 to 2.9.50
    • deps: bump ridedott/merge-me-action from 2.9.48 to 2.9.49
    • deps: bump ridedott/merge-me-action from 2.9.48 to 2.9.49
    • deps: bump ridedott/merge-me-action from 2.9.47 to 2.9.48
    • deps: bump ridedott/merge-me-action from 2.9.47 to 2.9.48
    • deps: bump ridedott/merge-me-action from 2.9.46 to 2.9.47
    • deps: bump ridedott/merge-me-action from 2.9.46 to 2.9.47
    • deps: bump ridedott/merge-me-action from 2.9.44 to 2.9.46
    • deps: bump ridedott/merge-me-action from 2.9.44 to 2.9.46
    • deps: bump friendsofphp/php-cs-fixer from 3.1.0 to 3.2.1
    • deps: bump ridedott/merge-me-action from 2.9.42 to 2.9.44
    • deps: bump ridedott/merge-me-action from 2.9.42 to 2.9.44
    • deps: bump ridedott/merge-me-action from 2.9.70 to 2.9.71
    • deps: bump phpdocumentor/type-resolver from 1.5.0 to 1.5.1
    • deps: bump phpdocumentor/type-resolver from 1.5.0 to 1.5.1
    • deps: bump ridedott/merge-me-action from 2.9.41 to 2.9.42
    • deps: bump ridedott/merge-me-action from 2.9.41 to 2.9.42
    • deps: bump ridedott/merge-me-action from 2.9.40 to 2.9.41
    • deps: bump ridedott/merge-me-action from 2.9.40 to 2.9.41
    • deps: bump symfony/dependency-injection from 5.3.7 to 5.3.8
    • deps: bump symfony/http-client from 5.3.7 to 5.3.8
    • deps: bump ridedott/merge-me-action from 2.9.38 to 2.9.40
    • deps: bump symfony/dependency-injection from 5.3.7 to 5.3.8
    • deps: bump symfony/http-client from 5.3.7 to 5.3.8
    • deps: bump ridedott/merge-me-action from 2.9.38 to 2.9.40
    • deps: bump ridedott/merge-me-action from 2.9.37 to 2.9.38
    • deps: bump ridedott/merge-me-action from 2.9.37 to 2.9.38
    • deps: bump phpunit/phpunit from 9.5.9 to 9.5.10
    • deps: bump phpunit/phpunit from 9.5.9 to 9.5.10
    • deps: bump ridedott/merge-me-action from 2.9.36 to 2.9.37
    • deps: bump ridedott/merge-me-action from 2.9.36 to 2.9.37
    • deps: bump ridedott/merge-me-action from 2.9.35 to 2.9.36
    • deps: bump ridedott/merge-me-action from 2.9.35 to 2.9.36
    • deps: bump nikic/php-parser from 4.12.0 to 4.13.0
    • deps: bump nikic/php-parser from 4.12.0 to 4.13.0
    • deps: bump php-http/discovery from 1.14.0 to 1.14.1
    • deps: bump phpdocumentor/type-resolver from 1.4.0 to 1.5.0
    • deps: bump ridedott/merge-me-action from 2.9.34 to 2.9.35
    • deps: bump php-http/discovery from 1.14.0 to 1.14.1
    • deps: bump phpdocumentor/type-resolver from 1.4.0 to 1.5.0
    • deps: bump ridedott/merge-me-action from 2.9.34 to 2.9.35
    • deps: bump phpunit/php-code-coverage from 9.2.6 to 9.2.7
    • deps: bump ridedott/merge-me-action from 2.9.32 to 2.9.34
    • deps: bump ridedott/merge-me-action from 2.9.32 to 2.9.34
    • deps: bump codecov/codecov-action from 2.0.3 to 2.1.0
    • deps: bump ridedott/merge-me-action from 2.9.31 to 2.9.32
    • deps: bump phpspec/prophecy from 1.13.0 to 1.14.0
    • deps: bump ridedott/merge-me-action from 2.9.30 to 2.9.31
    • deps: bump phpstan/phpstan from 0.12.98 to 0.12.99
    • deps: bump phpspec/prophecy from 1.13.0 to 1.14.0
    • deps: bump ridedott/merge-me-action from 2.9.30 to 2.9.31
    • deps: bump ridedott/merge-me-action from 2.9.29 to 2.9.30
    • deps: bump ridedott/merge-me-action from 2.9.29 to 2.9.30
    • deps: bump ridedott/merge-me-action from 2.9.27 to 2.9.29
    • deps: bump ridedott/merge-me-action from 2.9.27 to 2.9.29
    • deps: bump phpstan/phpstan from 0.12.97 to 0.12.98
    • deps: bump phpstan/phpstan from 0.12.97 to 0.12.98
    • deps: bump phpstan/phpstan from 0.12.96 to 0.12.97
    • deps: bump phpstan/phpstan from 0.12.96 to 0.12.97
    • deps: bump phpunit/phpunit from 9.5.8 to 9.5.9
    • deps: bump ridedott/merge-me-action from 2.9.23 to 2.9.27
    • deps: bump phpunit/phpunit from 9.5.8 to 9.5.9
    • deps: bump ridedott/merge-me-action from 2.9.23 to 2.9.27
    • deps: bump symfony/options-resolver from 5.3.4 to 5.3.7
    • deps: bump symfony/finder from 5.3.4 to 5.3.7
    • deps: bump symfony/string from 5.3.3 to 5.3.7
    • deps: bump symfony/console from 5.3.6 to 5.3.7
    • deps: bump symfony/dependency-injection from 5.3.4 to 5.3.7
    • deps: bump symfony/http-client from 5.3.4 to 5.3.7
    • deps: bump symfony/event-dispatcher from 5.3.4 to 5.3.7
    • deps: bump symfony/string from 5.3.3 to 5.3.7
    • deps: bump symfony/process from 5.3.4 to 5.3.7
    • deps: bump symfony/options-resolver from 5.3.4 to 5.3.7
    • deps: bump symfony/finder from 5.3.4 to 5.3.7
    • deps: bump symfony/console from 5.3.6 to 5.3.7
    • deps: bump symfony/dependency-injection from 5.3.4 to 5.3.7
    • deps: bump symfony/http-client from 5.3.4 to 5.3.7
    • deps: bump symfony/event-dispatcher from 5.3.4 to 5.3.7
    • deps: bump symfony/process from 5.3.4 to 5.3.7
    • deps: bump php-http/message from 1.11.2 to 1.12.0
    • deps: bump friendsofphp/php-cs-fixer from 3.0.2 to 3.1.0
    • deps: bump php-http/message from 1.11.2 to 1.12.0
    • deps: bump friendsofphp/php-cs-fixer from 3.0.2 to 3.1.0
    • deps: bump ridedott/merge-me-action from 2.9.22 to 2.9.23
    • deps: bump ridedott/merge-me-action from 2.9.22 to 2.9.23
    • deps: bump ridedott/merge-me-action from 2.9.20 to 2.9.22
    • deps: bump ridedott/merge-me-action from 2.9.20 to 2.9.22
    • deps: bump codecov/codecov-action from 2.0.2 to 2.0.3
    • deps: bump ridedott/merge-me-action from 2.9.18 to 2.9.20
    • deps: bump codecov/codecov-action from 2.0.2 to 2.0.3
    • deps: bump ridedott/merge-me-action from 2.9.18 to 2.9.20
    • deps: bump ridedott/merge-me-action from 2.9.17 to 2.9.18
    • deps: bump ridedott/merge-me-action from 2.9.17 to 2.9.18
    • deps: bump phpstan/phpstan-strict-rules from 0.12.10 to 0.12.11
    • deps: bump phpstan/phpstan-strict-rules from 0.12.10 to 0.12.11
    • deps: bump ridedott/merge-me-action from 2.9.15 to 2.9.17
    • deps: bump phpstan/phpstan from 0.12.94 to 0.12.96
    • deps: bump phpstan/phpstan from 0.12.94 to 0.12.96
    • deps: bump ridedott/merge-me-action from 2.9.15 to 2.9.17
    • deps: bump ridedott/merge-me-action from 2.9.14 to 2.9.15
    • deps: bump ridedott/merge-me-action from 2.9.14 to 2.9.15
    • deps: bump ridedott/merge-me-action from 2.9.13 to 2.9.14
    • deps: bump ridedott/merge-me-action from 2.9.13 to 2.9.14
    • deps: bump phpstan/phpstan-phpunit from 0.12.21 to 0.12.22
    • deps: bump phpstan/phpstan-phpunit from 0.12.21 to 0.12.22
    • deps: bump ridedott/merge-me-action from 2.9.12 to 2.9.13
    • deps: bump ridedott/merge-me-action from 2.9.12 to 2.9.13
    • deps: bump ridedott/merge-me-action from 2.9.10 to 2.9.12
    • deps: bump ridedott/merge-me-action from 2.9.10 to 2.9.12
    • deps: bump ridedott/merge-me-action from 2.9.9 to 2.9.10
    • deps: bump ridedott/merge-me-action from 2.9.9 to 2.9.10
    • deps: bump doctrine/annotations from 1.13.1 to 1.13.2
    • deps: bump doctrine/annotations from 1.13.1 to 1.13.2
    • deps: bump friendsofphp/php-cs-fixer from 3.0.1 to 3.0.2
    • deps: bump ridedott/merge-me-action from 2.9.8 to 2.9.9
    • deps: bump friendsofphp/php-cs-fixer from 3.0.1 to 3.0.2
    • deps: bump ridedott/merge-me-action from 2.9.8 to 2.9.9
    • deps: bump php-http/message from 1.11.1 to 1.11.2
    • deps: bump php-http/message from 1.11.1 to 1.11.2
    • deps: bump friendsofphp/php-cs-fixer from 3.0.0 to 3.0.1
    • deps: bump ridedott/merge-me-action from 2.9.6 to 2.9.8
    • deps: bump friendsofphp/php-cs-fixer from 3.0.0 to 3.0.1
    • deps: bump ridedott/merge-me-action from 2.9.6 to 2.9.8
    • deps: bump composer/xdebug-handler from 2.0.1 to 2.0.2
    • deps: bump phpstan/phpstan from 0.12.93 to 0.12.94
    • deps: bump phpunit/phpunit from 9.5.7 to 9.5.8
    • deps: bump composer/xdebug-handler from 2.0.1 to 2.0.2
    • deps: bump phpstan/phpstan from 0.12.93 to 0.12.94
    • deps: bump phpunit/phpunit from 9.5.7 to 9.5.8
    • deps: bump symfony/console from 5.3.4 to 5.3.6
    • deps: bump ridedott/merge-me-action from 2.9.5 to 2.9.6
    • deps: bump symfony/console from 5.3.4 to 5.3.6
    • deps: bump ridedott/merge-me-action from 2.9.5 to 2.9.6
    • deps: bump theseer/tokenizer from 1.2.0 to 1.2.1
    • deps: bump theseer/tokenizer from 1.2.0 to 1.2.1
    • deps: bump symfony/options-resolver from 5.3.0 to 5.3.4
    • deps: bump symfony/dependency-injection from 5.3.3 to 5.3.4
    • deps: bump symfony/filesystem from 5.3.3 to 5.3.4
    • deps: bump symfony/event-dispatcher from 5.3.0 to 5.3.4
    • deps: bump symfony/options-resolver from 5.3.0 to 5.3.4
    • deps: bump symfony/config from 5.3.3 to 5.3.4
    • deps: bump symfony/dependency-injection from 5.3.3 to 5.3.4
    • deps: bump symfony/http-client from 5.3.3 to 5.3.4
    • deps: bump symfony/filesystem from 5.3.3 to 5.3.4
    • deps: bump symfony/stopwatch from 5.3.0 to 5.3.4
    • deps: bump symfony/event-dispatcher from 5.3.0 to 5.3.4
    • deps: bump symfony/finder from 5.3.0 to 5.3.4
    • deps: bump symfony/config from 5.3.3 to 5.3.4
    • deps: bump symfony/console from 5.3.2 to 5.3.4
    • deps: bump symfony/process from 5.3.2 to 5.3.4
    • deps: bump symfony/http-client from 5.3.3 to 5.3.4
    • deps: bump symfony/stopwatch from 5.3.0 to 5.3.4
    • deps: bump symfony/finder from 5.3.0 to 5.3.4
    • deps: bump ridedott/merge-me-action from 2.9.2 to 2.9.5
    • deps: bump symfony/console from 5.3.2 to 5.3.4
    • deps: bump symfony/process from 5.3.2 to 5.3.4
    • deps: bump ridedott/merge-me-action from 2.9.2 to 2.9.5
    • deps: bump codecov/codecov-action from 2.0.1 to 2.0.2
    • deps: bump codecov/codecov-action from 2.0.1 to 2.0.2
    • deps: bump ridedott/merge-me-action from 2.9.1 to 2.9.2
    • deps: bump ridedott/merge-me-action from 2.9.1 to 2.9.2
    • deps: bump nikic/php-parser from 4.11.0 to 4.12.0
    • deps: bump ridedott/merge-me-action from 2.9.0 to 2.9.1
    • deps: bump ridedott/merge-me-action from 2.8.47 to 2.9.0
    • deps: bump phar-io/manifest from 2.0.1 to 2.0.3
    • deps: bump phpstan/phpstan from 0.12.92 to 0.12.93
    • deps: bump ridedott/merge-me-action from 2.8.47 to 2.9.0
    • deps: bump phpunit/phpunit from 9.5.6 to 9.5.7
    • deps: bump codecov/codecov-action from 1 to 2.0.1
    • deps: bump phpunit/phpunit from 9.5.6 to 9.5.7
    • deps: bump codecov/codecov-action from 1 to 2.0.1
    • deps: bump phpstan/phpstan-phpunit from 0.12.20 to 0.12.21
    • deps: bump phpstan/phpstan-phpunit from 0.12.20 to 0.12.21
    • deps: bump ridedott/merge-me-action from 2.8.44 to 2.8.47
    • deps: bump ridedott/merge-me-action from 2.8.44 to 2.8.47
    • deps: bump ridedott/merge-me-action from 2.8.43 to 2.8.44
    • deps: bump ridedott/merge-me-action from 2.8.43 to 2.8.44
    • deps: bump phpstan/phpstan from 0.12.91 to 0.12.92
    • deps: bump phpstan/phpstan from 0.12.91 to 0.12.92
    • deps: bump ridedott/merge-me-action from 2.8.39 to 2.8.43
    • deps: bump ridedott/merge-me-action from 2.8.39 to 2.8.43
    • deps: bump php-http/client-common from 2.3.0 to 2.4.0
    • deps: bump php-http/client-common from 2.3.0 to 2.4.0
    • deps: bump phpstan/phpstan-strict-rules from 0.12.9 to 0.12.10
    • deps: bump phpstan/phpstan-strict-rules from 0.12.9 to 0.12.10
    • deps: bump nyholm/psr7 from 1.4.0 to 1.4.1
    • deps: bump phpstan/phpstan from 0.12.90 to 0.12.91
    • deps: bump nikic/php-parser from 4.10.5 to 4.11.0
    • deps: bump nyholm/psr7 from 1.4.0 to 1.4.1
    • deps: bump phpstan/phpstan from 0.12.90 to 0.12.91
    • deps: bump nikic/php-parser from 4.10.5 to 4.11.0
    • deps: bump ridedott/merge-me-action from 2.8.37 to 2.8.39
    • deps: bump ridedott/merge-me-action from 2.8.37 to 2.8.39
    • deps: bump symfony/http-client from 5.3.2 to 5.3.3
    • deps: bump symfony/string from 5.3.2 to 5.3.3
    • deps: bump symfony/config from 5.3.2 to 5.3.3
    • deps: bump symfony/dependency-injection from 5.3.2 to 5.3.3
    • deps: bump symfony/http-client from 5.3.2 to 5.3.3
    • deps: bump symfony/string from 5.3.2 to 5.3.3
    • deps: bump symfony/filesystem from 5.3.0 to 5.3.3
    • deps: bump symfony/config from 5.3.2 to 5.3.3
    • deps: bump ridedott/merge-me-action from 2.8.36 to 2.8.37
    • deps: bump symfony/dependency-injection from 5.3.2 to 5.3.3
    • deps: bump symfony/filesystem from 5.3.0 to 5.3.3
    • deps: bump ridedott/merge-me-action from 2.8.36 to 2.8.37
    • deps: bump ridedott/merge-me-action from 2.8.35 to 2.8.36
    • deps: bump ridedott/merge-me-action from 2.8.35 to 2.8.36
    • deps: bump ridedott/merge-me-action from 2.8.34 to 2.8.35
    • deps: bump phpunit/phpunit from 9.5.5 to 9.5.6
    • deps: bump ridedott/merge-me-action from 2.8.34 to 2.8.35
    • deps: bump phpunit/phpunit from 9.5.5 to 9.5.6
    Source code(tar.gz)
    Source code(zip)
    danger.phar(755.00 KB)
  • 0.2.2(Jun 22, 2021)

    Bug Fixes

    • Catch error when changed file has no diff

    Chore

    • deps: bump ridedott/merge-me-action from 2.8.32 to 2.8.34
    • deps: bump ridedott/merge-me-action from 2.8.32 to 2.8.34
    • deps: bump phpstan/phpstan from 0.12.89 to 0.12.90
    • deps: bump ridedott/merge-me-action from 2.8.31 to 2.8.32
    • deps: bump phpstan/phpstan from 0.12.89 to 0.12.90
    • deps: bump ridedott/merge-me-action from 2.8.31 to 2.8.32

    Features

    • add matchesContent to FileCollection
    Source code(tar.gz)
    Source code(zip)
    danger.phar(753.72 KB)
  • 0.2.1(Jun 20, 2021)

    Bug Fixes

    • null pull request description, fixes #50
    • Remove MaxCommit rule
    • Add label to tests
    • ci: Fix depth clone

    Chore

    • deps: bump phpstan/phpstan-phpunit from 0.12.19 to 0.12.20
    • deps: bump phpstan/phpstan-phpunit from 0.12.19 to 0.12.20
    • deps: bump symfony/http-client from 5.3.0 to 5.3.2
    • deps: bump symfony/process from 5.3.0 to 5.3.2
    • deps: bump symfony/config from 5.3.0 to 5.3.2
    • deps: bump symfony/dependency-injection from 5.3.0 to 5.3.2
    • deps: bump symfony/http-client from 5.3.0 to 5.3.2
    • deps: bump symfony/string from 5.3.0 to 5.3.2
    • deps: bump symfony/process from 5.3.0 to 5.3.2
    • deps: bump symfony/console from 5.3.0 to 5.3.2
    • deps: bump symfony/config from 5.3.0 to 5.3.2
    • deps: bump symfony/dependency-injection from 5.3.0 to 5.3.2
    • deps: bump ridedott/merge-me-action from 2.8.30 to 2.8.31
    • deps: bump symfony/string from 5.3.0 to 5.3.2
    • deps: bump symfony/console from 5.3.0 to 5.3.2
    • deps: bump ridedott/merge-me-action from 2.8.30 to 2.8.31
    • deps: bump ridedott/merge-me-action from 2.8.28 to 2.8.30
    • deps: bump ridedott/merge-me-action from 2.8.28 to 2.8.30
    • deps: bump ridedott/merge-me-action from 2.8.26 to 2.8.28
    • deps: bump sebastian/type from 2.3.2 to 2.3.4
    • deps: bump sebastian/type from 2.3.2 to 2.3.4
    • deps: bump ridedott/merge-me-action from 2.8.26 to 2.8.28
    • deps: bump ridedott/merge-me-action from 2.8.23 to 2.8.26
    • deps: bump ridedott/merge-me-action from 2.8.23 to 2.8.26
    • deps: bump sebastian/global-state from 5.0.2 to 5.0.3
    • deps: bump sebastian/global-state from 5.0.2 to 5.0.3
    • deps: bump phpstan/phpstan from 0.12.88 to 0.12.89
    • deps: bump phpstan/phpstan from 0.12.88 to 0.12.89
    • deps: bump sebastian/type from 2.3.1 to 2.3.2
    • deps: bump phpunit/phpunit from 9.5.4 to 9.5.5
    • deps: bump php-http/discovery from 1.13.0 to 1.14.0
    • deps: bump php-http/discovery from 1.13.0 to 1.14.0
    • deps: bump ridedott/merge-me-action from 2.8.22 to 2.8.23
    • deps: bump ridedott/merge-me-action from 2.8.22 to 2.8.23

    Features

    • add stricter phpstan rules
    Source code(tar.gz)
    Source code(zip)
    danger.phar(753.63 KB)
  • 0.2.0(May 31, 2021)

    Bug Fixes

    • Code style
    • Last phpstan issue
    • detect correct pluralization in MaxCommitRule
    • ci: Change commit_message to commit-message
    • ci: Update dependabot
    • ci: Remove path filter in workflow
    • ci: Remove check_run
    • ci: Run danger only when danger is not modified
    • ci: Use pull_request_target

    Chore

    • deps: bump symfony/config from 5.2.8 to 5.3.0
    • deps: bump symfony/config from 5.2.8 to 5.3.0
    • deps: bump symfony/console from 5.2.8 to 5.3.0
    • deps: bump symfony/console from 5.2.8 to 5.3.0
    • deps: bump symfony/string from 5.2.8 to 5.3.0
    • deps: bump symfony/http-client from 5.2.9 to 5.3.0
    • deps: bump symfony/http-client from 5.2.9 to 5.3.0
    • deps: bump symfony/filesystem from 5.2.7 to 5.3.0
    • deps: bump symfony/options-resolver from 5.2.4 to 5.3.0
    • deps: bump symfony/stopwatch from 5.2.7 to 5.3.0
    • deps: bump symfony/process from 5.2.7 to 5.3.0
    • deps: bump symfony/finder from 5.2.9 to 5.3.0
    • deps: bump symfony/string from 5.2.8 to 5.3.0
    • deps: bump symfony/event-dispatcher from 5.2.4 to 5.3.0
    • deps: bump symfony/filesystem from 5.2.7 to 5.3.0
    • deps: bump symfony/options-resolver from 5.2.4 to 5.3.0
    • deps: bump symfony/stopwatch from 5.2.7 to 5.3.0
    • deps: bump symfony/process from 5.2.7 to 5.3.0
    • deps: bump symfony/finder from 5.2.9 to 5.3.0
    • deps: bump symfony/event-dispatcher from 5.2.4 to 5.3.0
    • deps: bump ridedott/merge-me-action from 2.8.21 to 2.8.22
    • deps: bump ridedott/merge-me-action from 2.8.21 to 2.8.22
    • deps: bump symfony/polyfill-php80 from 1.22.1 to 1.23.0
    • deps: bump php-http/message from 1.11.0 to 1.11.1
    • deps: bump symfony/polyfill-intl-normalizer from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-mbstring from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-php73 from 1.22.1 to 1.23.0
    • deps: bump composer/semver from 3.2.4 to 3.2.5
    • deps: bump symfony/polyfill-ctype from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-intl-grapheme from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-php72 from 1.22.1 to 1.23.0
    • deps: bump actions/checkout from 1 to 2.3.4
    • deps: bump symfony/polyfill-php80 from 1.22.1 to 1.23.0
    • deps: bump php-http/message from 1.11.0 to 1.11.1
    • deps: bump symfony/polyfill-mbstring from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-intl-normalizer from 1.22.1 to 1.23.0
    • deps: bump composer/semver from 3.2.4 to 3.2.5
    • deps: bump symfony/polyfill-php73 from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-ctype from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-php72 from 1.22.1 to 1.23.0
    • deps: bump symfony/polyfill-intl-grapheme from 1.22.1 to 1.23.0
    • deps: bump actions/checkout from 1 to 2.3.4

    Documentation

    • ci: Extend Github example
    • ci: Recommend pull_request_target

    Features

    • Add hasDangerMessage to Platform, fixes #18
    • Run PhpCsFixerRule on changed files instead locally
    • Cache getContent
    • remove incomplete label if checks passed
    • remove unnecessary rule suffix
    • Remove Symfony polyfills
    • Solve all phpstan issues
    • Add Git patch to File
    • ci: Add merge bot
    Source code(tar.gz)
    Source code(zip)
    danger.phar(754.04 KB)
  • 0.1.4(May 25, 2021)

  • 0.1.3(May 25, 2021)

  • 0.1.2(May 24, 2021)

  • 0.1.1(May 22, 2021)

  • 0.1.0(May 22, 2021)

    0.1.0 (2021-05-22)

    Bug Fixes

    • Update readme
    • ci: Add tests for Gitlab platform
    • ci: Add tests for Github platform
    • ci: Fix CheckPhpCsFixerRuleTest
    • ci: Fix GitlabCommandTest
    • ci: Remove CHANGELOG.md

    Code Refactoring

    • Improve methods in FileCollection

    Features

    • Add ConditionRule
    • Index FileCollection by file name
    • Added docs
    • Add tests for Commands
    • Add tests for Rules
    • Added Config::after to execute tasks on the end
    Source code(tar.gz)
    Source code(zip)
    danger.phar(806.14 KB)
  • 0.0.3(May 22, 2021)

Owner
Shyim
Shyim
A starter-kit for your PHP project.

PHP Noise A starter-kit for your PHP project. It includes frequently needed boilerplate setups (ci, badges, etc.) ?? Installation To install this appl

medunes 52 Dec 17, 2022
An application for building and managing Phars.

This project has been moved to https://github.com/box-project/box If you are looking to upgrade, don't forget to have a look at the upgrade guide. Box

Box Project 1.2k Nov 9, 2022
Hi I'm Bob! I'm a tiny and messy build tool for PHP projects

Bob, your friendly builder Hello World Put this in a file named bob_config.php in your project's root: <?php namespace Bob\BuildConfig; task('defaul

Christoph Hochstrasser 105 Mar 4, 2022
GitHub Action that diffs composer.lock between current branch and default branch

github-action-composer.lock-diff GitHub Action that diffs composer.lock between current branch and default branch Options (inputs) This action support

Cees-Jan Kiewiet 13 Oct 31, 2022
Unpacking and packaging for Qualcomm splash images

Magic Splash Wand Magic Splash!! Wand Unpacking and packaging for Qualcomm splash images. How to use Download and install PHP for your system from the

Jim Wu 6 Oct 25, 2022
Convenient tool for speeding up the intern/officer review process.

icpc-app-screen Convenient tool for speeding up the intern/officer applicant review process. Eliminates the pain from reading application responses of

null 1 Oct 30, 2021
Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.

This is a port of the VCR Ruby library to PHP. Record your test suite's HTTP interactions and replay them during future test runs for fast, determinis

php-vcr 1.1k Dec 23, 2022
Modern and simple PHP task runner inspired by Gulp and Rake aimed to automate common tasks

RoboTask Modern and simple PHP task runner inspired by Gulp and Rake aimed to automate common tasks: writing cross-platform scripts processing assets

Consolidation 2.6k Jan 3, 2023
Composer plugin to automate the most common tasks of applications.

Narrowspark Automatic Narrowspark Automatic automates the most common tasks of applications, like installing and removing bundles or providers, copyin

Narrowspark 12 Sep 9, 2022
A Gitlab API wrapper that helps to automate common actions on CI jobs

Gitlab CI client This is a Gitlab API wrapper that helps to automate common actions on CI jobs (eg: Open a merge request, Open or close an issue etc)

SparkFabrik 2 May 2, 2022
Automatically translate and review your content via Lokalise

This extension will work as a bridge between Pimcore and Lokalise for the purpose of automating the whole translation workflow. Thus eliminating most of the manual steps in the task along with availing quality translation-review service from Lokalise.

Pravin chaudhary 6 Jan 10, 2022
The SensioLabs DeprecationDetector runs a static code analysis against your project's source code to find usages of deprecated methods, classes and interfaces

SensioLabs DeprecationDetector CAUTION: This package is abandoned and will no longer receive any updates. The SensioLabs DeprecationDetector runs a st

QOSSMIC GmbH 389 Nov 24, 2022
QPM, the process management framework in PHP, the efficient toolkit for CLI development. QPM provides basic daemon functions and supervision mechanisms to simplify multi-process app dev.

QPM QPM全名是 Quick(or Q's) Process Management Framework for PHP. PHP 是强大的web开发语言,以至于大家常常忘记PHP 可以用来开发健壮的命令行(CLI)程序以至于daemon程序。 而编写daemon程序免不了与各种进程管理打交道。Q

Comos 75 Dec 21, 2021
Process - The Process component executes commands in sub-processes.

Process Component The Process component executes commands in sub-processes. Sponsor The Process component for Symfony 5.4/6.0 is backed by SensioLabs.

Symfony 7.1k Dec 29, 2022
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.

GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.

GitScrum 2.8k Jan 6, 2023
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.

What is GitScrum? GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivit

GitScrum 2.8k Dec 29, 2022
This package allows you to send notifications to Microsoft Teams.

Teams connector This package allows you to send notifications to Microsoft Teams. Installation You can install the package using the Composer package

skrepr 20 Oct 4, 2022
Open source knowledge base application for Teams

Opensource knowledge base application for Teams. Introduction Opus is a place for your team to document who you are, what you do and how you do it. It

Zeeshan Ahmad 1.2k Jan 6, 2023
Passbolt - Open source password manager for teams

Passbolt - Open source password manager for teams

Passbolt 3.4k Dec 30, 2022