-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
68 lines (68 loc) · 1.67 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
60
61
62
63
64
65
66
67
68
{
"name": "webuni/front-matter",
"type": "library",
"description": "Front matter parser and dumper for PHP",
"keywords": [
"front-matter",
"yaml",
"json",
"toml",
"neon",
"commonmark"
],
"homepage": "https://github.com/webuni/front-matter",
"license": "MIT",
"authors": [
{
"name": "Martin Hasoň",
"email": "martin.hason@gmail.com",
"homepage": "https://www.martinhason.cz"
},
{
"name": "Webuni s.r.o.",
"homepage": "https://www.webuni.cz"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/yaml": "^3.4.31 || ^4.3.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.41",
"league/commonmark": "^2.0",
"mthaml/mthaml": "^1.3",
"nette/neon": "^2.2 || ^3.0",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10",
"twig/twig": "^3.0",
"yosymfony/toml": "^1.0"
},
"suggest": {
"nette/neon": "If you want to use NEON as front matter",
"yosymfony/toml": "If you want to use TOML as front matter"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
"Webuni\\FrontMatter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webuni\\FrontMatter\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "./run analyse",
"cs": "./run cs",
"tests": "./run tests"
}
}