-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathcomposer.json
44 lines (41 loc) · 1.35 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
{
"name": "easybook/easybook",
"description": "Book publishing application",
"keywords": ["book", "publish", "ebook", "e-book", "documentation", "pdf", "epub"],
"homepage": "http://easybook-project.org",
"license": "MIT",
"authors": [
{
"name": "Javier Eguiluz",
"email": "[email protected]",
"homepage": "http://javiereguiluz.com"
},
{
"name": "Contributors",
"homepage": "http://github.com/javiereguiluz/easybook/blob/master/CONTRIBUTORS.md"
}
],
"config": {
"platform": {
"php": "5.3.9"
}
},
"require": {
"php" : ">=5.3.9",
"easybook/geshi" : "^1.0",
"javiereguiluz/easyslugger" : "^1.0",
"michelf/php-markdown" : "^1.4",
"pimple/pimple" : "^3.0",
"symfony/console" : "^2.8",
"symfony/event-dispatcher" : "^2.8",
"symfony/filesystem" : "^2.8",
"symfony/finder" : "^2.8",
"symfony/process" : "^2.8",
"symfony/yaml" : "^2.8",
"twig/twig" : "^1.15",
"zendframework/zendpdf" : "^2.0"
},
"autoload": {
"psr-0": { "Easybook": "src/" }
}
}