-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathcomposer.json
More file actions
103 lines (103 loc) · 4.97 KB
/
Copy pathcomposer.json
File metadata and controls
103 lines (103 loc) · 4.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "woocommerce/woocommerce-gateway-stripe",
"description": "Take credit card payments on your store using Stripe.",
"homepage": "https://woocommerce.com/products/woocommerce-gateway-stripe/",
"license": "GPL-2.0-or-later",
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require-dev": {
"composer/installers": "1.9.0",
"php-stubs/woocommerce-stubs": "^10.4",
"php-stubs/wordpress-stubs": "^6.9",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "9.6.34",
"szepeviktor/phpstan-wordpress": "^2.0",
"woocommerce/woocommerce-sniffs": "^2.0.0",
"wp-cli/wp-cli-bundle": "^2.12",
"yoast/phpunit-polyfills": "^2.0",
"brianium/paratest": "^6.0",
"nikic/php-parser": "^5.7"
},
"autoload": {
"classmap": [
"includes/ajax-handlers/",
"includes/agentic-commerce/",
"includes/abilities/",
"includes/admin/class-wc-stripe-rest-base-controller.php",
"includes/admin/class-wc-rest-stripe-agentic-commerce-controller.php",
"includes/admin/class-wc-rest-stripe-exit-survey-controller.php",
"includes/admin/class-wc-stripe-plugins-page-controller.php",
"includes/admin/class-wc-stripe-rest-upe-flag-toggle-controller.php",
"includes/admin/class-wc-stripe-upe-compatibility-controller.php",
"includes/class-wc-stripe-action-scheduler-service.php",
"includes/class-wc-stripe-api-outage-status.php",
"includes/class-wc-stripe-checkout-session-lifecycle.php",
"includes/class-wc-stripe-checkout-session-manager.php",
"includes/class-wc-stripe-co-branded-cc-compatibility.php",
"includes/class-wc-stripe-exception.php",
"includes/class-wc-stripe-hook-manager.php",
"includes/class-wc-stripe-payment-cancelled-exception.php",
"includes/class-wc-stripe-upe-compatibility.php",
"includes/class-wc-stripe-update-manager.php",
"includes/compat/class-wc-stripe-email-failed-authentication.php",
"includes/compat/class-wc-stripe-email-failed-preorder-authentication.php",
"includes/compat/class-wc-stripe-email-failed-renewal-authentication.php",
"includes/compat/class-wc-stripe-woo-compat-utils.php",
"includes/constants/",
"includes/migrations/class-allowed-payment-request-button-types-update.php",
"includes/migrations/class-migrate-payment-request-data-to-express-checkout-data.php",
"includes/migrations/class-sepa-tokens-for-other-methods-settings-update.php",
"includes/migrations/class-wc-stripe-express-checkout-add-change-payment-method-location-update.php",
"includes/migrations/class-wc-stripe-migrate-link-button-locations.php",
"includes/migrations/class-wc-stripe-ocs-ap-default-on-update.php",
"includes/migrations/class-wc-stripe-restore-adaptive-pricing-after-amount-mismatch-update.php",
"includes/notes/class-wc-stripe-whats-new-note.php",
"includes/payment-methods/class-wc-stripe-express-checkout-custom-fields.php",
"includes/payment-methods/class-wc-stripe-ocs-payment-gateway.php",
"includes/payment-methods/class-wc-stripe-payment-request-compat.php",
"includes/payment-tokens/class-wc-stripe-ach-payment-token.php",
"includes/payment-tokens/class-wc-stripe-acss-payment-token.php",
"includes/payment-tokens/class-wc-stripe-amazon-pay-payment-token.php",
"includes/payment-tokens/class-wc-stripe-bacs-payment-token.php",
"includes/payment-tokens/class-wc-stripe-becs-debit-payment-token.php",
"includes/payment-tokens/class-wc-stripe-cash-app-payment-token.php",
"includes/payment-tokens/class-wc-stripe-cc-payment-token.php",
"includes/payment-tokens/class-wc-stripe-klarna-payment-token.php",
"includes/payment-tokens/class-wc-stripe-link-payment-token.php",
"includes/payment-tokens/class-wc-stripe-sepa-payment-token.php",
"includes/payment-tokens/interface-wc-stripe-payment-method-comparison.php",
"includes/payment-tokens/trait-wc-stripe-fingerprint.php"
]
},
"autoload-dev": {
"classmap": [
"tests/phpunit/"
],
"exclude-from-classmap": [
"/tests/phpunit/helpers/",
"/tests/phpunit/stubs/"
]
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit=2G"
],
"phpstan:baseline": [
"vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit=2G --generate-baseline=phpstan-baseline.neon"
]
},
"extra": {
"installer-disable": true,
"scripts-description": {
"phpstan": "Run PHPStan static analysis on the Stripe extension",
"phpstan:baseline": "Generate a PHPStan baseline file to ignore existing errors"
}
}
}