-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (36 loc) · 1.31 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
{
"name": "cluster-queue/dummy",
"description": "Dummy project for php-cluster-queue-core. A project to setup a server configuration for a cluster. Eg. with DRDB, heartbeat for DB/ WWW Servers; This is the dummy package to start your own using the core package in the background. Donwload it and use it as your project base",
"type": "library",
"keywords": ["dummy", "cluster-queue", "cluster-setup", "cluster-management", "server-config", "setup", "ssh", "scp", "bash", "zsh", "shell", "cli", "php"],
"homepage": "https://github.com/cluster-queue/dummy",
"authors": [
{
"name": "Florian Blasel",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": "7.3.* | 7.4.* | 8.0.*",
"mumsys/library": "dev-unstable",
"cluster-queue/core": "dev-unstable"
},
"require-dev": {
},
"scripts": {
"post-install-cmd": [
"if [ ! -f vendor/bin/php-cluster-queue ]; then mkdir -p vendor/bin && cd vendor/bin && ln -s ../cluster-queue/core/php-cluster-queue php-cluster-queue; fi"
]
},
"config": {
"sort-packages": true
},
"license": "GPL-3.0",
"minimum-stability": "dev",
"prefer-stable": true
}