composer.json 768 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "longyi/image-upload",
  3. "description": "Longyi Image Upload Module for Bagisto - Support uploading images to AWS S3",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Longyi Team",
  9. "email": "dev@longyi.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^8.1|^8.2",
  14. "illuminate/support": "^10.0|^11.0",
  15. "league/flysystem-aws-s3-v3": "^3.0"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "Longyi\\ImageUpload\\": "src/"
  20. }
  21. },
  22. "extra": {
  23. "laravel": {
  24. "providers": [
  25. "Longyi\\ImageUpload\\Providers\\ImageUploadServiceProvider"
  26. ]
  27. }
  28. },
  29. "minimum-stability": "dev",
  30. "prefer-stable": true
  31. }