-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.82 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ruudk/graphql-client-code-generator",
"description": "Transform GraphQL queries into type-safe, zero-dependency PHP 8.4+ code that just works.",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.5",
"composer-runtime-api": "^2.0",
"nikic/php-parser": "^5.7",
"phpstan/phpdoc-parser": "^2.3",
"phpstan/phpstan": "^2.1.18",
"ruudk/code-generator": "^0.4.7",
"sebastian/diff": "^7.0",
"symfony/console": "^8.0",
"symfony/filesystem": "^8.0",
"symfony/finder": "^8.0",
"symfony/string": "^8.0",
"symfony/type-info": "^8.0",
"webmozart/assert": "^2.0",
"webonyx/graphql-php": "^15.24.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.51",
"friendsofphp/php-cs-fixer": "^3.95.1",
"guzzlehttp/psr7": "^2.9",
"php-http/discovery": "^1.20",
"php-http/guzzle7-adapter": "^1.1",
"php-http/message": "^1.16.2",
"php-http/mock-client": "^1.6.1",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^12.5.23",
"psr/http-client": "^1.0.3",
"psr/http-message": "^2.0",
"ruudk/readme-examples-sync-hook": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"shipmonk/dead-code-detector": "^0.13.5",
"staabm/phpstan-todo-by": "^0.3.3",
"symfony/dependency-injection": "^7.4 || ^8.0.8",
"symfony/dotenv": "^7.4 || ^8.0.8",
"symfony/var-dumper": "^7.4 || ^8.0.8",
"ticketswap/php-cs-fixer-config": "^1.5.1",
"ticketswap/phpstan-error-formatter": "^1.3",
"twig/twig": "^3.24",
"vincentlanglet/twig-cs-fixer": "^3.14"
},
"suggest": {
"twig/twig": "For generating GraphQL fragments from Twig templates"
},
"autoload": {
"psr-4": {
"Ruudk\\GraphQLCodeGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ruudk\\GraphQLCodeGenerator\\": "tests/",
"Ruudk\\GraphQLCodeGenerator\\Examples\\": "examples/"
}
},
"bin": [
"bin/graphql-client-code-generator"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"post-install-cmd": [
"command -v lefthook >/dev/null 2>&1 && lefthook install || true"
]
}
}