This repository was archived by the owner on Feb 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
44 lines (44 loc) · 1.53 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
{
"name" : "vi-kon/laravel-wiki",
"description" : "Wiki Engine for Laravel 5.1, based on Markdown syntax",
"keywords" : [
"laravel",
"wiki",
"markdown"
],
"license" : "MIT",
"authors" : [
{
"name" : "Kovács Vince",
"email": "[email protected]"
}
],
"require" : {
"php" : ">=5.5.9",
"illuminate/config" : "~5.2",
"illuminate/console" : "~5.2",
"illuminate/container" : "~5.2",
"illuminate/contracts" : "~5.2",
"illuminate/database" : "~5.2",
"illuminate/http" : "~5.2",
"illuminate/routing" : "~5.2",
"illuminate/session" : "~5.2",
"illuminate/support" : "~5.2",
"illuminate/translation" : "~5.2",
"illuminate/validation" : "~5.2",
"illuminate/view" : "~5.2",
"laravelcollective/html" : "~5.2",
"vi-kon/laravel-auth" : "~3.1",
"vi-kon/laravel-bootstrap" : "~2.0",
"vi-kon/laravel-db-config" : "~1.2",
"vi-kon/laravel-diff" : "~1.0",
"vi-kon/laravel-parser-markdown": "~1.0",
"vi-kon/laravel-support" : "~1.0"
},
"autoload" : {
"psr-0": {
"ViKon\\Wiki\\": "src/"
}
},
"minimum-stability": "stable"
}