forked from b13/container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 2.5 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
{
"name": "b13/container",
"description": "Create Custom Container Content Elements for TYPO3",
"type": "typo3-cms-extension",
"homepage": "https://b13.com",
"license": ["GPL-2.0-or-later"],
"require": {
"typo3/cms-backend": "^9.5 || ^10.4",
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4"
},
"autoload": {
"psr-4": {
"B13\\Container\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Container\\Tests\\": "Tests",
"TYPO3\\JsonResponse\\": ".Build/Web/typo3conf/ext/json_response/Classes"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require-dev": {
"b13/container-example": "dev-master",
"ichhabrecht/content-defender": "dev-master",
"typo3/cms-install": "^10.4",
"typo3/cms-about": "^10.4",
"typo3/testing-framework": "^6",
"codeception/codeception": "^4.1",
"codeception/module-webdriver": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-db": "^1.0",
"typo3/cms-workspaces": "^10.4",
"phpstan/phpstan": "^0.12.11",
"typo3/coding-standards": "^0.2.0",
"helhum/typo3-console": "^6.3",
"helhum/dotenv-connector": "^2.3"
},
"replace": {
"typo3-ter/container": "self.version"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"if [ ! -e .Build/Web/vendor ]; then cd .Build/Web && ln -s ../vendor && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/ext/json_response ]; then cd .Build/Web/typo3conf/ext && ln -s ../../../vendor/typo3/testing-framework/Resources/Core/Functional/Extensions/json_response && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/ext/container_example ]; then cd .Build/Web/typo3conf/ext && ln -s ../../../vendor/b13/container-example container_example && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/ext/content_defender ]; then cd .Build/Web/typo3conf/ext && ln -s ../../../vendor/ichhabrecht/content-defender content_defender && cd -; fi",
"if [ ! -e .Build/Web/typo3conf/sites ]; then cd .Build/Web/typo3conf && ln -s ../../../Build/sites && cd -; fi"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "container"
}
}
}