forked from extcode/cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.58 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "extcode/cart",
"type": "typo3-cms-extension",
"description": "Shopping Cart(s) for TYPO3",
"homepage": "https://cart.extco.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"Shopping Cart",
"cart"
],
"authors": [
{
"name": "Daniel Gohlke",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart/issues"
},
"autoload": {
"psr-4": {
"Extcode\\Cart\\": "Classes/",
"Extcode\\Cart\\Configuration\\": "Configuration/"
}
},
"autoload-dev": {
"psr-4": {
"Extcode\\Cart\\Tests\\": "Tests"
}
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "cart",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"scripts": {
"extcode:cgl": [
".build/bin/php-cs-fixer fix --config=Build/.php_cs.dist -v --using-cache=no --path-mode=intersection ./"
],
"extcode:test:php:lint": [
".build/bin/phplint -c Build/phplint.yaml"
],
"extcode:test:php:unit": [
".build/bin/phpunit -c Build/UnitTests.xml"
],
"extcode:test:php:functional": [
"typo3DatabaseDriver=\"pdo_sqlite\" .build/bin/phpunit -c Build/FunctionalTests.xml"
],
"extcode:test:typoscript:lint": [
".build/bin/typoscript-lint -c Build/typoscriptlint.yaml Configuration"
],
"extcode:test": [
"@extcode:test:typoscript:lint",
"@extcode:test:php:lint",
"@extcode:test:php:unit",
"@extcode:test:php:functional"
],
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"[ -L .build/public/typo3conf/ext/cart ] || ln -snvf ../../../../. .build/public/typo3conf/ext/cart"
]
},
"require": {
"php": ">=7.2.0 <7.5",
"ext-json": "*",
"ext-openssl": "*",
"typo3/cms-core": "^10.4",
"typo3/cms-form": "^10.4"
},
"require-dev": {
"typo3/testing-framework": "^6.0",
"friendsofphp/php-cs-fixer": "^2.14",
"helmich/typo3-typoscript-lint": "^2.0",
"overtrue/phplint": "^1.1"
},
"suggest": {
"typo3/cms-dashboard": "^10.4"
}
}