forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.78 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
{
"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.41 || ^2.10",
"upstatement/routes": "0.9.*",
"composer/installers": "^1.0 || ^2.0",
"twig/cache-extension": "^1.5"
},
"require-dev": {
"johnpbloch/wordpress": "*",
"phpunit/phpunit": "5.7.21 || 6.*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.0",
"wpackagist-plugin/advanced-custom-fields": "5.*",
"wpackagist-plugin/co-authors-plus": "3.2.* || 3.4.*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"satooshi/php-coveralls": "1.0.* for code coverage"
},
"autoload": {
"psr-4": {
"Timber\\": "lib/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"exclude-from-classmap": [
"tests/php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"scripts": {
"lint": "phpcs --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1"
}
}