-
Notifications
You must be signed in to change notification settings - Fork 90
/
composer.json
90 lines (90 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "malkusch/lock",
"description": "Mutex library for exclusive code execution.",
"keywords": [
"mutex",
"lock",
"locking",
"flock",
"semaphore",
"redlock",
"memcache",
"redis",
"cas",
"advisory-locks",
"mysql",
"postgresql"
],
"homepage": "https://github.com/malkusch/lock",
"license": "WTFPL",
"type": "library",
"authors": [
{
"name": "Markus Malkusch",
"email": "[email protected]",
"homepage": "http://markus.malkusch.de",
"role": "Developer"
},
{
"name": "Willem Stuursma-Ruwen",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"malkusch\\lock\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"malkusch\\lock\\": "tests/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"ext-memcached": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-pdo_sqlite": "*",
"ext-sysvsem": "*",
"eloquent/liberator": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"johnkary/phpunit-speedtrap": "^3.0",
"mikey179/vfsstream": "^1.6.7",
"php-mock/php-mock-phpunit": "^2.1",
"phpstan/phpstan": "^0.12.58",
"phpunit/phpunit": "^9.4",
"predis/predis": "^1.1",
"spatie/async": "^1.5",
"squizlabs/php_codesniffer": "^3.3"
},
"suggest": {
"ext-igbinary": "To use this library with PHP Redis igbinary serializer enabled.",
"ext-lzf": "To use this library with PHP Redis lzf compression enabled.",
"ext-pnctl": "Enables locking with flock without busy waiting in CLI scripts.",
"ext-redis": "To use this library with the PHP Redis extension.",
"ext-sysvsem": "Enables locking using semaphores.",
"predis/predis": "To use this library with predis."
},
"archive": {
"exclude": [
"/tests",
"/.gitattributes",
"/.gitignore",
"/.travis.yml",
"/phpunit.xml",
"/.github"
]
},
"scripts": {
"fix-cs": "vendor/bin/phpcbf --standard=PSR2 classes/ tests/"
},
"config": {
"sort-packages": true
}
}