composer.json 960 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "xaboy/form-builder",
  3. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  4. "license": "MIT",
  5. "keyword": ["form","form-create","form-init","dynamic-form","php-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. "ext-json": "*"
  25. },
  26. "minimum-stability": "stable",
  27. "branch-alias": {
  28. "master": "1.0.x-dev"
  29. }
  30. }