-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.89 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"name": "b13/container",
"description": "Container Content Elements - 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": "^13.4 || ^14.2 || 14.3.x-dev"
},
"autoload": {
"psr-4": {
"B13\\Container\\": "Classes/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"B13\\Container\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require-dev": {
"b13/container-example": "dev-task/v4",
"typo3/cms-install": "^13.4 || ^14.2 || 14.3.x-dev",
"typo3/cms-fluid-styled-content": "^13.4 || ^14.2 || 14.3.x-dev",
"typo3/cms-info": "^13.4 || ^14.2 || 14.3.x-dev",
"typo3/cms-workspaces": "^13.4 || ^14.2 || 14.3.x-dev",
"typo3/testing-framework": "^9.1",
"phpstan/phpstan": "^1.10",
"typo3/coding-standards": "^0.5.5",
"friendsofphp/php-cs-fixer": "^3.51",
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0",
"codeception/module-webdriver": "^4.0",
"codeception/module-db": "^3.1",
"phpunit/phpunit": "^11.3"
},
"replace": {
"typo3-ter/container": "self.version"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"app-dir": ".Build",
"extension-key": "container",
"version": "4.0.0",
"Package": {
"providesPackages": {}
}
}
}
}