forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.61 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
{
"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.15",
"dannyvankooten/php-router" : "dev-master#e9a479820b871ae4493fec30d5e433456767a505",
"composer/installers" : "~1.0",
"asm89/twig-cache-extension": "~0.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master",
"AdvancedCustomFields/acf5-beta" : "5.0",
"wp-cli/wp-cli" : "*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "AdvancedCustomFields/acf5-beta",
"version": "5.0",
"dist": {
"url": "https://www.dropbox.com/s/763lrwuvonk0prb/advanced-custom-fields-pro.zip?dl=1",
"type": "zip"
},
"autoload": {
"psr-0": { "acf\\advanced-custom-fields-pro": "" }
},
"target-dir": "acf/advanced-custom-fields-pro"
}
}
]
}