-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
58 lines (58 loc) · 1.52 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
{
"name": "roundcube/plugin-installer",
"description": "A composer-installer for Roundcube plugins and skins.",
"license": "GPL-3.0-or-later",
"type": "composer-plugin",
"authors": [
{
"name": "Thomas Bruederli",
"email": "[email protected]"
},
{
"name": "Till Klampaeckel",
"email": "[email protected]"
},
{
"name": "Philip Weir",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3 <=8.4",
"composer-plugin-api": "^2.1",
"roundcube/roundcubemail": "*"
},
"require-dev": {
"composer/composer": "^2.1",
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.3"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/roundcube/roundcubemail.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Roundcube\\Composer\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"extra": {
"class": [
"Roundcube\\Composer\\RoundcubeInstaller"
]
}
}