Skip to content

Commit

Permalink
Update dev deps to run on 7.4 to 8.3, add Guzzle PSR 7 as explicit dep
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon14 committed Nov 26, 2023
1 parent 715264a commit e2c4ed7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
5 changes: 3 additions & 2 deletions README.md
@@ -1,13 +1,14 @@
<!-- markdownlint-disable MD033 -->
<p align="center">
<a href="https://packagist.org/packages/brandon14/fossabot-commander-laravel" target="_blank"><img alt="Packagist PHP Version" src="https://img.shields.io/packagist/dependency-v/brandon14/fossabot-commander-laravel/php?style=for-the-badge&cacheSeconds=3600"></a>
</p>
<p align="center">
<a href="https://github.com/brandon14/fossabot-commander-laravel/actions/workflows/run-tests.yml" target="_blank"><img alt="GitHub Workflow Status (with event)" src="https://img.shields.io/github/actions/workflow/status/brandon14/fossabot-coimmander/run-tests.yml?style=for-the-badge&cacheSeconds=3600">
</a>
<a href="https://codeclimate.com/github/brandon14/fossabot-commander-laravel/maintainability" target="_blank"><img alt="Code Climate maintainability" src="https://img.shields.io/codeclimate/maintainability-percentage/brandon14/fossabot-commander-laravel?style=for-the-badge&cacheSeconds=3600">
</a>
<a href="https://codecov.io/gh/brandon14/fossabot-commander-laravel" target="_blank"><img alt="Codecov" src="https://img.shields.io/codecov/c/github/brandon14/fossabot-commander-laravel?style=for-the-badge&cacheSeconds=3600">
</a>
<a href="https://libraries.io/packagist/brandon14/fossabot-commander-laravel" target="_blank"><img alt="Libraries.io dependency status for latest release" src="https://img.shields.io/librariesio/release/packagist/brandon14%2Ffossabot-commander?style=for-the-badge&cacheSeconds=3600">
</a>
<a href="https://github.com/brandon14/fossabot-commander-laravel/blob/main/LICENSE" target="_blank"><img alt="GitHub" src="https://img.shields.io/github/license/brandon14/fossabot-commander-laravel?style=for-the-badge&cacheSeconds=3600">
</a>
</p>
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Expand Up @@ -39,26 +39,27 @@
]
},
"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",
"friendsofphp/php-cs-fixer": "^3.35",
"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": {
Expand Down
5 changes: 5 additions & 0 deletions src/Commands/MakeFossabotCommand.php
Expand Up @@ -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.
*
Expand Down Expand Up @@ -85,3 +88,5 @@ protected function getStub()
return $included;
}
}

// @codeCoverageIgnoreEnd

0 comments on commit e2c4ed7

Please sign in to comment.