forked from XedinUnknown/woocommerce-paypal-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.39 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
{
"name": "woocommerce/woocommerce-paypal-payments",
"type": "wordpress-plugin",
"description": "PayPal Commerce Platform for WooCommerce",
"license": "GPL-2.0",
"require": {
"dhii/module-interface": "0.1",
"psr/container": "^1.0",
"container-interop/service-provider": "^0.4.0",
"dhii/containers": "v0.1.0-alpha1",
"dhii/wp-containers": "v0.1.0-alpha1",
"psr/log": "^1.1",
"ext-json": "*",
"ralouphie/getallheaders": "^3.0"
},
"require-dev": {
"woocommerce/woocommerce-sniffs": "^0.1.0",
"phpunit/phpunit": "^9.1",
"brain/monkey": "^2.4"
},
"autoload": {
"classmap": [
"modules/",
"src/"
]
},
"autoload-dev": {
"psr-4": {
"WooCommerce\\PayPalCommerce\\": "tests/PHPUnit/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"ci": [
"vendor/bin/phpcs"
],
"unit": "./vendor/bin/phpunit --coverage-html build/coverage-report"
},
"extra": {
"installer-types": [
"inpsyde-module"
],
"installer-paths": {
"modules/{$name}/": [
"type:inpsyde-module"
]
},
"hooks": {
"pre-commit": [
"vendor/bin/phpcbf"
]
}
}
}