-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.57 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"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.*",
"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" }
},
"autoload-dev": {
"psr-4": { "Xibo\\Support\\Tests\\": "tests/" }
},
"require-dev": {
"respect/validation": "2.2.*",
"squizlabs/php_codesniffer": "3.*",
"exussum12/coverage-checker": "^0.11.2",
"phpunit/phpunit": "^10.5",
"monolog/monolog": "^2.9",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"nesbot/carbon": "^2.72"
},
"scripts": {
"lint": "phpcs --standard=src/Standards/xibo_ruleset.xml src/",
"test": "phpunit",
"test:coverage": "phpunit --coverage-clover clover.xml --coverage-text"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}