test
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
mol
2024-07-06 22:23:31 +08:00
parent 08173d8497
commit 263cb5ef03
1663 changed files with 526884 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# Language Features for PHP files
**Notice:** This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
## Features
See [PHP in Visual Studio Code](https://code.visualstudio.com/docs/languages/php) to learn about the features of this extension.

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1 @@
{"name":"php-language-features","displayName":"%displayName%","description":"%description%","version":"1.0.0","publisher":"vscode","license":"MIT","icon":"icons/logo.png","engines":{"vscode":"0.10.x"},"activationEvents":["onLanguage:php"],"main":"./dist/phpMain","categories":["Programming Languages"],"capabilities":{"virtualWorkspaces":false,"untrustedWorkspaces":{"supported":"limited","description":"%workspaceTrust%","restrictedConfigurations":["php.validate.executablePath"]}},"contributes":{"configuration":{"title":"%configuration.title%","type":"object","order":20,"properties":{"php.suggest.basic":{"type":"boolean","default":true,"description":"%configuration.suggest.basic%"},"php.validate.enable":{"type":"boolean","default":true,"description":"%configuration.validate.enable%"},"php.validate.executablePath":{"type":["string","null"],"default":null,"description":"%configuration.validate.executablePath%","scope":"machine-overridable"},"php.validate.run":{"type":"string","enum":["onSave","onType"],"default":"onSave","description":"%configuration.validate.run%"}}},"jsonValidation":[{"fileMatch":"composer.json","url":"https://getcomposer.org/schema.json"}]},"repository":{"type":"git","url":"https://github.com/microsoft/vscode.git"}}

View File

@ -0,0 +1 @@
{"configuration.suggest.basic":"Controls whether the built-in PHP language suggestions are enabled. The support suggests PHP globals and variables.","configuration.validate.enable":"Enable/disable built-in PHP validation.","configuration.validate.executablePath":"Points to the PHP executable.","configuration.validate.run":"Whether the linter is run on save or on type.","configuration.title":"PHP","commands.categroy.php":"PHP","command.untrustValidationExecutable":"Disallow PHP validation executable (defined as workspace setting)","displayName":"PHP Language Features","description":"Provides rich language support for PHP files.","workspaceTrust":"The extension requires workspace trust when the `php.validate.executablePath` setting will load a version of PHP in the workspace."}