-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathcomposer.json
88 lines (88 loc) · 2.76 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
{
"name": "zdhxiong/mdclub",
"description": "a material design forum",
"keywords": ["material design"],
"license": "MIT",
"authors": [
{
"name": "zdhxiong",
"email": "zdhxiong@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-iconv": "*",
"psr/container": "^1.0",
"pimple/pimple": "^3.3",
"psr/http-client": "^1.0",
"kriswallsmith/buzz": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"slim/psr7": "^1.0.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"monolog/monolog": "^2.0.0",
"psr/simple-cache": "^1.0",
"symfony/cache": "^5.0",
"slim/slim": "^4.5",
"slim/php-view": "^3.0",
"symfony/polyfill-mbstring": "^1.15",
"symfony/filesystem": "^5.0",
"ezyang/htmlpurifier": "^4.12",
"gregwar/captcha": "^1.1",
"erusev/parsedown": "^1.7",
"pixel418/markdownify": "^2.3",
"mobiledetect/mobiledetectlib": "^2.8",
"phpmailer/phpmailer": "^6.1",
"predis/predis": "^1.1",
"catfan/medoo": "^1.7",
"suin/php-rss-writer": "^1.6",
"zhuzhichao/ip-location-zh": "^2.4",
"tightenco/collect": "^8.19",
"intervention/image": "^2.5",
"mcaskill/composer-exclude-files": "^2.0",
"funkjedi/composer-include-files": "^1.0",
"samdark/sitemap": "^2.2",
"filp/whoops": "^2.7",
"algolia/algoliasearch-client-php": "^3.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12",
"roave/security-advisories": "dev-master"
},
"autoload": {
"files": [
"src/Initializer/helpers.php"
],
"psr-4": {
"MDClub\\": "src/"
}
},
"extra": {
"include_files": [
"src/Initializer/helpers.php"
],
"exclude-from-files": [
"tightenco/collect/src/Collect/Support/alias.php"
]
},
"scripts": {
"test": [
"@phpcs",
"@phpstan"
],
"start": "php -S localhost:8080 -t public public/index.php",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1",
"zip": "git archive -o mdclub.zip HEAD && zip -r mdclub.zip ./public/static/admin && zip -r mdclub.zip ./public/static/theme/material && zip -r mdclub.zip ./templates/material && zip -r mdclub.zip ./vendor"
},
"suggest": {
"ext-ftp": "Allow upload images to FTP server",
"ext-ssh2": "Allow upload images to SFTP server"
}
}