-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
composer.json
84 lines (84 loc) · 2.36 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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-sodium": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"ext-zip": "*",
"abraham/twitteroauth": "^6.0.0",
"elasticsearch/elasticsearch": "8.*",
"endroid/qr-code": "^4.8",
"erusev/parsedown": "~1.0",
"erusev/parsedown-extra": "~0.8.1",
"guzzlehttp/guzzle": "^7.5",
"monolog/monolog": "^3.3",
"myclabs/deep-copy": "~1.0",
"nelexa/zip": "^4.0",
"phpseclib/phpseclib": "~3.0",
"robthree/twofactorauth": "^2.0.0",
"symfony/html-sanitizer": "^6.2",
"symfony/http-client": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/http-kernel": "^6.3",
"symfony/mailer": "^6.2",
"symfony/routing": "^6.3",
"tecnickcom/tcpdf": "~6.0",
"twig/twig": "^3.6"
},
"require-dev": {
"doctrine/instantiator": "2.*",
"phpdocumentor/reflection-docblock": "5.*",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "10.*",
"rector/rector": "^0.17.0",
"squizlabs/php_codesniffer": "*",
"symfony/yaml": "6.*"
},
"suggest": {
"ext-ldap": "*",
"ext-pgsql": "*",
"ext-sqlite3": "*",
"ext-sqlsrv": "*"
},
"config": {
"platform": {
"php": "8.1.0"
},
"secure-http": true,
"vendor-dir": "phpmyfaq/src/libs",
"bin-dir": "phpmyfaq/src/libs/bin",
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"scripts": {
"check": "./phpmyfaq/src/libs/bin/phpstan analyse -c phpstan.neon --memory-limit 1G",
"lint": "./phpmyfaq/src/libs/bin/phpcs --standard=PSR12 --extensions=php --ignore=./phpmyfaq/src/libs/* ./phpmyfaq/src/phpMyFAQ",
"lint-fix": "./phpmyfaq/src/libs/bin/phpcbf --standard=PSR12 --extensions=php --ignore=./phpmyfaq/src/libs/* ./phpmyfaq/src/phpMyFAQ",
"refactor": "./phpmyfaq/src/libs/bin/rector",
"refactor:dryrun": "./phpmyfaq/src/libs/bin/rector --dry-run",
"test": "./phpmyfaq/src/libs/bin/phpunit --coverage-text"
}
}