Http.php 732 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace Qii\Library;
  3. /**
  4. * A parallel HTTP client written in pure PHP
  5. *
  6. * This file just for non-composer user, require this file directly.
  7. *
  8. * @author hightman <hightman@twomice.net>
  9. * @link http://hightman.cn
  10. * @copyright Copyright (c) 2015 Twomice Studio.
  11. */
  12. _require(array(
  13. __DIR__ . '/Third/hightman/ParseInterface.php',
  14. __DIR__ . '/Third/hightman/HeaderTrait.php',
  15. __DIR__ . '/Third/hightman/Client.php',
  16. __DIR__ . '/Third/hightman/Connection.php',
  17. __DIR__ . '/Third/hightman/Response.php',
  18. __DIR__ . '/Third/hightman/Request.php',
  19. __DIR__ . '/Third/hightman/Processor.php'
  20. )
  21. );
  22. use hightman\http\Client;
  23. use hightman\http\Request;
  24. use hightman\http\Response;
  25. class Http extends Client
  26. {
  27. }