-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (28 loc) · 722 Bytes
/
composer.json
File metadata and controls
29 lines (28 loc) · 722 Bytes
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
{
"name": "freshflesh/wp-render-template-part",
"description": "An alternative to the native WP function `get_template_part` that can pass arguments to the local scope",
"homepage": "https://github.com/thomascharbit/wp-render-template-part",
"keywords":
[
"wordpress",
"template",
"part",
"render",
"get_template_part"
],
"license": "MIT",
"authors": [
{
"name": "Thomas Charbit",
"email": "thomas.charbit@gmail.com"
}
],
"require": {
"php": ">=5.2.0"
},
"require-dev": {
},
"autoload": {
"files": ["src/wp-render-template-part.php"]
}
}