-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
76 lines (76 loc) · 2.09 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": "dontdrinkandroot/gitki-bundle",
"description": "Symfony Bundle that allows you to easily integrate a git based wiki into your project",
"keywords": [
"git",
"wiki",
"markdown",
"symfony",
"bundle"
],
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Philip Washington Sorst",
"email": "[email protected]",
"homepage": "https://sorst.net"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"dontdrinkandroot/common": "^0.2",
"dontdrinkandroot/path": "^0.2",
"league/commonmark": "^2.4",
"symfony/asset": "^6",
"symfony/config": "^6",
"symfony/finder": "^6",
"symfony/form": "^6",
"symfony/framework-bundle": "^6",
"symfony/mime": "^6",
"symfony/templating": "^6",
"symfony/translation": "^6",
"symfony/twig-bridge": "^6",
"symfony/twig-bundle": "^6",
"symfony/validator": "^6",
"symfony/yaml": "^6",
"symplify/git-wrapper": "^10.0"
},
"require-dev": {
"elasticsearch/elasticsearch": "^7.0",
"liip/test-fixtures-bundle": "^2.7",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^6",
"symfony/console": "^6",
"symfony/css-selector": "^6",
"symfony/phpunit-bridge": "^6",
"symfony/security-bundle": "^6"
},
"suggest": {
"elasticsearch/elasticsearch": "Include this if you want the wiki to be searchable, Supported Version: ^7.0"
},
"autoload": {
"psr-4": {
"Dontdrinkandroot\\GitkiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dontdrinkandroot\\GitkiBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"require": "6.4.*",
"allow-contrib": true
},
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"config": {
"sort-packages": true
}
}