forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.52 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
{
"name": "jarednova/timber",
"type": "wordpress-plugin",
"description": "Plugin to write WordPress themes w Object-Oriented Code and the Twig Template Engine",
"keywords": [
"timber",
"twig",
"themes",
"templating"
],
"homepage": "http://timber.upstatement.com",
"license": "MIT",
"authors": [
{
"name": "Jared Novack",
"email": "[email protected]",
"homepage": "http://upstatement.com"
}
],
"support": {
"issues": "https://github.com/jarednova/timber/issues",
"wiki": "https://github.com/jarednova/timber/wiki",
"source": "https://github.com/jarednova/timber"
},
"require": {
"php": ">=5.3.0",
"twig/twig": "1.*",
"upstatement/routes": "0.3",
"composer/installers": "~1.0",
"asm89/twig-cache-extension": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "dev-master",
"wpackagist-plugin/advanced-custom-fields": "4.*",
"wp-cli/wp-cli": "*",
"phpdocumentor/phpdocumentor": "2.*",
"jarednova/markdowndocs": "dev-master"
},
"autoload": {
"classmap": [
"lib/"
]
},
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "jarednova/markdowndocs",
"version": "dev-master",
"source": {
"type": "git",
"url": "[email protected]:jarednova/PHP-Markdown-Documentation-Generator.git",
"reference": "master"
}
}
}
]
}