-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.31 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
{
"name": "cybercog/php-db-locker",
"description": "PHP application-level database locking mechanisms",
"type": "library",
"license": "MIT",
"keywords": [
"cog",
"cybercog",
"php",
"database",
"db",
"advisory",
"lock",
"mutex"
],
"authors": [
{
"name": "Anton Komarev",
"email": "anton@komarev.com",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://komarev.com/sources/php-db-locker",
"support": {
"email": "open@cybercog.su",
"issues": "https://github.com/cybercog/php-db-locker/issues",
"wiki": "https://github.com/cybercog/php-db-locker/wiki",
"source": "https://github.com/cybercog/php-db-locker",
"docs": "https://github.com/cybercog/php-db-locker"
},
"require": {
"php": "^8.1",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Cog\\DbLocker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cog\\Test\\DbLocker\\": "test/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable" : true
}