Skip to content

Commit a91dcdc

Browse files
committed
Conflicts: .gitignore README.md app/config/app.php app/config/database.php app/config/mail.php app/config/session.php app/controllers/BaseController.php app/controllers/HomeController.php app/database/seeds/DatabaseSeeder.php app/filters.php app/models/BaseModel.php app/models/User.php app/routes.php app/start/global.php app/start/local.php app/tests/ExampleTest.php app/views/home/index.blade.php app/views/home/login.blade.php app/views/layouts/default.blade.php artisan bootstrap/autoload.php bootstrap/start.php composer.json public/.htaccess public/css/bootstrap.css public/favicon.ico public/index.php public/js/bootstrap.js public/js/bootstrap.min.js public/js/jquery.js
2 parents 07d55db + 84ad7b8 commit a91dcdc

File tree

297 files changed

+100516
-6287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+100516
-6287
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
/vendor
33
composer.phar
44
composer.lock
5-
.DS_Store
5+
.DS_Store
6+
=======
7+
.DS_Store
8+
error_log

app/config/app.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
|--------------------------------------------------------------------------
6161
|
6262
| This key is used by the Illuminate encrypter service and should be set
63-
| to a random, long string, otherwise these encrypted values will not
64-
| be safe. Make sure to change it before deploying any application!
63+
| to a random, 32 character string, otherwise these encrypted strings
64+
| will not be safe. Please do this before deploying an application!
6565
|
6666
*/
6767

68-
'key' => 'YourSecretKey!!!',
68+
'key' => '',
6969

7070
/*
7171
|--------------------------------------------------------------------------
@@ -113,7 +113,7 @@
113113
'Illuminate\Validation\ValidationServiceProvider',
114114
'Illuminate\View\ViewServiceProvider',
115115
'Illuminate\Workbench\WorkbenchServiceProvider',
116-
116+
'Way\Generators\GeneratorsServiceProvider'
117117
),
118118

119119
/*

app/config/mail.php

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
| sending of e-mail. You may specify which one you're using throughout
1212
| your application here. By default, Laravel is setup for SMTP mail.
1313
|
14-
| Supported: "smtp", "mail"
14+
| Supported: "smtp", "mail", "sendmail"
1515
|
1616
*/
1717

18-
'driver' => 'mail',
18+
'driver' => 'smtp',
1919

2020
/*
2121
|--------------------------------------------------------------------------
@@ -27,7 +27,6 @@
2727
| the Postmark mail service, which will provide reliable delivery.
2828
|
2929
*/
30-
3130
'host' => '127.0.0.1',
3231

3332
/*
@@ -95,4 +94,30 @@
9594

9695
'password' => null,
9796

97+
/*
98+
|--------------------------------------------------------------------------
99+
| Sendmail System Path
100+
|--------------------------------------------------------------------------
101+
|
102+
| When using the "sendmail" driver to send e-mails, we will need to know
103+
| the path to where Sendmail lives on this server. A default path has
104+
| been provided here, which will work well on most of your systems.
105+
|
106+
*/
107+
108+
'sendmail' => '/usr/sbin/sendmail -bs',
109+
110+
/*
111+
|--------------------------------------------------------------------------
112+
| Mail "Pretend"
113+
|--------------------------------------------------------------------------
114+
|
115+
| When this option is enabled, e-mail will not actually be sent over the
116+
| web and will instead be written to your application's logs files so
117+
| you may inspect the message. This is great for local development.
118+
|
119+
*/
120+
121+
'pretend' => false,
122+
98123
);

app/config/session.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
| "memcached", "redis", "array"
1616
|
1717
*/
18-
1918
'driver' => 'native',
2019

2120
/*
@@ -134,5 +133,4 @@
134133
*/
135134

136135
'payload' => 'laravel_payload',
137-
138136
);

0 commit comments

Comments
 (0)