-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.55 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "tomio2480/php-serial",
"description": "Cross-platform PHP library for serial port communication with microcontrollers",
"type": "library",
"license": "MIT",
"keywords": ["serial", "serialport", "communication", "microcontroller", "arduino"],
"homepage": "https://github.com/tomio2480/php-serial",
"support": {
"issues": "https://github.com/tomio2480/php-serial/issues",
"source": "https://github.com/tomio2480/php-serial"
},
"authors": [
{
"name": "tomio2480"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"vlucas/phpdotenv": "^5.6",
"friendsofphp/php-cs-fixer": "^3.91",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"PhpSerial\\": "src/PhpSerial/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSerial\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"cs:check": "phpcs --standard=PSR12 src tests",
"cs:fix": "phpcbf --standard=PSR12 src tests",
"cs:fixer": "php-cs-fixer fix --dry-run --diff",
"cs:fixer:fix": "php-cs-fixer fix",
"stan": "phpstan analyse --memory-limit=256M",
"qa": [
"@cs:check",
"@cs:fixer",
"@stan",
"@test"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}