-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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": "chaplean/elasticsearch-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "The Bundle base to fork",
"authors": [
{
"name": "Chaplean",
"homepage": "https://www.chaplean.coop"
}
],
"autoload": {
"psr-4": {
"Chaplean\\Bundle\\ElasticsearchBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Chaplean\\Bundle\\ElasticsearchBundle\\": "Tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://satis.chaplean.coop"
}
],
"require": {
"php": ">=7.1",
"elasticsearch/elasticsearch": "^6.0",
"symfony/config": "^3.0 || ^4.0",
"symfony/console": "^3.0 || ^4.0",
"symfony/dependency-injection": "^3.0 || ^4.0",
"symfony/yaml": "^3.0 || ^4.0"
},
"require-dev": {
"chaplean/codeship-scripts": "^1.0",
"chaplean/coding-standard": "^1.1",
"mockery/mockery": "dev-master",
"phpunit/phpunit": "^7.0",
"symfony/http-kernel": "^2.8 || ^3.0 || ^4.0",
"symfony/var-dumper": "^2.8 || ^3.0 || ^4.0"
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true
}
}