forked from PrestaShopCorp/paypal
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
51 lines (50 loc) · 1.23 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
{
"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\\": "."
},
"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": "^3.4",
"phpunit/phpunit": "^9.0"
},
"type": "prestashop-module",
"author": "PrestaShop"
}