-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 1.69 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
68
69
70
{
"name": "screenfeed/autowpdb",
"description": "Create and use custom database tables in WordPress.",
"keywords": [
"wordpress",
"database"
],
"homepage": "https://github.com/Screenfeed/autowpdb",
"license": "GPL-2.0",
"authors": [
{
"name": "Grégory Viguier",
"role": "Developer"
}
],
"type": "library",
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/Screenfeed/autowpdb/issues",
"source": "https://github.com/Screenfeed/autowpdb"
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"php": "^7.1",
"automattic/phpcs-neutron-standard": "*",
"brain/monkey": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"phpmetrics/phpmetrics": "*",
"phpunit/phpunit": "^7",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "*",
"szepeviktor/phpstan-wordpress": "*",
"wp-coding-standards/wpcs": "*"
},
"autoload": {
"psr-4": {
"Screenfeed\\AutoWPDB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Screenfeed\\AutoWPDB\\Tests\\": "Tests/"
}
},
"scripts": {
"cs": "phpcs",
"stan": "\"vendor/bin/phpstan\" analyze --memory-limit=200M",
"metrics": "phpmetrics --config=phpmetrics.json",
"test-unit":"\"vendor/bin/phpunit\" --testsuite=unit --log-junit=report/junit.xml --colors=always --configuration=Tests/Unit/phpunit.xml.dist",
"test-integration": "\"vendor/bin/phpunit\" --testsuite=integration --colors=always --configuration=Tests/Integration/phpunit.xml.dist",
"run-lints": [
"@cs",
"@stan",
"@metrics"
],
"run-tests": [
"@test-unit",
"@test-integration"
],
"run-all": [
"@run-lints",
"@run-tests"
]
}
}