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 708B

123456789101112131415161718192021222324252627
  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-pdo": "*"
  17. },
  18. "require-dev": {
  19. "nextcloud/coding-standard": "^0.3.0",
  20. "psalm/phar": "^3.12"
  21. },
  22. "scripts": {
  23. "cs:fix": "php-cs-fixer fix",
  24. "cs:check": "php-cs-fixer fix --dry-run --diff",
  25. "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l"
  26. }
  27. }