-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.05 KB
/
composer.json
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
{
"name": "redound/phalcon-graphql",
"description": "Phalcon GraphQL Library",
"version": "7.0.1",
"require": {
"php": ">=8.0",
"ext-phalcon": ">=5.0.0",
"webonyx/graphql-php": "^15.11.1",
"redound/phalcon-api": "^5.0.0"
},
"suggest": {
"firebase/php-jwt": "^5.0"
},
"authors": [
{
"name": "Bart Blok",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PhalconGraphQL\\": "src/PhalconGraphQL"
},
"psr-0": {
"RelationModelTrait": "src/PhalconGraphQL/Traits",
"AllModelTrait": "src/PhalconGraphQL/Traits",
"FindModelTrait": "src/PhalconGraphQL/Traits",
"CreateModelTrait": "src/PhalconGraphQL/Traits",
"DeleteModelTrait": "src/PhalconGraphQL/Traits",
"UpdateModelTrait": "src/PhalconGraphQL/Traits",
"ModelMutationTrait": "src/PhalconGraphQL/Traits",
"ModelQueryTrait": "src/PhalconGraphQL/Traits"
}
}
}