-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.73 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "thorsten/phpmyfaq",
"description": "FAQ System",
"keywords": [
"phpMyFAQ",
"FAQ"
],
"homepage": "https://www.phpmyfaq.de",
"license": "MPL-2.0",
"type": "application",
"authors": [
{
"name": "Thorsten Rinne",
"email": "thorsten@phpmyfaq.de"
}
],
"require": {
"php": ">=7.4.0",
"phpseclib/phpseclib": "~3.0",
"swiftmailer/swiftmailer": "~6.2",
"erusev/parsedown": "~1.0",
"erusev/parsedown-extra": "~0.8.1",
"tecnickcom/tcpdf": "~6.0",
"elasticsearch/elasticsearch": "7.16.*",
"monolog/monolog": "^2.2",
"abraham/twitteroauth": "^4.0.1",
"myclabs/deep-copy": "~1.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"doctrine/instantiator": "1.*",
"symfony/yaml": "5.*",
"phpdocumentor/reflection-docblock": "5.*",
"phpunit/php-token-stream": "*",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^1.0.0"
},
"suggest": {
"ext-ldap": "*",
"ext-pgsql": "*",
"ext-sqlite3": "*",
"ext-sqlsrv": "*"
},
"config": {
"platform": {
"php": "7.4.0"
},
"secure-http": true,
"vendor-dir": "src/libs",
"bin-dir": "src/libs/bin"
},
"minimum-stability": "stable",
"scripts": {
"check": "./src/libs/bin/phpstan analyse -c phpstan.neon --memory-limit 1G",
"test": "./src/libs/bin/phpunit",
"lint": "./src/libs/bin/phpcs --standard=PSR12 --extensions=php --ignore=./phpmyfaq/src/libs/* ./src/phpMyFAQ",
"lint-fix": "./src/libs/bin/phpcbf --standard=PSR12 --extensions=php --ignore=./src/libs/* ./src/phpMyFAQ"
}
}