bug_report.yaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ---
  2. name: Bug Report
  3. description: File a bug report
  4. labels: [bug]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking the time to fill out this bug report!
  10. Before submitting a bug, please double-check that your problem [is not
  11. a known issue](https://frankenphp.dev/docs/known-issues/)
  12. (especially if you use XDebug or Tideways), and that is has not
  13. [already been reported](https://github.com/dunglas/frankenphp/issues).
  14. - type: textarea
  15. id: what-happened
  16. attributes:
  17. label: What happened?
  18. description: |
  19. Tell us what you do, what you get and what you expected.
  20. Provide us with some step-by-step instructions to reproduce the issue.
  21. validations:
  22. required: true
  23. - type: dropdown
  24. id: build
  25. attributes:
  26. label: Build Type
  27. description: What build of FrankenPHP do you use?
  28. options:
  29. - Docker (Debian Bookworm)
  30. - Docker (Alpine)
  31. - Official static build
  32. - Standalone binary
  33. - Custom (tell us more in the description)
  34. default: 0
  35. validations:
  36. required: true
  37. - type: dropdown
  38. id: worker
  39. attributes:
  40. label: Worker Mode
  41. description: Does the problem happen only when using the worker mode?
  42. options:
  43. - "Yes"
  44. - "No"
  45. default: 0
  46. validations:
  47. required: true
  48. - type: dropdown
  49. id: os
  50. attributes:
  51. label: Operating System
  52. description: What operating system are you executing FrankenPHP with?
  53. options:
  54. - GNU/Linux
  55. - macOS
  56. - Other (tell us more in the description)
  57. default: 0
  58. validations:
  59. required: true
  60. - type: dropdown
  61. id: arch
  62. attributes:
  63. label: CPU Architecture
  64. description: What CPU architecture are you using?
  65. options:
  66. - x86_64
  67. - Apple Silicon
  68. - x86
  69. - aarch64
  70. - Other (tell us more in the description)
  71. default: 0
  72. - type: textarea
  73. id: php
  74. attributes:
  75. label: PHP configuration
  76. description: |
  77. Please copy and paste the output of the `phpinfo()` function.
  78. render: shell
  79. validations:
  80. required: true
  81. - type: textarea
  82. id: logs
  83. attributes:
  84. label: Relevant log output
  85. description: |
  86. Please copy and paste any relevant log output.
  87. This will be automatically formatted into code,
  88. so no need for backticks.
  89. render: shell