-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (40 loc) · 1.12 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
{
"name": "xibosignage/support",
"description": "Support functions used throughout the Xibo Signage Platform",
"homepage": "https://xibosignage.com",
"license": "MIT",
"authors": [
{
"name": "Xibo Signage Ltd",
"homepage": "https://xibosignage.com"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "v10.5.1",
"psr/log": "^1.1",
"psr/http-message": "^1.0",
"symfony/html-sanitizer": "^6.3"
},
"suggest": {
"nesbot/carbon": "If the RespectSanitizer is to be used.",
"respect/validation": "If the RespectSanitizer is to be used.",
"monolog/monolog": "If the Monolog Handlers/Processors are to be used"
},
"autoload": {
"psr-4": { "Xibo\\" : "src/Xibo" }
},
"require-dev": {
"respect/validation": "2.2.*",
"squizlabs/php_codesniffer": "3.*",
"exussum12/coverage-checker": "^0.11.2"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}