-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
63 lines (63 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "locastic/loggastic",
"description": "ElasticSearch activity logs for Symfony",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Paula",
"email": "paula@locastic.com"
}
],
"require": {
"php": ">=8.1",
"doctrine/annotations": "^1.14",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/orm": "^2.14",
"elasticsearch/elasticsearch": "^7.1",
"symfony/dotenv": "6.4.*",
"symfony/expression-language": "6.4.*",
"symfony/framework-bundle": "^6.4",
"symfony/messenger": "6.4.*",
"symfony/property-info": "6.4.*",
"symfony/runtime": "6.4.*",
"symfony/serializer": "6.4.*",
"symfony/validator": "6.4.*",
"symfony/yaml": "6.4.*",
"ext-simplexml": "*",
"symfony/security-bundle": "^6.4",
"symfony/finder": "^6.4"
},
"require-dev": {
"symfony/browser-kit": "6.4.*",
"symfony/css-selector": "6.4.*",
"symfony/console": "6.4.*",
"symfony/phpunit-bridge": "^6.4",
"symfony/test-pack": "^1.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Locastic\\Loggastic\\": "src/",
"Locastic\\Loggastic\\Tests\\": "tests/",
"Locastic\\Loggastic\\Tests\\Fixtures\\App\\": "tests/Fixtures/app/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"symfony": {
"require": "6.4.*"
}
},
"conflict": {
"symfony/translations-contracts": "<2.0"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": true
}
}
}