-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.93 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
73
74
75
76
77
78
{
"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": "jared@upstatement.com",
"homepage": "http://upstatement.com"
},
{
"name": "Connor J. Burton",
"email": "connorjburton@gmail.com",
"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": "^7.4|^8.0",
"twig/twig": "^2.12|^3.0",
"composer/installers": "^1.9",
"twig/cache-extension": "^1.5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"wp-coding-standards/wpcs": "^2.0",
"wpackagist-plugin/advanced-custom-fields": "^5.0",
"wpackagist-plugin/co-authors-plus": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-stubs/wp-cli-stubs": "^2.2.0",
"yoast/phpunit-polyfills": "^1.0.1"
},
"suggest": {
"php-coveralls/php-coveralls": "^2.0 for code coverage"
},
"autoload": {
"psr-4": {
"Timber\\": "lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"exclude-from-classmap": [
"tests/php",
"tests/phpstan"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
}
],
"scripts": {
"test": "vendor/bin/phpunit -c phpunit-nocover.xml --verbose --colors=always",
"lint": "phpcs --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1"
}
}