-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.38 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
{
"name": "wpdesk/simple-products-export",
"authors": [
{
"name": "Krzysiek",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WPDesk\\SimpleProductsExport\\": "src/Plugin"
},
"classmap": [
"vendor_prefixed"
]
},
"autoload-dev": {
"classmap": [
"tests/unit",
"tests/integration"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.1"
}
},
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"league/csv": "^8.2",
"psr/log": "^1.0.1",
"wpdesk/wp-wpdesk-helper-override": "^1.1.0"
},
"require-dev": {
"10up/wp_mock": "*",
"wpdesk/wp-plugin-flow": "^2",
"phpunit/phpunit": "<7",
"wpdesk/wp-wpdesk-composer": "^2.2",
"wpdesk/wp-codeception": "^1.1.13"
},
"extra": {
"text-domain": "simple-products-export",
"translations-folder": "lang",
"translation-file-headers": {
"Project-Id-Version": "Plugin Template",
"Last-Translator": "Grzegorz Rola <[email protected]>",
"X-Poedit-WPHeader": "simple-products-export.php"
},
"po-files": {
"pl_PL": "pl_PL.po"
}
},
"scripts": {
"test": "echo composer is alive",
"phpcs": "phpcs",
"phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never",
"phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never",
"docs": "apigen generate"
}
}