-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 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
{
"version": "2.0.2",
"name": "saman-jafari/telescope-elasticsearch-driver",
"description": "it will allow you to switch from sql database to elasticsearch as driver for your data storage and it will eliminate the deadlock so it makes telescope a ready for production logging system.",
"keywords": [
"saman-jafari",
"telescope-elasticsearch-driver",
"telescope",
"elasticsearch",
"elasticsearch-driver",
"laravel"
],
"homepage": "https://github.com/saman-jafari/telescope-elasticsearch-driver",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Saman Jafari",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"laravel/telescope": "^v5.0",
"elasticsearch/elasticsearch": "^v8.8.0"
},
"autoload": {
"psr-4": {
"SamanJafari\\TelescopeElasticsearchDriver\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"SamanJafari\\TelescopeElasticsearchDriver\\TelescopeElasticsearchDriverServiceProvider"
]
}
}
}