forked from exakat/exakat-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.29 KB
/
composer.json
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
{
"name": "exakat/exakat",
"type": "application",
"description": "The smart static analyzer for PHP",
"keywords": ["Exakat","PHP","audit", "static analysis", "code quality", "code review"],
"homepage": "https://www.exakat.io/",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "The Exakat Team",
"email": "[email protected]"
}
],
"support": {
"docs": "https://exakat.readthedocs.org/",
"source": "https://github.com/exakat/exakat"
},
"bin": [
"exakat"
],
"scripts":
{
"post-install-cmd": [
"echo ' running post-install-cmd'",
"@php exakat doctor",
"@php exakat install"
]
},
"require": {
"ext-curl": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sqlite3": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"guiguiboy/php-cli-progress-bar":"0.0.4",
"brightzone/gremlin-php": "3.1.1",
"symfony/yaml": "^5.0",
"bartlett/sarif-php-sdk": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"friendsofphp/php-cs-fixer": "*",
"php-parallel-lint/php-parallel-lint": "^1.2",
"symplify/easy-ci": "^9.4.70"
}
}