composer.json 841 B

1234567891011121314151617181920212223242526
  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. "authors": [
  9. {
  10. "name": "xaboy",
  11. "email": "xaboy2005@qq.com"
  12. }
  13. ],
  14. "autoload": {
  15. "psr-4": {
  16. "FormBuilder\\": "./src/"
  17. }
  18. },
  19. "support": {
  20. "issues": "https://github.com/xaboy/form-builder/issues",
  21. "source": "https://github.com/xaboy/form-builder"
  22. },
  23. "require": {
  24. "php": ">=5.4.0"
  25. }
  26. }