-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.42 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
{
"name": "pablok/nvfc",
"description": "Fan speed controller for Nvidia graphic cards",
"license": "MIT",
"keywords": [
"reactphp",
"nvidia-gpu-fan-control",
"nvidia-gpu-fan-speed",
"fan-controller"
],
"require": {
"php": "^8.1",
"ext-pcntl": "*",
"composer-runtime-api": "^2.0",
"react/child-process": "^0.6.1",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
"react/stream": "^1.1",
"symfony/console": "^6.0",
"symfony/process": "^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"psr-4": {
"NvFanController\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NvFanController\\Tests\\": "tests"
}
},
"bin": [
"bin/nvfc"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"app:checks": [
"@composer normalize --dry-run",
"@app:cs:check"
],
"app:cs:check": "@php vendor/bin/php-cs-fixer fix --diff --dry-run -v",
"app:cs:fix": "@php vendor/bin/php-cs-fixer fix --diff -v --ansi"
}
}