forked from krausandre/cart_paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.19 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
{
"name": "extcode/cart-paypal",
"type": "typo3-cms-extension",
"description": "Shopping Cart(s) for TYPO3 - PayPal Payment Provider",
"homepage": "https://cart.extco.de",
"license": [
"GPL-2.0+"
],
"keywords": [
"TYPO3 CMS",
"Shopping Cart",
"PayPal",
"cart"
],
"version": "5.1.0",
"authors": [
{
"name": "Daniel Gohlke",
"email": "ext.cart@extco.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/extcode/cart_paypal/issues"
},
"autoload": {
"psr-4": {
"Extcode\\CartPaypal\\": "Classes"
}
},
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "cart_paypal",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"require": {
"php": ">=7.2.0 <7.5",
"ext-curl": "*",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-frontend": "^11.5",
"extcode/cart": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"helmich/typo3-typoscript-lint": "^2.0",
"overtrue/phplint": "^1.1"
},
"scripts": {
"cgl:test": [
".build/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --dry-run --using-cache=no --path-mode=intersection ./"
],
"cgl:fix": [
".build/bin/php-cs-fixer fix --config=Build/.php-cs-fixer.dist.php -v --using-cache=no --path-mode=intersection ./"
],
"php:lint": [
".build/bin/phplint -c Build/phplint.yaml"
],
"typoscript:lint": [
".build/bin/typoscript-lint -c Build/typoscriptlint.yaml Configuration"
],
"test:all": [
"@cgl:test",
"@typoscript:lint",
"@php:lint"
],
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/cart_paypal ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/cart_paypal"
]
}
}