Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Bump gomzyakov/php-cs-fixer-config from 1.47.0 to 1.65.0 (#168)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: gomzyakov <[email protected]>
  • Loading branch information
dependabot[bot] and gomzyakov authored Jul 27, 2024
1 parent 40c7526 commit 18f44ca
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP 8.2
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3

- name: Install Composer Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
php-version: 8.3
extensions: mbstring

- name: Show PHP version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP 8.2
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3

- name: Install Composer dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup PHP 8.2
- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3

- name: Check PHP Version
run: php -v
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
],
"homepage": "https://github.com/gomzyakov/good-first-issue",
"require": {
"php": "^8.2",
"php": "^8.3",
"ext-json": "*",
"nesbot/carbon": "^3.7",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.60",
"gomzyakov/php-cs-fixer-config": "^1.47",
"gomzyakov/php-cs-fixer-config": "^1.65",
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11"
},
Expand Down
22 changes: 11 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions tests/GeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
use GuzzleHttp\Client;
use PHPUnit\Framework\TestCase;

/**
* @covers \GoodFirstIssue\Generator
*/
final class GeneratorTest extends TestCase
{
public function test_instance_of_generator(): void
Expand Down
3 changes: 0 additions & 3 deletions tests/GitHubAPIClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
use GuzzleHttp\Client;
use PHPUnit\Framework\TestCase;

/**
* @covers \GoodFirstIssue\GitHubAPIClient
*/
final class GitHubAPIClientTest extends TestCase
{
public function test_instance_of_generator(): void
Expand Down
3 changes: 0 additions & 3 deletions tests/RendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
use GoodFirstIssue\Renderer;
use PHPUnit\Framework\TestCase;

/**
* @covers \GoodFirstIssue\Renderer
*/
final class RendererTest extends TestCase
{
public function test_instance_of_generator(): void
Expand Down

0 comments on commit 18f44ca

Please sign in to comment.