We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1472202 commit 2d266b1Copy full SHA for 2d266b1
src/phpactor/devcontainer-feature.json
@@ -0,0 +1,13 @@
1
+{
2
+ "name": "phpactor",
3
+ "id": "phpactor",
4
+ "version": "1.0.0",
5
+ "description": "Installs the phpactor language server for php.",
6
+ "options": {
7
+ "version": {
8
+ "type": "string",
9
+ "description": "The phpactor version to install.",
10
+ "default": "master"
11
+ }
12
13
+}
src/phpactor/install.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+set -ex
+PHPACTOR_INSTALL_DIR="/opt/phpactor"
+git clone -b "${VERSION}" -- https://github.com/phpactor/phpactor "${PHPACTOR_INSTALL_DIR}"
+cd "${PHPACTOR_INSTALL_DIR}"
+composer install --no-dev
0 commit comments