-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
64 lines (63 loc) · 1.56 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
{
"name": "seregazhuk/php-watcher",
"type": "library",
"description": "Automatically restart PHP application once the source code changes",
"license": "MIT",
"keywords": [
"php",
"asynchronous",
"console",
"cli",
"scripts",
"watcher",
"clock",
"shell",
"bash",
"php-watcher"
],
"authors": [
{
"name": "Sergey Zhuk",
"email": "[email protected]",
"homepage": "http://sergeyzhuk.me",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-pcntl": "*",
"yosymfony/resource-watcher": "^2.0",
"symfony/console": "^4.3 || ^5.0",
"react/event-loop": "^1.1",
"symfony/yaml": "^4.3 || ^5.0",
"react/child-process": "^0.6.1",
"react/stream": "^1.0.0",
"symfony/finder": "^4.3 || ^5.0",
"alecrabbit/php-cli-snake": "^0.5"
},
"autoload": {
"psr-4": {
"seregazhuk\\PhpWatcher\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"seregazhuk\\PhpWatcher\\Tests\\": "tests"
}
},
"bin": [
"php-watcher"
],
"require-dev": {
"symfony/process": "^4.3",
"phpunit/phpunit": "^8.0",
"clue/block-react": "^1.3",
"vimeo/psalm": "^3.8"
},
"scripts": {
"ci:php:psalm": "vendor/bin/psalm --show-info=false",
"ci:tests": "vendor/bin/phpunit tests"
},
"minimum-stability": "alpha"
}