-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
92 lines (92 loc) · 2.29 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
91
92
{
"name": "wporg/pattern-directory",
"description": "",
"homepage": "https://wordpress.org/patterns",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/WordPress/pattern-directory/issues"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"extra": {
"installer-paths": {
"public_html/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public_html/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"public_html/wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
},
{
"type": "package",
"package": [
{
"name": "wordpress-meta/wporg",
"type": "wordpress-theme",
"version": "1",
"source": {
"type": "svn",
"url": "https://meta.svn.wordpress.org/sites/",
"reference": "trunk/wordpress.org/public_html/wp-content/themes/pub/wporg/"
}
},
{
"name": "wordpress-meta/pub",
"type": "wordpress-muplugin",
"version": "1",
"source": {
"type": "svn",
"url": "https://meta.svn.wordpress.org/sites/",
"reference": "trunk/wordpress.org/public_html/wp-content/mu-plugins/pub/"
}
}
]
},
{
"type": "vcs",
"url": "[email protected]:WordPress/wporg-mu-plugins.git"
},
{
"type": "vcs",
"url": "[email protected]:WordPress/wporg-parent-2021.git"
},
{
"type": "vcs",
"url": "[email protected]:WordPress/wporg-internal-notes.git"
}
],
"require": {
"composer/installers": "~1.0",
"wpackagist-plugin/gutenberg": "*",
"wpackagist-plugin/stream": "*",
"wpackagist-plugin/wordpress-importer": "*",
"wordpress-meta/wporg": "1",
"wordpress-meta/pub": "1",
"wporg/wporg-internal-notes": "dev-build",
"wporg/wporg-mu-plugins": "dev-build"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^9.5",
"rmccue/requests": "^1.8.1",
"wp-coding-standards/wpcs": "2.*",
"wp-phpunit/wp-phpunit": "~6.0",
"wporg/wporg-parent-2021": "dev-build",
"yoast/phpunit-polyfills": "^1.1"
},
"scripts": {
"format": "phpcbf -p",
"lint": "phpcs"
}
}