You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.3 KiB

3 years ago
  1. {
  2. "name": "league/flysystem",
  3. "type": "library",
  4. "description": "Filesystem abstraction: Many filesystems, one API.",
  5. "keywords": [
  6. "filesystem", "filesystems", "files", "storage", "dropbox", "aws",
  7. "abstraction", "s3", "ftp", "sftp", "remote", "webdav",
  8. "file systems", "cloud", "cloud files", "rackspace", "copy.com"
  9. ],
  10. "funding": [
  11. {
  12. "type": "other",
  13. "url": "https://offset.earth/frankdejonge"
  14. }
  15. ],
  16. "license": "MIT",
  17. "authors": [
  18. {
  19. "name": "Frank de Jonge",
  20. "email": "info@frenky.net"
  21. }
  22. ],
  23. "require": {
  24. "php": "^7.2.5 || ^8.0",
  25. "ext-fileinfo": "*",
  26. "league/mime-type-detection": "^1.3"
  27. },
  28. "require-dev": {
  29. "phpspec/prophecy": "^1.11.1",
  30. "phpunit/phpunit": "^8.5.8"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "League\\Flysystem\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "League\\Flysystem\\Stub\\": "stub/"
  40. }
  41. },
  42. "suggest": {
  43. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  44. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  45. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  46. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  47. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  48. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  49. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  50. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications",
  51. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  52. "ext-ftp": "Allows you to use FTP server storage",
  53. "ext-openssl": "Allows you to use FTPS server storage",
  54. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  55. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  56. },
  57. "conflict": {
  58. "league/flysystem-sftp": "<1.0.6"
  59. },
  60. "extra": {
  61. "branch-alias": {
  62. "dev-master": "1.1-dev"
  63. }
  64. },
  65. "scripts": {
  66. "phpstan": "php phpstan.php"
  67. }
  68. }