-
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Broken Function | ||
description: If Safe is generating a wrapper for a PHP function, but the wrapper doesn't work | ||
title: | ||
labels: ["broken function"] | ||
body: | ||
- type: input | ||
id: function | ||
attributes: | ||
label: Function URL | ||
description: Link to the function in the PHP documentation | ||
placeholder: https://www.php.net/bzopen | ||
- type: dropdown | ||
id: php_version | ||
attributes: | ||
label: PHP Version | ||
multiple: true | ||
options: | ||
- 8.4 | ||
- 8.3 | ||
- 8.2 | ||
- 8.1 | ||
- Other | ||
default: 0 | ||
- type: dropdown | ||
id: safe_version | ||
attributes: | ||
label: Safe Version | ||
options: | ||
- 3.X | ||
- 2.X | ||
- dev-master | ||
- Other | ||
default: 0 | ||
- type: markdown | ||
id: description | ||
attributes: | ||
label: Problem | ||
description: What is the code doing now? What should it do instead? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Missing Function | ||
description: If there's a function in the PHP Standard Library which you believe should have a Safe wrapper | ||
title: | ||
labels: ["missing function"] | ||
body: | ||
- type: input | ||
id: function | ||
attributes: | ||
label: Function URL | ||
description: Link to the function in the PHP documentation | ||
placeholder: https://www.php.net/bzopen | ||
- type: dropdown | ||
id: php_version | ||
attributes: | ||
label: PHP Version | ||
multiple: true | ||
options: | ||
- 8.4 | ||
- 8.3 | ||
- 8.2 | ||
- 8.1 | ||
- Other | ||
default: 0 | ||
- type: dropdown | ||
id: safe_version | ||
attributes: | ||
label: Safe Version | ||
options: | ||
- 3.X | ||
- 2.X | ||
- dev-master | ||
- Other | ||
default: 0 | ||
- type: markdown | ||
id: extra | ||
attributes: | ||
label: Extra Info | ||
description: Any additional information which might be relevant |