forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.56 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": "thorsten/phpMyFAQ",
"description": "FAQ System",
"keywords": [ "phpMyFAQ", "FAQ" ],
"homepage": "http://www.phpmyfaq.de",
"license": "MPL 2.0",
"type": "application",
"authors": [
{
"name": "Thorsten Rinne",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "phpseclib",
"version": "master",
"source": {
"url": "https://github.com/phpseclib/phpseclib.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "tcpdf",
"version": "master",
"source": {
"url": "http://git.code.sf.net/p/tcpdf/code",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "twitteroauth",
"version": "master",
"source": {
"url": "https://github.com/thorsten/twitteroauth.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "jnaqsh/bootstrap",
"version": "master",
"source": {
"url": "https://github.com/jnaqsh/bootstrap.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=5.3.3",
"symfony/class-loader": ">=2.3",
"symfony/http-foundation": ">=2.3",
"twig/twig": "*",
"phpseclib": "master@dev",
"tcpdf": "master@dev",
"twitteroauth": "master@dev",
"twitter/bootstrap": "2.3.*",
"jnaqsh/bootstrap": "master@dev"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpunit/dbunit": "*"
},
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"scripts/moveVendors.sh"
],
"post-update-cmd": [
"scripts/moveVendors.sh"
]
}
}