Merge remote-tracking branch 'upstream/master' into feature/support-intellisense-options
commit
31cc5b78e9
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
THERE IS A 99% CHANCE YOU ARE FILING THIS ISSUE IN THE WRONG REPOSITORY.
|
||||||
|
|
||||||
|
This is just the repository for the thin VS Code extension.
|
||||||
|
|
||||||
|
If this issue is *not* directly related to the *integration* into VS Code,
|
||||||
|
but a bug, feature request, performance issue, crash, etc. it needs to be filed
|
||||||
|
in the repository of the *language server*:
|
||||||
|
|
||||||
|
https://github.com/felixfbecker/php-language-server
|
||||||
|
|
||||||
|
Most likely there is already an open issue, please search for one first.
|
||||||
|
|
||||||
|
Thank you.
|
||||||
|
|
||||||
|
-->
|
|
@ -1,5 +1,5 @@
|
||||||
out/
|
|
||||||
node_modules/
|
node_modules/
|
||||||
|
out/
|
||||||
vendor/
|
vendor/
|
||||||
composer.lock
|
.DS_Store
|
||||||
typings/
|
package-lock.json
|
||||||
|
|
30
.travis.yml
30
.travis.yml
|
@ -9,17 +9,33 @@ cache:
|
||||||
- $HOME/.composer/cache
|
- $HOME/.composer/cache
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- nvm install 6.5.0
|
- nvm install 8
|
||||||
- nvm use 6.5.0
|
- nvm use 8
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- npm install
|
- npm install
|
||||||
- composer install --prefer-dist
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- npm run compile
|
- npm run build
|
||||||
|
|
||||||
after_success:
|
jobs:
|
||||||
# If the build was triggered by a tag, publish the new version
|
include:
|
||||||
- 'if [[ $TRAVIS_TAG == v* ]]; then vsce publish -p $VSCE_TOKEN; fi'
|
- stage: test
|
||||||
|
- stage: release
|
||||||
|
php: '7.0'
|
||||||
|
install:
|
||||||
|
- npm install
|
||||||
|
- composer install --prefer-dist --no-interaction --optimize-autoloader
|
||||||
|
script:
|
||||||
|
- npm run build
|
||||||
|
- npm run semantic-release
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
- name: release
|
||||||
|
if: branch = master AND type = push AND fork = false
|
||||||
|
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
|
@ -1,37 +1,21 @@
|
||||||
// Available variables which can be used inside of strings.
|
|
||||||
// ${workspaceRoot}: the root folder of the team
|
|
||||||
// ${file}: the current opened file
|
|
||||||
// ${fileBasename}: the current opened file's basename
|
|
||||||
// ${fileDirname}: the current opened file's dirname
|
|
||||||
// ${fileExtname}: the current opened file's extension
|
|
||||||
// ${cwd}: the current working directory of the spawned process
|
|
||||||
// A task runner that calls a custom npm script that compiles the extension.
|
|
||||||
{
|
{
|
||||||
"version": "0.1.0",
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
// we want to run npm
|
// for the documentation about the tasks.json format
|
||||||
"command": "npm",
|
"version": "2.0.0",
|
||||||
// the command is a shell script
|
|
||||||
"isShellCommand": true,
|
|
||||||
// show the output window only if unrecognized errors occur.
|
|
||||||
"showOutput": "silent",
|
|
||||||
// we run the custom script "compile" as defined in package.json
|
|
||||||
"args": [
|
|
||||||
"run",
|
|
||||||
"--loglevel",
|
|
||||||
"silent"
|
|
||||||
],
|
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"taskName": "compile",
|
"type": "npm",
|
||||||
"isBuildCommand": true,
|
"script": "build",
|
||||||
"problemMatcher": "$tsc"
|
"problemMatcher": [
|
||||||
|
"$tsc"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taskName": "watch",
|
"type": "npm",
|
||||||
// The tsc compiler is started in watching mode
|
"script": "watch",
|
||||||
"isWatching": true,
|
"problemMatcher": [
|
||||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
"$tsc-watch"
|
||||||
"problemMatcher": "$tsc-watch"
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,22 @@
|
||||||
|
.github/**
|
||||||
.vscode/**
|
.vscode/**
|
||||||
typings/**
|
images/**
|
||||||
|
!images/logo.png
|
||||||
out/test/**
|
out/test/**
|
||||||
test/**
|
|
||||||
src/**
|
src/**
|
||||||
|
vendor/jetbrains/phpstorm-stubs/**
|
||||||
|
vendor/bin/**
|
||||||
|
**/.DS_Store
|
||||||
|
**/.editorconfig
|
||||||
|
**/.gitignore
|
||||||
|
**/.npmrc
|
||||||
|
**/.styleci.yml
|
||||||
|
**/.travis.yml
|
||||||
|
**/*.d.ts
|
||||||
**/*.map
|
**/*.map
|
||||||
.gitignore
|
**/appveyor.yml
|
||||||
tsconfig.json
|
**/dependencies.yml
|
||||||
tslint.json
|
**/jshintrc
|
||||||
|
**/phpunit.xml.dist
|
||||||
|
**/tsconfig.json
|
||||||
|
**/tslint.json
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
# See [GitHub releases](https://github.com/felixfbecker/vscode-php-intellisense/releases)
|
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 Felix Becker
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
17
README.md
17
README.md
|
@ -1,10 +1,10 @@
|
||||||
# PHP IntelliSense
|
# PHP IntelliSense
|
||||||
|
|
||||||
[](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://travis-ci.org/felixfbecker/vscode-php-intellisense) [](https://gemnasium.com/felixfbecker/vscode-php-intellisense) [](https://php.net/) [](https://gitter.im/felixfbecker/vscode-php-intellisense?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
[](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [](https://travis-ci.org/felixfbecker/vscode-php-intellisense) [](https://php.net/) [](https://gitter.im/felixfbecker/vscode-php-intellisense?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [](https://github.com/semantic-release/semantic-release)
|
||||||
|
|
||||||
Advanced PHP IntelliSense for Visual Studio Code.
|
Advanced PHP IntelliSense for Visual Studio Code.
|
||||||
|
|
||||||
**Note: This is just the VS Code extension that spawns the actual language server. The language server itself is implemented purely in PHP [in its own repository](https://github.com/felixfbecker/php-language-server), all features need to be implemented there and all issues should be reported there.**
|
**Note: This is just the VS Code extension that spawns the actual language server. The language server itself is implemented purely in PHP [in its own repository](https://github.com/felixfbecker/php-language-server), all features need to be implemented there and all issues should be reported there. You do NOT need to install it manually though, it is bundled in this extension.**
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -17,6 +17,9 @@ I recommend to disable VS Code's built-in PHP IntelliSense by setting `php.sugge
|
||||||
### Completion
|
### Completion
|
||||||

|

|
||||||
|
|
||||||
|
### Signature Help
|
||||||
|

|
||||||
|
|
||||||
### Workspace symbol search
|
### Workspace symbol search
|
||||||

|

|
||||||
|
|
||||||
|
@ -34,12 +37,14 @@ I recommend to disable VS Code's built-in PHP IntelliSense by setting `php.sugge
|
||||||
### Find all symbols
|
### Find all symbols
|
||||||

|

|
||||||
|
|
||||||
### Format code
|
|
||||||

|
|
||||||
|
|
||||||
### Column-accurate error reporting
|
### Column-accurate error reporting
|
||||||

|

|
||||||
|
|
||||||
|
### Code style linting
|
||||||
|
Please use a dedicated extension like [PHP CodeSniffer](https://marketplace.visualstudio.com/items?itemName=ikappas.phpcs).
|
||||||
|
|
||||||
|
### Format code
|
||||||
|
Please use a dedicated extension like [PHP CS Fixer](https://marketplace.visualstudio.com/items?itemName=junstyle.php-cs-fixer).
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
- Rename
|
- Rename
|
||||||
|
@ -51,7 +56,7 @@ Clone whole repository and in root directory execute:
|
||||||
```bash
|
```bash
|
||||||
composer install
|
composer install
|
||||||
npm install
|
npm install
|
||||||
npm run compile
|
npm run build
|
||||||
code .
|
code .
|
||||||
```
|
```
|
||||||
The last command will open the folder in VS Code. Hit `F5` to launch an Extension Development Host with the extension.
|
The last command will open the folder in VS Code. Hit `F5` to launch an Extension Development Host with the extension.
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"require": {
|
"require": {
|
||||||
"felixfbecker/language-server": "^4.3.3"
|
"felixfbecker/language-server": "^5.4"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"parse-stubs": "LanguageServer\\ComposerScripts::parseStubs",
|
"parse-stubs": "LanguageServer\\ComposerScripts::parseStubs",
|
||||||
|
|
|
@ -0,0 +1,748 @@
|
||||||
|
{
|
||||||
|
"_readme": [
|
||||||
|
"This file locks the dependencies of your project to a known state",
|
||||||
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
|
"This file is @generated automatically"
|
||||||
|
],
|
||||||
|
"content-hash": "8d7a96cebb3857223787685e8f9a61be",
|
||||||
|
"packages": [
|
||||||
|
{
|
||||||
|
"name": "composer/xdebug-handler",
|
||||||
|
"version": "1.2.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/composer/xdebug-handler.git",
|
||||||
|
"reference": "e1809da56ce1bd1b547a752936817341ac244d8e"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/e1809da56ce1bd1b547a752936817341ac244d8e",
|
||||||
|
"reference": "e1809da56ce1bd1b547a752936817341ac244d8e",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^5.3.2 || ^7.0",
|
||||||
|
"psr/log": "^1.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Composer\\XdebugHandler\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "John Stevenson",
|
||||||
|
"email": "john-stevenson@blueyonder.co.uk"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Restarts a process without xdebug.",
|
||||||
|
"keywords": [
|
||||||
|
"Xdebug",
|
||||||
|
"performance"
|
||||||
|
],
|
||||||
|
"time": "2018-08-16T10:54:23+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "felixfbecker/advanced-json-rpc",
|
||||||
|
"version": "v3.0.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
|
||||||
|
"reference": "29f1d8c2c17f8c04f9768d382b72aeeb0715ebb8"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/29f1d8c2c17f8c04f9768d382b72aeeb0715ebb8",
|
||||||
|
"reference": "29f1d8c2c17f8c04f9768d382b72aeeb0715ebb8",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"netresearch/jsonmapper": "^1.0",
|
||||||
|
"php": ">=7.0",
|
||||||
|
"phpdocumentor/reflection-docblock": "^4.0.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^6.0.0"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"AdvancedJsonRpc\\": "lib/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"ISC"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Felix Becker",
|
||||||
|
"email": "felix.b@outlook.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A more advanced JSONRPC implementation",
|
||||||
|
"time": "2017-10-28T21:26:16+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "felixfbecker/language-server",
|
||||||
|
"version": "v5.4.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/felixfbecker/php-language-server.git",
|
||||||
|
"reference": "fe33c8cd7fb962af6853a8e99aeb47d9881d13aa"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/felixfbecker/php-language-server/zipball/fe33c8cd7fb962af6853a8e99aeb47d9881d13aa",
|
||||||
|
"reference": "fe33c8cd7fb962af6853a8e99aeb47d9881d13aa",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"composer/xdebug-handler": "^1.0",
|
||||||
|
"felixfbecker/advanced-json-rpc": "^3.0.0",
|
||||||
|
"jetbrains/phpstorm-stubs": "dev-master",
|
||||||
|
"microsoft/tolerant-php-parser": "0.0.*",
|
||||||
|
"netresearch/jsonmapper": "^1.0",
|
||||||
|
"php": "^7.0",
|
||||||
|
"phpdocumentor/reflection-docblock": "^4.0.0",
|
||||||
|
"psr/log": "^1.0",
|
||||||
|
"sabre/event": "^5.0",
|
||||||
|
"sabre/uri": "^2.0",
|
||||||
|
"webmozart/glob": "^4.1",
|
||||||
|
"webmozart/path-util": "^2.3"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^6.3",
|
||||||
|
"squizlabs/php_codesniffer": "^3.1"
|
||||||
|
},
|
||||||
|
"bin": [
|
||||||
|
"bin/php-language-server.php"
|
||||||
|
],
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"LanguageServer\\": "src/"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"src/utils.php",
|
||||||
|
"src/FqnUtilities.php",
|
||||||
|
"src/ParserHelpers.php"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"ISC"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Felix Becker",
|
||||||
|
"email": "felix.b@outlook.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "PHP Implementation of the Visual Studio Code Language Server Protocol",
|
||||||
|
"keywords": [
|
||||||
|
"autocompletion",
|
||||||
|
"code",
|
||||||
|
"intellisense",
|
||||||
|
"language",
|
||||||
|
"microsoft",
|
||||||
|
"php",
|
||||||
|
"refactor",
|
||||||
|
"server",
|
||||||
|
"studio",
|
||||||
|
"visual"
|
||||||
|
],
|
||||||
|
"time": "2018-04-26T22:53:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jetbrains/phpstorm-stubs",
|
||||||
|
"version": "dev-master",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/JetBrains/phpstorm-stubs.git",
|
||||||
|
"reference": "435257758651096093209ff56fa0ae1a6e63ec56"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/435257758651096093209ff56fa0ae1a6e63ec56",
|
||||||
|
"reference": "435257758651096093209ff56fa0ae1a6e63ec56",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"nikic/php-parser": "v4.0.1",
|
||||||
|
"phpdocumentor/reflection-docblock": "^4.3",
|
||||||
|
"phpunit/phpunit": "7.1.4"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"Apache-2.0"
|
||||||
|
],
|
||||||
|
"description": "PHP runtime & extensions header files for PhpStorm",
|
||||||
|
"homepage": "https://www.jetbrains.com/phpstorm",
|
||||||
|
"keywords": [
|
||||||
|
"autocomplete",
|
||||||
|
"code",
|
||||||
|
"inference",
|
||||||
|
"inspection",
|
||||||
|
"jetbrains",
|
||||||
|
"phpstorm",
|
||||||
|
"stubs",
|
||||||
|
"type"
|
||||||
|
],
|
||||||
|
"time": "2018-08-13T13:39:18+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "microsoft/tolerant-php-parser",
|
||||||
|
"version": "v0.0.13",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/Microsoft/tolerant-php-parser.git",
|
||||||
|
"reference": "89ade271e639e0612deeccb0555f13c2224ecf84"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/Microsoft/tolerant-php-parser/zipball/89ade271e639e0612deeccb0555f13c2224ecf84",
|
||||||
|
"reference": "89ade271e639e0612deeccb0555f13c2224ecf84",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^6.4"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Microsoft\\PhpParser\\": [
|
||||||
|
"src/"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Rob Lourens",
|
||||||
|
"email": "roblou@microsoft.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Tolerant PHP-to-AST parser designed for IDE usage scenarios",
|
||||||
|
"time": "2018-08-07T04:52:21+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "netresearch/jsonmapper",
|
||||||
|
"version": "v1.4.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/cweiske/jsonmapper.git",
|
||||||
|
"reference": "3868fe1128ce1169228acdb623359dca74db5ef3"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/3868fe1128ce1169228acdb623359dca74db5ef3",
|
||||||
|
"reference": "3868fe1128ce1169228acdb623359dca74db5ef3",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.6"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4",
|
||||||
|
"squizlabs/php_codesniffer": "~1.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-0": {
|
||||||
|
"JsonMapper": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"OSL-3.0"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Christian Weiske",
|
||||||
|
"email": "cweiske@cweiske.de",
|
||||||
|
"homepage": "http://github.com/cweiske/jsonmapper/",
|
||||||
|
"role": "Developer"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Map nested JSON structures onto PHP classes",
|
||||||
|
"time": "2017-11-28T21:30:01+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "phpdocumentor/reflection-common",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
|
||||||
|
"reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
|
||||||
|
"reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.5"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.6"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.0.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"phpDocumentor\\Reflection\\": [
|
||||||
|
"src"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Jaap van Otterdijk",
|
||||||
|
"email": "opensource@ijaap.nl"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
|
||||||
|
"homepage": "http://www.phpdoc.org",
|
||||||
|
"keywords": [
|
||||||
|
"FQSEN",
|
||||||
|
"phpDocumentor",
|
||||||
|
"phpdoc",
|
||||||
|
"reflection",
|
||||||
|
"static analysis"
|
||||||
|
],
|
||||||
|
"time": "2017-09-11T18:02:19+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "phpdocumentor/reflection-docblock",
|
||||||
|
"version": "4.3.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
|
||||||
|
"reference": "94fd0001232e47129dd3504189fa1c7225010d08"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
|
||||||
|
"reference": "94fd0001232e47129dd3504189fa1c7225010d08",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^7.0",
|
||||||
|
"phpdocumentor/reflection-common": "^1.0.0",
|
||||||
|
"phpdocumentor/type-resolver": "^0.4.0",
|
||||||
|
"webmozart/assert": "^1.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"doctrine/instantiator": "~1.0.5",
|
||||||
|
"mockery/mockery": "^1.0",
|
||||||
|
"phpunit/phpunit": "^6.4"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "4.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"phpDocumentor\\Reflection\\": [
|
||||||
|
"src/"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Mike van Riel",
|
||||||
|
"email": "me@mikevanriel.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
|
||||||
|
"time": "2017-11-30T07:14:17+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "phpdocumentor/type-resolver",
|
||||||
|
"version": "0.4.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/phpDocumentor/TypeResolver.git",
|
||||||
|
"reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
|
||||||
|
"reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^5.5 || ^7.0",
|
||||||
|
"phpdocumentor/reflection-common": "^1.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"mockery/mockery": "^0.9.4",
|
||||||
|
"phpunit/phpunit": "^5.2||^4.8.24"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.0.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"phpDocumentor\\Reflection\\": [
|
||||||
|
"src/"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Mike van Riel",
|
||||||
|
"email": "me@mikevanriel.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"time": "2017-07-14T14:27:02+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "psr/log",
|
||||||
|
"version": "1.0.2",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/php-fig/log.git",
|
||||||
|
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||||
|
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.3.0"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.0.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Psr\\Log\\": "Psr/Log/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "PHP-FIG",
|
||||||
|
"homepage": "http://www.php-fig.org/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Common interface for logging libraries",
|
||||||
|
"homepage": "https://github.com/php-fig/log",
|
||||||
|
"keywords": [
|
||||||
|
"log",
|
||||||
|
"psr",
|
||||||
|
"psr-3"
|
||||||
|
],
|
||||||
|
"time": "2016-10-10T12:19:37+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sabre/event",
|
||||||
|
"version": "5.0.3",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/sabre-io/event.git",
|
||||||
|
"reference": "f5cf802d240df1257866d8813282b98aee3bc548"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/sabre-io/event/zipball/f5cf802d240df1257866d8813282b98aee3bc548",
|
||||||
|
"reference": "f5cf802d240df1257866d8813282b98aee3bc548",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": ">=6",
|
||||||
|
"sabre/cs": "~1.0.0"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Sabre\\Event\\": "lib/"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"lib/coroutine.php",
|
||||||
|
"lib/Loop/functions.php",
|
||||||
|
"lib/Promise/functions.php"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"BSD-3-Clause"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Evert Pot",
|
||||||
|
"email": "me@evertpot.com",
|
||||||
|
"homepage": "http://evertpot.com/",
|
||||||
|
"role": "Developer"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "sabre/event is a library for lightweight event-based programming",
|
||||||
|
"homepage": "http://sabre.io/event/",
|
||||||
|
"keywords": [
|
||||||
|
"EventEmitter",
|
||||||
|
"async",
|
||||||
|
"coroutine",
|
||||||
|
"eventloop",
|
||||||
|
"events",
|
||||||
|
"hooks",
|
||||||
|
"plugin",
|
||||||
|
"promise",
|
||||||
|
"reactor",
|
||||||
|
"signal"
|
||||||
|
],
|
||||||
|
"time": "2018-03-05T13:55:47+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sabre/uri",
|
||||||
|
"version": "2.1.1",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/sabre-io/uri.git",
|
||||||
|
"reference": "a42126042c7dcb53e2978dadb6d22574d1359b4c"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/sabre-io/uri/zipball/a42126042c7dcb53e2978dadb6d22574d1359b4c",
|
||||||
|
"reference": "a42126042c7dcb53e2978dadb6d22574d1359b4c",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=7"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^6.0",
|
||||||
|
"sabre/cs": "~1.0.0"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"files": [
|
||||||
|
"lib/functions.php"
|
||||||
|
],
|
||||||
|
"psr-4": {
|
||||||
|
"Sabre\\Uri\\": "lib/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"BSD-3-Clause"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Evert Pot",
|
||||||
|
"email": "me@evertpot.com",
|
||||||
|
"homepage": "http://evertpot.com/",
|
||||||
|
"role": "Developer"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Functions for making sense out of URIs.",
|
||||||
|
"homepage": "http://sabre.io/uri/",
|
||||||
|
"keywords": [
|
||||||
|
"rfc3986",
|
||||||
|
"uri",
|
||||||
|
"url"
|
||||||
|
],
|
||||||
|
"time": "2017-02-20T20:02:35+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webmozart/assert",
|
||||||
|
"version": "1.3.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/webmozart/assert.git",
|
||||||
|
"reference": "0df1908962e7a3071564e857d86874dad1ef204a"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
|
||||||
|
"reference": "0df1908962e7a3071564e857d86874dad1ef204a",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^5.3.3 || ^7.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.6",
|
||||||
|
"sebastian/version": "^1.0.1"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.3-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Webmozart\\Assert\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Bernhard Schussek",
|
||||||
|
"email": "bschussek@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Assertions to validate method input/output with nice error messages.",
|
||||||
|
"keywords": [
|
||||||
|
"assert",
|
||||||
|
"check",
|
||||||
|
"validate"
|
||||||
|
],
|
||||||
|
"time": "2018-01-29T19:49:41+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webmozart/glob",
|
||||||
|
"version": "4.1.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/webmozart/glob.git",
|
||||||
|
"reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/webmozart/glob/zipball/3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
|
||||||
|
"reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^5.3.3|^7.0",
|
||||||
|
"webmozart/path-util": "^2.2"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.6",
|
||||||
|
"sebastian/version": "^1.0.1",
|
||||||
|
"symfony/filesystem": "^2.5"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "4.1-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Webmozart\\Glob\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Bernhard Schussek",
|
||||||
|
"email": "bschussek@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A PHP implementation of Ant's glob.",
|
||||||
|
"time": "2015-12-29T11:14:33+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "webmozart/path-util",
|
||||||
|
"version": "2.3.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/webmozart/path-util.git",
|
||||||
|
"reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
|
||||||
|
"reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.3.3",
|
||||||
|
"webmozart/assert": "~1.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.6",
|
||||||
|
"sebastian/version": "^1.0.1"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "2.3-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Webmozart\\PathUtil\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Bernhard Schussek",
|
||||||
|
"email": "bschussek@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
|
||||||
|
"time": "2015-12-17T08:42:14+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packages-dev": [],
|
||||||
|
"aliases": [],
|
||||||
|
"minimum-stability": "dev",
|
||||||
|
"stability-flags": [],
|
||||||
|
"prefer-stable": true,
|
||||||
|
"prefer-lowest": false,
|
||||||
|
"platform": [],
|
||||||
|
"platform-dev": []
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
collectors:
|
||||||
|
|
||||||
|
- type: js-npm
|
||||||
|
path: /
|
||||||
|
actors:
|
||||||
|
# pull requests for new major versions
|
||||||
|
- type: js-npm
|
||||||
|
versions: "Y.0.0"
|
||||||
|
settings:
|
||||||
|
# these updates should generally not have an effect on users
|
||||||
|
commit_message_prefix: "chore: "
|
||||||
|
|
||||||
|
# receive pull requests to update composer.lock for any update to the language server or dependencies of it
|
||||||
|
# after merging, depending on whether it was a patch or feature update,
|
||||||
|
# semantic-release will bundle a new patch or feature version of the extension
|
||||||
|
- type: php-composer
|
||||||
|
path: /
|
||||||
|
settings:
|
||||||
|
collect_transitive: true
|
||||||
|
actors:
|
||||||
|
|
||||||
|
- type: php-composer
|
||||||
|
versions: "L.L.Y"
|
||||||
|
settings:
|
||||||
|
commit_message_prefix: "fix: "
|
||||||
|
|
||||||
|
- type: php-composer
|
||||||
|
versions: "L.Y.0"
|
||||||
|
settings:
|
||||||
|
commit_message_prefix: "feat: "
|
||||||
|
|
||||||
|
- type: php-composer
|
||||||
|
versions: "Y.0.0"
|
||||||
|
settings:
|
||||||
|
commit_message_prefix: "chore: "
|
Binary file not shown.
Before Width: | Height: | Size: 51 KiB |
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
|
@ -1,39 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="Layer_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="8.5 251.6 553 290.9" style="enable-background:new 8.5 251.6 553 290.9;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:url(#SVGID_1_);}
|
|
||||||
.st1{fill:#6682BA;}
|
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
.st3{fill:#00000E;}
|
|
||||||
</style>
|
|
||||||
<title>logo</title>
|
|
||||||
<radialGradient id="SVGID_1_" cx="148" cy="484" r="363.06" gradientTransform="matrix(1 0 0 -1 26.52 786.69)" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
|
||||||
<stop offset="0.5" style="stop-color:#4D6998"/>
|
|
||||||
<stop offset="1" style="stop-color:#1D1D1B"/>
|
|
||||||
</radialGradient>
|
|
||||||
<ellipse class="st0" cx="285" cy="397" rx="276.5" ry="145.4"/>
|
|
||||||
<ellipse class="st1" cx="285" cy="397" rx="265.7" ry="134.6"/>
|
|
||||||
<path class="st2" d="M338.8,440.5l13.2-67.8c3-15.3,0.5-26.7-7.4-33.9c-7.6-7-20.5-10.4-39.5-10.4h-22.8l6.5-33.6
|
|
||||||
c0.5-2.3-1.1-4.6-3.4-5.1c-0.3-0.1-0.5-0.1-0.8-0.1h-31.5c-2.1,0-3.8,1.5-4.2,3.5l-14,72c-1.1-7.7-4.4-14.9-9.4-20.8
|
|
||||||
c-9.2-10.6-23.9-15.9-43.4-15.9h-61c-2.1,0-3.8,1.5-4.2,3.5L88.4,477.6c-0.5,2.3,1.1,4.6,3.4,5.1c0.3,0.1,0.5,0.1,0.8,0.1h31.8
|
|
||||||
c2.1,0,3.8-1.5,4.2-3.5l6.8-35.3h23.6c12.4,0,22.8-1.3,31-4c8.5-2.8,16.2-7.5,22.7-13.6c5.3-4.8,9.8-10.5,13.4-16.7l-5.7,29.1
|
|
||||||
c-0.5,2.3,1.1,4.6,3.4,5.1c0.3,0.1,0.5,0.1,0.8,0.1h31.5c2.1,0,3.8-1.5,4.2-3.5l15.5-80h21.6c9.2,0,11.9,1.8,12.6,2.6
|
|
||||||
s2,3.3,0.5,11.3l-12.5,64.5c-0.5,2.3,1.1,4.6,3.4,5.1c0.3,0.1,0.5,0.1,0.8,0.1h32C336.7,444,338.4,442.5,338.8,440.5z M192.8,384.5
|
|
||||||
c-2,10.2-5.7,17.4-11.1,21.6s-14.2,6.3-26,6.3h-14.1l10.2-52.4H170c13.4,0,18.8,2.9,20.9,5.3C193.9,368.6,194.6,375.2,192.8,384.5
|
|
||||||
L192.8,384.5z"/>
|
|
||||||
<path class="st2" d="M473.5,344.3c-9.2-10.6-23.9-15.9-43.4-15.9H369c-2.1,0-3.8,1.5-4.2,3.5l-28.3,145.8c-0.5,2.3,1.1,4.6,3.4,5.1
|
|
||||||
c0.3,0.1,0.5,0.1,0.8,0.1h31.8c2.1,0,3.8-1.5,4.2-3.5l6.9-35.3h23.6c12.4,0,22.8-1.3,31-4c8.5-2.8,16.2-7.5,22.7-13.6
|
|
||||||
c11.1-10,18.6-23.4,21.3-38.1C485.7,369.8,482.8,355,473.5,344.3z M440.6,384.5c-2,10.2-5.7,17.4-11.1,21.6s-14.2,6.3-26,6.3h-14.1
|
|
||||||
l10.2-52.4h18.2c13.4,0,18.8,2.9,20.9,5.3C441.8,368.6,442.4,375.2,440.6,384.5z"/>
|
|
||||||
<path class="st3" d="M170,355.7c12.1,0,20.1,2.2,24.1,6.7c4,4.5,5,12.1,2.9,22.9c-2.2,11.3-6.4,19.3-12.7,24.2s-15.8,7.2-28.6,7.2
|
|
||||||
h-19.3l11.9-61H170z M92.7,478.4h31.8l7.6-38.8h27.2c12,0,21.9-1.3,29.6-3.8c7.9-2.6,15.1-6.9,21.1-12.7
|
|
||||||
c10.4-9.4,17.4-21.9,19.9-35.7c3.3-17.3,0.8-30.7-7.6-40.4c-8.4-9.6-21.8-14.5-40.2-14.5H121L92.7,478.4z"/>
|
|
||||||
<path class="st3" d="M253.2,293.9h31.5l-7.5,38.8h28.1c17.7,0,29.8,3.1,36.5,9.2c6.7,6.2,8.7,16.1,6,29.9l-13.2,67.8h-32l12.5-64.5
|
|
||||||
c1.4-7.3,0.9-12.3-1.6-15c-2.5-2.7-7.7-4-15.8-4h-25.2l-16.2,83.5h-31.5L253.2,293.9z"/>
|
|
||||||
<path class="st3" d="M417.8,355.7c12.1,0,20.1,2.2,24.1,6.7c4,4.5,5,12.1,2.9,22.9c-2.2,11.3-6.4,19.3-12.7,24.2s-15.8,7.2-28.6,7.2
|
|
||||||
h-19.3l11.9-61H417.8z M340.5,478.4h31.8l7.5-38.8H407c12,0,21.9-1.3,29.6-3.8c7.9-2.6,15.1-6.9,21.1-12.7
|
|
||||||
c10.4-9.4,17.4-21.9,19.9-35.7c3.3-17.3,0.8-30.7-7.6-40.4c-8.4-9.6-21.8-14.5-40.2-14.5h-61.1L340.5,478.4z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 316 KiB |
78
package.json
78
package.json
|
@ -4,12 +4,12 @@
|
||||||
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
||||||
"publisher": "felixfbecker",
|
"publisher": "felixfbecker",
|
||||||
"author": "Felix Becker <felix.b@outlook.com>",
|
"author": "Felix Becker <felix.b@outlook.com>",
|
||||||
"license": "ISC",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
"preview": false,
|
"preview": false,
|
||||||
"version": "1.1.3",
|
"version": "1.5.4",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.7.0"
|
"vscode": "^1.17.1"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"php",
|
"php",
|
||||||
|
@ -19,9 +19,9 @@
|
||||||
"refactor"
|
"refactor"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"Languages"
|
"Programming Languages"
|
||||||
],
|
],
|
||||||
"icon": "images/logo.svg",
|
"icon": "images/logo.png",
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#6682BA",
|
"color": "#6682BA",
|
||||||
"theme": "dark"
|
"theme": "dark"
|
||||||
|
@ -34,7 +34,8 @@
|
||||||
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
||||||
},
|
},
|
||||||
"activationEvents": [
|
"activationEvents": [
|
||||||
"onLanguage:php"
|
"onLanguage:php",
|
||||||
|
"workspaceContains:**/*.php"
|
||||||
],
|
],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"configuration": {
|
"configuration": {
|
||||||
|
@ -53,21 +54,74 @@
|
||||||
},
|
},
|
||||||
"main": "./out/extension",
|
"main": "./out/extension",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile": "tsc -p .",
|
"build": "tsc -p .",
|
||||||
"watch": "tsc -w -p .",
|
"watch": "tsc -w -p .",
|
||||||
"postinstall": "node ./node_modules/vscode/bin/install && typings prune && typings install",
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||||
"lint": "tslint -c tslint.json \"src/**/*.ts\""
|
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
|
||||||
|
"semantic-release": "semantic-release",
|
||||||
|
"commitmsg": "commitlint -e $GIT_PARAMS"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tslint": "^4.2.0",
|
"@commitlint/cli": "^6.2.0",
|
||||||
|
"@commitlint/config-conventional": "^6.1.3",
|
||||||
|
"@types/mocha": "5.0.0",
|
||||||
|
"@types/mz": "^0.0.31",
|
||||||
|
"@types/node": "^8.0.24",
|
||||||
|
"@types/semver": "^5.3.34",
|
||||||
|
"husky": "^0.14.3",
|
||||||
|
"semantic-release": "^15.5.0",
|
||||||
|
"semantic-release-vsce": "^2.1.1",
|
||||||
|
"tslint": "^5.0.0",
|
||||||
"typescript": "^2.1.4",
|
"typescript": "^2.1.4",
|
||||||
"typings": "^2.0.0",
|
|
||||||
"vsce": "^1.8.1",
|
|
||||||
"vscode": "^1.0.0"
|
"vscode": "^1.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mz": "^2.4.0",
|
"mz": "^2.4.0",
|
||||||
"semver": "^5.3.0",
|
"semver": "^5.3.0",
|
||||||
"vscode-languageclient": "^3.0.3"
|
"vscode-languageclient": "^3.0.3"
|
||||||
|
},
|
||||||
|
"commitlint": {
|
||||||
|
"extends": [
|
||||||
|
"@commitlint/config-conventional"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"release": {
|
||||||
|
"verifyConditions": [
|
||||||
|
"semantic-release-vsce",
|
||||||
|
"@semantic-release/github"
|
||||||
|
],
|
||||||
|
"prepare": {
|
||||||
|
"path": "semantic-release-vsce",
|
||||||
|
"packageVsix": "php-intellisense.vsix"
|
||||||
|
},
|
||||||
|
"publish": [
|
||||||
|
"semantic-release-vsce",
|
||||||
|
{
|
||||||
|
"path": "@semantic-release/github",
|
||||||
|
"assets": "php-intellisense.vsix"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"contributes": {
|
||||||
|
"configuration": {
|
||||||
|
"type": "object",
|
||||||
|
"title": "PHP IntelliSense",
|
||||||
|
"properties": {
|
||||||
|
"php.memoryLimit": {
|
||||||
|
"type": "string",
|
||||||
|
"default": "4095M",
|
||||||
|
"description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM (default is 4G).",
|
||||||
|
"pattern": "^\\d+[KMG]?$"
|
||||||
|
},
|
||||||
|
"php.executablePath": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"default": null,
|
||||||
|
"description": "The path to a PHP 7+ executable."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,19 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
|
||||||
const conf = vscode.workspace.getConfiguration('php');
|
const conf = vscode.workspace.getConfiguration('php');
|
||||||
const executablePath = conf.get<string>('executablePath') || 'php';
|
const executablePath = conf.get<string>('executablePath') || 'php';
|
||||||
|
|
||||||
|
const memoryLimit = conf.get<string>('memoryLimit') || '4095M';
|
||||||
|
|
||||||
|
if (memoryLimit !== '-1' && !/^\d+[KMG]?$/.exec(memoryLimit)) {
|
||||||
|
const selected = await vscode.window.showErrorMessage(
|
||||||
|
'The memory limit you\'d provided is not numeric, nor "-1" nor valid php shorthand notation!',
|
||||||
|
'Open settings'
|
||||||
|
);
|
||||||
|
if (selected === 'Open settings') {
|
||||||
|
await vscode.commands.executeCommand('workbench.action.openGlobalSettings');
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Check path (if PHP is available and version is ^7.0.0)
|
// Check path (if PHP is available and version is ^7.0.0)
|
||||||
let stdout: string;
|
let stdout: string;
|
||||||
try {
|
try {
|
||||||
|
@ -49,20 +62,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
|
||||||
}
|
}
|
||||||
|
|
||||||
const serverOptions = () => new Promise<ChildProcess | StreamInfo>((resolve, reject) => {
|
const serverOptions = () => new Promise<ChildProcess | StreamInfo>((resolve, reject) => {
|
||||||
function spawnServer(...args: string[]): ChildProcess {
|
// Use a TCP socket because of problems with blocking STDIO
|
||||||
// The server is implemented in PHP
|
|
||||||
args.unshift(context.asAbsolutePath(path.join('vendor', 'felixfbecker', 'language-server', 'bin', 'php-language-server.php')));
|
|
||||||
const childProcess = spawn(executablePath, args);
|
|
||||||
childProcess.stderr.on('data', (chunk: Buffer) => {
|
|
||||||
console.error(chunk + '');
|
|
||||||
});
|
|
||||||
childProcess.stdout.on('data', (chunk: Buffer) => {
|
|
||||||
console.log(chunk + '');
|
|
||||||
});
|
|
||||||
return childProcess;
|
|
||||||
}
|
|
||||||
if (process.platform === 'win32') {
|
|
||||||
// Use a TCP socket on Windows because of blocking STDIO
|
|
||||||
const server = net.createServer(socket => {
|
const server = net.createServer(socket => {
|
||||||
// 'connection' listener
|
// 'connection' listener
|
||||||
console.log('PHP process connected');
|
console.log('PHP process connected');
|
||||||
|
@ -74,18 +74,29 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
|
||||||
});
|
});
|
||||||
// Listen on random port
|
// Listen on random port
|
||||||
server.listen(0, '127.0.0.1', () => {
|
server.listen(0, '127.0.0.1', () => {
|
||||||
spawnServer('--tcp=127.0.0.1:' + server.address().port);
|
// The server is implemented in PHP
|
||||||
|
const childProcess = spawn(executablePath, [
|
||||||
|
context.asAbsolutePath(path.join('vendor', 'felixfbecker', 'language-server', 'bin', 'php-language-server.php')),
|
||||||
|
'--tcp=127.0.0.1:' + server.address().port,
|
||||||
|
'--memory-limit=' + memoryLimit
|
||||||
|
]);
|
||||||
|
childProcess.stderr.on('data', (chunk: Buffer) => {
|
||||||
|
console.error(chunk + '');
|
||||||
|
});
|
||||||
|
childProcess.stdout.on('data', (chunk: Buffer) => {
|
||||||
|
console.log(chunk + '');
|
||||||
|
});
|
||||||
|
return childProcess;
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
// Use STDIO on Linux / Mac
|
|
||||||
resolve(spawnServer());
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Options to control the language client
|
// Options to control the language client
|
||||||
const clientOptions: LanguageClientOptions = {
|
const clientOptions: LanguageClientOptions = {
|
||||||
// Register the server for php documents
|
// Register the server for php documents
|
||||||
documentSelector: ['php'],
|
documentSelector: [
|
||||||
|
{ scheme: 'file', language: 'php' },
|
||||||
|
{ scheme: 'untitled', language: 'php' }
|
||||||
|
],
|
||||||
uriConverters: {
|
uriConverters: {
|
||||||
// VS Code by default %-encodes even the colon after the drive letter
|
// VS Code by default %-encodes even the colon after the drive letter
|
||||||
// NodeJS handles it much better
|
// NodeJS handles it much better
|
||||||
|
@ -93,12 +104,11 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
|
||||||
protocol2Code: str => vscode.Uri.parse(str)
|
protocol2Code: str => vscode.Uri.parse(str)
|
||||||
},
|
},
|
||||||
synchronize: {
|
synchronize: {
|
||||||
// Synchronize the setting section 'phpIntelliSense' to the server
|
// Synchronize the setting section 'php' to the server
|
||||||
configurationSection: 'phpIntelliSense'
|
configurationSection: 'php',
|
||||||
// Notify the server about file changes to composer.json files contain in the workspace
|
// Notify the server about changes to PHP files in the workspace
|
||||||
// fileEvents: vscode.workspace.createFileSystemWatcher('**/composer.json')
|
fileEvents: vscode.workspace.createFileSystemWatcher('**/*.php')
|
||||||
},
|
}
|
||||||
initializationOptions: vscode.workspace.getConfiguration('phpIntelliSense')
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create the language client and start the client.
|
// Create the language client and start the client.
|
||||||
|
|
|
@ -15,14 +15,11 @@
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"allowUnreachableCode": false,
|
"allowUnreachableCode": false,
|
||||||
"allowUnusedLabels": false,
|
"allowUnusedLabels": false
|
||||||
"typeRoots": [
|
|
||||||
"typings/modules",
|
|
||||||
"typings/globals"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"out"
|
"out",
|
||||||
|
"vendor"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
10
typings.json
10
typings.json
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"dependencies": {
|
|
||||||
"mz": "registry:npm/mz#2.4.0+20161114225638",
|
|
||||||
"semver": "registry:npm/semver#5.0.0+20160723033700"
|
|
||||||
},
|
|
||||||
"globalDependencies": {
|
|
||||||
"mocha": "registry:env/mocha#2.2.5+20160926180742",
|
|
||||||
"node": "registry:env/node#6.0.0+20170213133316"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue