-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
executable file
·76 lines (76 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "prestashop/ps_checkout",
"description": "Provide the most commonly used payment methods to your customers in this all-in-one module, and manage all your sales in a centralized interface.",
"homepage": "https://github.com/PrestaShopCorp/ps_checkout",
"license": "AFL-3.0",
"type": "prestashop-module",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"config": {
"platform": {
"php": "7.2.34"
},
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false
},
"require": {
"php": ">=7.2",
"giggsey/libphonenumber-for-php": "^8.12",
"gmponos/guzzle_logger": "^2.2",
"guzzlehttp/guzzle": "^7.4",
"prestashop/decimal": "^1.3",
"prestashop/module-lib-guzzle-adapter": "^1.0",
"prestashop/module-lib-mbo-installer": "^2.0",
"prestashop/module-lib-service-container": "^1.0",
"prestashop/prestashop-accounts-installer": "^1.0",
"ramsey/uuid": "^3.8",
"segmentio/analytics-php": "^1.5",
"sentry/sentry": "^1.0",
"webmozart/assert": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"prestashop/php-dev-tools": "~3.0",
"monolog/monolog": "^1.27.1",
"prestashop/autoindex": "^1.0"
},
"autoload": {
"psr-4": {
"PrestaShop\\Module\\PrestashopCheckout\\": "src"
},
"classmap": [
"ps_checkout.php",
"controllers",
"classes"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"unit-tests": [
"@php -d date.timezone=UTC ./vendor/bin/phpunit -c tests/Unit/phpunit.xml"
],
"set-license-header": [
"@php ./vendor/bin/header-stamp --license=vendor/prestashop/header-stamp/assets/afl.txt --exclude=.github,node_modules,vendor,tests,_dev"
],
"php-cs-fixer:check": [
"@php ./vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"php-cs-fixer:fix": [
"@php ./vendor/bin/php-cs-fixer fix"
],
"auto-index": [
"@php ./vendor/bin/autoindex --exclude=_dev,vendor,tests"
]
},
"author": "PrestaShop"
}