-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.8 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "extcode/cart-books",
"type": "typo3-cms-extension",
"description": "Shopping Cart(s) for TYPO3 - Book Extension",
"homepage": "https://cart.extco.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"Shopping Cart",
"cart",
"books"
],
"authors": [
{
"name": "Daniel Gohlke",
"email": "ext@extco.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart_books/issues"
},
"autoload": {
"psr-4": {
"Extcode\\CartBooks\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Extcode\\CartBooks\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart_books",
"web-dir": ".build/web"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-json": "*",
"ext-pdo": "*",
"extcode/cart": "^11.0",
"extcode/books": "^1.0",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-fluid": "^13.4"
},
"require-dev": {
"codappix/typo3-php-datasets": "^2.1",
"codeception/codeception": "^5.0",
"codeception/module-db": "^3.1",
"codeception/module-webdriver": "^4.0",
"friendsofphp/php-cs-fixer": "^3.16",
"helmich/typo3-typoscript-lint": "^3.1",
"phpstan/phpstan": "^1.10",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-install": "^13.4",
"typo3/testing-framework": "^8.2"
}
}