-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.48 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
{
"name": "uconn/a11y-menu",
"description": "A package to generate accessible main navigation menus. It includes: a js script for the browser as an npm package, WordPress walker for theme development, and WordPress plugin.",
"type": "library",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Adam Berkowitz",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://packages.ucdev.net/"
}
],
"extra": {
"installer-paths": {
"./www/content/plugins/{$name}": [
"type:wordpress-plugin"
],
"./www/content/themes/{$name}": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "./www/wordpress"
},
"config": {
"secure-http": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"A11y\\": "src/A11y/"
}
},
"autoload-dev": {
"psr-4": {
"A11yMenu\\Tests\\": [
"tests/"
]
}
},
"require-dev": {
"johnpbloch/wordpress": "@stable",
"wpackagist-plugin/query-monitor": "dev-trunk",
"wpackagist-plugin/wordpress-importer": "^0.7",
"wpackagist-theme/twentytwenty": "^1.5"
}
}