forked from 202ecommerce/paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 811 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"config": {
"vendor-dir": "vendor",
"prepend-autoloader": false
},
"autoload": {
"psr-4": {
"PaypalPPBTlib\\": "vendor/ppbtlib/src/",
"PaypalAddons\\": "."
},
"classmap": [
"classes/PaypalCapture.php",
"classes/PaypalOrder.php",
"classes/PaypalLog.php",
"classes/PaypalVaulting.php",
"classes/PaypalIpn.php",
"controllers/front/abstract.php"
]
},
"scripts": {
"pre-autoload-dump": [
"if [ ${PPBTCLASSLIB_DEV_PATH} ]; then php ${PPBTCLASSLIB_DEV_PATH}/PPBTlib/refresh.php .; fi"
]
},
"require": {
"paypal/paypal-checkout-sdk": " 1.*",
"guzzlehttp/guzzle": "6.*",
"paypal/rest-api-sdk-php": "1.*"
}
}