-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "webonaute/doctrine-datalocking-bundle",
"type": "symfony-bundle",
"description": "Lock a list of object of the same entity to be executed by a single processor. When the lock is aquire, the lock ID generated can be use by a processor to execute action on that locked list.",
"keywords": [
"data",
"doctrine",
"symfony",
"bundle",
"symfony4",
"doctrine",
"locking",
"lock",
"process",
"performance",
"database",
"queue"
],
"homepage": "https://github.com/Webonaute/DoctrineDataLockingBundle",
"license": "MIT",
"authors": [
{
"name": "Mathieu Delisle",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"symfony/framework-bundle": "^5.0",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/orm": "^2.0"
},
"require-dev": {
"symfony/monolog-bundle": "^5.0",
"symfony/console": "^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/browser-kit": "^5.0",
"symfony/profiler-pack": "^1.0",
"symfony/twig-bundle": "^5.0",
"phpunit/phpunit": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Webonaute\\DoctrineDataLockingBundle\\": "./src"
}
},
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"support": {
"email": "[email protected]",
"issue": "https://github.com/Webonaute/DoctrineDataLockingBundle/issues",
"source": "https://github.com/Webonaute/DoctrineDataLockingBundle"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}