forked from mobicms/mobicms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.52 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mobicms/mobicms",
"description": "mobiCMS Content Management System",
"type": "project",
"license": "GPL-3.0-only",
"homepage": "https://mobicms.org",
"keywords": [
"mobicms",
"cms",
"middleware",
"psr-7",
"psr-11",
"psr-15",
"mysql"
],
"authors": [
{
"name": "Oleg Kasyanov",
"role": "Team Lead, Developer",
"homepage": "https://github.com/batumibiz",
"email": "[email protected]"
},
{
"name": "mobiCMS Contributors",
"homepage": "https://github.com/mobicms/mobicms/graphs/contributors"
}
],
"support": {
"source": "https://github.com/mobicms/mobicms",
"issues": "https://github.com/mobicms/mobicms/issues"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "system/vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~8.1.0",
"ext-pdo": "*",
"laminas/laminas-config-aggregator": "^1.7",
"mezzio/mezzio-fastroute": "^3.5",
"mobicms/render": "dev-main",
"mobicms/system": "dev-main",
"psr/container": "^1.1",
"psr/http-message": "^1.0"
},
"require-dev": {
"filp/whoops": "^2.14",
"mobicms/testutils": "dev-main",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^7.2",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.23"
},
"autoload": {
"psr-4": {
"Mobicms\\": "system/src/"
}
},
"autoload-dev": {
"psr-4": {
"MobicmsTest\\": "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 --log-junit report.xml"
]
}
}