-
-
Notifications
You must be signed in to change notification settings - Fork 269
/
composer.json
151 lines (151 loc) · 4.9 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "phplist/phplist3",
"description": "The world's most popular Open Source Newsletter Manager",
"keywords": [
"phplist",
"email",
"newsletter",
"manager"
],
"homepage": "https://www.phpList.org/",
"type": "project",
"license": "GNU Affero General Public License version 3.0 or later (AGPLv3+)",
"support": {
"issues": "https://github.com/phpList/phpList3/issues",
"forum": "https://discuss.phplist.org/",
"wiki": "http://resources.phplist.com/",
"source": "https://github.com/phpList/phpList3"
},
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.org"
},
{
"type": "vcs",
"url": "https://github.com/phpList/phplist-ui-bootlist"
},
{
"type": "vcs",
"url": "https://github.com/phpList/phplist-lan-help"
},
{
"type": "vcs",
"url": "https://github.com/phpList/phplist-lan-info"
},
{
"type": "vcs",
"url": "https://github.com/phpList/phplist-lan-texts"
},
{
"type": "vcs",
"url": "https://github.com/phpList/updater"
},
{
"type": "vcs",
"url": "https://github.com/phpList/phplist-plugin-invite.git"
},
{
"type": "vcs",
"url": "https://github.com/bramley/phplist-plugin-common.git"
},
{
"type": "vcs",
"url": "https://github.com/bramley/phplist-plugin-captcha.git"
},
{
"type": "vcs",
"url": "https://github.com/bramley/phplist-plugin-ckeditor.git"
},
{
"type": "vcs",
"url": "https://github.com/bramley/phplist-plugin-segment.git"
},
{
"type": "vcs",
"url": "https://github.com/michield/phplist-plugin-campaignslicer.git"
},
{
"type": "vcs",
"url": "https://github.com/michield/phplist-plugin-dateplaceholder.git"
},
{
"type": "vcs",
"url": "https://github.com/michield/phplist-plugin-disposablemailblock.git"
},
{
"type": "vcs",
"url": "https://github.com/michield/phplist-plugin-domainthrottlemap.git"
},
{
"type": "vcs",
"url": "https://github.com/michield/phplist-plugin-embedremoteimages.git"
},
{
"type": "vcs",
"url": "https://github.com/phplist/phplist-plugin-subjectLinePlaceholdersPlugin.git"
},
{
"type": "vcs",
"url": "https://github.com/bramley/phplist-plugin-updater.git"
}
],
"extra": {
"custom-installer": {
"vendor/{$vendor}/{$name}/": ["type:library"],
"public_html/lists/admin/ui/{$name}": ["phplist/phplist-ui-bootlist"],
"public_html/lists/admin/help": ["phplist/phplist-lan-help"],
"public_html/lists/admin/info": ["phplist/phplist-lan-info"],
"public_html/lists/texts": ["phplist/phplist-lan-texts"],
"public_html/lists/updater": ["phplist/updater"]
}
},
"scripts": {
"post-install-cmd": [
"php -r \"system('scripts/install-plugins.sh vendor public_html/lists/admin/plugins/'); \""
],
"post-update-cmd": [
"php -r \"system('scripts/install-plugins.sh vendor public_html/lists/admin/plugins/'); \""
]
},
"require": {
"php": ">=7.3",
"davidbarratt/custom-installer": "@stable",
"phplist/phplist-ui-bootlist": "@stable",
"phplist/phplist-lan-help": "@stable",
"phplist/phplist-lan-info": "@stable",
"phplist/phplist-lan-texts": "@stable",
"phplist/updater": "@stable",
"phplist/phplist-plugin-invite": "dev-master",
"michield/phplist-plugin-campaignslicer": "dev-master",
"michield/phplist-plugin-dateplaceholder": "dev-master",
"michield/phplist-plugin-disposablemailblock": "dev-master",
"michield/phplist-plugin-domainthrottlemap": "dev-master",
"michield/phplist-plugin-embedremoteimages": "dev-master",
"bramley/phplist-plugin-common": "dev-master",
"bramley/phplist-plugin-captcha": "dev-master",
"bramley/phplist-plugin-ckeditor": "dev-master",
"bramley/phplist-plugin-segment": "dev-master",
"phplist/phplist-plugin-subjectlineplaceholders": "dev-master",
"bramley/phplist-plugin-updater": "dev-main"
},
"require-dev": {
"behat/behat": "@stable",
"behat/mink-selenium2-driver": "@stable",
"friends-of-behat/mink": "@stable",
"friends-of-behat/mink-extension": "^2.7",
"symfony/config": "@stable",
"se/selenium-server-standalone": "^2.52",
"bex/behat-screenshot": "^1.2",
"zbateson/mail-mime-parser": "^1.1",
"genesis/behat-fail-aid": "^3.7"
},
"prefer-stable": true,
"config": {
"bin-dir": "vendor/bin/",
"allow-plugins": {
"davidbarratt/custom-installer": true
}
}
}