-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (67 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": {
"email": "[email protected]",
"forum": "https:\/\/forum.froxlor.org\/",
"tweeter": "https://twitter.com/exakat",
"community": "https://twitter.com/i/communities/1525023388263137280",
"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",
"@php vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd" : "@php vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"require": {
"ext-curl": "*",
"ext-hash": "*",
"ext-openssl": "*",
"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.*",
"bartlett/sarif-php-sdk": "^1.0",
"symfony/process": "^6.2",
"samdark/sitemap": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "*",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "^2.14",
"povils/phpmnd": "^3.3",
"rector/rector": "^0.18.13"
},
"config": {
"platform-check": false,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}