generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.95 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
69
70
71
72
73
74
75
76
{
"name": "ergebnis/twig-front-matter",
"description": "Provides a Twig loader for files with YAML front-matter.",
"license": "MIT",
"type": "library",
"keywords": [
"twig",
"loader",
"yaml",
"front-matter"
],
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/twig-front-matter",
"support": {
"issues": "https://github.com/ergebnis/twig-front-matter/issues",
"source": "https://github.com/ergebnis/twig-front-matter",
"security": "https://github.com/ergebnis/twig-front-matter/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ergebnis/front-matter": "^3.1.0",
"twig/twig": "^3.4.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43.0",
"ergebnis/data-provider": "^3.2.0",
"ergebnis/license": "^2.4.0",
"ergebnis/php-cs-fixer-config": "^6.36.0",
"ergebnis/phpstan-rules": "^2.2.0",
"ergebnis/phpunit-slow-test-detector": "^2.15.1",
"fakerphp/faker": "^1.23.1",
"infection/infection": "~0.27.11",
"phpunit/phpunit": "^10.5.27",
"psalm/plugin-phpunit": "~0.19.0",
"rector/rector": "^1.2.5",
"roave/backward-compatibility-check": "^8.6.0",
"vimeo/psalm": "^5.26.0"
},
"autoload": {
"psr-4": {
"Ergebnis\\Twig\\FrontMatter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Twig\\FrontMatter\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1.26"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
}
}