785e168f5ed15908b1d15dc2071eedc1bc16e30e
Most SLL-related code in Laravel checks to see if `application.ssl`
is true before doing an action requiring it. `Cookie::put()` is the
only exception that I've found, to date, that doesn't test for SSL.
This checks to see that the SSL is enabled when attempting to set a
secure cookie.
To verify, set `application.ssl` to false (without this patch) then
run:
Cookie::put('foo', 'bar', 0, '/', null, true);
You will get an exception because of line 90 in `cookie.php`:
if ($secure and ! Request::secure())
{
throw new \Exception("Attempting to set secure cookie over HTTP.");
}
With this patch you will not get this error unless both `application.ssl`
is true, and the cookie `$secure` flag is set.
Laravel - A PHP Framework For Web Artisans
Laravel is a clean and classy framework for PHP web development. Freeing you from spaghetti code, Laravel helps you create wonderful applications using simple, expressive syntax. Development should be a creative experience that you enjoy, not something that is painful. Enjoy the fresh air.
Official Website & Documentation
Feature Overview
- Simple routing using Closures or controllers.
- Views and templating.
- Driver based session and cache handling.
- Database abstraction with query builder.
- Authentication.
- Migrations.
- PHPUnit Integration.
- A lot more.
A Few Examples
Hello World:
<?php
Route::get('/', function()
{
return "Hello World!";
});
Passing Data To Views:
<?php
Route::get('user/(:num)', function($id)
{
$user = DB::table('users')->find($id);
return View::make('profile')->with('user', $user);
});
Redirecting & Flashing Data To The Session:
<?php
return Redirect::to('profile')->with('message', 'Welcome Back!');
Contributing to Laravel
Contributions are encouraged and welcome; however, please review the Developer
Certificate of Origin in the "license.txt" file included in the repository. All
commits must be signed off using the -s switch.
git commit -s -m "this commit will be signed off automatically!"
License
Laravel is open-sourced software licensed under the MIT License.
Description
Languages
Blade
59.5%
PHP
38.9%
Dockerfile
0.8%
CSS
0.3%
JavaScript
0.3%
Other
0.2%