composer.json 873 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "xaboy/form-builder",
  3. "description": "使用PHP快速创建现代化的form表单,包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  4. "type": "library",
  5. "license": "MIT",
  6. "keyword": ["form","form-create","form-init","dynamic-form"],
  7. "homepage": "https://github.com/xaboy/form-builder",
  8. "minimum-stability": "dev",
  9. "authors": [
  10. {
  11. "name": "xaboy",
  12. "email": "xaboy2005@qq.com"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "FormBuilder\\": "./src/"
  18. }
  19. },
  20. "support": {
  21. "issues": "https://github.com/xaboy/form-builder/issues",
  22. "source": "https://github.com/xaboy/form-builder"
  23. },
  24. "require": {
  25. "php": ">=5.4.0"
  26. }
  27. }