Feature: PHP allow single quote autocompletion (#6796)

Remco Smits created

Release Notes:

- Added support for single quote autocompletion in PHP
([#6794](https://github.com/zed-industries/zed/issues/6794)).
- Added `#` to supported line comments for PHP
([#6794](https://github.com/zed-industries/zed/issues/6794)).

Change summary

crates/zed/src/languages/php/config.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Detailed changes

crates/zed/src/languages/php/config.toml 🔗

@@ -1,13 +1,14 @@
 name = "PHP"
 path_suffixes = ["php"]
 first_line_pattern = '^#!.*php'
-line_comments = ["// "]
+line_comments = ["// ", "# "]
 autoclose_before = ";:.,=}])>"
 brackets = [
     { start = "{", end = "}", close = true, newline = true },
     { start = "[", end = "]", close = true, newline = true },
     { start = "(", end = ")", close = true, newline = true },
     { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
+    { start = "'", end = "'", close = true, newline = false, not_in = ["string"] },
 ]
 collapsed_placeholder = "/* ... */"
 word_characters = ["$"]