Commit Graph

5211 Commits

Author SHA1 Message Date
Taylor Otwell b69e85c245 Merge pull request #3868 from tillkruss/patch-3
Use double quotes; Remove un-used fonts
2016-08-11 11:57:19 -05:00
Till Krüss 530c8187f5 Use double quotes; Remove un-used fonts 2016-08-10 15:44:56 -07:00
Taylor Otwell 7e41c61835 rename method 2016-08-10 14:21:02 -05:00
Joseph Silber 7b1ab65623 Delete app/Http/Requests directory 2016-08-10 12:30:17 -04:00
Taylor Otwell 24d0102fcc recompile 2016-08-10 09:16:52 -05:00
Taylor Otwell 54d3f325ad change header 2016-08-10 09:15:28 -05:00
Taylor Otwell 9c0278274b simplify csrf token retrieval. remove package. 2016-08-10 09:14:25 -05:00
Taylor Otwell e6cc60349d add notification facade 2016-08-08 16:10:19 -05:00
Taylor Otwell 1b126d0982 Merge pull request #3865 from svenluijten/javascript-docblock-missing-word
Fix missing word in docblock
2016-08-07 12:27:04 -05:00
Sven Luijten 5833718910 Vue is a library, not a framework 2016-08-07 12:18:10 +02:00
Sven Luijten 727eda71f2 fix missing word in docblock
the word "framework" was missing. I also managed to make the docblock
fit Laravel's style by changing around some of the wording while keeping
the general message the same.
2016-08-06 22:48:40 +02:00
Taylor Otwell 51113bd531 Default broadcasting driver to null. 2016-08-05 15:51:22 -05:00
Taylor Otwell 1426bdda40 Merge pull request #3864 from laravel/analysis-8KgoeQ
Applied fixes from StyleCI
2016-08-05 15:44:53 -05:00
Taylor Otwell 30a9cbf54e Applied fixes from StyleCI 2016-08-05 16:44:47 -04:00
Taylor Otwell 9df814e512 Tweak a few broadcasting configurations. 2016-08-05 15:44:29 -05:00
Taylor Otwell 5fad3768cb Merge remote-tracking branch 'origin/develop' into develop 2016-08-05 14:28:29 -05:00
Taylor Otwell 41c0eec70c tweak broadcast service provider 2016-08-05 14:28:22 -05:00
Taylor Otwell de80aad4ce Merge pull request #3854 from jhoff/phpmd_compliance
Compliance with commonly used phpmd rules
2016-08-05 09:51:17 -05:00
Taylor Otwell 89a43434e7 fix cons 2016-08-05 09:43:51 -05:00
Taylor Otwell 4c2e1ed7db working on welcome page 2016-08-05 09:43:15 -05:00
vijay kumar 4c271f0f4b Removes padding on html/body to kill the scrollbar and top right links fixes 2016-08-05 02:33:06 +05:30
Taylor Otwell 6e91cc6ad3 Merge pull request #3861 from laravel/revert-3853-develop
Revert "Removes padding on html/body to kill the scrollbar"
2016-08-04 15:50:17 -05:00
Taylor Otwell 88e55f41d2 Revert "Removes padding on html/body to kill the scrollbar" 2016-08-04 15:50:11 -05:00
Taylor Otwell 64ae3d5a7e fix cons 2016-08-04 08:22:36 -05:00
Taylor Otwell 6709c69f3c Merge pull request #3858 from laravel/analysis-XV0reP
Applied fixes from StyleCI
2016-08-04 08:22:18 -05:00
Taylor Otwell a39c52c67d remove test code 2016-08-04 08:22:16 -05:00
Taylor Otwell 3807819dd0 Applied fixes from StyleCI 2016-08-04 09:22:13 -04:00
Taylor Otwell 196c267562 resolve conflicts and clean up file 2016-08-04 08:21:57 -05:00
Taylor Otwell 3b2f29ec26 Merge pull request #3853 from jackmcdade/develop
Removes padding on html/body to kill the scrollbar
2016-08-04 07:57:29 -05:00
Taylor Otwell 054bb04056 resolve conflicts 2016-08-04 07:50:00 -05:00
Taylor Otwell 5d0ecde4cf get rid of space 2016-08-04 07:49:27 -05:00
Taylor Otwell dfb33e245d Merge pull request #3857 from laravel/analysis-qMe1Y4
Applied fixes from StyleCI
2016-08-04 07:49:17 -05:00
Taylor Otwell f89a244c0f Applied fixes from StyleCI 2016-08-04 08:49:12 -04:00
Taylor Otwell b6a1152baf Merge pull request #3856 from laravel/analysis-zGgD5r
Applied fixes from StyleCI
2016-08-04 07:49:02 -05:00
Taylor Otwell d0f90f9bfd Merge branch 'master' into develop 2016-08-04 07:49:02 -05:00
Taylor Otwell e083273d97 Applied fixes from StyleCI 2016-08-04 08:48:57 -04:00
Taylor Otwell 14f79f19e3 Merge pull request #3855 from BartHuis/patch-1
give newbees a package service providers section, preventing adding after application
2016-08-04 07:48:41 -05:00
Bart Huisman (also known as VolgensBartjes) 936addceef give newbees a package service providers section, preventing adding after application
when i started, i ended up putting all package specific service providers just at the bottom of the application service providers. But when making a route group like domain.com/{keyword}, the packages that are registering its own url's, not work anymore (like now when i installed the translations manager from barryvdh). When putting them above the app specific, everything works. So just give it to the user as a default place?
2016-08-04 11:55:08 +02:00
Taylor Otwell ab453a7e82 Add default address in mail config. 2016-08-03 13:16:30 -05:00
Jordan Hoff b7d684ef82 Compliance with commonly used phpmd rules 2016-08-03 10:10:35 -05:00
Jack McDade 66946dcf3c Removes padding on html/body to kill the scrollbar 2016-08-03 10:07:31 -04:00
Phil Bates bcf3935071 Wrap .env.example variable values in quotes
When the developer copies .env.example to .env they are unlikely to
add quotes to the values in .env. When the developer needs to
set the value of an environment variable to a value containing a
space, as none of the existing values in .env are quoted, the
developer is unlikely to wrap this new value with spaces in quotes.
This will result in an error, as The vlucas/phpdotenv library throws
an error when setting an environment variable to a value with a space.

