-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.06 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.06 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
69
70
71
{
"name": "davidrjenni/scip-php",
"description": "SCIP Code Intelligence Protocol (SCIP) indexer for PHP",
"license": "MIT",
"keywords": [
"scip",
"codeintel"
],
"support": {
"issues": "https://github.com/davidrjenni/scip-php/issues",
"source": "https://github.com/davidrjenni/scip-php"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"bin": [
"bin/scip-php"
],
"autoload": {
"psr-4": {
"GPBMetadata\\": "src/Bindings/GPBMetadata",
"Scip\\": "src/Bindings/Scip",
"ScipPhp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": "^8.3",
"ext-json": "*",
"composer-runtime-api": "^2.2",
"composer/class-map-generator": "^1.0",
"google/protobuf": "^5.34",
"jetbrains/phpstorm-stubs": "^2026.1",
"nikic/php-parser": "^5.0",
"phpstan/phpdoc-parser": "^2.3"
},
"require-dev": {
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0",
"slevomat/coding-standard": "^8.28",
"squizlabs/php_codesniffer": "^4.0"
},
"scripts": {
"gen-bindings": "protoc --proto_path=src/Bindings --php_out=src/Bindings src/Bindings/scip.proto",
"lint": [
"@putenv XDEBUG_MODE=off",
"composer validate --strict --check-lock --with-dependencies",
"phpcs",
"phpstan --memory-limit=2G"
],
"cover": [
"@putenv XDEBUG_MODE=coverage",
"phpunit"
],
"test": "phpunit --no-coverage"
}
}