-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
68 lines (68 loc) · 1.85 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
65
66
67
68
{
"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": "mark.sagikazar@gmail.com"
},
{
"name": "Buster Neece",
"email": "buster@busterneece.com"
}
],
"autoload": {
"psr-4": {
"Supervisor\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"lstrojny/fxmlrpc": ">=0.12",
"psr/log": ">=1"
},
"require-dev": {
"ext-pcntl": "*",
"ext-posix": "*",
"behat/behat": "^3.0",
"guzzlehttp/guzzle": "^7.5",
"php-http/httplug": "^2.1",
"php-http/message": "^1.8",
"php-parallel-lint/php-console-highlighter": "^1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/phpspec": "^7",
"phpstan/phpstan": "^1",
"phpstan/phpstan-strict-rules": "^1",
"roave/security-advisories": "dev-latest",
"supervisorphp/configuration": "^0.3"
},
"scripts": {
"ci": [
"@composer install --prefer-dist --no-progress --no-suggest",
"@phplint",
"@phpstan",
"@phpspec",
"@behat"
],
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --xdebug --memory-limit=-1",
"phpspec": "phpspec run",
"behat": "behat"
},
"config": {
"preferred-install": "dist",
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}