forked from TYPO3-Headless/headless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.26 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.26 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
{
"name": "friendsoftypo3/headless",
"type": "typo3-cms-extension",
"description": "This extension provides way to output content from TYPO3 in JSON format.",
"keywords": [
"TYPO3",
"headless",
"pwa",
"json"
],
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Tymoteusz Motylewski",
"role": "Head"
},
{
"name": "Łukasz Uznański",
"role": "Developer"
},
{
"name": "TYPO3 PWA Initiative",
"role": "Developer",
"email": "extensions@macopedia.pl"
}
],
"require": {
"typo3/cms-core": "^9.5 || ^10.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"justinrainbow/json-schema": "1.5.*",
"php-parallel-lint/php-parallel-lint": "^0.4",
"typo3/testing-framework": "^4 || ^5",
"helmich/typo3-typoscript-lint": "^2.1"
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\Headless\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\JsonResponse\\": ".Build/vendor/typo3/testing-framework/Resources/Core/Functional/Extensions/json_response/Classes"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"test": [
"@test-php-lint",
"@test-php-cs-fixer",
"@test-unit",
"@test-functional"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Configuration/TCA/",
".Build/bin/parallel-lint ./Tests/"
],
"test-php-cs-fixer": [
"php-cs-fixer fix -v --dry-run --using-cache false --diff --diff-format=udiff"
],
"test-php-cs-fixer-fix": [
"php-cs-fixer fix -v --using-cache false"
],
"typoscript-lint": [
".Build/bin/typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript"
],
"test-unit": [
".Build/bin/phpunit --configuration Tests/Unit/phpunit.xml"
],
"test-functional": [
".Build/bin/phpunit --configuration Tests/Functional/phpunit.xml"
]
},
"extra": {
"typo3/cms": {
"web-dir": ".Build",
"extension-key": "headless"
}
}
}