diff --git a/README.md b/README.md index 7285844..fb760ee 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ +

+ Packagist PHP Version +

GitHub Workflow Status (with event) @@ -6,8 +9,6 @@ Codecov - Libraries.io dependency status for latest release - GitHub

diff --git a/composer.json b/composer.json index 13fdf09..a3b3e4f 100644 --- a/composer.json +++ b/composer.json @@ -39,11 +39,12 @@ ] }, "require": { - "php": "^7.4|^8.0", + "php": "^7.4 || ^8.0", "brandon14/fossabot-commander": "^1.0.0", - "guzzlehttp/guzzle": "^6.5.8|^7.4.5", - "illuminate/console": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0" + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.4.5", + "illuminate/console": "^8.0 || ^9.0 || ^10.0", + "illuminate/support": "^8.0 || ^9.0 || ^10.0" }, "require-dev": { "comcast/php-legal-licenses": "^1.2", @@ -51,14 +52,14 @@ "mockery/mockery": "^1.6", "neronmoon/scriptsdev": "^0.1.9", "nunomaduro/phpinsights": "^2.9", - "orchestra/testbench": "^7.34 || ^8.0", + "orchestra/testbench": "^6.38.0 || ^7.35.0 || ^8.15.0", "pestphp/pest": "^1.23.1", "pestphp/pest-plugin-laravel": "^1.4", "pestphp/pest-plugin-parallel": "^1.2", "phpmd/phpmd": "^2.14", "roave/security-advisories": "dev-latest", "squizlabs/php_codesniffer": "^3.7", - "symfony/thanks": "^1.2", + "symfony/thanks": "^1.2.10", "vimeo/psalm": "^5.15" }, "scripts": { diff --git a/src/Commands/MakeFossabotCommand.php b/src/Commands/MakeFossabotCommand.php index 86200dc..e27cdd5 100644 --- a/src/Commands/MakeFossabotCommand.php +++ b/src/Commands/MakeFossabotCommand.php @@ -34,6 +34,9 @@ use Illuminate\Console\GeneratorCommand; use Illuminate\Console\Concerns\CreatesMatchingTest; +// Ignore code coverage on this command for now until we write tests for it. +// @codeCoverageIgnoreStart + /** * Command to generate {@link \Brandon14\FossabotCommander\Contracts\FossabotCommand} instances. * @@ -85,3 +88,5 @@ protected function getStub() return $included; } } + +// @codeCoverageIgnoreEnd