-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (41 loc) · 1.04 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
{
"name": "pankrok/boards",
"description": "Simple forum script",
"keywords": [""],
"license": "MIT",
"authors": [
{
"name": "Pankrok",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"vendor-dir": "libraries"
},
"require": {
"php": ">=7.2",
"slim/slim": "^4.5",
"slim/twig-view": "^3.0",
"respect/validation": "^2.2",
"illuminate/database": "^8.22.1",
"monolog/monolog": "^2.2",
"slim/flash": "^0.4.0",
"illuminate/translation": "^8.23.1",
"symfony/event-dispatcher": "^5.0",
"slim/psr7": "^0.5.0",
"php-di/php-di": "^6.3",
"phpmailer/phpmailer": "^6.1",
"jasongrimes/paginator": "~1.0",
"lorddashme/php-simple-captcha": "^1.2",
"matthiasmullie/minify": "^1.3",
"ezyang/htmlpurifier": "^4.13",
"robthree/twofactorauth": "^1.7"
},
"autoload": {
"psr-4": {
"Application\\": "application",
"Plugins\\": "plugins"
}
}
}