Quote all default environment variables by default, reducing the
likelihood of the developer ever receiving the error relating to
environment variables needing to be quoted when they contain spaces.

This excludes true, null etc. even though wrapping them in quotes
would still result in the desired behaviour, as it is more intuitive
to see these special types not wrapped in quotes.

The current default values in .env.example don't contain any spaces,
so this commit will make no difference out of the box; its only
purpose is to help out the developer further down the line on the day
when they need to set an environment variable to a value containing
spaces.

Also, the vlucas/phpdotenv library docs currently uses quoted
variables in every example, so quoting .env.example's values will lead
to more consistency with those docs. This will likely stop any
confusion for the developer when reading the vlucas/phpdotenv docs.

See laravel/framework#14586, laravel/docs#2223
2016-08-02 13:55:08 +01:00
Taylor Otwell f2421123e3 Merge pull request #3850 from crynobone/default-app-key
[5.2] Remove default APP_KEY value
2016-08-02 07:47:08 -05:00
crynobone 007c0190a3 [5.2] Remove default APP_KEY value
Signed-off-by: crynobone <crynobone@gmail.com>
2016-08-02 08:09:41 +08:00
Taylor Otwell 7f24b9183a working on landing page 2016-08-01 10:54:47 -05:00
Taylor Otwell ca7c973280 fix length 2016-08-01 08:51:52 -05:00
Taylor Otwell 133bd9ddd2 Merge pull request #3841 from ac1982/patch-1
[5.3] fix wrong spelling
2016-08-01 09:51:15 -04:00
Taylor Otwell 4c6abcd17d Merge pull request #3845 from mayoz/patch-3
[5.3] web group sort by name
2016-08-01 09:46:57 -04:00
Graham Campbell 9f9300442d Merge pull request #3842 from spyric/develop
Remove removed routes file
2016-07-30 17:42:21 -04:00
Sercan Çakır 42930edb0c sort by name 2016-07-30 23:36:24 +03:00