質問編集履歴
3
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -104,4 +104,12 @@
|
|
104
104
|
"minimum-stability": "dev",
|
105
105
|
"prefer-stable": true
|
106
106
|
}
|
107
|
+
```
|
108
|
+
|
109
|
+
試したこと
|
110
|
+
```
|
111
|
+
sudo chmod -R 775 bootstrap/cache/
|
112
|
+
```
|
113
|
+
```
|
114
|
+
php artisan cache:clear
|
107
115
|
```
|
2
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -35,4 +35,73 @@
|
|
35
35
|
```
|
36
36
|
|
37
37
|
localでは成功しています。
|
38
|
-
追加機能でLine認証などを入れたので(socialite)、updateを行いたいのですが。
|
38
|
+
追加機能でLine認証などを入れたので(socialite)、updateを行いたいのですが。
|
39
|
+
|
40
|
+
追記
|
41
|
+
|
42
|
+
```
|
43
|
+
{
|
44
|
+
"name": "laravel/laravel",
|
45
|
+
"description": "The Laravel Framework.",
|
46
|
+
"keywords": ["framework", "laravel"],
|
47
|
+
"license": "MIT",
|
48
|
+
"type": "project",
|
49
|
+
"require": {
|
50
|
+
"php": "^7.1.3",
|
51
|
+
"doctrine/dbal": "^2.7",
|
52
|
+
"fideloper/proxy": "^4.0",
|
53
|
+
"laravel/framework": "5.6.*",
|
54
|
+
"laravel/socialite": "^3.0",
|
55
|
+
"laravel/tinker": "^1.0",
|
56
|
+
"laravelcollective/html": "^5.6",
|
57
|
+
"league/flysystem-aws-s3-v3": "~1.0",
|
58
|
+
"socialiteproviders/line": "^2.0"
|
59
|
+
},
|
60
|
+
"require-dev": {
|
61
|
+
"filp/whoops": "^2.0",
|
62
|
+
"fzaninotto/faker": "^1.4",
|
63
|
+
"mockery/mockery": "^1.0",
|
64
|
+
"nunomaduro/collision": "^2.0",
|
65
|
+
"phpunit/phpunit": "^7.0"
|
66
|
+
},
|
67
|
+
"autoload": {
|
68
|
+
"classmap": [
|
69
|
+
"database/seeds",
|
70
|
+
"database/factories"
|
71
|
+
],
|
72
|
+
"psr-4": {
|
73
|
+
"App\": "app/"
|
74
|
+
}
|
75
|
+
},
|
76
|
+
"autoload-dev": {
|
77
|
+
"psr-4": {
|
78
|
+
"Tests\": "tests/"
|
79
|
+
}
|
80
|
+
},
|
81
|
+
"extra": {
|
82
|
+
"laravel": {
|
83
|
+
"dont-discover": [
|
84
|
+
]
|
85
|
+
}
|
86
|
+
},
|
87
|
+
"scripts": {
|
88
|
+
"post-root-package-install": [
|
89
|
+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
90
|
+
],
|
91
|
+
"post-create-project-cmd": [
|
92
|
+
"@php artisan key:generate"
|
93
|
+
],
|
94
|
+
"post-autoload-dump": [
|
95
|
+
"Illuminate\Foundation\ComposerScripts::postAutoloadDump",
|
96
|
+
"@php artisan package:discover"
|
97
|
+
]
|
98
|
+
},
|
99
|
+
"config": {
|
100
|
+
"preferred-install": "dist",
|
101
|
+
"sort-packages": true,
|
102
|
+
"optimize-autoloader": true
|
103
|
+
},
|
104
|
+
"minimum-stability": "dev",
|
105
|
+
"prefer-stable": true
|
106
|
+
}
|
107
|
+
```
|
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -32,4 +32,7 @@
|
|
32
32
|
|
33
33
|
Please use the argument -v to see more details.
|
34
34
|
Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1
|
35
|
-
```
|
35
|
+
```
|
36
|
+
|
37
|
+
localでは成功しています。
|
38
|
+
追加機能でLine認証などを入れたので(socialite)、updateを行いたいのですが。
|