{
	"name": "php",
	"displayName": "%displayName%",
	"description": "%description%",
	"version": "1.0.0",
	"publisher": "vscode",
	"license": "MIT",
	"engines": {
		"vscode": "0.10.x"
	},
	"contributes": {
		"languages": [
			{
				"id": "php",
				"extensions": [
					".php",
					".php4",
					".php5",
					".phtml",
					".ctp"
				],
				"aliases": [
					"PHP",
					"php"
				],
				"firstLine": "^#!\\s*/.*\\bphp\\b",
				"mimetypes": [
					"application/x-php"
				],
				"configuration": "./language-configuration.json"
			}
		],
		"grammars": [
			{
				"language": "php",
				"scopeName": "source.php",
				"path": "./syntaxes/php.tmLanguage.json"
			},
			{
				"language": "php",
				"scopeName": "text.html.php",
				"path": "./syntaxes/html.tmLanguage.json",
				"embeddedLanguages": {
					"text.html": "html",
					"source.php": "php",
					"source.sql": "sql",
					"text.xml": "xml",
					"source.js": "javascript",
					"source.json": "json",
					"source.css": "css"
				}
			}
		],
		"snippets": [
			{
				"language": "php",
				"path": "./snippets/php.code-snippets"
			}
		]
	},
	"scripts": {
		"update-grammar": "node ./build/update-grammar.js"
	}
}