-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·66 lines (66 loc) · 2.03 KB
/
composer.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.03 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
{
"name": "buckaroo/woocommerce",
"description": "Buckaroo Payment Gateway for WooCommerce",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Buckaroo",
"email": "support@buckaroo.nl",
"homepage": "https://www.buckaroo.nl",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"buckaroo/sdk": "^1.21"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.9",
"coenjacobs/mozart": "^0.7.1",
"phpunit/phpunit": "^9.5",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"Buckaroo\\Woocommerce\\": "src/",
"BuckarooDeps\\": "vendor_buckaroo/"
}
},
"extra": {
"mozart": {
"dep_namespace": "BuckarooDeps\\",
"dep_directory": "/vendor_buckaroo/",
"classmap_directory": "/vendor_buckaroo/Classmap/",
"classmap_prefix": "BuckarooDeps_",
"packages": [
"buckaroo/sdk"
],
"delete_vendor_directories": true
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml src templates",
"phpcbf": "phpcbf --standard=phpcs.xml src templates",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"test:filter": "phpunit --filter",
"prettier:blocks": "cd assets/js && npx prettier --write . --config ./.prettierrc.js",
"prettier:legacy": "cd assets/js && npx prettier --write ../../library --config ./.prettierrc.js",
"post-install-cmd": [
"vendor/bin/mozart compose",
"composer dump-autoload -o"
],
"post-update-cmd": [
"vendor/bin/mozart compose",
"composer dump-autoload -o"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}