forked from OXIDprojects/paypalplus-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 827 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
33
34
35
{
"name": "oxid-professional-services/paypalplus-module",
"description": "PayPal Plus payments module for OXID eShop",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop"],
"homepage": "https://www.paypal.com",
"license": [
"GPL-3.0",
"proprietary"
],
"extra": {
"oxideshop": {
"target-directory": "payp/paypalplus"
}
},
"require": {
"php": ">=5.6",
"lib-curl": ">=7.26.0",
"lib-openssl": ">=1.0.1",
"ext-curl": "*",
"ext-json": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"oxid-esales/oxideshop-ce": "^v6",
"paypal/rest-api-sdk-php": "^v1.13.0"
},
"config":{
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"OxidProfessionalServices\\PayPalPlus\\": "../../../source/modules/payp/paypalplus"
}
}
}