forked from Azuriom/Plugin-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 814 Bytes
/
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
{
"name": "azuriom/shop",
"type": "azuriom-plugin",
"description": "Complete shop plugin for your server",
"license": "MIT",
"autoload": {
"psr-4": {
"Azuriom\\Plugin\\Shop\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": ">=8.0",
"mollie/mollie-api-php": "^2.12.0",
"paymentwall/paymentwall-php": "^2.2",
"paygol/php-sdk": "^1.0",
"paypal/paypal-checkout-sdk": "^1.0.1",
"stripe/stripe-php": "^7.14",
"xsolla/xsolla-sdk-php": "^4.1"
},
"replace": {
"guzzlehttp/guzzle": "*",
"psr/log": "*",
"symfony/http-foundation": "*"
},
"config": {
"optimize-autoloader": true,
"platform-check": false
}
}