|
@@ -39,7 +39,7 @@ discard block |
|
|
block discarded – undo |
|
39
|
39
|
|
|
40
|
40
|
if ($this->confirm('Do you have setting the database configuration at .env ?')) { |
|
41
|
41
|
|
|
42
|
|
- if (! file_exists(public_path('vendor')) ) { |
|
|
42
|
+ if (!file_exists(public_path('vendor'))) { |
|
43
|
43
|
mkdir(public_path('vendor')); |
|
44
|
44
|
} |
|
45
|
45
|
|
|
@@ -52,7 +52,7 @@ discard block |
|
|
block discarded – undo |
|
52
|
52
|
/* |
|
53
|
53
|
* Create CBPlugins |
|
54
|
54
|
*/ |
|
55
|
|
- if(!file_exists(app_path("CBPlugins"))) { |
|
|
55
|
+ if (!file_exists(app_path("CBPlugins"))) { |
|
56
|
56
|
mkdir(app_path("CBPlugins")); |
|
57
|
57
|
} |
|
58
|
58
|
|
|
@@ -61,11 +61,11 @@ discard block |
|
|
block discarded – undo |
|
61
|
61
|
* We need it to change default laravel local filesystem from storage to public |
|
62
|
62
|
* We won't use symlink because of a security issue in many server |
|
63
|
63
|
*/ |
|
64
|
|
- if(!file_exists(public_path("storage"))) { |
|
|
64
|
+ if (!file_exists(public_path("storage"))) { |
|
65
|
65
|
$this->info("Create storage directory on /public"); |
|
66
|
66
|
mkdir(public_path("storage")); |
|
67
|
|
- file_put_contents(public_path("storage/.gitignore"),"!.gitignore"); |
|
68
|
|
- file_put_contents(public_path("storage/index.html")," "); |
|
|
67
|
+ file_put_contents(public_path("storage/.gitignore"), "!.gitignore"); |
|
|
68
|
+ file_put_contents(public_path("storage/index.html"), " "); |
|
69
|
69
|
} |
|
70
|
70
|
|
|
71
|
71
|
/* |
|
@@ -74,8 +74,8 @@ discard block |
|
|
block discarded – undo |
|
74
|
74
|
* Disable php execution on /vendor/* |
|
75
|
75
|
*/ |
|
76
|
76
|
$this->info("Tweak some security for your laravel"); |
|
77
|
|
- file_put_contents(base_path(".htaccess"), "\n\n# Generated by CRUDBooster\nServerSignature Off\nIndexIgnore *\nRewriteRule ^(.*)/vendor/.*\.(php|rb|py)$ - [F,L,NC]\nRewriteRule ^vendor/.*\.(php|rb|py)$ - [F,L,NC]\n<FilesMatch \"^\.\">\nOrder allow,deny\nDeny from all\n</FilesMatch>",FILE_APPEND); |
|
78
|
|
- file_put_contents(public_path(".htaccess"), "\n\n# Generated by CRUDBooster\nServerSignature Off\nIndexIgnore *\nRewriteRule ^(.*)/vendor/.*\.(php|rb|py)$ - [F,L,NC]\nRewriteRule ^vendor/.*\.(php|rb|py)$ - [F,L,NC]\n<FilesMatch \"^\.\">\nOrder allow,deny\nDeny from all\n</FilesMatch>",FILE_APPEND); |
|
|
77
|
+ file_put_contents(base_path(".htaccess"), "\n\n# Generated by CRUDBooster\nServerSignature Off\nIndexIgnore *\nRewriteRule ^(.*)/vendor/.*\.(php|rb|py)$ - [F,L,NC]\nRewriteRule ^vendor/.*\.(php|rb|py)$ - [F,L,NC]\n<FilesMatch \"^\.\">\nOrder allow,deny\nDeny from all\n</FilesMatch>", FILE_APPEND); |
|
|
78
|
+ file_put_contents(public_path(".htaccess"), "\n\n# Generated by CRUDBooster\nServerSignature Off\nIndexIgnore *\nRewriteRule ^(.*)/vendor/.*\.(php|rb|py)$ - [F,L,NC]\nRewriteRule ^vendor/.*\.(php|rb|py)$ - [F,L,NC]\n<FilesMatch \"^\.\">\nOrder allow,deny\nDeny from all\n</FilesMatch>", FILE_APPEND); |
|
79
|
79
|
|
|
80
|
80
|
|
|
81
|
81
|
$this->info('Dumping the autoloaded files and reloading all new files...'); |