-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.76 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.76 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
{
"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.4",
"composer-runtime-api": "^2.0",
"nikic/php-parser": "^5.6",
"phpstan/phpstan": "^2.1",
"ruudk/code-generator": "^0.4.4",
"symfony/console": "^7.4 || ^8.0",
"symfony/filesystem": "^7.4 || ^8.0",
"symfony/finder": "^7.4 || ^8.0",
"symfony/string": "^7.4 || ^8.0",
"symfony/type-info": "^7.4 || ^8.0",
"webmozart/assert": "^1.12 || ^2.0",
"webonyx/graphql-php": "^15.24.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.85",
"guzzlehttp/psr7": "^2.7",
"php-http/discovery": "^1.20",
"php-http/guzzle7-adapter": "^1.1",
"php-http/message": "^1.16",
"php-http/mock-client": "^1.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^12.3",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"ruudk/readme-examples-sync-hook": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"shipmonk/dead-code-detector": "^0.13.2",
"staabm/phpstan-todo-by": "^0.3.0",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/dotenv": "^7.4 || ^8.0",
"symfony/var-dumper": "^7.4 || ^8.0",
"ticketswap/php-cs-fixer-config": "^1.0",
"ticketswap/phpstan-error-formatter": "^1.1",
"twig/twig": "^3.21",
"vincentlanglet/twig-cs-fixer": "^3.9"
},
"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"
]
}
}