forked from eerotal/LibreSignage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.13 KB
/
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
37
38
39
40
41
42
43
44
45
46
{
"name": "eerotal/libresignage",
"description": "An open source digital signage solution.",
"type": "project",
"keywords": ["digital-signage", "signage", "slideshow"],
"homepage": "https://github.com/eerotal/LibreSignage",
"readme": "README.rst",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Eero Talus",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/eerotal/LibreSignage/issues",
"source": "https://github.com/eerotal/LibreSignage",
"docs": "https://github.com/eerotal/LibreSignage/tree/master/src/doc/rst"
},
"require": {
"symfony/http-foundation": "4.2.*",
"justinrainbow/json-schema": "5.2.*",
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "8.1.*",
"guzzlehttp/guzzle": "6.3.*"
},
"suggest": {
"ext-gd": "Enables image thumbnail generation for slide assets."
},
"autoload": {
"psr-4": {
"libresignage\\common\\php\\": "common/php/",
"libresignage\\api\\": "api/",
"libresignage\\api\\endpoint\\": "public/api/endpoint/"
}
},
"autoload-dev": {
"psr-4": {
"libresignage\\tests\\": "tests/"
}
}
}