composer.json 824 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "typo3/phar-stream-wrapper",
  3. "description": "Interceptors for PHP's native phar:// stream handling",
  4. "type": "library",
  5. "license": "MIT",
  6. "homepage": "https://typo3.org/",
  7. "keywords": ["php", "phar", "stream-wrapper", "security"],
  8. "require": {
  9. "php": "^5.3.3|^7.0",
  10. "ext-json": "*",
  11. "brumann/polyfill-unserialize": "^1.0"
  12. },
  13. "require-dev": {
  14. "ext-xdebug": "*",
  15. "phpunit/phpunit": "^4.8.36"
  16. },
  17. "suggest": {
  18. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "TYPO3\\PharStreamWrapper\\": "src/"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "TYPO3\\PharStreamWrapper\\Tests\\": "tests/"
  28. }
  29. }
  30. }