-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.07 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": "hollodotme/fast-cgi-proxy",
"description": "A proxy for distributing (a)sync requests to multiple php-fpm sockets/pools.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Holger Woltersdorf",
"email": "hw@hollo.me"
}
],
"require": {
"php": ">=7.1",
"hollodotme/fast-cgi-client": "~2.7.2"
},
"autoload": {
"psr-4": {
"hollodotme\\FastCGI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hollodotme\\FastCGI\\Tests\\": "tests/"
}
},
"require-dev": {
"tm/tooly-composer-script": "~1.4.0"
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"phpunit7": {
"url": "https://phar.phpunit.de/phpunit-7.phar",
"replace": true,
"only-dev": true
},
"phpunit8": {
"url": "https://phar.phpunit.de/phpunit-scoped-8.phar",
"replace": true,
"only-dev": true
}
}
}
}