This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
62 lines (62 loc) · 1.5 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
{
"name": "thefox/phpchat",
"description": "A decentralized, peer-to-peer, encrypted chat in PHP.",
"license": "GPL-3.0",
"type": "project",
"keywords": [
"chat",
"im",
"messaging",
"p2p",
"peer-to-peer",
"decentralized",
"serverless"
],
"homepage": "https://fox21.at",
"authors": [
{
"name": "Christian Mayer",
"email": "[email protected]",
"homepage": "https://fox21.at"
}
],
"require": {
"php": "^7.0",
"ext-curl": "^7.0",
"ext-openssl": ">=0.9.8",
"symfony/console": "^2.5",
"symfony/filesystem": "^2.5",
"symfony/finder": "^3.3",
"ramsey/uuid": "^3.1",
"liip/process-manager": "^1.0",
"zendframework/zend-uri": "^2.5",
"guzzlehttp/guzzle": "^6.2",
"kevinlebrun/colors.php": "^1.0",
"rych/bytesize": "^1.0",
"stephenhill/base58": "^1.1",
"thefox/utilities": "^1.11",
"thefox/hashcash": "^1.8",
"thefox/imapd": "^0.5",
"thefox/smtpd": "^0.6",
"thefox/storage": "^0.1",
"thefox/network": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
},
"autoload": {
"psr-0": {
"TheFox\\": "src"
}
},
"autoload-dev": {
"psr-0": {
"TheFox\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x.x-dev"
}
}
}