This repository has been archived by the owner on Aug 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "johncms/system",
"description": "JohnCMS Core Framework",
"type": "library",
"homepage": "https://github.com/johncms/system",
"license": "GPL-3.0-only",
"keywords": [
"johncms",
"core",
"cms"
],
"authors": [
{
"name": "JohnCMS Contributors",
"homepage": "https://github.com/johncms/system/graphs/contributors"
}
],
"support": {
"docs": "https://docs.johncms.com/",
"forum": "https://johncms.com/forum/",
"source": "https://github.com/johncms/system",
"issues": "https://github.com/johncms/system/issues"
},
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"ext-mbstring": "*"
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"psalm/plugin-mockery": "^0.9.0",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.9"
},
"autoload": {
"psr-4": {
"Johncms\\System\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JohncmsTest\\": "tests/unit/"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@security-analysis",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --show-info=true",
"security-analysis": "psalm --taint-analysis --show-info=true --report=results.sarif",
"test": "phpunit --colors=always",
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --colors=always --coverage-clover clover.xml"
]
}
}