This repository has been archived by the owner on Jun 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
77 lines (77 loc) · 2.01 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/spatie/sheets"
}
],
"require": {
"php": "^7.2",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.8.*",
"league/commonmark": "^0.18",
"matthiasmullie/minify": "^1.3",
"predis/predis": "^1.1",
"spatie/commonmark-highlighter": "^1.0",
"spatie/laravel-collection-macros": "^5.0",
"spatie/laravel-feed": "^2.0",
"spatie/laravel-menu": "^3.1",
"spatie/laravel-responsecache": "^5.0",
"spatie/schema-org": "^2.0",
"spatie/sheets": "^1.0.0"
},
"require-dev": {
"filp/whoops": "~2.0",
"graham-campbell/analyzer": "^1.1",
"laravel/envoy": "^1.4",
"laravel/tinker": "^1.0",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Tests\\": "tests/"
}
},
"scripts": {
"deploy": [
"php ./vendor/bin/envoy run deploy"
],
"quick-deploy": [
"php ./vendor/bin/envoy run quick-deploy"
],
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.2.11"
}
}
}