forked from extcode/cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
114 lines (114 loc) · 3.38 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
{
"name": "extcode/cart",
"type": "typo3-cms-extension",
"description": "A fork of the 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",
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-openssl": "*",
"typo3/cms-core": "^10.4 || ^11.5",
"typo3/cms-form": "^10.4 || ^11.5"
},
"require-dev": {
"typo3/testing-framework": "^6.0",
"typo3/cms-dashboard": "^10.4 || ^11.5",
"friendsofphp/php-cs-fixer": "^2.19 || ^3.11",
"helmich/typo3-typoscript-lint": "^2.5",
"overtrue/phplint": "^3.2 || ^4.3 || ^5.3",
"ssch/typo3-rector": "^1.0",
"phpstan/phpstan": "^1.8"
},
"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 ] || ln -snvf ../../../../. .build/public/typo3conf/ext/cart"
]
},
"suggest": {
"typo3/cms-dashboard": "^10.4 || ^11.5"
}
}