-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (47 loc) · 1.2 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
{
"name": "icybee/patron",
"type": "library",
"description": "A HTML template engine",
"keywords": ["engine", "template", "html"],
"homepage": "https://github.com/Icybee/Patron",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "olivier.laviale@gmail.com",
"homepage": "http://www.weirdog.com/",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/Icybee/Patron/issues",
"source": "https://github.com/Icybee/Patron"
},
"minimum-stability": "dev",
"require": {
"php": "^5.5|^7.0",
"icanboogie/common": "^1.2",
"icanboogie/render": "^0.5",
"icybee/bluetihi": "^0.0.3"
},
"suggest": {
"icanboogie/i18n": "Required to use the translation notation and markup.",
"brickrouge/brickrouge": "Required to use p:pager, p:document:css, and p:document:js"
},
"autoload": {
"psr-4": {
"Patron\\": "lib/"
},
"classmap": [ "lib/markdown/", "lib/textmark/" ],
"files": [ "lib/helpers.php" ]
},
"extra": {
"icanboogie": {
"config-path": "config",
"config-constructor": {
"patron.markups": "Patron\\Hooks::synthesize_markups_config#hooks",
"patron.functions": "Patron\\Hooks::synthesize_functions_config#hooks"
}
}
}
}