forked from marknotton/craft-plugin-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.23 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
{
"name": "marknotton/agent",
"description": "Query the server-side information from the users agent data.",
"type": "craft-plugin",
"version": "1.0.7-1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"agent"
],
"support": {
"docs": "https://github.com/marknotton/craft-plugin-agent/blob/master/README.md",
"issues": "https://github.com/marknotton/craft-plugin-agent/issues"
},
"license": "MIT",
"authors": [
{
"name": "Mark Notton",
"homepage": "https://github.com/marknotton/craft-plugin-agent"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"jenssegers/agent": "^2.6"
},
"autoload": {
"psr-4": {
"marknotton\\agent\\": "src/"
}
},
"extra": {
"name": "Agent",
"handle": "agent",
"schemaVersion": "1.0.7-1",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/marknotton/craft-plugin-agent/blob/master/CHANGELOG.md",
"components": {
"agentService": "marknotton\\agent\\services\\AgentService"
},
"class": "marknotton\\agent\\Agent"
}
}