-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
36 lines (36 loc) · 975 Bytes
/
composer.json
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
{
"name": "cvuorinen/raspicam-php",
"description": "Control Raspberry Pi camera module with PHP",
"keywords": ["camera", "raspberry", "raspberry pi", "raspistill", "raspistillyuv", "raspivid", "photo", "video", "timelapse", "hardware"],
"type": "library",
"license": "MIT",
"homepage" : "https://github.com/cvuorinen/raspicam-php",
"authors": [
{
"name": "Carl Vuorinen",
"email": "[email protected]"
}
],
"require": {
"php" : ">=5.4.0",
"adambrett/shell-wrapper": "~0.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"cvuorinen/phpdoc-markdown-public": "^0.1.0"
},
"autoload": {
"psr-4": {
"Cvuorinen\\Raspicam\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cvuorinen\\Raspicam\\Test\\": "test"
}
},
"scripts": {
"test": "phpunit",
"docs": "phpdoc"
}
}