forked from Xowap/PHP-Serial
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "sanchescom/php-serial",
"description": "Serial port for PHP: open, configure, write, read with a timeout. Linux, macOS, Windows.",
"type": "library",
"keywords": ["serial", "serial-port", "uart", "rs232", "tty", "com-port", "arduino", "modem", "at-commands", "raspberry-pi", "iot", "stty"],
"homepage": "https://github.com/sanchescom/php-serial",
"license": "MIT",
"authors": [
{"name": "Aleksandr Efimov", "email": "sanches.com@mail.ru"}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.11"
},
"autoload": {
"psr-4": {"Sanchescom\\Serial\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Sanchescom\\Serial\\Test\\": "tests/"}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/phpcs -p --standard=PSR12 ./src ./tests ./examples",
"fix": "./vendor/bin/phpcbf --standard=PSR12 ./src ./tests ./examples",
"analyse": "./vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}