├── .editorconfig ├── LICENSE.txt ├── README.md ├── logo.png └── package.json /.editorconfig: -------------------------------------------------------------------------------- 1 | 2 | [*] 3 | insert_spaces = true 4 | indent_size = 2 5 | trim_trailing_whitespace = true 6 | insert_final_newline = true 7 | end_of_line = lf 8 | charset = utf-8 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Sandeep Somavarapu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # PHP Extension Pack 3 | 4 | Includes the most important extensions to get you started with PHP development in Visual Studio Code. 5 | 6 | | | | 7 | |--------------|---------| 8 | | Debugger | [![vs marketplace](https://img.shields.io/vscode-marketplace/v/felixfbecker.php-debug.svg?label=vs%20marketplace)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) [![downloads](https://img.shields.io/vscode-marketplace/d/felixfbecker.php-debug.svg)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) [![rating](https://img.shields.io/vscode-marketplace/r/felixfbecker.php-debug.svg)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) | 9 | | IntelliSense | [![vs marketplace](https://img.shields.io/vscode-marketplace/v/felixfbecker.php-intellisense.svg?label=vs%20marketplace)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [![downloads](https://img.shields.io/vscode-marketplace/d/felixfbecker.php-intellisense.svg)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) [![rating](https://img.shields.io/vscode-marketplace/r/felixfbecker.php-intellisense.svg)](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-intellisense) | 10 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfbecker/vscode-php-pack/a8dec342f1fe70ef0aa9e3849bc484d05fa82c95/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "php-pack", 3 | "displayName": "PHP Extension Pack", 4 | "description": "Everything you need for PHP development", 5 | "version": "1.0.2", 6 | "publisher": "felixfbecker", 7 | "engines": { 8 | "vscode": "^1.26.0" 9 | }, 10 | "categories": [ 11 | "Other", 12 | "Extension Packs" 13 | ], 14 | "galleryBanner": { 15 | "color": "#6682BA", 16 | "theme": "dark" 17 | }, 18 | "icon": "logo.png", 19 | "homepage": "https://github.com/felixfbecker/vscode-php-pack/blob/master/README.md", 20 | "bugs": { 21 | "url": "https://github.com/felixfbecker/vscode-php-pack/issues" 22 | }, 23 | "license": "MIT", 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/felixfbecker/vscode-php-pack" 27 | }, 28 | "extensionPack": [ 29 | "felixfbecker.php-debug", 30 | "felixfbecker.php-intellisense" 31 | ] 32 | } 33 | --------------------------------------------------------------------------------