-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
112 lines (112 loc) · 3.39 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
{
"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": "[email protected]",
"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": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart_products",
"web-dir": ".build/web"
}
},
"require": {
"php": "^8.1",
"ext-pdo": "*",
"extcode/cart": "^9.0",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4"
},
"require-dev": {
"codappix/typo3-php-datasets": "^1.5",
"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",
"ssch/typo3-rector": "^2.6",
"typo3/cms-dashboard": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-reactions": "^12.4",
"typo3/testing-framework": "^8.0"
},
"scripts": {
"test:cgl": [
"vendor/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --using-cache=no --path-mode=intersection ./"
],
"test:cgl:dry-run": [
"vendor/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --dry-run --using-cache=no --path-mode=intersection ./"
],
"test:php:lint": [
"find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"
],
"test:php:unit": [
"vendor/bin/phpunit -c Build/UnitTests.xml"
],
"test:php:functional": [
"typo3DatabaseDriver=\"pdo_sqlite\" vendor/bin/phpunit -c Build/FunctionalTests.xml"
],
"test:phpstan:analyse": [
"vendor/bin/phpstan analyse -c Build/phpstan.neon --memory-limit 256M"
],
"test:rector:process": [
"vendor/bin/rector process *"
],
"test:rector:process:dry-run": [
"vendor/bin/rector process * --dry-run"
],
"test:typoscript:lint": [
"vendor/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"
]
}
}