暂无描述

composer.json 601B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "sebastian/resource-operations",
  3. "description": "Provides a list of PHP built-in functions that operate on resources",
  4. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Sebastian Bergmann",
  9. "email": "sebastian@phpunit.de"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.6.0"
  14. },
  15. "autoload": {
  16. "classmap": [
  17. "src/"
  18. ]
  19. },
  20. "extra": {
  21. "branch-alias": {
  22. "dev-master": "1.0.x-dev"
  23. }
  24. }
  25. }