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.

composer.json 874B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "config" : {
  3. "vendor-dir": "lib/composer",
  4. "optimize-autoloader": true
  5. },
  6. "autoload" : {
  7. "psr-4": {
  8. "": "lib/private/legacy",
  9. "OC\\": "lib/private",
  10. "OC\\Core\\": "core/",
  11. "OCP\\": "lib/public"
  12. }
  13. },
  14. "require": {
  15. "ext-json": "*",
  16. "ext-libxml": "*",
  17. "ext-mbstring": "*",
  18. "ext-pdo": "*",
  19. "ext-simplexml": "*",
  20. "ext-xmlreader": "*",
  21. "ext-zip": "*"
  22. },
  23. "require-dev": {
  24. "nextcloud/coding-standard": "^0.5.0",
  25. "vimeo/psalm": "^4.0"
  26. },
  27. "scripts": {
  28. "cs:fix": "php-cs-fixer fix",
  29. "cs:check": "php-cs-fixer fix --dry-run --diff",
  30. "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l",
  31. "psalm": "psalm"
  32. }
  33. }