-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
100 lines (100 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "climbs/main",
"authors": [
{
"name": "Ishan Joshi",
"email": "[email protected]"
},
{
"name": "Garet Claborn",
"email": "[email protected]"
}
],
"extra": {
"installer-types": [
"approach",
"approach-extension",
"approach-community",
"approach-wild"
],
"installer-paths": {
"support/lib/{$name}/": [
"approach/approach"
],
"support/lib/oyster/{$name}/": [
"newtoallofthis123/oyster_menu"
],
"support/lib/extension/{$name}/": [
"approach-extension"
],
"support/lib/community/{$name}/": [
"approach-community"
],
"support/lib/vendor/{$name}/": [
"approach/vendor"
],
"support/lib/wild/{$name}/": [
"approach-wild"
],
"src/Render/": [
"climbs/render"
],
"src/Component/": [
"climbs/component"
],
"src/Composition/": [
"climbs/composition"
],
"src/Imprint/": [
"climbs/imprint"
],
"src/Resource/": [
"climbs/resource"
],
"src/Service/": [
"climbs/service"
],
"static/": [
"climbs/static"
]
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/TheApproach/Approach"
},
{
"type": "vcs",
"url": "https://github.com/newtoallofthis123/oyster_menu"
}
],
"config": {
"vendor-dir": "support/lib/vendor",
"secure-https": false,
"allow-plugins": {
"oomphinc/composer-installers-extender": true,
"approach/approach": true,
"composer/installers": true
}
},
"require": {
"composer/installers": "~1.0",
"oomphinc/composer-installers-extender": "^2.0",
"approach/approach": "dev-master",
"ext-mysqli": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "*"
},
"autoload": {
"psr-4": {
"ClimbUI\\": "src/"
}
}
}