-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1022 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
48
{
"name": "mindy/template",
"description": "Fast PHP templating engine",
"keywords": [
"template",
"templating"
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mindy\\Template\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Mindy\\Template\\Tests\\": "./Tests/"
}
},
"require": {
"php": ">=7.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"symfony/filesystem": "~3.0|~4.0",
"symfony/var-dumper": "^3.4"
},
"authors": [
{
"name": "Falaleev Maxim",
"email": "[email protected]"
},
{
"name": "Nofriandi Ramenta",
"email": "[email protected]"
}
]
}