-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.43 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
{
"require": {
"php": "^7.4|^8.0",
"ext-sodium": "*",
"evilfreelancer/routeros-api-php": "^1.4",
"endroid/qr-code": "^3.9",
"symfony/console": "^5.1",
"s1lentium/iptools": "^1.1",
"symfony/dependency-injection": "^5.1",
"symfony/config": "^5.1",
"twig/twig": "^3.0",
"symfony/proxy-manager-bridge": "^5.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^5.1",
"object-calisthenics/phpcs-calisthenics-rules": "^3.9",
"phpstan/phpstan": "^0.12.42",
"phpstan/phpstan-deprecation-rules": "^0.12.5",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpstan/phpstan-symfony": "^0.12.7",
"slevomat/coding-standard": "^6.4",
"sllh/composer-versions-check": "dev-php-8",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"NoFlash\\ROSAutoWireGuard\\": "src/"
}
},
"scripts": {
"check-code-quality": [
"vendor/bin/phpcs --standard=phpcs.xml.dist --extensions=php ./src",
"vendor/bin/phpstan analyse src -c phpstan.src.neon"
],
"fix-cs": [
"vendor/bin/phpcbf --standard=phpcs.xml.dist"
],
"lint": [
"@composer validate --strict",
"bin/console lint:yaml config/"
]
},
"repositories": [
]
}