-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.62 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.62 KB
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
{
"name": "knowthecode/lab-data-store",
"type": "wordpress-plugin",
"description": "Data Store for centralized, globally available, persistent data, state, and configuration parameters.",
"homepage": "https://github.com/KnowTheCode/lab-data-store",
"license": "GPL-3.0-or-later",
"require": {
"php": "^5.6 || ^7",
"composer/installers": "^1"
},
"require-dev": {
"php": "^5.6 || ^7",
"brain/monkey": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^1"
},
"config": {
"sort-order": true
},
"autoload-dev": {
"psr-4": {
"KnowTheCode\\Data_Store\\Tests\\Unit\\": "tests/phpunit/unit",
"KnowTheCode\\Data_Store\\Tests\\Integration\\": "tests/phpunit/integration"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"run-phpcs-src": "\"vendor/bin/phpcs\" --ignore=*/tests/*",
"run-phpcs-tests": "\"vendor/bin/phpcs\" --runtime-set testVersion 5.6 tests/phpunit/",
"run-phpcs": [
"@run-phpcs-src",
"@run-phpcs-tests"
],
"run-unit-tests": "\"vendor/bin/phpunit\" --testsuite unit --configuration tests/phpunit/unit/phpunit.xml.dist --color=always",
"run-integration-tests": "\"vendor/bin/phpunit\" --testsuite integration --configuration tests/phpunit/integration/phpunit.xml.dist --color=always",
"run-tests": [
"@run-unit-tests",
"@run-integration-tests"
]
}
}