This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 3 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 3 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
87
88
89
90
91
92
93
{
"name": "ynloultratech/graphql-bundle",
"description": "Bundle designed to easily create API projects based on GraphQL",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "YNLO-Ultratech Development Team",
"email": "developer@ynloultratech.com",
"homepage": "https://github.com/ynloultratech"
}
],
"keywords": [
"api",
"graphql"
],
"autoload": {
"psr-4": {
"Ynlo\\GraphQLBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ynlo\\GraphQLBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 | ^8.0",
"ext-curl": "*",
"ext-json": "*",
"symfony/form": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/security-bundle": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/validator": "^5.4",
"symfony/templating": "^5.4",
"symfony/expression-language": "^5.4",
"symfony/process": "^5.4",
"symfony/messenger": "^5.4",
"doctrine/inflector": "^1.0 | ^2.0",
"doctrine/orm": "^2.8",
"doctrine/doctrine-bundle": "^2.1",
"doctrine/persistence": "^2.0",
"doctrine/common": "^3.0",
"twig/twig": "^2.0 | ^3.0",
"webonyx/graphql-php": "^0.13 | ^14.0",
"doctrine/annotations": "^1.5",
"myclabs/deep-copy": "^1.7",
"mindplay/readable": "^1.1",
"mtdowling/jmespath.php": "^2.4",
"firebase/php-jwt": "^5.2 | ^6.2"
},
"conflict": {
"psr/container": "<1.1.1"
},
"require-dev": {
"ext-redis": "*",
"symfony/symfony": "^5.4",
"phpunit/phpunit": "^8.5.33",
"symfony/phpunit-bridge": "^5.4",
"lexik/jwt-authentication-bundle": "^2.4",
"mockery/mockery": "^1.5.1",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"fzaninotto/faker": "dev-master",
"fresh/doctrine-enum-bundle": "^6.2 | ^7.0",
"escapestudios/symfony2-coding-standard": "3.x-dev",
"behat/behat": "^3.4",
"symfony/mercure-bundle": "^0.2.0",
"friendsofsymfony/elastica-bundle": "^6.1"
},
"suggest": {
"friendsofsymfony/elastica-bundle": "Needed to support ElasticSearch for lists",
"symfony/mercure-bundle": "Needed to support GraphQL subscriptions",
"symfony/messenger": "Needed to support GraphQL subscriptions",
"behat/behat": "Integration with Behat BDD tests",
"phpunit/phpunit": "To use assertions in Behat tests",
"doctrine/doctrine-fixtures-bundle": "If you want to create test fixtures",
"fzaninotto/faker": "If you want to generate fake values during tests"
},
"extra": {
"branch-alias": {
"v1": "1.x-dev",
"dev-master": "2.x-dev"
}
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
},
"scripts": {
"test": "bin/phpunit --color=always"
}
}