forked from PrestaShopCorp/paypal
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (61 loc) · 2.24 KB
/
composer.json
File metadata and controls
62 lines (61 loc) · 2.24 KB
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
59
60
61
{
"name": "module-partners/paypal",
"description": "PrestaShop module PayPal",
"homepage": "https://paypal.com/",
"license": "OSL-3.0",
"authors": [
{
"name": "202 ecommerce",
"email": "tech@202-ecommerce.com"
}
],
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"classmap-authoritative": true,
"optimize-autoloader": true,
"prepend-autoloader": false
},
"autoload": {
"psr-4": {
"PaypalPPBTlib\\": "vendor/ppbtlib/src/",
"PaypalAddons\\": ".",
"PaypalAddons\\PrestaShop\\PsAccountsInstaller\\": "vendor/prefixed/prestashop/prestashop-accounts-installer/src",
"PaypalAddons\\Prestashop\\ModuleLibGuzzleAdapter\\": "vendor/prefixed/prestashop/module-lib-guzzle-adapter/src",
"PaypalAddons\\Prestashop\\ModuleLibMboInstaller\\": "vendor/prefixed/prestashop/module-lib-mbo-installer/src",
"PaypalAddons\\Clue\\StreamFilter\\": "vendor/prefixed/clue/stream-filter/src",
"PaypalAddons\\GuzzleHttp\\Psr7\\": "vendor/prefixed/guzzlehttp/psr7/src",
"PaypalAddons\\Http\\Client\\": "vendor/prefixed/php-http/httplug/src",
"PaypalAddons\\Http\\Message\\": "vendor/prefixed/php-http/message/src",
"PaypalAddons\\Http\\Promise\\": "vendor/prefixed/php-http/promise/src",
"PaypalAddons\\Psr\\Http\\Message\\": "vendor/prefixed/psr/http-message/src",
"PaypalAddons\\Defuse\\Crypto\\": "vendor/prefixed/defuse/php-encryption/src"
},
"classmap": [
"classes/",
"controllers/front/abstract.php",
"paypal.php"
]
},
"autoload-dev": {
"psr-4": {
"PaypalTests\\": "202/tests/"
}
},
"scripts": {
"pre-autoload-dump": [
"#if [ ${PPBTCLASSLIB_DEV_PATH} ]; then php ${PPBTCLASSLIB_DEV_PATH}/PPBTlib/refresh.php .; fi"
]
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"php": "^7.3",
"prestashop/php-dev-tools": "^5.0",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.68"
},
"type": "prestashop-module",
"author": "PrestaShop"
}