-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
91 lines (91 loc) · 3.92 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
{
"name": "tec-performance-analysis/website",
"license": "GPL-2.0-or-later",
"description": "The TEC Performance Analysis Website",
"homepage": "https://performance.theeventscalendar.com/",
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/tribe-common"
},
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/the-events-calendar"
},
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/event-tickets-plus"
},
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/event-tickets"
},
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/events-pro"
},
{
"type": "vcs",
"url": "https://github.com/the-events-calendar/plugin-analysis"
}
],
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"composer/installers": "*",
"johnpbloch/wordpress-core": "~6.4",
"johnpbloch/wordpress-core-installer": "~2.0",
"the-events-calendar/the-events-calendar": "dev-master",
"the-events-calendar/events-pro": "dev-master",
"the-events-calendar/event-tickets": "dev-master",
"the-events-calendar/event-tickets-plus": "dev-master",
"the-events-calendar/plugin-analysis": "dev-main",
"the-events-calendar/tribe-common": "dev-master",
"stellarwp/coding-standards": "^2.0"
},
"require-dev": {
"kjohnson/since-unreleased": "^1.0"
},
"extra": {
"enable-patching": true,
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/mu-plugins/{$name}": [
"type:wordpress-muplugin"
],
"wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"pre-autoload-dump": [
"cd wp-content/plugins/the-events-calendar && composer i --no-dev && git submodule update --init",
"cd wp-content/plugins/the-events-calendar/common && composer i --no-dev && git submodule update --init\n",
"npm ci --prefix wp-content/plugins/the-events-calendar/ && npm run build --prefix wp-content/plugins/the-events-calendar/\n",
"npm ci --prefix wp-content/plugins/the-events-calendar/common && npm run build --prefix wp-content/plugins/the-events-calendar/common\n",
"cd wp-content/plugins/events-pro && composer i --no-dev && git submodule update --init\n",
"npm ci --prefix wp-content/plugins/events-pro && npm run build --prefix wp-content/plugins/events-pro\n",
"cd wp-content/plugins/event-tickets && composer i --no-dev && git submodule update --init\n",
"cd wp-content/plugins/event-tickets/common && composer i --no-dev && git submodule update --init\n",
"npm ci --prefix wp-content/plugins/event-tickets && npm run build --prefix wp-content/plugins/event-tickets\n",
"npm ci --prefix wp-content/plugins/event-tickets/common && npm run build --prefix wp-content/plugins/event-tickets/common\n",
"cd wp-content/plugins/event-tickets-plus && composer i --no-dev && git submodule update --init",
"npm ci --prefix wp-content/plugins/event-tickets-plus && npm run build --prefix wp-content/plugins/event-tickets-plus\n",
"cd wp-content/plugins/plugin-analysis && composer i\n"
]
}
}