-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.09 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
69
70
71
{
"name": "fluix/fconfig",
"description": "FConfig Management",
"type": "library",
"license": "MIT",
"version": "3.0.1",
"authors": [
{
"name": "Vladimir Melnik",
"email": "melnik@readdle.com"
}
],
"require": {
"php": ">=8.0.2",
"ext-json": "*",
"readdle/crypto": "^2.0",
"symfony/yaml": "^6.0"
},
"autoload": {
"exclude-from-classmap": ["*Test.php"],
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"src/"
]
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.12",
"mikey179/vfsstream": "^1.6",
"pheromone/phpcs-security-audit": "^2.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.1",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"fconfig"
],
"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 -c $(pwd)/phpunit.xml.dist"
],
"lint-autofix": [
"phpcbf -s -n --standard=$(pwd)/phpcs.ruleset.xml --extensions=php --encoding=utf-8 $(pwd)/src/ 2>/dev/null || true"
],
"lint": [
"phpcs -s -n --standard=$(pwd)/phpcs.ruleset.xml --extensions=php --encoding=utf-8 $(pwd)/src/"
],
"phpstan": "phpstan analyze -c phpstan.neon",
"ci": [
"@lint",
"@test",
"@phpstan"
]
}
}