-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 loc) · 1.1 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
{
"name": "wangta69/laravel-board",
"description": "BBS bulletin board system",
"keywords": ["laravel", "bbs", "pondol" , "board", "게시판", "korea", "라라벨"],
"homepage": "https://www.onstory.fun/packages/laravel-board",
"license": "MIT",
"authors": [
{
"name": "Pondol",
"email": "[email protected]",
"homepage": "https://www.onstory.fun"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"kyslik/column-sortable": "^6.0",
"wangta69/php-thumbnail": "^1",
"wangta69/laravel-pondol": "*",
"wangta69/laravel-editor": "*",
"wangta69/laravel-auth": "*",
"wangta69/laravel-components": "*",
"wangta69/laravel-meta": "*"
},
"autoload": {
"files": [
"src/Helper/helpers.php"
], "psr-4": {
"Pondol\\Bbs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Pondol\\Bbs\\BbsServiceProvider"
],
"aliases": {
"CustomPackage": "Pondol\\Bbs\\Facades\\BbsFacade"
}
}
}
}