-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.27 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
{
"name": "bileto/critical-section",
"type": "library",
"description": "Lightweight class supporting critical section locking",
"keywords": ["parallel", "critical-section", "locks"],
"license": "MIT",
"authors": [
{
"name": "Josef Petrák",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Martin Štekl",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bileto/CriticalSection/issues",
"source": "https://github.com/bileto/CriticalSection"
},
"require": {
"php": ">=7.1"
},
"suggest": {
"ext-pdo": "PDO module is used to connect to MySQL or PostgreSQL database",
"ext-redis": "The php redis extension https://github.com/nicolasff/phpredis/ is required for connecting to redis server",
"ext-sysvsem": "Module required to use Semaphore Driver for Critical Section"
},
"replace": {
"stekycz/criticalsection" : "1.0.1"
},
"require-dev": {
"nette/tester": "^2.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.4",
"spaze/phpstan-disallowed-calls": "^2.2"
},
"autoload": {
"psr-4": {
"Bileto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BiletoTests\\": "tests/"
}
}
}