No Description

composer.json 747B

12345678910111213141516171819202122232425262728293031323334
  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": ">=7.1"
  14. },
  15. "autoload": {
  16. "classmap": [
  17. "src/"
  18. ]
  19. },
  20. "config": {
  21. "platform": {
  22. "php": "7.1.0"
  23. },
  24. "optimize-autoloader": true,
  25. "sort-packages": true
  26. },
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "2.0-dev"
  30. }
  31. }
  32. }