-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 916 Bytes
/
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
{
"name": "generoi/wp-timber-extended",
"type": "wordpress-plugin",
"license": "MIT",
"description": "Extends Timber and integrates it better with WP core",
"homepage": "https://github.com/generoi/wp-timber-extended",
"authors": [
{
"name": "Oskar Schöldström",
"email": "public@oxy.fi"
}
],
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/generoi/wp-timber-extended/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"TimberExtended\\": "src/"
}
},
"require": {
"php": ">=5.6.0",
"yahnis-elsts/plugin-update-checker": "^4.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1"
},
"scripts": {
"test": [
"vendor/bin/phpcs"
]
},
"archive" : {
"exclude": [
".gitignore"
]
}
}