-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "hecht-a/graphql-orm",
"description": "GraphQL ORM for Symfony",
"type": "symfony-bundle",
"keywords": ["graphql"],
"homepage": "https://github.com/hecht-a/graphql-orm",
"license": "MIT",
"autoload": {
"psr-4": {
"GraphqlOrm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphqlOrm\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "HECHT Axel",
"email": "axel.hct@gmail.com",
"homepage": "https://github.com/hecht-a"
}
],
"require": {
"php": "^8.2",
"psr/log": "^3.0",
"symfony/dependency-injection": "^7.1",
"symfony/http-foundation": "^7.1",
"symfony/stopwatch": "^7.1",
"symfony/http-kernel": "^7.1",
"symfony/config": "^7.1",
"symfony/http-client": "^7.1",
"symfony/console": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/finder": "^7.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^8.0",
"phpunit/phpunit": "^12.5"
}
}