forked from dpolac/twig-lambda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 985 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
{
"name": "dpolac/twig-lambda",
"type": "library",
"description": "Lambda expressions for Twig and filters that make use of them",
"keywords": [
"lambda",
"function",
"unique",
"functional",
"filter",
"map",
"group",
"sort"
],
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Damian Polac",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:qofclubs/dictionary"
}
],
"require": {
"php": "^5.6 || ^8.0",
"twig/twig": "^1.0 || ^2.0",
"dpolac/dictionary": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"DPolac\\TwigLambda\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}