-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·40 lines (40 loc) · 1.31 KB
/
composer.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.31 KB
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
{
"name": "campaignchain/location-google-analytics",
"description": "Google Analytics Integration",
"keywords": ["google", "analytics", "campaignchain"],
"type": "campaignchain-location",
"license": "Apache-2.0",
"homepage": "http://www.campaignchain.com",
"authors": [
{
"name": "CampaignChain Inc.",
"email": "info@campaignchain.com",
"homepage": "http://www.campaignchain.com"
}
],
"support": {
"issues": "https://github.com/CampaignChain/campaignchain-ce/issues",
"docs": "http://doc.campaignchain.com"
},
"require": {
"campaignchain/channel-google-analytics": "dev-master"
},
"autoload": {
"psr-4": { "CampaignChain\\Location\\GoogleAnalyticsBundle\\": "" }
},
"extra": {
"campaignchain": {
"kernel": {
"classes": [
"CampaignChain\\Location\\GoogleAnalyticsBundle\\CampaignChainLocationGoogleAnalyticsBundle"
],
"routing":
{
"name": "campaignchain_location_google_analytics",
"resource": "@CampaignChainLocationGoogleAnalyticsBundle/Resources/config/routing.yml",
"prefix": "/"
}
}
}
}
}