-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1012 Bytes
/
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
{
"name": "codeinwp/woocommerce-product-addon",
"description": "PPOM for WooCommerce",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Themeisle",
"email": "[email protected]",
"homepage": "https://themeisle.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform-check": false,
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-disable": "true"
},
"require": {
"codeinwp/themeisle-sdk": "^3.2"
},
"autoload": {
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"yoast/phpunit-polyfills": "^2.0",
"codeinwp/phpcs-ruleset": "dev-main"
}
}