-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
94 lines (94 loc) · 2.3 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "friendsoftypo3/headless-dev-tools",
"type": "typo3-cms-extension",
"description": "Headless dev tools - helpful code for local development",
"keywords": [
"TYPO3",
"headless",
"dev",
"tools",
"pwa",
"json"
],
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Tymoteusz Motylewski",
"role": "Head"
},
{
"name": "Tomasz Woldański",
"role": "Developer"
},
{
"name": "TYPO3 PWA Initiative",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"php": ">= 7.4",
"typo3/cms-core": "^11.5 || ^12.4",
"friendsoftypo3/headless": "^3.0 || ^4.0 || dev-master"
},
"conflict": {
"ichhabrecht/filefill": "< 4.3.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15.0",
"friendsofphp/php-cs-fixer": "^3.1",
"helmich/typo3-typoscript-lint": "^3",
"justinrainbow/json-schema": "^5.2",
"seld/jsonlint": "^1.8",
"symfony/yaml": "^5.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "headless_dev_tools"
}
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\HeadlessDevTools\\": "Classes"
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:json:lint": [
"find . -name '*.json' -not -path '*.Build/vendor*' | xargs .Build/vendor/bin/jsonlint -q"
],
"ci:php:cs-fixer": [
"php-cs-fixer fix -v --dry-run --using-cache no --diff"
],
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:yaml:lint": "find . ! -path '*.Build/*' -name '*.yml' | xargs php ./.Build/vendor/bin/yaml-lint",
"fix:php:cs-fixer": [
"php-cs-fixer fix -v --using-cache no"
],
"prepare-release": [
"rm .gitignore",
"rm -rf .Build",
"rm -rf .github",
"rm -rf Tests",
"rm .editorconfig",
"rm .gitattributes",
"rm .php-cs-fixer.php",
"rm CONTRIBUTING.rst"
]
}
}