-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (53 loc) · 1.44 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
47
48
49
50
51
52
53
{
"name": "craftquest/buggy",
"description": "Put bugs in your control panel and then learn how to use Xdebug via CraftQuest.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"buggy",
"xdebug",
"bugs",
"debugging",
"control panel"
],
"support": {
"docs": "https://github.com/ryanirelan/buggy/blob/v2/README.md",
"issues": "https://github.com/ryanirelan/buggy/issues"
},
"license": "MIT",
"authors": [
{
"name": "CraftQuest",
"homepage": "https://craftquest.io"
}
],
"require": {
"craftcms/cms": "^4.0.0"
},
"require-dev": {
"craftcms/cms": "^4.0.0",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"craftquest\\buggy\\": "src/"
}
},
"extra": {
"name": "Buggy",
"handle": "buggy",
"developer": "CraftQuest",
"developerUrl": "https://craftquest.io",
"documentationUrl": "https://github.com/ryanirelan/buggy/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/ryanirelan/buggy/master/CHANGELOG.md",
"components": {
"buggyService": "craftquest\\buggy\\services\\BuggyService"
},
"class": "craftquest\\buggy\\Buggy"
}
}