-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.75 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
{
"name": "readdle/crypto",
"license": "MIT",
"version": "2.0.0",
"type": "library",
"description": "rdcrypto - unified library for encrypt/decrypt values",
"authors": [
{
"name": "Vladimir Melnik",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=8.0.2",
"ext-openssl": "*"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.12",
"pheromone/phpcs-security-audit": "^2.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.1",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"exclude-from-classmap": ["*Test.php"],
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"src/"
]
},
"scripts": {
"register-standards": "phpcs --config-set installed_paths $(pwd),$(pwd)/vendor/slevomat/coding-standard,$(pwd)/vendor/phpcompatibility/php-compatibility,$(pwd)/vendor/pheromone/phpcs-security-audit,$(pwd)/vendor/escapestudios/symfony2-coding-standard 2>/dev/null || true",
"post-install-cmd": [
"@register-standards"
],
"test": [
"phpunit"
],
"lint-autofix": [
"phpcbf -s -n --standard=$(pwd)/phpcs.ruleset.xml $(pwd)/src/ 2>/dev/null || true"
],
"lint": [
"phpcs -s -n --standard=$(pwd)/phpcs.ruleset.xml $(pwd)/src/"
],
"ci": [
"@lint",
"@test"
]
}
}