-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.24 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
76
77
78
79
80
81
{
"name" : "devaloka/widget",
"description" : "Interface, Trait and class(es) for WordPress Widget",
"type" : "library",
"keywords" : [
"wordpress",
"sidebar",
"widget"
],
"homepage" : "https://github.com/devaloka/widget",
"license" : [
"MIT",
"GPL-2.0",
"GPL-3.0"
],
"minimum-stability": "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Whizark",
"email" : "[email protected]",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "[email protected]",
"issues": "https://github.com/devaloka/devaloka/issues",
"wiki" : "https://github.com/devaloka/devaloka/wiki",
"source": "https://github.com/devaloka/widget"
},
"require" : {
"php": ">=5.6.0"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^2.9.1",
"phpunit/phpunit" : "^5.7",
"brain/monkey" : "~2.0.2",
"satooshi/php-coveralls" : "^1.0.1"
},
"autoload" : {
"psr-4" : {
"Devaloka\\Component\\Widget\\": ""
},
"exclude-from-classmap": [
"**/Tests/"
]
},
"scripts" : {
"test" : [
"vendor/bin/phpcs --colors",
"vendor/bin/phpunit --colors=always"
],
"test-travis": [
"vendor/bin/phpcs --colors",
"vendor/bin/phpunit --colors=always --verbose --coverage-clover build/logs/clover.xml"
]
},
"archive" : {
"exclude": [
".gitignore",
".gitattributes",
".mailmap",
".editorconfig",
"package.json",
"npm-shrinkwrap.json",
".remarkrc",
"composer.json",
"phpcs.xml.dist",
"phpunit.xml.dist",
".coveralls.yml",
"Tests/",
".travis.yml"
]
},
"extra" : {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
}
}