-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.59 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
{
"name": "sitegeist/media-components",
"description": "Ready-to-use fluid components for embedding different media files",
"type": "typo3-cms-extension",
"homepage": "https://github.com/sitegeist/media-components",
"license": ["GPL-2.0-or-later"],
"keywords": ["typo3", "typo3-extension", "fluid", "typo3-fluid", "components", "html", "template", "media", "image", "responsive images", "video", "audio"],
"authors": [
{
"name": "Benjamin Tammling",
"email": "[email protected]"
},
{
"name": "Ulrich Mathes",
"email": "[email protected]"
},
{
"name": "Simon Praetorius",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sitegeist/media-components/issues"
},
"require": {
"php": "^8.2",
"sitegeist/fluid-components": "^3.8.1",
"typo3fluid/fluid": "^4.0",
"sitegeist/fluid-tagbuilder": "^1 || dev-main",
"typo3/cms-core": "^13.3 || dev-main"
},
"require-dev": {
"typo3/testing-framework": "^8.2",
"squizlabs/php_codesniffer": "^3.0",
"editorconfig-checker/editorconfig-checker": "^10.0"
},
"autoload": {
"psr-4": {
"Sitegeist\\MediaComponents\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\MediaComponents\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"lock": false,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "media_components",
"web-dir": ".Build/public"
}
},
"scripts": {
"lint": [
"@lint:php",
"@lint:editorconfig"
],
"lint:php": "phpcs --standard=PSR2 --extensions=php --exclude=Generic.Files.LineLength --ignore=.Build,.cache,Tests,ext_emconf.php .",
"lint:editorconfig": "ec -exclude .Build .",
"test": [
"@test:unit",
"@test:functional"
],
"test:unit": "Build/Scripts/runTests.sh",
"test:functional": "Build/Scripts/runTests.sh -s functional",
"prepare-release": [
"sed -i'' -e \"s/'version' => ''/'version' => '$(echo ${GITHUB_REF#refs/tags/} | sed 's/v//')'/\" ext_emconf.php",
"rm -r .github .ecrc .editorconfig .gitattributes Build Tests"
]
}
}