-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.58 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "kreuzberg/tree-sitter-language-pack",
"description": "Pre-compiled tree-sitter parsers for 305 programming languages with PHP extension bindings. Parse, analyze, and chunk source code with a single process() call.",
"version": "1.8.0-rc.11",
"type": "php-ext",
"license": "MIT",
"keywords": [
"tree-sitter",
"parser",
"syntax",
"language-pack",
"code-analysis",
"code-intelligence",
"ast",
"php8",
"rust",
"performance"
],
"homepage": "https://github.com/kreuzberg-dev/tree-sitter-language-pack",
"support": {
"issues": "https://github.com/kreuzberg-dev/tree-sitter-language-pack/issues",
"source": "https://github.com/kreuzberg-dev/tree-sitter-language-pack"
},
"authors": [
{
"name": "Na'aman Hirschfeld",
"email": "nhirschfeld@gmail.com",
"role": "creator"
}
],
"require": {
"php": "^8.4"
},
"replace": {
"ext-ts_pack_php": "*"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"TreeSitterLanguagePack\\": "packages/php/src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"php-ext": {
"extension-name": "ts_pack_php",
"priority": 50,
"configure-options": [
{
"name": "enable-ts-pack-php",
"description": "Enable tree-sitter language pack PHP extension"
}
],
"support": {
"source-url": "https://github.com/kreuzberg-dev/tree-sitter-language-pack",
"download-url": "https://github.com/kreuzberg-dev/tree-sitter-language-pack/releases"
}
}
}