{"id":29297077,"url":"https://github.com/php-lsp/skeleton","last_synced_at":"2026-02-08T22:02:06.830Z","repository":{"id":262356673,"uuid":"886956608","full_name":"php-lsp/skeleton","owner":"php-lsp","description":"PHP LSP Extension Skeleton Project","archived":false,"fork":false,"pushed_at":"2025-01-31T09:03:25.000Z","size":93,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T16:42:56.182Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/php-lsp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-11T23:10:14.000Z","updated_at":"2025-01-31T18:43:49.000Z","dependencies_parsed_at":"2024-11-12T02:20:00.122Z","dependency_job_id":"745b03e2-396c-4f8d-871d-5411d2d5ed89","html_url":"https://github.com/php-lsp/skeleton","commit_stats":null,"previous_names":["php-lsp/skeleton"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/php-lsp/skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-lsp%2Fskeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-lsp%2Fskeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-lsp%2Fskeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-lsp%2Fskeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/php-lsp","download_url":"https://codeload.github.com/php-lsp/skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-lsp%2Fskeleton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29246426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T21:42:34.334Z","status":"ssl_error","status_checked_at":"2026-02-08T21:41:38.468Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-06T16:36:22.135Z","updated_at":"2026-02-08T22:02:06.807Z","avatar_url":"https://github.com/php-lsp.png","language":"PHP","readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/php-lsp\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://avatars.githubusercontent.com/u/153323085?s=120\" width=\"120\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## About Language Server Protocol\n\n\u003e [ALARM] This is not the final version!\n\n---\n\nLSP is a protocol for interaction with a client using the JSON-RPC 2.0 codec, \nwhere arbitrary editors and IDEs act as clients.\n\nThe protocol is supported by many clients, such as:\n\n**Most Popular Editors:**\n- [VSCode](https://code.visualstudio.com/)\n- [Vim (Neovim)](https://neovim.io/)\n- [Atom](https://atom.io/)\n- [Brackets](https://brackets.io/)\n- [Lapce](https://lap.dev/lapce/)\n- [GigaIDE Cloud](https://gitverse.ru/features/gigaide/cloud/)\n- [JetBrains Fleet](https://www.jetbrains.com/fleet/)\n- [Sublime](https://github.com/sublimelsp/LSP)\n- *...etc*\n\n**Most Popular IDE:**\n- [JetBrains (PhpStorm, IDEA, RustRover, GoLand, etc)](https://www.jetbrains.com/)\n- [GigaIDE Desktop](https://gitverse.ru/features/gigaide/desktop/)\n- [Eclipse](https://www.eclipse.org/)\n- [Emacs](https://www.gnu.org/software/emacs/)\n- [QT Creator](https://www.qt.io/product/development-tools)\n- [RAD Studio](https://www.embarcadero.com/products/rad-studio)\n- [Visual Studio](https://marketplace.visualstudio.com/items?itemName=vsext.LanguageServerClientPreview)\n- *...etc*\n\nThis project gives you the opportunity to write your own plugins for any\neditor or IDE using the PHP language!\n\n## Installation\n\n```shell\n# create an extension application\ncomposer create-project php-lsp/skeleton -s dev\n\n# allow build script to run (required once)\nchmod +x bin/build\n```\n\n## Running Server\n\n### Run From Sources\n\n```shell\nphp ./bin/lsp serve App\\\\Application --port=5007\n```\n\n### Run From Code\n\n```php\n\u003c?php\n\ndeclare(strict_types=1);\n\nrequire __DIR__ . '/vendor/autoload.php';\n\n$app = new \\App\\Application('dev', true);\n$app-\u003elisten('tcp://127.0.0.1:5007');\n```\n\n### Run PHAR Assembly\n\n```shell\ncomposer build:run:local\n```\n\n### Run Binary Assembly\n\n```shell\ncomposer build:run\n```\n\n## Building Server\n\n### Building PHAR Assembly\n\n```shell\n# build assembly\ncomposer build\n\n# list of assemblies\nls -la ./var/prod/\n```\n\n### Building Binary Assembly\n\n```shell\n# install dependencies (only needs to be called once)\ncomposer build:prepare\n\n# build assembly\ncomposer build\n\n# list of assemblies\nls -la ./var/prod/\n```\n\n## Running Extension Client\n\nPlease note that these are just extension examples. \nUnification of the assembly without code (JS, Java, C#, etc) modification \nwill come later, perhaps.\n\n### VSCode\n\nSee [client/vscode/package.json](client/vscode/package.json) to modify \nthe configuration.\n\n1) Build and run editor:\n    ```shell\n    # move to vscode workspace\n    cd client/vscode\n    \n    # install dependencies\n    npm install\n    \n    # run client\n    code .\n    ```\n2) Then press `F5` (in editor) to run extension\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-lsp%2Fskeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphp-lsp%2Fskeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-lsp%2Fskeleton/lists"}