-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.47 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
{
"name": "phly/phly-paste",
"description": "ZF2 Module implementing a pastebin",
"type": "library",
"keywords": [
"zf2",
"zend",
"module",
"pastebin"
],
"homepage": "https://github.com/weierophinney/PhlyPaste",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "[email protected]",
"homepage": "http://mwop.net/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-authentication": "2.*",
"zendframework/zend-captcha": "2.*",
"zendframework/zend-form": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-view": "2.*",
"zendframework/zend-stdlib": "2.*",
"doctrine/common": ">=2.1",
"easybook/geshi": "dev-master",
"nick4fake/htmlpurifier": "dev-master"
},
"suggest": {
"EdpMarkdown": "Install Markdown to allow markdown pastes: git clone --recursive git://github.com/EvanDotPro/EdpMarkdown.git vendor/EdpMarkdown",
"phly/phly-mongo": "Install phly/phly-mongo if you wish to use the Mongo adapters",
"zendframework/zend-db": "Install Zend\\Db if you plan to use the TableGatewayPasteService",
"zendframework/zendservice-recaptcha": "Install ReCaptcha service if you plan to use ReCaptcha"
},
"autoload": {
"psr-0": {
"PhlyPaste": "src/"
},
"classmap": [
"./"
]
}
}