1. 23 Apr, 2011 3 commits
  2. 22 Apr, 2011 3 commits
    • Igor Wiedler's avatar
      also disable apache MultiViews · f8d43e72
      Igor Wiedler authored
      MultiViews is a content-negotiation option for apache that will, when requesting /resource try to serve /resource.ext. if you have a blog.php this can lead to /blog serving you blog.php instead.
      
      this can be quite common with mounted apps.
      
      great thanks to Rafael Filipek for discovering this.
      f8d43e72
    • Fabien Potencier's avatar
      fixed typo · e05cc948
      Fabien Potencier authored
      e05cc948
    • Fabien Potencier's avatar
      updated vendors · 28d0cd7a
      Fabien Potencier authored
      28d0cd7a
  3. 21 Apr, 2011 2 commits
  4. 20 Apr, 2011 2 commits
  5. 18 Apr, 2011 8 commits
  6. 17 Apr, 2011 13 commits
  7. 16 Apr, 2011 6 commits
  8. 15 Apr, 2011 3 commits
    • Fabien Potencier's avatar
      fixed typo · 745ca252
      Fabien Potencier authored
      745ca252
    • Fabien Potencier's avatar
      added a Doctrine DBAL extension · debae508
      Fabien Potencier authored
      debae508
    • Fabien Potencier's avatar
      added a Swiftmailer extension · ebf07f28
      Fabien Potencier authored
      Usage:
      
          $app->register(new SwiftmailerExtension(), array(
              'swiftmailer.options' => array(
                  'host'       => 'smtp.gmail.com',
                  'port'       => 465,
                  'encryption' => 'ssl',
                  'auth_mode'  => 'login',
                  'username'   => 'xxxxxx',
                  'password'   => 'yyyyyy',
              )
          ));
      
          $app['mailer']->send($app['mailer']
              ->createMessage()
              ->setFrom('foo@example.com')
              ->addTo('bar@example.com')
              ->setSubject('Foo Title')
              ->setBody('Foo Body')
          );
      ebf07f28