-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.23 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 2.23 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
{
"name": "symfony/lsp",
"description": "A language server for Symfony applications",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.4.1",
"amphp/amp": "^3.1",
"amphp/byte-stream": "^2.1",
"amphp/process": "^2.1",
"amphp/sync": "^2.3",
"fabpot/json-rpc-peer": "^0.6",
"fabpot/tolerant-php-parser": "^0.2",
"symfony/config": "^8.1",
"symfony/dependency-injection": "^8.1",
"symfony/filesystem": "^8.1",
"symfony/finder": "^8.1",
"symfony/yaml": "^8.1"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"symfony/phpunit-bridge": "^7.4|^8.0",
"php-cs-fixer/shim": "^3.87"
},
"autoload": {
"psr-4": {
"Symfony\\Lsp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Lsp\\Tests\\": "tests/",
"Symfony\\Lsp\\Tools\\": "tools/"
}
},
"bin": [
"bin/symfony-lsp"
],
"config": {
"sort-packages": true
},
"scripts": {
"tree-sitter:build": "./tools/build-tree-sitter-extension",
"tree-sitter:benchmark": "./tools/php-with-tree-sitter tools/benchmark-tree-sitter.php",
"php-parser:benchmark": "php tools/benchmark-php-parser.php",
"runtime-fixture:install": "composer update --working-dir=tests/Fixtures/RuntimeApplication --no-interaction --no-progress --with-all-dependencies",
"server:benchmark": "./tools/benchmark-server bin/symfony-lsp tests/Fixtures/RuntimeApplication",
"runtime-refresh:benchmark": "./tools/benchmark-runtime-refresh bin/symfony-lsp tests/Fixtures/RuntimeApplication",
"source-index:benchmark": "./tools/php-with-tree-sitter tools/benchmark-source-index",
"test": "./tools/php-with-tree-sitter vendor/bin/phpunit --no-progress",
"phpstan": "phpstan analyze --no-progress",
"cs-check": "php-cs-fixer fix --show-progress=none --dry-run --diff",
"cs-fix": "php-cs-fixer fix --show-progress=none"
},
"repositories": [{
"name": "tolerant-php-parser",
"type": "vcs",
"url": "https://github.com/fabpot/tolerant-php-parser"
}]
}