-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
executable file
·95 lines (95 loc) · 2.96 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
{
"name": "phplist/base-distribution",
"description": "A distribution of phpList, the world's most popular open source newsletter manager",
"type": "project",
"keywords": [
"phplist",
"email",
"newsletter",
"manager"
],
"homepage": "https://www.phplist.com/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Xheni Myrtaj",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Oliver Klee",
"email": "[email protected]",
"role": "Former developer"
}
],
"support": {
"issues": "https://github.com/phpList/base-distribution/issues",
"forum": "https://discuss.phplist.org/",
"source": "https://github.com/phpList/base-distribution"
},
"require": {
"php": "^8.1",
"phplist/core": "v5.0.0-alpha3",
"phplist/rest-api": "v5.0.0-alpha2",
"phplist/web-frontend": "v5.0.0-alpha2",
"doctrine/orm": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"guzzlehttp/guzzle": "^7.2.0",
"squizlabs/php_codesniffer": "^3.5.8",
"phpstan/phpstan": "^1.10",
"nette/caching": "^3.1.0",
"nikic/php-parser": "^4.10.4",
"phpmd/phpmd": "^2.6.0",
"roave/security-advisories": "dev-master",
"symfony/process": "^6.4",
"symfony/framework-bundle": "^6.4"
},
"autoload": {
"psr-4": {
"PhpList\\BaseDistribution\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpList\\BaseDistribution\\Tests\\": "tests/"
}
},
"scripts": {
"list-modules": [
"PhpList\\Core\\Composer\\ScriptHandler::listModules"
],
"create-directories": [
"PhpList\\Core\\Composer\\ScriptHandler::createBinaries",
"PhpList\\Core\\Composer\\ScriptHandler::createPublicWebDirectory"
],
"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": [
"@create-directories",
"@update-configuration"
],
"post-update-cmd": [
"@create-directories",
"@update-configuration"
],
"post-create-project-cmd": [
"@create-directories",
"@update-configuration"
]
},
"extra": {
"symfony-app-dir": "bin",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-tests-dir": "tests"
}
}