-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
48 lines (48 loc) · 1.33 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
{
"name": "facile-it/terminable-loop-command",
"description": "A Shell+PHP wrapper to run Symfony console commands in loop under a daemon or Kubernetes",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"phpstan/extension-installer": true
}
},
"bin": [
"bin/terminable-loop-command.sh"
],
"authors": [
{
"name": "Alessandro Lai",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Facile\\TerminableLoop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\TerminableLoop\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 | ^8.0",
"ext-pcntl": "*",
"symfony/console": "^4.4 | ^5.4 | ^6.0 | ^7.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.2",
"jangregor/phpstan-prophecy": "^1.0.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6.6",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"vimeo/psalm": "^4.6 || ^5.0"
}
}