-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 3.04 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 3.04 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
{
"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": "ext@extco.de",
"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,
"phpstan/extension-installer": true
},
"lock": false,
"sort-packages": true
},
"version": "12.0.0",
"extra": {
"typo3/cms": {
"extension-key": "cart",
"web-dir": ".build/public"
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-json": "*",
"ext-openssl": "*",
"typo3/cms-core": "^14.3",
"typo3/cms-extbase": "^14.3",
"typo3/cms-fluid": "^14.3",
"typo3/cms-frontend": "^14.3"
},
"require-dev": {
"codappix/typo3-php-datasets": "^2.1",
"erickskrauch/php-cs-fixer-custom-fixers": "*",
"friendsofphp/php-cs-fixer": "^3.95",
"kubawerlos/php-cs-fixer-custom-fixers": "*",
"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-beuser": "^14.3",
"typo3/cms-dashboard": "^14.3",
"typo3/cms-form": "^14.3",
"typo3/testing-framework": "^9.5",
"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": {
"typo3/cms-dashboard": "^14.3",
"typo3/cms-form": "^14.3"
}
}