forked from mollie/WooCommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.03 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
{
"name": "mollie/mollie-woocommerce",
"description": "Mollie Payments for WooCommerce",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"authors": [
{
"name": "Mollie B.V.",
"email": "[email protected]"
},
{
"name": "Inpsyde Gmbh",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-intl": "*",
"ext-json": "*",
"mollie/mollie-api-php": "^v2.40",
"psr/log":"^1.1.4",
"inpsyde/modularity": "^1.3.0",
"psr/container": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"brain/monkey": "^2.3",
"ptrofimov/xpmock": "^1",
"johnpbloch/wordpress-core": "^5.0",
"fzaninotto/faker": "^1.9@dev",
"inpsyde/php-coding-standards": "^1.0.0",
"php-stubs/wordpress-stubs": "^5.0@stable",
"php-stubs/woocommerce-stubs": "^5.0@stable",
"vimeo/psalm": "^4.8 || ^5.13.0"
},
"autoload": {
"psr-4": {
"Mollie\\WooCommerce\\": "src/",
"Inpsyde\\EnvironmentChecker\\": "pluginEnvironmentChecker"
}
},
"autoload-dev": {
"psr-4": {
"Mollie\\WooCommerceTests\\": "tests/php",
"Mollie\\WooCommerceTests\\Unit\\": "tests/php/Unit",
"Mollie\\WooCommerceTests\\Functional\\": "tests/php/Functional"
}
},
"scripts": {
"check-coding-standards": "vendor/bin/phpcs --parallel=8 -s",
"fix-coding-standards": "vendor/bin/phpcbf",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --coverage-text",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"check-psalm": "vendor/bin/psalm",
"check-psalm:no-cache": "vendor/bin/psalm --no-cache"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"extra": {
"installer-disable": true
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"automattic/jetpack-autoloader": false,
"composer/installers": true
}
}
}