composer.json 840 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "icewind/smb",
  3. "description": "php wrapper for smbclient and libsmbclient-php",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Robin Appelman",
  8. "email": "icewind@owncloud.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.2",
  13. "icewind/streams": ">=0.7.3"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^8.5|^9.3.8",
  17. "friendsofphp/php-cs-fixer": "^2.16",
  18. "phpstan/phpstan": "^0.12.57",
  19. "psalm/phar": "^4.3"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Icewind\\SMB\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Icewind\\SMB\\Test\\": "tests/"
  29. }
  30. },
  31. "scripts": {
  32. "lint": "parallel-lint --exclude src --exclude vendor --exclude target --exclude build .",
  33. "cs:check": "php-cs-fixer fix --dry-run --diff",
  34. "cs:fix": "php-cs-fixer fix",
  35. "psalm": "psalm.phar"
  36. }
  37. }