-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
97 lines (97 loc) · 2.82 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
{
"name": "flex/blog",
"type": "project",
"description": "An Elegant Blog System",
"keywords": [
"laravel",
"CoreBlog",
"blog"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"awssat/laravel-visits": "^1.5",
"barryvdh/laravel-cors": "^0.11.3",
"cviebrock/eloquent-sluggable": "^4.8",
"dingo/api": "^2.3",
"erusev/parsedown": "^1.7",
"fideloper/proxy": "^4.0",
"flex/installer": "^1.0",
"fukuball/jieba-php": "^0.33.0",
"guzzlehttp/guzzle": "^6.3",
"iidestiny/laravel-filesystem-oss": "^1.2",
"intervention/image": "^2.4",
"jenssegers/agent": "^2.6",
"khanamiryan/qrcode-detector-decoder": "^1.0",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"laravelium/feed": "3.1.*",
"laravelium/sitemap": "3.1.*",
"mews/purifier": "^2.1",
"nesbot/carbon": "^2.22",
"overtrue/laravel-lang": "~3.0",
"overtrue/pinyin": "~4.0",
"spatie/laravel-permission": "^2.37",
"stichoza/google-translate-php": "^4.0",
"tymon/jwt-auth": "1.0.0-rc.4.1",
"valiner/identicon-avatar": "^0.0.1",
"vanry/laravel-scout-tntsearch": "^1.3",
"vinkla/hashids": "^6.0",
"yansongda/laravel-pay": "^2.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"nunomaduro/phpinsights": "^1.3",
"phpunit/phpunit": "^7.5",
"spatie/laravel-web-tinker": "^1.4",
"laravel/horizon": "^3.2",
"laravel/telescope": "^2.0",
"binarytorch/larecipe": "^2.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php artisan jwt:secret -f --ansi"
]
}
}