forked from GPCsolutions/doliwoo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.4 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
{
"name": "gpcsolutions/doliwoo",
"description": "Integrate Dolibarr with a WooCommerce shop.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"dolibarr",
"woocommerce",
"ecommerce",
"erp",
"integration"
],
"homepage": "https://gpcsolutions.github.io/doliwoo",
"license": "GPL-3.0+",
"authors": [
{
"name": "GPC.solutions",
"email": "contact@gpcsolutions.fr",
"homepage": "https://gpcsolutions.fr"
}
],
"support": {
"issues": "https://github.com/GPCsolutions/doliwoo/issues",
"wiki": "https://github.com/GPCsolutions/doliwoo/wiki",
"source": "https://github.com/GPCsolutions/doliwoo"
},
"require": {
"composer/installers": ">=1.0.6",
"php": ">=5.3.0",
"ext-openssl": "*",
"johnpbloch/wordpress": ">=3.7.1",
"wpackagist-plugin/woocommerce": ">=2.0.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "=0.9.0"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}": [
"wpackagist-plugin/woocommerce"
]
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"post-update-cmd": [
"vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
]
}
}