-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.01 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
{
"name": "pluginever/wc-donation-manager",
"description": "A powerful and user-friendly WordPress plugin designed to seamlessly integrate donation functionality into the WooCommerce platform. This plugin is the ultimate solution for effortlessly managing and receiving donations for a charitable organization, a non-profit, or a business looking to support a cause.",
"homepage": "https://pluginever.com/plugins/wc-donation-manager/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4"
},
"require-dev": {
"byteever/byteever-sniffs": "dev-master",
"byteever/bytekit-plugin": "dev-master",
"byteever/bytekit-settings": "dev-master",
"coenjacobs/mozart": "^0.7.1"
},
"autoload": {
"psr-4": {
"WooCommerceDonationManager\\": ["includes/", "lib/"]
}
},
"autoload-dev": {},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "github",
"url": "[email protected]:byteever/bytekit-plugin.git"
},
{
"type": "github",
"url": "[email protected]:byteever/bytekit-settings.git"
}
],
"scripts": {
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml -s -v",
"phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml -v"
},
"extra": {
"mozart": {
"dep_namespace": "WooCommerceDonationManager\\",
"dep_directory": "/lib/",
"classmap_directory": "/lib/classes/",
"classmap_prefix": "WooCommerceDonationManager_",
"delete_vendor_directories": true,
"packages": [
"byteever/bytekit-plugin",
"byteever/bytekit-settings"
]
}
}
}