- 19 Jul, 2012 1 commit
-
-
Adel authored
-
- 18 Jul, 2012 2 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 15 Jul, 2012 6 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 13 Jul, 2012 7 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- a7c1baee Fixed typos Discussion ---------- Fixed typos
-
Pascal Borreli authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- f618014e Remove use of the `use` in closure Discussion ---------- Remove use of the `use` in closure See https://github.com/fabpot/Pimple/blob/master/lib/Pimple.php#L81 : Pimple give to the closure (as first argument) the container/application, so we do not need to use `use($app)`. Note : * I did not test on php 5.4. But tests are OK on 5.3 * I think it is cleaner to use php default arguments than the use of `use` * I fixed the CS : `function()` -> `function ()` (added a space before `(`)
-
Grégoire Pineau authored
See https://github.com/fabpot/Pimple/blob/master/lib/Pimple.php#L81 : Pimple give to the closure (as first argument) the container/application, so we do not need to use `use($app)`.
-
- 12 Jul, 2012 1 commit
-
-
Fabien Potencier authored
-
- 11 Jul, 2012 4 commits
-
-
Fabien Potencier authored
Commits ------- 5fc0a7fe fastcgi_pass requires unix: prefix when using a socket Discussion ---------- fastcgi_pass requires unix: prefix when using a socket This is the case on my system at any rate. Possible that it is not required in all cases or newer/older versions of nginx?
-
Fabien Potencier authored
Commits ------- ff4432eb Fix phpdocs variable name Discussion ---------- Fix phpdocs variable name
-
Fabien Potencier authored
Commits ------- 82c340c2 Send required parameter to prototype function Discussion ---------- Send required parameter to prototype function --------------------------------------------------------------------------- by igorw at 2012-07-11T01:54:15Z Duplicate of #429.
-
Beau Simensen authored
This is the case on my system at any rate. Possible that it is not required in all cases or newer/older versions of nginx?
-
- 10 Jul, 2012 3 commits
-
-
Adel authored
-
Dave Marshall authored
-
Fabien Potencier authored
Commits ------- 2de6ff72 Fix typehint Discussion ---------- Fix typehint
-
- 09 Jul, 2012 2 commits
-
-
Adel authored
-
Fabien Potencier authored
-
- 07 Jul, 2012 2 commits
-
-
Fabien Potencier authored
Commits ------- 1cd7e78a Add IRC channel to README Discussion ---------- Add IRC channel to README I think the only place this has been mentioned is the mailing list, but people keep coming in there. So adding it to the README would be a good idea imo.
-
Igor Wiedler authored
-
- 06 Jul, 2012 5 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 05 Jul, 2012 2 commits
-
-
Fabien Potencier authored
Commits ------- a3885545 Fix JSON recipe, fixes #419 Discussion ---------- Fix JSON recipe, fixes #419
-
Igor Wiedler authored
-
- 04 Jul, 2012 4 commits
-
-
Fabien Potencier authored
Commits ------- 197d2400 Fix PHP 5.4 built-in webserver front controller Discussion ---------- Fix PHP 5.4 built-in webserver front controller The problem is that with `php -S localhost:8080 -t web` it will only route one level of paths to index.php. This is stupid, but requires us to use a router script, which means that we must specify `index.php` and have that script return false when the web server should serve from disk. Thanks to @schokocappucino for the hints.
-
Fabien Potencier authored
Commits ------- bcbd71ec Add minimum-stability flag to all composer.json samples Discussion ---------- Add minimum-stability flag to all composer.json samples Today marks the release of composer alpha4. This changes the default stability from dev to stable, which means that if you want to use un- stable dependencies, you either have to specify a root package level minimum-stability, or use the @dev constraint, i.e. "1.0.*@dev". We are setting the minimum-stability, so that we do not have to use @dev for all dependencies, and all dependencies of dependencies. We can increase the stability to beta once we release a beta of silex (this will use Symfony 2.1 beta releases), and when we make a final release (some time after Symfony 2.1.0), the flag can be removed.
-
Igor Wiedler authored
Today marks the release of composer alpha4. This changes the default stability from dev to stable, which means that if you want to use un- stable dependencies, you either have to specify a root package level minimum-stability, or use the @dev constraint, i.e. "1.0.*@dev". We are setting the minimum-stability, so that we do not have to use @dev for all dependencies, and all dependencies of dependencies. We can increase the stability to beta once we release a beta of silex (this will use Symfony 2.1 beta releases), and when we make a final release (some time after Symfony 2.1.0), the flag can be removed.
-
Igor Wiedler authored
The problem is that with `php -S localhost:8080 -t web` it will only route one level of paths to index.php. This is stupid, but requires us to use a router script, which means that we must specify `index.php` and have that script return false when the web server should serve from disk. Funny part: We are almost lying now, because the webserver now requires some sort of configuration (via code), but I will leave it in the docs for marketing reasons. It's not a big lie after all.
-
- 03 Jul, 2012 1 commit
-
-
Fabien Potencier authored
Commits ------- fff4314e Add note about the PHP 5.4 webserver to webserver docs Discussion ---------- Add note about the PHP 5.4 webserver to webserver docs
-