-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcomposer.json
100 lines (100 loc) · 3.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "kraken-php/framework",
"description": "The first and only multi-processed, multi-threaded, fault-tolerant framework for PHP.",
"keywords": [
"kraken", "kraken-php", "framework", "distribution", "distributed", "async", "asynchronous", "parallel", "concurrent",
"process", "thread", "multi-processed", "multi-threaded", "event-driven", "message-driven", "service", "soa", "agent",
"agent-model", "fault-tolerance", "fault-tolerant", "error-tolerance", "error-tolerant", "daemon", "demon"
],
"license": "MIT",
"homepage": "http://kraken-php.com",
"support": {
"issues": "https://github.com/kraken-php/framework/issues",
"source": "https://github.com/kraken-php/framework"
},
"authors": [
{
"name": "Kamil Jamroz",
"homepage": "https://github.com/khelle"
},
{
"name": "The contributors",
"homepage": "http://github.com/kraken-php/framework/contributors"
}
],
"require": {
"php": ">=5.6.7",
"dazzle-php/channel": "0.5.*",
"dazzle-php/channel-socket": "0.5.*",
"dazzle-php/channel-zmq": "0.5.*",
"dazzle-php/event": "0.5.*",
"dazzle-php/loop": "0.5.*",
"dazzle-php/promise": "0.5.*",
"dazzle-php/socket": "0.5.*",
"dazzle-php/stream": "0.5.*",
"dazzle-php/ssh": "0.5.*",
"dazzle-php/throwable": "0.5.*",
"dazzle-php/util": "0.5.*",
"dazzle-php/zmq": "0.5.*",
"symfony/console": "^3.0",
"symfony/http-foundation": "^3.0",
"symfony/routing": "^3.0",
"guzzlehttp/guzzle": "^6.1",
"cboden/ratchet": "^0.3",
"league/flysystem": "^1.0",
"league/container": "^2.2",
"monolog/monolog": "^1.21",
"vlucas/phpdotenv": "^2.3"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.0 <5.4.0"
},
"suggest": {
"ext-fileinfo": "*"
},
"replace": {
"kraken-php/config": "self.version",
"kraken-php/console": "self.version",
"kraken-php/container": "self.version",
"kraken-php/core": "self.version",
"kraken-php/environment": "self.version",
"kraken-php/filesystem": "self.version",
"kraken-php/log": "self.version",
"kraken-php/network": "self.version",
"kraken-php/root": "self.version",
"kraken-php/runtime": "self.version",
"kraken-php/supervision": "self.version",
"kraken-php/test": "self.version"
},
"autoload": {
"psr-4": {
"Kraken\\Config\\": "src/Config/src",
"Kraken\\Console\\": "src/Console/src",
"Kraken\\Container\\": "src/Container/src",
"Kraken\\Core\\": "src/Core/src",
"Kraken\\Environment\\": "src/Environment/src",
"Kraken\\Filesystem\\": "src/Filesystem/src",
"Kraken\\Log\\": "src/Log/src",
"Kraken\\Network\\": "src/Network/src",
"Kraken\\Root\\": "src/Root/src",
"Kraken\\Runtime\\": "src/Runtime/src",
"Kraken\\Supervision\\": "src/Supervision/src",
"Kraken\\Test\\": "src/Test/src",
"Kraken\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kraken\\_Integration\\": "test/_Integration",
"Kraken\\_Module\\": "test/_Module",
"Kraken\\_Unit\\": "test/_Unit"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}