composer.json 953 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "aws/aws-crt-php",
  3. "homepage": "https://github.com/awslabs/aws-crt-php",
  4. "description": "AWS Common Runtime for PHP",
  5. "keywords": ["aws","amazon","sdk","crt"],
  6. "type": "library",
  7. "authors": [
  8. {
  9. "name": "AWS SDK Common Runtime Team",
  10. "email": "aws-sdk-common-runtime@amazon.com"
  11. }
  12. ],
  13. "minimum-stability": "alpha",
  14. "require": {
  15. "php": ">=5.5"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit":"^4.8.35||^5.6.3||^9.5",
  19. "yoast/phpunit-polyfills": "^1.0"
  20. },
  21. "autoload": {
  22. "classmap": [
  23. "src/"
  24. ]
  25. },
  26. "suggest": {
  27. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  28. },
  29. "scripts": {
  30. "test": "./dev-scripts/run_tests.sh",
  31. "test-extension": "@test",
  32. "test-win": ".\\dev-scripts\\run_tests.bat"
  33. },
  34. "license": "Apache-2.0"
  35. }