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

123456789101112131415161718192021
  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. "OC\\Settings\\": "settings/",
  14. "OCP\\": "lib/public"
  15. }
  16. },
  17. "require-dev": {
  18. "jakub-onderka/php-parallel-lint": "^0.9.2",
  19. "jakub-onderka/php-console-highlighter": "^0.3.2"
  20. }
  21. }