-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.16 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
{
"name": "idrinth/1984",
"description": "A small tool to remotely track bash histories",
"keywords": ["surveillance", "monitoring", "server", "remote"],
"authors": [{
"name": "Björn Büttner",
"homepage": "https://github.com/idrinth"
}],
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-openssl":"*",
"webmozart/assert": "*",
"nikic/php-parser": "*"
},
"require-dev": {
"ext-curl": "*",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*",
"symfony/process": "*",
"phan/phan": "*",
"php-parallel-lint/php-parallel-lint": "*"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox test",
"test-standards": "vendor/bin/phpcs --standard=psr12 bin src test",
"test-static": "vendor/bin/phan --no-progress-bar",
"fix-standards": "vendor/bin/phpcbf --standard=psr12 bin src test",
"lint": "vendor/bin/parallel-lint src bin test"
},
"bin": ["bin/remote-logger.php"],
"autoload": {
"psr-4": {
"De\\Idrinth\\Project1984\\": "src"
},
"files": ["src/randomAlphaNumericString.php"]
},
"autoload-dev": {
"psr-4": {
"De\\Idrinth\\Project1984\\": "test"
}
}
}