composer.json 853 B

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