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",
|
|
|
|
"license": "GPL-2.0",
|
|
|
|
"require": {
|
2022-11-09 16:00:15 +02:00
|
|
|
"php": "^7.2 | ^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",
|
|
|
|
"symfony/polyfill-php80": "^1.19"
|
2020-03-19 16:47:08 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
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",
|
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",
|
|
|
|
"php-stubs/wordpress-stubs": "^5.0@stable",
|
|
|
|
"php-stubs/woocommerce-stubs": "^5.0@stable",
|
2022-06-15 21:37:10 +03:00
|
|
|
"vimeo/psalm": "^4.0",
|
|
|
|
"vlucas/phpdotenv": "^5"
|
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",
|
|
|
|
"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/",
|
|
|
|
"WooCommerce\\PayPalCommerce\\Tests\\E2e\\": "tests/e2e/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
|
|
|
},
|
|
|
|
"mozart": {
|
|
|
|
"dep_namespace": "WooCommerce\\PayPalCommerce\\Vendor\\",
|
|
|
|
"dep_directory": "/lib/packages/",
|
|
|
|
"classmap_directory": "/lib/classes/",
|
|
|
|
"classmap_prefix": "PCPP_",
|
|
|
|
"packages": [
|
|
|
|
"psr/container",
|
|
|
|
"dhii/containers",
|
|
|
|
"dhii/module-interface"
|
|
|
|
],
|
|
|
|
"delete_vendor_directories": true
|
2020-04-02 08:38:00 +03:00
|
|
|
}
|
2022-11-09 16:00:42 +02:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
|
|
"wikimedia/composer-merge-plugin": true
|
|
|
|
}
|
2020-03-19 16:47:08 +01:00
|
|
|
}
|
|
|
|
}
|