forked from jarektkaczyk/model-locking
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.85 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "friendsofcat/model-locking",
"description": "Pseudo pessimistic model locking with broadcasted events for Laravel Eloquent ORM.",
"license": "MIT",
"support": {
"issues": "https://github.com/friendsofcat/model-locking/issues",
"source": "https://github.com/friendsofcat/model-locking"
},
"keywords": [
"laravel",
"eloquent",
"ORM",
"active record",
"pessimistic lock",
"locking",
"model lock"
],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "jarek@softonsofa.com",
"homepage": "https://softonsofa.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/queue": "^8.0|^9.0|^10.0"
},
"require-dev": {
"kahlan/kahlan": "~2.5",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.23|^7.2",
"friendsofphp/php-cs-fixer": "^3.2",
"brianium/paratest": "^6.3"
},
"autoload": {
"psr-4": {
"Sofa\\ModelLocking\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Sofa\\ModelLocking\\ServiceProvider"
]
}
},
"scripts": {
"check-cs-fixer-version": "./vendor/bin/php-cs-fixer --version",
"check-style": "./vendor/bin/php-cs-fixer fix --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit",
"test-debug": "export _PHPUNIT_DEBUG=1; ./vendor/bin/phpunit",
"test-cov": "phpdbg -qrr ./vendor/bin/phpunit --coverage-html coverage --coverage-text --colors=always"
}
}