-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.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
{
"name": "linkorb/wiki-bundle",
"description": "Symfony 4 project Wiki Bundle",
"homepage": "https://github.com/linkorb/wiki-bundle",
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/linkorb"
},
{
"packagist.org": false
}
],
"keywords": [
"form",
"linkorb"
],
"type": "symfony-bundle",
"license": "proprietary",
"authors": [
{
"name": "LinkORB Engineering",
"email": "[email protected]",
"role": "Development"
},
{
"name": "Kaushik Prajapati",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"LinkORB\\Bundle\\WikiBundle\\": ""
}
},
"require": {
"andrewfenn/pid-helper": "^0.1.0",
"doctrine/doctrine-bundle": "^2.5",
"sensio/framework-extra-bundle": "^5.1 || ^6.0",
"symfony/framework-bundle": "^4.0 || ^5.1 || ^6.0",
"symfony/security-bundle": "^4.0 || ^5.1 || ^6.0",
"twig/markdown-extra": "^3.3",
"league/commonmark": "^2.0"
}
}