-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 3.25 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 3.25 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
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
{
"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@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": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cart_products",
"web-dir": ".build/public"
}
},
"version": "8.0.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-pdo": "*",
"extcode/cart": "dev-main as 12.0.0",
"typo3/cms-core": "^14.3",
"typo3/cms-extbase": "^14.3",
"typo3/cms-fluid": "^14.3"
},
"require-dev": {
"codappix/typo3-php-datasets": "^2.0",
"codeception/codeception": "^5.0",
"codeception/module-db": "^3.1",
"codeception/module-webdriver": "^4.0",
"friendsofphp/php-cs-fixer": "^3.64",
"helmich/typo3-typoscript-lint": "^3.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"spaze/phpstan-disallowed-calls": "^4.7",
"staabm/phpstan-todo-by": "^0.3",
"typo3/cms-dashboard": "^14.3",
"typo3/cms-fluid-styled-content": "^14.3",
"typo3/cms-install": "^14.3",
"typo3/cms-reactions": "^14.3",
"typo3/testing-framework": "^9.3",
"werkraummedia/watchlist": "^3.0",
"ssch/typo3-rector": "^3.11"
},
"scripts": {
"project:cgl": "php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --dry-run --diff --using-cache=no",
"project:cgl:fix": "php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php --using-cache=no",
"project:lint:php": "find ./*.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"project:phpstan": "phpstan analyse -c Build/phpstan.neon --memory-limit 256M",
"project:test:unit": "phpunit -c Build/phpunit.xml.dist --testsuite unit --display-warnings --display-deprecations --display-errors --display-notices",
"project:test:functional": "phpunit -c Build/phpunit.xml.dist --testsuite functional --display-warnings --display-deprecations --display-errors"
},
"suggest": {
"werkraummedia/watchlist": "^3.0"
}
}