This repository has been archived by the owner on Aug 16, 2020. It is now read-only.
forked from stof/StofDoctrineExtensionsBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.45 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
{
"name": "doctrine-extensions/symfony-bundle",
"type": "symfony-bundle",
"description": "Integration of Doctrine Extensions into Symfony projects.",
"keywords": ["tree", "behaviors", "doctrine2", "extensions", "gedmo", "sluggable","loggable", "translatable", "nestedset", "sortable", "timestampable"],
"homepage": "https://github.com/doctrine-extensions/DoctrineExtensionsSymfonyBundle",
"license": "MIT",
"support": {
"issues": "https://github.com/doctrine-extensions/symfony-bundle/issues"
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
},
{
"name": "Aken Roberts",
"email": "aken@cryode.com"
}
],
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "^4.3.7 || ^5.0",
"gedmo/doctrine-extensions": "^2.3.4"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "^4.3.7 || ^5.0",
"symfony/security-bundle": "^4.3.7 || ^5.0"
},
"suggest": {
"doctrine/doctrine-bundle": "to use the ORM extensions",
"doctrine/mongodb-odm-bundle": "to use the MongoDB ODM extensions"
},
"conflict": {
"stof/doctrine-extensions-bundle": "*"
},
"autoload": {
"psr-4": {
"DoctrineExtensions\\SymfonyBundle\\": "src/"
}
}
}