-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.61 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
{
"name": "perform/base-bundle",
"description": "Perform base bundle",
"type": "symfony-bundle",
"license": "proprietary",
"authors": [
{
"name": "Glynn Forrest",
"email": "[email protected]"
}
],
"require": {
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"knplabs/knp-menu-bundle": "^2.2.1",
"nesbot/carbon": "^1.21",
"pagerfanta/pagerfanta": "^1.0",
"sensio/framework-extra-bundle": "^5.0",
"stof/doctrine-extensions-bundle": "^1.2",
"symfony/asset": "^3.4|^4.0",
"symfony/form": "^3.4|^4.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/monolog-bundle": "^3.0.3",
"symfony/security-bundle": "^3.4|^4.0",
"symfony/twig-bundle": "^3.4|^4.0",
"symfony/validator": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0"
},
"require-dev": {
"doctrine/data-fixtures": "^1.2",
"fzaninotto/faker": "^1.5",
"league/commonmark": "^0.17.0",
"phpunit/phpunit": "^7.5",
"sonata-project/exporter": "^1.7",
"moneyphp/money": "^3.1"
},
"suggest": {
"doctrine/data-fixtures": "Use database fixtures",
"fzaninotto/faker": "Use database fixtures",
"league/commonmark": "Use the markdown type",
"moneyphp/money": "Use the money type",
"sonata-project/exporter": "Export entities to a variety of formats",
"symfony/serializer": "Use the serialize twig filter"
},
"autoload": {
"psr-4": {
"Perform\\BaseBundle\\": ""
}
}
}