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
39 lines (39 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "sanchescom/php-serial",
"description": "Multi-platform serial port access convenience class",
"license": "GPL-3.0",
"authors": [
{
"name": "Alexander Efimov",
"email": "sanches.com@mail.ru"
},
{
"name": "Rémy Sanchez",
"email": "remy.sanchez@hyperthese.net"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Sanchescom\\Serial\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sanchescom\\Serial\\Test\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --coverage-text --colors=never",
"check-style": "./vendor/bin/phpcs -p --standard=PSR2 ./src",
"fix-style": "./vendor/bin/phpcbf --standard=PSR2 ./src"
},
"require": {
"php": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2",
"squizlabs/php_codesniffer": "^3.4"
}
}