forked from Getbeans/Beans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 1.98 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
71
72
73
74
75
{
"name": "beans/beans",
"description": "The most innovative theme for WordPress. The real magic is under the hood.",
"type": "wordpress-theme",
"license": "GPL-2.0+",
"homepage": "http://www.getbeans.io/",
"support": {
"issues": "https://github.com/GetBeans/Beans/issues",
"source": "https://github.com/GetBeans/Beans"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Beans\\Framework\\Tests\\Unit\\": "tests/phpunit/unit/",
"Beans\\Framework\\Tests\\Integration\\": "tests/phpunit/integration/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "xwp/wp-dev-lib",
"version": "1.0.1",
"source": {
"url": "https://github.com/xwp/wp-dev-lib.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": "^5.2|^7",
"composer/installers": "^1.4"
},
"require-dev": {
"php": "^5.6|^7",
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "~5.7.9",
"roave/security-advisories": "dev-master",
"sirbrillig/phpcs-variable-analysis": "^2.0",
"squizlabs/php_codesniffer": "^3.3",
"wimg/php-compatibility": "^8.0",
"wp-coding-standards/wpcs": "^1.0.0",
"xwp/wp-dev-lib": "^1.0.1"
},
"config": {
"sort-order": true
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs-src": "\"vendor/bin/phpcs\" --ignore=*/tests/*",
"phpcs-tests": "\"vendor/bin/phpcs\" --runtime-set testVersion 5.6 tests/phpunit/",
"run-phpcs": [
"@phpcs-src",
"@phpcs-tests"
],
"test-unit": "\"vendor/bin/phpunit\" --testsuite unit --color=always",
"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --configuration tests/phpunit/integration/phpunit.xml.dist --color=always",
"run-tests": [
"@test-unit",
"@test-integration"
]
}
}