PageRenderTime 23ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/extensions/OpenStackManager/aws-sdk/README.md

https://github.com/ChuguluGames/mediawiki-svn
Markdown | 136 lines | 100 code | 36 blank | 0 comment | 0 complexity | 5ebb7e264b1131f56b91dde12f3ca3a6 MD5 | raw file
  1. # AWS SDK for PHP
  2. The AWS SDK for PHP enables developers to build solutions for Amazon Simple Storage Service (Amazon S3),
  3. Amazon Elastic Compute Cloud (Amazon EC2), Amazon SimpleDB, and more. With the AWS SDK for PHP, developers
  4. can get started in minutes with a single, downloadable package.
  5. The SDK features:
  6. * **AWS PHP Libraries:** Build PHP applications on top of APIs that take the complexity out of coding directly
  7. against a web service interface. The toolkit provides APIs that hide much of the lower-level implementation.
  8. * **Code Samples:** Practical examples for how to use the toolkit to build applications.
  9. * **Documentation:** Complete SDK reference documentation with samples demonstrating how to use the SDK.
  10. * **PEAR package:** The ability to install the AWS SDK for PHP as a PEAR package.
  11. * **SDK Compatibility Test:** Includes both an HTML-based and a CLI-based SDK Compatibility Test that you can
  12. run on your server to determine whether or not your PHP environment meets the minimum requirements.
  13. For more information about the AWS SDK for PHP, including a complete list of supported services, see
  14. [aws.amazon.com/sdkforphp](http://aws.amazon.com/sdkforphp).
  15. ## Signing up for Amazon Web Services
  16. Before you can begin, you must sign up for each service you want to use.
  17. To sign up for a service:
  18. * Go to the home page for the service. You can find a list of services on
  19. [aws.amazon.com/products](http://aws.amazon.com/products).
  20. * Click the Sign Up button on the top right corner of the page. If you don't already have an AWS account, you
  21. are prompted to create one as part of the sign up process.
  22. * Follow the on-screen instructions.
  23. * AWS sends you a confirmation e-mail after the sign-up process is complete. At any time, you can view your
  24. current account activity and manage your account by going to [aws.amazon.com](http://aws.amazon.com) and
  25. clicking "Your Account".
  26. ## Source
  27. The source tree for includes the following files and directories:
  28. * `_compatibility_test` -- Includes both an HTML-based and a CLI-based SDK Compatibility Test that you can
  29. run on your server to determine whether or not your PHP environment meets the minimum requirements.
  30. * `_docs` -- Informational documents, the contents of which should be fairly self-explanatory.
  31. * `_samples` -- Code samples that you can run out of the box.
  32. * `extensions` -- Extra code that can be used to enhance usage of the SDK, but isn't a service class or a
  33. third-party library.
  34. * `lib` -- Contains any third-party libraries that the SDK depends on. The licenses for these projects will
  35. always be Apache 2.0-compatible.
  36. * `services` -- Contains the service-specific classes that communicate with AWS. These classes are always
  37. prefixed with `Amazon`.
  38. * `utilities` -- Contains any utility-type methods that the SDK uses. Includes extensions to built-in PHP
  39. classes, as well as new functionality that is entirely custom. These classes are always prefixed with `CF`.
  40. * `README` -- The document you're reading right now.
  41. * `config-sample.inc.php` -- A sample configuration file that should be filled out and renamed to `config.inc.php`.
  42. * `sdk.class.php` -- The SDK loader that you would include in your projects. Contains the base functionality
  43. that the rest of the SDK depends on.
  44. ## Minimum Requirements in a nutshell
  45. * You are at least an intermediate-level PHP developer and have a basic understanding of object-oriented PHP.
  46. * You have a valid AWS account, and you've already signed up for the services you want to use.
  47. * The PHP interpreter, version 5.2 or newer. PHP 5.2.17 or 5.3.x is highly recommended for use with the AWS SDK for PHP.
  48. * The cURL PHP extension (compiled with the [OpenSSL](http://openssl.org) libraries for HTTPS support).
  49. * The ability to read from and write to the file system via [file_get_contents()](http://php.net/file_get_contents) and [file_put_contents()](http://php.net/file_put_contents).
  50. If you're not sure whether your PHP environment meets these requirements, run the
  51. [SDK Compatibility Test](http://github.com/amazonwebservices/aws-sdk-for-php/tree/master/_compatibility_test/) script
  52. included in the SDK download.
  53. ## Installation
  54. ### Via GitHub
  55. [Git](http://git-scm.com) is an extremely fast, efficient, distributed version control system ideal for the
  56. collaborative development of software. [GitHub](http://github.com/amazonwebservices) is the best way to
  57. collaborate with others. Fork, send pull requests and manage all your public and private git repositories.
  58. We believe that GitHub is the ideal service for working collaboratively with the open source PHP community.
  59. Git is primarily a command-line tool. GitHub provides instructions for installing Git on
  60. [Mac OS X](http://help.github.com/mac-git-installation/), [Windows](http://help.github.com/win-git-installation/),
  61. and [Linux](http://help.github.com/linux-git-installation/). If you're unfamiliar with Git, there are a variety
  62. of resources on the net that will help you learn more:
  63. * [Git Immersion](http://gitimmersion.com) is a guided tour that walks through the fundamentals of Git, inspired
  64. by the premise that to know a thing is to do it.
  65. * The [PeepCode screencast on Git](https://peepcode.com/products/git) ($12) will teach you how to install and
  66. use Git. You'll learn how to create a repository, use branches, and work with remote repositories.
  67. * [Git Reference](http://gitref.org) is meant to be a quick reference for learning and remembering the most
  68. important and commonly used Git commands.
  69. * [Git Ready](http://gitready.com) provides a collection of Git tips and tricks.
  70. * If you want to dig even further, I've [bookmarked other Git references](http://pinboard.in/u:skyzyx/t:git).
  71. If you're comfortable working with Git and/or GitHub, you can pull down the source code as follows:
  72. git clone git://github.com/amazonwebservices/aws-sdk-for-php.git AWSSDKforPHP
  73. cd ./AWSSDKforPHP
  74. ### Via PEAR
  75. [PEAR](http://pear.php.net) stands for the _PHP Extension and Application Repository_ and is a framework and
  76. distribution system for reusable PHP components. It is the PHP equivalent to package management software such as
  77. [MacPorts](http://macports.org) and [Homebrew](https://github.com/mxcl/homebrew) for Mac OS X,
  78. [Yum](http://fedoraproject.org/wiki/Tools/yum) and [Apt](http://wiki.debian.org/Apt) for GNU/Linux,
  79. [RubyGems](http://rubygems.org) for Ruby, [Easy Install](http://packages.python.org/distribute/easy_install.html)
  80. for Python, [Maven](http://maven.apache.org) for Java, and [NPM](http://npm.mape.me) for Node.js.
  81. PEAR packages are very easy to install, and are available in your PHP environment path so that they are accessible
  82. to any PHP project. PEAR packages are not specific to your project, but rather to the machine that they're
  83. installed on.
  84. From the command-line, you can install the SDK with PEAR as follows:
  85. pear channel-discover pear.amazonwebservices.com
  86. pear install aws/sdk
  87. You may need to use `sudo` for the above commands. Once the SDK has been installed via PEAR, you can load it into
  88. your project with:
  89. require_once 'AWSSDKforPHP/sdk.class.php';
  90. ### Configuration
  91. 1. Copy the contents of [config-sample.inc.php](https://github.com/amazonwebservices/aws-sdk-for-php/raw/master/config-sample.inc.php)
  92. and add your credentials as instructed in the file.
  93. 2. Move your file to `~/.aws/sdk/config.inc.php`.
  94. 3. Make sure that `getenv('HOME')` points to your user directory. If not you'll need to set
  95. `putenv('HOME=<your-user-directory>')`.
  96. ## Additional Information
  97. * AWS SDK for PHP: <http://aws.amazon.com/sdkforphp>
  98. * Documentation: <http://docs.amazonwebservices.com/AWSSDKforPHP/latest/>
  99. * License: <http://aws.amazon.com/apache2.0/>
  100. * Discuss: <http://aws.amazon.com/forums>