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

1234567891011121314151617181920212223242526
  1. {
  2. "config" : {
  3. "vendor-dir": "lib/composer",
  4. "optimize-autoloader": true
  5. },
  6. "autoload" : {
  7. "psr-0": {
  8. "": "lib/private/legacy"
  9. },
  10. "psr-4": {
  11. "OC\\": "lib/private",
  12. "OC\\Core\\": "core/",
  13. "OCP\\": "lib/public"
  14. }
  15. },
  16. "require-dev": {
  17. "jakub-onderka/php-parallel-lint": "^0.9.2",
  18. "jakub-onderka/php-console-highlighter": "^0.3.2",
  19. "nextcloud/coding-standard": "^0.1.0"
  20. },
  21. "scripts": {
  22. "cs:fix": "php-cs-fixer fix",
  23. "cs:check": "php-cs-fixer fix --dry-run",
  24. "lint": "find . -name \\*.php -not -path './lib/composer/*' -exec php -l \"{}\" \\;"
  25. }
  26. }