2020-03-19 16:47:08 +01:00
|
|
|
{
|
2020-10-08 20:03:07 -03:00
|
|
|
"name": "woocommerce/woocommerce-paypal-payments",
|
2020-03-19 16:47:08 +01:00
|
|
|
"type": "wordpress-plugin",
|
|
|
|
"description": "PayPal Commerce Platform for WooCommerce",
|
2024-11-29 15:02:41 +01:00
|
|
|
"license": "GPL-2.0-or-later",
|
2020-03-19 16:47:08 +01:00
|
|
|
"require": {
|
2024-09-03 09:07:12 +03:00
|
|
|
"php": "^7.4 | ^8.0",
|
2021-08-26 16:57:01 +02:00
|
|
|
"ext-json": "*",
|
2020-07-09 16:31:06 +03:00
|
|
|
"psr/log": "^1.1",
|
2021-02-17 12:31:40 +01:00
|
|
|
"ralouphie/getallheaders": "^3.0",
|
2022-11-09 16:01:14 +02:00
|
|
|
"wikimedia/composer-merge-plugin": "^2.0",
|
2022-02-17 18:18:33 +02:00
|
|
|
"wp-oop/wordpress-interface": "^0.1.0-alpha1",
|
2022-02-22 18:21:36 +02:00
|
|
|
"dhii/versions": "^0.1.0-alpha1",
|
2023-12-20 15:56:11 +00:00
|
|
|
"symfony/polyfill-php80": "^1.19"
|
2020-03-19 16:47:08 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-08-25 15:09:16 +03:00
|
|
|
"inpsyde/composer-assets-compiler": "^2.5",
|
2022-11-09 10:11:31 +02:00
|
|
|
"psr/container": "^1.0",
|
2022-11-09 11:20:35 +02:00
|
|
|
"dhii/module-interface": "^0.2 || ^0.3",
|
|
|
|
"container-interop/service-provider": "^0.4.0",
|
|
|
|
"dhii/containers": "^0.1.0-alpha1",
|
2023-12-20 15:56:11 +00:00
|
|
|
"inpsyde/modularity": "^1.7",
|
2020-08-27 11:07:01 +03:00
|
|
|
"woocommerce/woocommerce-sniffs": "^0.1.0",
|
2021-08-18 17:14:44 +03:00
|
|
|
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
|
2021-10-13 11:13:09 +02:00
|
|
|
"brain/monkey": "^2.4",
|
2024-12-09 11:45:38 +01:00
|
|
|
"php-stubs/wordpress-stubs": "^5.0@stable",
|
|
|
|
"php-stubs/woocommerce-stubs": "^8.0@stable",
|
|
|
|
"vimeo/psalm": "^4.0",
|
2025-07-04 22:05:58 +04:00
|
|
|
"vlucas/phpdotenv": "^5",
|
|
|
|
"coenjacobs/mozart": "^0.7.1"
|
2020-03-19 16:47:08 +01:00
|
|
|
},
|
2020-09-01 15:27:18 +03:00
|
|
|
"autoload": {
|
2021-02-17 12:31:40 +01:00
|
|
|
"psr-4": {
|
2022-11-09 10:11:31 +02:00
|
|
|
"WooCommerce\\PayPalCommerce\\": "src",
|
2023-08-15 08:27:59 +01:00
|
|
|
"WooCommerce\\PayPalCommerce\\Common\\": "lib/common/",
|
2022-11-09 10:11:31 +02:00
|
|
|
"WooCommerce\\PayPalCommerce\\Vendor\\": "lib/packages/"
|
2023-03-14 16:40:20 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"api/order-functions.php"
|
|
|
|
]
|
2020-09-01 15:27:18 +03:00
|
|
|
},
|
2020-04-28 15:03:25 +03:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2022-06-15 21:37:10 +03:00
|
|
|
"WooCommerce\\PayPalCommerce\\": "tests/PHPUnit/",
|
2025-03-12 18:14:01 +01:00
|
|
|
"WooCommerce\\PayPalCommerce\\Tests\\Integration\\": "tests/integration/PHPUnit/"
|
2020-04-28 15:03:25 +03:00
|
|
|
}
|
|
|
|
},
|
2020-03-19 16:47:08 +01:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true,
|
|
|
|
"scripts": {
|
|
|
|
"ci": [
|
|
|
|
"vendor/bin/phpcs"
|
2020-04-28 15:03:25 +03:00
|
|
|
],
|
|
|
|
"unit": "./vendor/bin/phpunit --coverage-html build/coverage-report"
|
2020-04-02 08:38:00 +03:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"installer-types": [
|
|
|
|
"inpsyde-module"
|
|
|
|
],
|
|
|
|
"installer-paths": {
|
|
|
|
"modules/{$name}/": [
|
|
|
|
"type:inpsyde-module"
|
|
|
|
]
|
|
|
|
},
|
2021-02-17 12:31:40 +01:00
|
|
|
"merge-plugin": {
|
|
|
|
"include": [
|
|
|
|
"modules/*/composer.json"
|
|
|
|
]
|
|
|
|
},
|
2020-04-02 08:38:00 +03:00
|
|
|
"hooks": {
|
|
|
|
"pre-commit": [
|
|
|
|
"vendor/bin/phpcbf"
|
|
|
|
]
|
2022-11-09 10:11:31 +02:00
|
|
|
},
|
2023-08-25 15:09:16 +03:00
|
|
|
"composer-asset-compiler": {
|
2024-08-28 11:41:28 +03:00
|
|
|
"auto-run": false,
|
2023-08-25 15:09:16 +03:00
|
|
|
"packages": {
|
|
|
|
"inpsyde/*": {
|
|
|
|
"dependencies": "install",
|
|
|
|
"script": "build"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2022-11-09 10:11:31 +02:00
|
|
|
"mozart": {
|
|
|
|
"dep_namespace": "WooCommerce\\PayPalCommerce\\Vendor\\",
|
|
|
|
"dep_directory": "/lib/packages/",
|
|
|
|
"classmap_directory": "/lib/classes/",
|
|
|
|
"classmap_prefix": "PCPP_",
|
|
|
|
"packages": [
|
|
|
|
"psr/container",
|
|
|
|
"dhii/containers",
|
2023-11-23 17:43:56 +00:00
|
|
|
"dhii/module-interface",
|
|
|
|
"inpsyde/modularity"
|
2022-11-09 10:11:31 +02:00
|
|
|
],
|
|
|
|
"delete_vendor_directories": true
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
2022-11-09 16:00:42 +02:00
|
|
|
},
|
|
|
|
"config": {
|
2024-08-23 16:01:28 +02:00
|
|
|
"platform": {
|
2024-09-04 16:05:48 +02:00
|
|
|
"php": "7.4"
|
2024-08-23 16:01:28 +02:00
|
|
|
},
|
2022-11-09 16:00:42 +02:00
|
|
|
"allow-plugins": {
|
2023-08-25 15:09:16 +03:00
|
|
|
"inpsyde/composer-assets-compiler": true,
|
2022-11-09 16:00:42 +02:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
|
|
"wikimedia/composer-merge-plugin": true
|
|
|
|
}
|
2020-03-19 16:47:08 +01:00
|
|
|
}
|
|
|
|
}
|