You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aws-autoloader.php 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License").
  6. * You may not use this file except in compliance with the License.
  7. * A copy of the License is located at
  8. *
  9. * http://aws.amazon.com/apache2.0
  10. *
  11. * or in the "license" file accompanying this file. This file is distributed
  12. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  13. * express or implied. See the License for the specific language governing
  14. * permissions and limitations under the License.
  15. */
  16. require_once __DIR__ . '/Symfony/Component/ClassLoader/UniversalClassLoader.php';
  17. if (!defined('AWS_FILE_PREFIX')) {
  18. define('AWS_FILE_PREFIX', __DIR__);
  19. }
  20. $classLoader = new Symfony\Component\ClassLoader\UniversalClassLoader();
  21. $classLoader->registerNamespaces(array(
  22. 'Aws' => AWS_FILE_PREFIX,
  23. 'Guzzle' => AWS_FILE_PREFIX,
  24. 'Symfony' => AWS_FILE_PREFIX,
  25. // Not needed for basic S3-functionality.
  26. //'Doctrine' => AWS_FILE_PREFIX,
  27. //'Psr' => AWS_FILE_PREFIX,
  28. //'Monolog' => AWS_FILE_PREFIX
  29. ));
  30. $classLoader->register();
  31. return $classLoader;