-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "sofa/model-locking",
"description": "Pseudo pessimistic model locking with broadcasted events for Laravel Eloquent ORM.",
"license": "MIT",
"support": {
"issues": "https://github.com/jarektkaczyk/model-locking/issues",
"source": "https://github.com/jarektkaczyk/model-locking"
},
"keywords": ["laravel", "eloquent", "ORM", "active record", "pessimistic lock", "locking", "model lock"],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "[email protected]",
"homepage": "https://softonsofa.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/database": "^5.5|^6.0|^7.0",
"illuminate/queue": "^5.5|^6.0|^7.0"
},
"require-dev": {
"kahlan/kahlan": "~2.5"
},
"autoload": {
"psr-4": {
"Sofa\\ModelLocking\\": "src"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Sofa\\ModelLocking\\ServiceProvider"
]
}
}
}