forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.66 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
{
"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]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "tcpdf",
"version": "master",
"source": {
"url": "http://git.code.sf.net/p/tcpdf/code",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=7.1.0",
"phpseclib/phpseclib": "~2.0",
"swiftmailer/swiftmailer": "5.4.8",
"erusev/parsedown": "1.6.3",
"erusev/parsedown-extra": "~0.7.0",
"tecnickcom/tcpdf": "6.2.13",
"elasticsearch/elasticsearch": "~6.0",
"monolog/monolog": "1.23.0",
"abraham/twitteroauth": "^0.7.4",
"myclabs/deep-copy": "1.3.1"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"phpunit/dbunit": "1.3.*",
"doctrine/instantiator": "1.0.*",
"symfony/yaml": "3.*",
"phpdocumentor/reflection-docblock": "3.*",
"phpunit/php-token-stream": "1.*"
},
"config": {
"bin-dir": "bin",
"secure-http": true
},
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"scripts/moveVendors.sh"
],
"post-update-cmd": [
"scripts/moveVendors.sh"
]
}
}