-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
83 lines (83 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "typo3/cms-graphql",
"type": "typo3-cms-framework",
"description": "The GraphQL library of TYPO3.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"role": "Developer"
}],
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"sort-packages": true
},
"repositories": [
{
"type": "git",
"url": "https://github.com/typo3-initiatives/configuration"
}
],
"require": {
"typo3/cms-core": "10.1.*@dev",
"typo3/cms-configuration": "10.1.*@dev",
"hoa/compiler": "^3.0",
"webmozart/assert": "^1.0",
"webonyx/graphql-php": "^0.13"
},
"require-dev": {
"codacy/coverage": "^1.4",
"slevomat/coding-standard": "^4.8",
"typo3/testing-framework": "^5.0"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"graphql": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "10.1.x-dev"
},
"typo3/cms": {
"extension-key": "graphql",
"app-dir": ".build",
"web-dir": ".build/public",
"Package": {
"partOfFactoryDefault": true
}
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\GraphQL\\Build\\": "Build/",
"TYPO3\\CMS\\GraphQL\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\GraphQL\\Tests\\Unit\\": "Tests/Unit/",
"TYPO3\\CMS\\GraphQL\\Tests\\Functional\\": "Tests/Functional/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"build:package:link": [
"TYPO3\\CMS\\GraphQL\\Build\\Composer\\ScriptHelper::linkPackage"
],
"test:php:unit": [
"@php .build/bin/phpunit -c Build/UnitTests.xml"
],
"test:php:functional": [
"@php .build/bin/phpunit -c Build/FunctionalTests.xml"
],
"test": [
"@test:php:unit",
"@test:php:functional"
]
}
}