forked from ludovicchabant/PieCrust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.24 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
{
"name": "bolt80/piecrust",
"description": "A lightweight CMS and static website generator.",
"homepage": "http://bolt80.com/piecrust",
"authors": [
{
"name": "Ludovic Chabant",
"homepage": "http://ludovic.chabant.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "geshi/geshi",
"version": "1.0.8.11",
"dist": {
"url": "http://sourceforge.net/projects/geshi/files/geshi/GeSHi%201.0.8.11/GeSHi-1.0.8.11.zip/download",
"type": "zip"
},
"autoload": {
"classmap": [ "geshi.php" ]
}
}
},
{
"type": "package",
"package": {
"name": "smartypants/smartypants",
"version": "1.5.1",
"dist": {
"url": "https://github.com/michelf/php-smartypants/archive/v1.5.1f.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "smartypants/smartypants-typographer",
"version": "1.0.1",
"dist": {
"url": "https://github.com/michelf/php-smartypants/archive/t1.0.1.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">= 5.3.0",
"symfony/yaml": "v2.2.0",
"twig/twig": "v1.15.1",
"mustache/mustache": "~2.1",
"geshi/geshi": "1.0.*",
"leafo/lessphp": "0.3.*",
"michelf/php-markdown": "1.3",
"smartypants/smartypants": "1.5.1",
"smartypants/smartypants-typographer": "1.0.1",
"netcarver/textile": "v3.5.1",
"bolt80/stupidhttp": "v0.2.0",
"mikey179/vfsStream": "v1.1.0"
},
"autoload": {
"psr-0": {
"PieCrust": [ "src/", "tests/src/" ],
"Log": "libs/pear",
"Console": "libs/pear",
"Benchmark_": "libs/pear"
}
},
"include-path": [ "libs/pear" ],
"config": {
"vendor-dir": "libs",
"bin-dir": "libs/bin"
}
}