forked from supervisorphp/supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.61 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
{
"name": "supervisorphp/supervisor",
"description": "PHP library for managing Supervisor through XML-RPC API",
"homepage": "http://supervisorphp.com",
"license": "MIT",
"keywords": [
"supervisor",
"process manager"
],
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "[email protected]"
},
{
"name": "Buster Neece",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Supervisor\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"lstrojny/fxmlrpc": ">=0.12"
},
"require-dev": {
"ext-pcntl": "*",
"ext-posix": "*",
"behat/behat": "^3.0",
"guzzlehttp/guzzle": "^6.0",
"http-interop/http-factory-guzzle": "^1.0",
"overtrue/phplint": "^2.0",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug": "^2.1",
"php-http/message": "^1.8",
"phpspec/phpspec": "^6.2",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-strict-rules": "^0.12.2",
"roave/security-advisories": "dev-master",
"supervisorphp/configuration": "^0.2"
},
"scripts": {
"ci": [
"@composer install --prefer-dist --no-progress --no-suggest",
"@phplint",
"@phpstan",
"@phpspec",
"@behat"
],
"phplint": "phplint",
"phpstan": "phpstan analyze",
"phpspec": "phpspec run",
"behat": "behat"
}
}