forked from cviebrock/twig-natural-join
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 889 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
{
"name": "cubetech/twig-natural-join",
"description": "Twig filter that joins an array using a different separator for the last element",
"keywords": [
"templating",
"twig",
"filter",
"join"
],
"license": "MIT",
"homepage": "http://github.com/cubetech/twig-natural-join",
"authors": [
{
"name": "Colin Viebrock",
"email": "colin@viebrock.ca"
},
{
"name": "Mark Howells-Mead",
"email": "mark@cubetech.ch"
}
],
"support": {
"issues": "https://github.com/cubetech/twig-natural-join/issues",
"source": "https://github.com/cubetech/twig-natural-join"
},
"require": {
"twig/twig": "2.*",
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Cubetech\\Twig\\": "src/"
}
}
}