-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.37 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
{
"name": "refugis/elastica-odm-bundle",
"description": "Elastica ODM Bundle",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Braglia",
"email": "[email protected]"
},
{
"name": "Alessadro Chitolina",
"email": "[email protected]"
},
{
"name": "Fazland DevTeam",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"refugis/elastica-odm": "^1.0",
"symfony/config": "^4.0|^5.0",
"symfony/dependency-injection": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^4.0",
"symfony/cache": "^4.0|^5.0",
"symfony/monolog-bundle": "^3.4",
"symfony/web-profiler-bundle": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.0",
"twig/twig": "^2.0"
},
"autoload": {
"psr-4": {
"Refugis\\ODM\\ElasticaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"archive": {
"exclude": ["tests", "vendor", ".php_cs", ".gitignore", "phpunit.xml.dist", "README.md"]
}
}