Skip to content

Commit 16be232

Browse files
committed
Install jerowork/graphql-attribute-schema and setup server controller
1 parent 2e3241e commit 16be232

File tree

8 files changed

+843
-6
lines changed

8 files changed

+843
-6
lines changed

composer-dependency-analyser.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@
2020
$config->ignoreErrorsOnExtension('ext-ctype', [ErrorType::UNUSED_DEPENDENCY]);
2121
$config->ignoreErrorsOnExtension('ext-iconv', [ErrorType::UNUSED_DEPENDENCY]);
2222

23+
$config->ignoreErrorsOnPackage('guzzlehttp/psr7', [ErrorType::UNUSED_DEPENDENCY]);
24+
$config->ignoreErrorsOnPackage('php-http/discovery', [ErrorType::UNUSED_DEPENDENCY]);
25+
2326
return $config;

composer.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,21 @@
2020
"php": "^8.4",
2121
"ext-ctype": "*",
2222
"ext-iconv": "*",
23+
"guzzlehttp/psr7": "^2.7",
24+
"jerowork/graphql-attribute-schema": "^0.3.1",
25+
"php-http/discovery": "^1.20",
26+
"psr/container": "^2.0",
2327
"symfony/console": "~7.2.6",
2428
"symfony/dotenv": "~7.2.0",
2529
"symfony/flex": "^2.6",
2630
"symfony/framework-bundle": "~7.2.5",
31+
"symfony/http-foundation": "7.2.*",
2732
"symfony/http-kernel": "7.2.*",
33+
"symfony/psr-http-message-bridge": "7.2.*",
34+
"symfony/routing": "7.2.*",
2835
"symfony/runtime": "~7.2.3",
29-
"symfony/yaml": "~7.2.6"
36+
"symfony/yaml": "~7.2.6",
37+
"webonyx/graphql-php": "^15.20"
3038
},
3139
"require-dev": {
3240
"captainhook/captainhook": "^5.25.2",
@@ -68,7 +76,7 @@
6876
},
6977
"bump-after-update": true,
7078
"platform": {
71-
"php": "8.4"
79+
"php": "8.4.7"
7280
},
7381
"sort-packages": true
7482
},

0 commit comments

Comments
 (0)