-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.44 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "matronator/parsem",
"description": "Parse file templates.",
"type": "library",
"keywords": ["parser", "yaml", "json", "neon", "templates", "template engine", "template parser"],
"license": "MIT",
"readme": "README.md",
"autoload": {
"psr-4": {
"Matronator\\Parsem\\": ["src/Parsem/"]
},
"files": ["helpers.php"]
},
"authors": [
{
"name": "Matronator",
"email": "5470780+matronator@users.noreply.github.com",
"homepage": "https://matronator.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"nette/neon": "^3.3",
"symfony/yaml": "^6.1 || ^7.0",
"opis/json-schema": "^2.3",
"ext-mbstring": "*"
},
"config": {
"platform": {
"php": "8.2"
}
},
"scripts": {
"test": "tester ."
},
"minimum-stability": "dev",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/bePatron?u=34136375"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/matronator"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/matronator"
},
{
"type": "github",
"url": "https://github.com/sponsors/matronator"
}
],
"require-dev": {
"nette/tester": "^2.4"
}
}