-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.32 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
{
"name": "campaignchain/channel-google",
"description": "Connect with Google",
"keywords": ["google", "campaignchain"],
"type": "campaignchain-channel",
"license": "Apache-2.0",
"homepage": "http://www.campaignchain.com",
"authors": [
{
"name": "CampaignChain Inc.",
"email": "[email protected]",
"homepage": "http://www.campaignchain.com"
}
],
"support": {
"issues": "https://github.com/CampaignChain/campaignchain-ce/issues",
"docs": "http://doc.campaignchain.com"
},
"require": {
"campaignchain/core": "dev-master",
"campaignchain/security-authentication-client-oauth": "dev-master",
"google/apiclient": "1.0.*@beta"
},
"autoload": {
"psr-4": { "CampaignChain\\Channel\\GoogleBundle\\": "" }
},
"extra": {
"campaignchain": {
"kernel": {
"classes": [
"CampaignChain\\Channel\\GoogleBundle\\CampaignChainChannelGoogleBundle"
],
"routing":
{
"name": "campaignchain_channel_google",
"resource": "@CampaignChainChannelGoogleBundle/Resources/config/routing.yml",
"prefix": "/"
}
}
}
}
}