forked from andreas83/SocialNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (35 loc) · 1.01 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
{
"name": "movingbytes/social-network",
"description": "works pretty similar to a well known social network, but you can host it on your very own infrastructure or intranet.",
"type": "project",
"require": {
"php" : ">=5.5",
"altorouter/altorouter" : "^1.1",
"phpmailer/phpmailer" : "^5.2",
"textalk/websocket" : "^1.2",
"intervention/image": "^2.4",
"coldume/imagecraft" : "~1.0",
"league/oauth2-client": "^2.3",
"league/oauth2-facebook": "^2.0"
},
"require-dev": {
"phpunit/phpunit" : "4.8",
"guzzlehttp/guzzle" : "^6.2"
},
"config": {
"bin-dir": "bin/"
},
"license": "MIT",
"authors": [
{
"name": "Andreas Beder",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SocialNetwork\\app\\": "app/"
}
},
"minimum-stability": "beta"
}