Skip to content

Commit 169e920

Browse files
authored
chore(deps): use cdn77 coding standard (#58)
1 parent a067fb3 commit 169e920

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"psr/http-message": "^1.0 || ^2.0"
3838
},
3939
"require-dev": {
40-
"doctrine/coding-standard": "^14.0",
40+
"cdn77/coding-standard": "^7.5",
4141
"infection/infection": "^0.31.0",
4242
"nyholm/psr7": "^1.2",
4343
"phpstan/extension-installer": "^1.1",

phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
<file>src</file>
1515
<file>tests</file>
1616

17-
<rule ref="Doctrine"/>
17+
<rule ref="Cdn77"/>
1818
</ruleset>

tests/GraphQLRequestFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ final class GraphQLRequestFactoryTest extends TestCase
1515
#[DataProvider('provideCreateRequestIsValid')]
1616
public function testCreateRequestIsValid(string $expectedQuery, array $arguments): void
1717
{
18-
$psr17Factory = new Psr17Factory();
18+
$psr17Factory = new Psr17Factory();
1919
$graphQLRequestFactory = new GraphQLRequestFactory($psr17Factory, $psr17Factory);
2020

2121
$request = $graphQLRequestFactory->createRequest('', ...$arguments);

0 commit comments

Comments
 (0)