-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.87 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
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
{
"name": "rozbehsharahi/graphql3",
"description": "A GraphQL extension for TYPO3",
"type": "typo3-cms-extension",
"license": ["GPL-3.0-or-later"],
"authors": [
{
"name": "Rozbeh Chiryai Sharahi",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "path",
"url": "./Tests/Fixture/Graphql3TestExtension"
}
],
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"ext-dom": "*",
"typo3/cms-core": "^11.5 || ^12",
"typo3/cms-backend": "^11.5 || ^12",
"typo3/cms-frontend": "^11.5 || ^12",
"typo3/cms-extensionmanager": "^11.5 || ^12",
"webonyx/graphql-php": "^v15.0.1",
"symfony/security-core": "^v6.0.14",
"doctrine/inflector": "^2.0.6",
"firebase/php-jwt": "^6.3.0"
},
"require-dev": {
"ext-openssl": "*",
"ext-sodium": "*",
"roave/security-advisories": "dev-latest",
"typo3/cms-install": "^11.5 || ^12",
"typo3/cms-rte-ckeditor": "^11.5 || ^12",
"typo3/cms-tstemplate": "^11.5 || ^12",
"typo3/cms-lowlevel": "^11.5 || ^12",
"typo3/cms-felogin": "^11.5 || ^12",
"typo3/cms-fluid-styled-content": "^11.5 || ^12",
"rozbehsharahi/graphql3-test-extension": "@dev",
"phpunit/phpunit": "^10",
"phpstan/phpstan": "1.8.x-dev"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"autoload": {
"psr-4": {
"RozbehSharahi\\Graphql3\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"RozbehSharahi\\Graphql3\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "graphql3"
}
}
}