-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.89 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.89 KB
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
{
"name": "flat3/revpi",
"description": "Control package for the Revolution Pi",
"keywords": [
"revolutionpi",
"revpi",
"kunbus",
"laravel"
],
"homepage": "https://github.com/flat3/revpi",
"license": "MIT",
"authors": [
{
"name": "Chris Lloyd",
"email": "chrislloyd403@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-ffi": "*",
"ext-posix": "*",
"illuminate/collections": "^11.0|^12.0",
"illuminate/console": "^11.0|^12.0",
"illuminate/container": "^11.0|^12.0",
"illuminate/events": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"revolt/event-loop": "^1.0"
},
"require-dev": {
"amphp/websocket-server": "^4.0",
"amphp/websocket-client": "^2.0",
"nette/php-generator": "^4.1",
"laravel/pint": "^1.22",
"orchestra/testbench": "^10.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"suggest": {
"amphp/websocket-server": "To use the websocket implementation",
"amphp/websocket-client": "To use the websocket implementation",
"nette/php-generator": "To automatically generate classes from Pictory configuration"
},
"autoload": {
"psr-4": {
"Flat3\\RevPi\\": "src/",
"Flat3\\RevPi\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Flat3\\RevPi\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"analyze": "phpstan",
"lint": "pint"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}