-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
58 lines (58 loc) · 1.81 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
{
"name": "offline/oc-mall-plugin",
"type": "october-plugin",
"description": "E-commerce solution for October CMS",
"keywords": [
"october",
"cms",
"e-commerce",
"shop",
"plugin"
],
"license": "MIT",
"authors": [
{
"name": "Tobias Kündig",
"email": "tobias@offline.ch"
}
],
"require": {
"php": "^8.0",
"barryvdh/laravel-dompdf": "^1.0|^2.0",
"composer/installers": "~1.0",
"hashids/hashids": "^4.0|^5.0",
"league/omnipay": "^3.2",
"omnipay/paypal": "^3.0",
"omnipay/stripe": "^3.0",
"rainlab/user-plugin": "^1.6|^2.0|^3.0",
"rainlab/location-plugin": "^1.2|^2.0",
"rainlab/translate-plugin": "^1.9|^2.0",
"whitecube/php-prices": "^2.0|^3.0"
},
"suggest": {
"vitalybaev/google-merchant-feed": "Required to use the Google Merchant Feed integration",
"bummzack/omnipay-postfinance": "Required to use the PostFinance payment provider",
"elasticsearch/elasticsearch": "Required to use the ElasticSearch indexing support (experimental)",
"offline/jsonq": "Required to use the file based index",
"tmarois/filebase": "Required to use the file based index"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^8.5|^9.0",
"squizlabs/php_codesniffer": "*",
"friendsofphp/php-cs-fixer": "^3.5.0"
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"../../../vendor/bin/phpunit ./tests --stop-on-failure --testdox"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}