composer.json 968 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "xaboy/form-builder",
  3. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  4. "license": "MIT",
  5. "keywords": [
  6. "form",
  7. "form-create",
  8. "form-generator",
  9. "dynamic-form",
  10. "element-ui",
  11. "iview"
  12. ],
  13. "homepage": "https://github.com/xaboy/form-builder",
  14. "authors": [
  15. {
  16. "name": "xaboy",
  17. "email": "xaboy2005@qq.com"
  18. }
  19. ],
  20. "autoload": {
  21. "psr-4": {
  22. "FormBuilder\\": "./src/"
  23. }
  24. },
  25. "support": {
  26. "issues": "https://github.com/xaboy/form-builder/issues",
  27. "source": "https://github.com/xaboy/form-builder"
  28. },
  29. "require": {
  30. "php": ">=5.4.0",
  31. "ext-json": "*",
  32. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0|~4.0",
  33. "doctrine/annotations": "1.2.7"
  34. },
  35. "minimum-stability": "stable"
  36. }