-
Notifications
You must be signed in to change notification settings - Fork 68
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "crada/phalcon-user-plugin",
"type": "library",
"description": "User plugin for Phalcon PHP framework",
"keywords": ["phalcon","user","login","facebook", "twitter", "linkedin", "google-plus"],
"homepage": "https://github.com/calinrada/PhalconUserPlugin",
"license": "MIT",
"authors": [
{
"name": "Calin Rada",
"email": "rada.calin@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"swiftmailer/swiftmailer": ">=4.3, <6.0",
"facebook/php-sdk-v4" : "4.0.*",
"google/apiclient": "1.1.2",
"imagine/imagine": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"phalcon/incubator": "dev-master",
"phalcon/devtools": "dev-master"
},
"autoload": {
"files": ["lib/swift_required.php"]
},
"autoload": {
"psr-4": { "Phalcon\\UserPlugin\\": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"post-update-cmd": "Phalcon\\UserPlugin\\Migration\\Db::migrate"
}
}