-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.63 KB
/
Copy pathcomposer.json
File metadata and controls
86 lines (86 loc) · 2.63 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "locastic/loggastic",
"description": "Activity logs for Symfony, stored in Elasticsearch or your relational database",
"keywords": [
"symfony",
"symfony-bundle",
"activity-log",
"activity-feed",
"audit-log",
"audit-trail",
"entity-tracking",
"change-tracking",
"doctrine",
"elasticsearch",
"logging"
],
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Paula",
"email": "paula@locastic.com"
}
],
"require": {
"php": ">=8.2",
"doctrine/dbal": "^3.8 || ^4.0",
"doctrine/doctrine-bundle": "^2.8 || ^3.0",
"doctrine/orm": "^3.4",
"elasticsearch/elasticsearch": "^8.0 || ^9.0",
"symfony/deprecation-contracts": "^3.0",
"symfony/expression-language": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/messenger": "^6.4 || ^7.0 || ^8.0",
"symfony/property-info": "^6.4 || ^7.0 || ^8.0",
"symfony/serializer": "^6.4 || ^7.0 || ^8.0",
"symfony/validator": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"ext-simplexml": "*",
"symfony/security-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/finder": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"symfony/browser-kit": "^6.4 || ^7.0 || ^8.0",
"symfony/css-selector": "^6.4 || ^7.0 || ^8.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/dotenv": "^6.4 || ^7.0 || ^8.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0 || ^8.0",
"symfony/runtime": "^6.4 || ^7.0 || ^8.0",
"symfony/test-pack": "1.1.0",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/extension-installer": "^1.4",
"friendsofphp/php-cs-fixer": "^3.95",
"symfony/http-client": "^6.4 || ^7.0 || ^8.0",
"nyholm/psr7": "^1.8"
},
"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": "2.2-dev"
}
},
"conflict": {
"symfony/translations-contracts": "<2.0"
},
"suggest": {
"doctrine/annotations": "To configure loggable classes with the legacy @Loggable annotation (deprecated, use the PHP attribute instead)",
"symfony/http-client": "A PSR-18 HTTP client implementation is required by the Elasticsearch client (any PSR-18 implementation works)"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}