-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.07 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "easywelfare/geezer",
"description": "PHP tools to build robust long-running processes",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Easy Welfare Development Team",
"email": "dev@easywelfare.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:EasyWelfare/onebip-concurrency.git"
},
{
"type": "vcs",
"url": "git@github.com:EasyWelfare/onebip-clock.git"
}
],
"require": {
"php": "^7.2",
"ext-pcntl": "*",
"symfony/console": "~4.0",
"easywelfare/onebip-concurrency": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"friendsofphp/php-cs-fixer": "^2.13",
"phpstan/phpstan": "^0.10.5",
"phpstan/phpstan-phpunit": "^0.10.0"
},
"provide": {
"easywelfare/geezer-implementation": "2.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Geezer\\": "src",
"Test\\Geezer\\": "tests/unit"
}
},
"autoload-dev": {
"psr-4": {
"Geezer\\": "tests"
}
}
}