-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
123 lines (123 loc) · 3.84 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
{
"name": "phplist/core",
"description": "The core module of phpList, the world's most popular open source newsletter manager",
"type": "phplist-module",
"keywords": [
"phplist",
"email",
"newsletter",
"manager"
],
"homepage": "https://www.phplist.com/",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Xheni Myrtaj",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Oliver Klee",
"email": "[email protected]",
"role": "Former developer"
},
{
"name": "Sam Tuke",
"email": "[email protected]",
"role": "Former developer"
}
],
"support": {
"issues": "https://github.com/phpList/core/issues",
"forum": "https://discuss.phplist.org/",
"wiki": "https://github.com/phpList/core/wiki",
"source": "https://github.com/phpList/core"
},
"require": {
"php": "^8.1",
"doctrine/orm": "^2.11",
"doctrine/common": "^3.3",
"doctrine/doctrine-bundle": "^2.7",
"symfony/symfony": "^4.4|^5.4",
"symfony/monolog-bundle": "^3.8|^4.0",
"symfony/dependency-injection": "^4.4|^5.4",
"symfony/config": "^4.4|^5.4",
"symfony/yaml": "^4.4|^5.4",
"doctrine/annotations": "*",
"symfony/error-handler": "*",
"symfony/serializer": "*",
"monolog/monolog": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"guzzlehttp/guzzle": "^6.3.0",
"squizlabs/php_codesniffer": "^3.2.0",
"phpstan/phpstan": "^0.7.0|0.12.57",
"nette/caching": "^2.5.0|^3.0.0",
"nikic/php-parser": "^4.19.1",
"phpmd/phpmd": "^2.6.0",
"composer/composer": "^1.6.0",
"doctrine/instantiator": "^1.0.5",
"doctrine/doctrine-fixtures-bundle": "^3.6"
},
"suggest": {
"phplist/web-frontend": "5.0.x-dev",
"phplist/rest-api": "5.0.x-dev"
},
"autoload": {
"psr-4": {
"PhpList\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpList\\Core\\Tests\\": "tests/"
}
},
"scripts": {
"list-modules": [
"PhpList\\Core\\Composer\\ScriptHandler::listModules"
],
"update-configuration": [
"PhpList\\Core\\Composer\\ScriptHandler::createGeneralConfiguration",
"PhpList\\Core\\Composer\\ScriptHandler::createBundleConfiguration",
"PhpList\\Core\\Composer\\ScriptHandler::createRoutesConfiguration",
"PhpList\\Core\\Composer\\ScriptHandler::createParametersConfiguration",
"php bin/console cache:clear",
"php bin/console cache:warmup"
],
"post-install-cmd": [
"@update-configuration"
],
"post-update-cmd": [
"@update-configuration"
],
"run-php-documentor": [
"phpDocumentor -d 'src,tests'"
]
},
"extra": {
"branch-alias": {
"dev-ISSUE-337": "v5.0.x-dev"
},
"symfony-app-dir": "",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-tests-dir": "tests",
"phplist/core": {
"bundles": [
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle",
"Symfony\\Bundle\\MonologBundle\\MonologBundle",
"Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle",
"PhpList\\Core\\EmptyStartPageBundle\\EmptyStartPageBundle"
],
"routes": {
"homepage": {
"resource": "@EmptyStartPageBundle/Controller/",
"type": "annotation"
}
}
}
}
}