-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.55 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.55 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
51
52
53
{
"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": "alessandro.lai85@gmail.com"
}
],
"autoload": {
"psr-4": {
"Facile\\TerminableLoop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\TerminableLoop\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"symfony/console": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.2",
"jangregor/phpstan-prophecy": "2.3.0",
"phpspec/prophecy": "^1.18",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "2.1.46",
"phpstan/phpstan-phpunit": "2.0.16",
"phpunit/phpunit": "^10 || ^11 || ^12",
"psalm/plugin-phpunit": "0.19.3",
"rector/rector": "2.4.1",
"shipmonk/composer-dependency-analyser": "^1.8",
"symfony/phpunit-bridge": "^6.4 || ^7.0 || ^8.0",
"symfony/process": "^6.4 || ^7.0 || ^8.0",
"vimeo/psalm": "^6"
}
}