forked from tatumio/wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 1.85 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
82
83
84
85
86
87
88
89
90
{
"description": "",
"license": "GPL-3.0-or-later",
"config": {
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"authors": [
{
"name": "Hathoriel"
}
],
"extra": {
"metasyntactical/composer-plugin-license-check": {
"whitelist": [
"MIT",
"ISC",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD",
"Apache-2.0",
"Apache2",
"Artistic-2.0",
"WTFPL",
"CC-0",
"CC0-1.0",
"MPL-2.0",
"ZLib",
"Unlicense",
"GPL-2.0",
"GPL-2.0-or-later",
"GPL-3",
"GPL-3.0-or-later",
"LGPL-3.0-or-later"
],
"blacklist": [
"*"
],
"packages": [
]
}
},
"require": {
"kornrunner/keccak": "1.0.2",
"tatum/utils": "@dev"
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"antecedent/patchwork": "^2.1.12",
"comcast/php-legal-licenses": "^1.1.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"metasyntactical/composer-plugin-license-check": "^0.5.0",
"php-stubs/wordpress-stubs": "^5.3.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpdocumentor/phpdocumentor": "3.1.2",
"phpunit/phpunit": "^7",
"rregeer/phpunit-coverage-check": "^0.3.1",
"slevomat/coding-standard": "^6.0@dev",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.2"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Hathoriel\\Tatum\\": [
"inc/",
"src/inc/"
]
}
},
"autoload-dev": {
"psr-4": {
"Hathoriel\\Tatum\\Test\\": [
"test/phpunit/"
]
}
},
"repositories": [
{
"type": "path",
"url": "../../packages/*",
"options": {
"symlink": true
}
}
]
}