-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.21 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.21 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
{
"name": "evoweb/ew-collapsible-container",
"type": "typo3-cms-extension",
"description": "Collapsible container",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"support" : {
"source" : "https://github.com/evoWeb/ew_collapsible_container",
"issues" : "https://github.com/evoWeb/ew_collapsible_container/issues",
"docs": "https://ew-collapsible-container.evoweb.de/"
},
"config": {
"cache-dir": ".cache/composer",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"typo3/cms-backend": "^13.4 || ^14.3 || 15.*.*@dev || dev-main",
"typo3/cms-core": "^13.4 || ^14.3 || 15.*.*@dev || dev-main",
"b13/container": "^4.0 || dev-master",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher-contracts": "^3.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpdoc-parser": "^1.30.0 || ^2.2.2",
"phpstan/phpstan": "^2.1.54",
"phpunit/phpunit": "^11.5.55",
"typo3/testing-framework": "^9.2.1 || ^9.5.0",
"composer/pcre": "^2.1.3",
"firebase/php-jwt": "^7.0",
"symfony/cache": "^7.4 || ^8.0",
"symfony/cache-contracts": "^3.6",
"symfony/translation": "^7.4 || ^8.1",
"symfony/var-exporter": "^7.1 || ^8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "ew_collapsible_container",
"app-dir": "Build",
"web-dir": "public",
"version": "2.4.0",
"Package": {
"providesPackages": {
}
}
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm -rf Build",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
],
"post-install-cmd": [
"ln -sf ../vendor/typo3/testing-framework/Resources/Core/Build/ Build/phpunit;"
],
"post-update-cmd": [
"@post-install-cmd"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"Evoweb\\EwCollapsibleContainer\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\EwCollapsibleContainer\\Tests\\": "Tests/"
}
}
}