forked from rintisch/cart_products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.46 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "extcode/cart-products",
"type": "typo3-cms-extension",
"description": "Shopping Cart(s) for TYPO3 - Products",
"homepage": "https://cart.extco.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"Shopping Cart",
"cart",
"products"
],
"authors": [
{
"name": "Daniel Gohlke",
"email": "ext.cart@extco.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart_products/issues"
},
"autoload": {
"psr-4": {
"Extcode\\CartProducts\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Extcode\\CartProducts\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": false,
"typo3/cms-composer-installers": false
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart_products",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"require": {
"php": "^7.2 || ^8.0",
"ext-pdo": "*",
"typo3/cms-core": "^10.4 || ^11.5",
"typo3/cms-extbase": "^10.4 || ^11.5",
"typo3/cms-fluid": "^10.4 || ^11.5",
"extcode/cart": "^8.0"
},
"require-dev": {
"typo3/testing-framework": "^6.0",
"typo3/cms-dashboard": "^10.4 || ^11.5",
"friendsofphp/php-cs-fixer": "^2.14",
"helmich/typo3-typoscript-lint": "^2.0",
"overtrue/phplint": "^1.1",
"rector/rector": "^0.11",
"phpstan/phpstan": "^0.12.99",
"werkraummedia/watchlist": "^1.0"
},
"scripts": {
"test:cgl": [
".build/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --using-cache=no --path-mode=intersection ./"
],
"test:cgl:dry-run": [
".build/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --dry-run --using-cache=no --path-mode=intersection ./"
],
"test:php:lint": [
".build/bin/phplint -c Build/phplint.yaml"
],
"test:php:unit": [
".build/bin/phpunit -c Build/UnitTests.xml"
],
"test:php:functional": [
"typo3DatabaseDriver=\"pdo_sqlite\" .build/bin/phpunit -c Build/FunctionalTests.xml"
],
"test:phpstan:analyse": [
".build/bin/phpstan analyse -c Build/phpstan.neon"
],
"test:rector:process": [
".build/bin/rector process *"
],
"test:rector:process:dry-run": [
".build/bin/rector process * --dry-run"
],
"test:typoscript:lint": [
".build/bin/typoscript-lint -c Build/typoscriptlint.yaml Configuration"
],
"test:php": [
"@test:php:lint",
"@test:php:unit",
"@test:php:functional"
],
"test:all": [
"@test:phpstan:analyse",
"@test:rector:process",
"@test:cgl",
"@test:typoscript:lint",
"@test:php"
],
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"[ -L .build/public/typo3conf/ext/cart_products ] || ln -snvf ../../../../. .build/public/typo3conf/ext/cart_products"
]
},
"suggest": {
"werkraummedia/watchlist": "^1.0"
}
}