forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.31 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
{
"name": "timber/timber",
"type": "library",
"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"
},
{
"name": "Connor J. Burton",
"email" : "[email protected]",
"homepage": "http://connorburton.com"
}
],
"support": {
"issues": "https://github.com/timber/timber/issues",
"source": "https://github.com/timber/timber",
"docs": "https://timber.github.io/docs/"
},
"require": {
"php": ">=5.3.0|7.*",
"twig/twig": "^1.0|2.*",
"upstatement/routes": "0.4",
"composer/installers": "~1.0",
"asm89/twig-cache-extension": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "5.7.16",
"wpackagist-plugin/advanced-custom-fields": "4.*",
"wpackagist-plugin/co-authors-plus" : "3.*"
},
"suggest" : {
"satooshi/php-coveralls": "1.0.* for code coverage"
},
"autoload": {
"psr-4": {
"Timber\\": "lib/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
]
}