includes.php 788 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Sabre_HTTP includes file
  4. *
  5. * Including this file will automatically include all files from the Sabre_HTTP
  6. * package.
  7. *
  8. * This often allows faster loadtimes, as autoload-speed is often quite slow.
  9. *
  10. * @package Sabre
  11. * @subpackage HTTP
  12. * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
  13. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  14. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  15. */
  16. // Begin includes
  17. include __DIR__ . '/AbstractAuth.php';
  18. include __DIR__ . '/AWSAuth.php';
  19. include __DIR__ . '/BasicAuth.php';
  20. include __DIR__ . '/DigestAuth.php';
  21. include __DIR__ . '/Request.php';
  22. include __DIR__ . '/Response.php';
  23. include __DIR__ . '/Util.php';
  24. include __DIR__ . '/Version.php';
  25. // End includes