aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/php-debug-adapter
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-02-20 22:19:39 +0100
committerGitHub <noreply@github.com>2023-02-20 22:19:39 +0100
commitb8a6632a0f2d263199d5d480ca85477fe0f414ab (patch)
tree57e1ee0f3cef078ec144ecdf1b2fa861acf47755 /lua/mason-registry/index/php-debug-adapter
parentchore: autogenerate (#1015) (diff)
downloadmason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.gz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.bz2
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.lz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.xz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.zst
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.zip
feat: configurable registries (#1016)
Diffstat (limited to 'lua/mason-registry/index/php-debug-adapter')
-rw-r--r--lua/mason-registry/index/php-debug-adapter/init.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/lua/mason-registry/index/php-debug-adapter/init.lua b/lua/mason-registry/index/php-debug-adapter/init.lua
new file mode 100644
index 00000000..d4350c91
--- /dev/null
+++ b/lua/mason-registry/index/php-debug-adapter/init.lua
@@ -0,0 +1,27 @@
+local Pkg = require "mason-core.package"
+local github = require "mason-core.managers.github"
+local _ = require "mason-core.functional"
+local path = require "mason-core.path"
+
+return Pkg.new {
+ name = "php-debug-adapter",
+ desc = [[PHP Debug Adapter 🐞⛔]],
+ homepage = "https://github.com/xdebug/vscode-php-debug",
+ languages = { Pkg.Lang.PHP },
+ categories = { Pkg.Cat.DAP },
+ ---@async
+ ---@param ctx InstallContext
+ install = function(ctx)
+ github
+ .unzip_release_file({
+ repo = "xdebug/vscode-php-debug",
+ asset_file = _.compose(_.format "php-debug-%s.vsix", _.gsub("^v", "")),
+ })
+ .with_receipt()
+ ctx.fs:rmrf(path.concat { "extension", "images" })
+ ctx:link_bin(
+ "php-debug-adapter",
+ ctx:write_node_exec_wrapper("php-debug-adapter", path.concat { "extension", "out", "phpDebug.js" })
+ )
+ end,
+}