forked from FriendsOfSymfony/FOSFacebookBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (42 loc) · 1.26 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
{
"repositories": {
"facebook-unofficial": {
"type": "package",
"package": {
"name": "facebook/php-sdk",
"version": "3.1.1",
"source": {
"url": "git://github.com/facebook/facebook-php-sdk.git",
"type": "git",
"reference": "origin/master"
}
}
}
},
"name": "friendsofsymfony/facebook-bundle",
"type": "symfony-bundle",
"description": "Integrate the Facebook Platform into your Symfony2 application.",
"keywords": ["facebook"],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name":"Kris Wallsmith",
"email":"[email protected]",
"homepage":"http://kriswallsmith.net/"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSFacebookBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": ">=2.1.0-dev",
"facebook/php-sdk": "3.*"
},
"autoload": {
"psr-0": { "FOS\\FacebookBundle": "" }
},
"target-dir": "FOS/FacebookBundle"
}