-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.38 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
{
"name": "fico7489/laravel-updated-related",
"description": "Update Elasticsearch data or clear cache when the model or any related model is updated, created or deleted.",
"keywords": [
"laravel",
"laravel elasticsearch",
"laravel cache",
"laravel related models",
"laravel update related",
"laravel update events"
],
"homepage": "https://github.com/fico7489/laravel-updated-related",
"support": {
"issues": "https://github.com/fico7489/laravel-updated-related/issues",
"source": "https://github.com/fico7489/laravel-updated-related"
},
"license": "MIT",
"authors": [
{
"name": "Filip Horvat",
"email": "[email protected]",
"homepage": "http://am2studio.hr",
"role": "Developer"
}
],
"require": {
"illuminate/database": "^5.5|^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "*",
"friendsofphp/php-cs-fixer" : "*"
},
"suggest": {
"fico7489/laravel-pivot": "Cover pivot changes."
},
"autoload": {
"psr-4": {
"Fico7489\\Laravel\\UpdatedRelated\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fico7489\\Laravel\\UpdatedRelated\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}