-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.22 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
{
"name": "leuchtdiode/laminas-ecommerce",
"description": "Laminas E-commerce module",
"type": "library",
"license": "MIT",
"homepage": "https://try2catch.com",
"authors": [
{
"name": "Alex Schloegl",
"email": "[email protected]",
"homepage": "https://try2catch.com",
"role": "Developer"
}
],
"keywords": [
"Laminas",
"Module",
"E-Commerce",
"Payment",
"Shop"
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-gettext": "*",
"ext-intl": "*",
"leuchtdiode/laminas-common": "^2.6",
"leuchtdiode/laminas-log": "^2.4",
"leuchtdiode/laminas-mail": "^3.1",
"leuchtdiode/laminas-async-queue": "^0.4",
"leuchtdiode/laminas-assets": "^0.6",
"laminas/laminas-eventmanager": "^3.10",
"beberlei/doctrineextensions": "^1.3",
"ramsey/uuid-doctrine": "^2.0",
"firebase/php-jwt": "^6.4",
"moneyphp/money": "^4.1",
"spipu/html2pdf": "^5.2"
},
"suggest": {
"mpay24/mpay24-php": "Mandatory if using mpay24/Unzer method handler",
"paypal/rest-api-sdk-php": "Mandatory if using PayPal method handler"
},
"autoload": {
"psr-4": {
"Ecommerce\\": "src/"
}
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}