1. 19 Jul, 2012 1 commit
  2. 18 Jul, 2012 2 commits
  3. 15 Jul, 2012 6 commits
  4. 13 Jul, 2012 7 commits
  5. 12 Jul, 2012 1 commit
  6. 11 Jul, 2012 4 commits
  7. 10 Jul, 2012 3 commits
  8. 09 Jul, 2012 2 commits
  9. 07 Jul, 2012 2 commits
  10. 06 Jul, 2012 5 commits
  11. 05 Jul, 2012 2 commits
  12. 04 Jul, 2012 4 commits
    • Fabien Potencier's avatar
      merged branch igorw/php54-webserver (PR #415) · 75ad4dee
      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.
      75ad4dee
    • Fabien Potencier's avatar
      merged branch igorw/minimum-stability (PR #418) · 7b9225cf
      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.
      7b9225cf
    • Igor Wiedler's avatar
      Add minimum-stability flag to all composer.json samples · bcbd71ec
      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.
      bcbd71ec
    • Igor Wiedler's avatar
      Fix PHP 5.4 built-in webserver front controller · 197d2400
      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.
      197d2400
  13. 03 Jul, 2012 1 commit