composer.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "illuminate/filesystem",
  3. "description": "The Illuminate Filesystem package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^8.2",
  18. "illuminate/collections": "^12.0",
  19. "illuminate/contracts": "^12.0",
  20. "illuminate/macroable": "^12.0",
  21. "illuminate/support": "^12.0",
  22. "symfony/finder": "^7.2.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Illuminate\\Filesystem\\": ""
  27. },
  28. "files": [
  29. "functions.php"
  30. ]
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "12.x-dev"
  35. }
  36. },
  37. "suggest": {
  38. "ext-fileinfo": "Required to use the Filesystem class.",
  39. "ext-ftp": "Required to use the Flysystem FTP driver.",
  40. "ext-hash": "Required to use the Filesystem class.",
  41. "illuminate/http": "Required for handling uploaded files (^12.0).",
  42. "league/flysystem": "Required to use the Flysystem local driver (^3.25.1).",
  43. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  44. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  45. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  46. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  47. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  48. "symfony/mime": "Required to enable support for guessing extensions (^7.2)."
  49. },
  50. "config": {
  51. "sort-packages": true
  52. },
  53. "minimum-stability": "dev"
  54. }