-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 823 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 823 Bytes
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
{
"name": "volantus/mcp3008",
"description": "PHP library for reading values from the A/D converter MCP3008",
"type": "library",
"license": "GNUv3",
"authors": [
{
"name": "Marius Meissner",
"email": "marius.meissner@volantus.org"
}
],
"minimum-stability": "stable",
"require": {
"php" : "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"doctrine/instantiator": "~1.0.5"
},
"suggest": {
"ext-berry-spi": "Allows directly/natively using SPI, without socket communication",
"volantus/php-pigpio": "Support for using Pigpio daemon socket"
},
"autoload": {
"psr-4": {
"Volantus\\MCP3008\\": "src",
"Volantus\\MCP3008\\Tests\\": "tests"
}
}
}