composer.json 615 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name":
  3. "ivaynberg/select2",
  4. "description": "Select2 is a jQuery based replacement for select boxes.",
  5. "type": "component",
  6. "homepage": "http://ivaynberg.github.io/select2/",
  7. "license": "Apache-2.0",
  8. "require": {
  9. "robloach/component-installer": "*",
  10. "components/jquery": ">=1.7.1"
  11. },
  12. "extra": {
  13. "component": {
  14. "scripts": [
  15. "select2.js"
  16. ],
  17. "files": [
  18. "select2.js",
  19. "select2_locale_*.js",
  20. "select2.css",
  21. "select2-bootstrap.css",
  22. "select2-spinner.gif",
  23. "select2.png",
  24. "select2x2.png"
  25. ]
  26. }
  27. }
  28. }