forked from redaxo/redaxo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
137 lines (135 loc) · 5.2 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "redaxo/source",
"type": "library",
"description": "REDAXO CMS source repository (for static analysis)",
"license": "MIT",
"require": {
"php": ">=7.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.16.4",
"friendsofredaxo/linter": "1.2.7",
"j13k/yaml-lint": "^1.1@dev",
"nunomaduro/collision": "^5.0",
"phpstan/extension-installer": "1.0.5",
"phpstan/phpstan": "0.12.48",
"phpstan/phpstan-deprecation-rules": "0.12.5",
"phpstan/phpstan-phpunit": "0.12.16",
"phpunit/phpunit": "^9.3",
"psalm/plugin-phpunit": "0.12.2",
"psalm/plugin-symfony": "1.4.4",
"vimeo/psalm": "3.16"
},
"replace": {
"erusev/parsedown": "1.7.4",
"erusev/parsedown-extra": "0.8.1",
"filp/whoops": "2.7.3",
"itsgoingd/clockwork": "v4.1.8",
"phpmailer/phpmailer": "v6.1.7",
"psr/container": "1.0.0",
"psr/http-message": "1.0.1",
"psr/log": "1.1.3",
"ramsey/collection": "1.1.1",
"ramsey/http-range": "1.0.0",
"scssphp/scssphp": "1.2.1",
"symfony/console": "v5.1.6",
"symfony/deprecation-contracts": "v2.2.0",
"symfony/polyfill-ctype": "v1.18.1",
"symfony/polyfill-intl-grapheme": "v1.18.1",
"symfony/polyfill-intl-normalizer": "v1.18.1",
"symfony/polyfill-mbstring": "v1.18.1",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "v1.18.1",
"symfony/service-contracts": "v2.2.0",
"symfony/string": "v5.1.6",
"symfony/var-dumper": "v5.1.6",
"symfony/yaml": "v5.1.6",
"voku/anti-xss": "4.1.28",
"voku/portable-ascii": "1.5.3",
"voku/portable-utf8": "5.4.47"
},
"autoload": {
"classmap": [
"redaxo/src/addons/backup/lib/",
"redaxo/src/addons/backup/vendor/",
"redaxo/src/addons/be_style/lib/",
"redaxo/src/addons/be_style/vendor/scssphp/",
"redaxo/src/addons/cronjob/lib/",
"redaxo/src/addons/cronjob/plugins/article_status/lib/",
"redaxo/src/addons/cronjob/plugins/optimize_tables/lib/",
"redaxo/src/addons/debug/lib/",
"redaxo/src/addons/debug/vendor/",
"redaxo/src/addons/install/lib/",
"redaxo/src/addons/media_manager/lib/",
"redaxo/src/addons/mediapool/lib/",
"redaxo/src/addons/metainfo/lib/",
"redaxo/src/addons/phpmailer/lib/",
"redaxo/src/addons/phpmailer/vendor/",
"redaxo/src/addons/structure/lib/",
"redaxo/src/addons/structure/plugins/content/lib/",
"redaxo/src/addons/structure/plugins/history/lib/",
"redaxo/src/addons/structure/plugins/version/lib/",
"redaxo/src/addons/users/lib/",
"redaxo/src/core/lib/"
],
"files": [
"redaxo/src/addons/mediapool/functions/function_rex_mediapool.php",
"redaxo/src/addons/metainfo/extensions/extension_cleanup.php",
"redaxo/src/addons/metainfo/functions/function_metainfo.php",
"redaxo/src/addons/structure/functions/function_rex_url.php",
"redaxo/src/core/functions/function_rex_escape.php",
"redaxo/src/core/functions/function_rex_globals.php",
"redaxo/src/core/functions/function_rex_other.php",
"redaxo/src/core/vendor/autoload.php"
]
},
"autoload-dev": {
"classmap": [
"redaxo/src/addons/media_manager/tests/",
"redaxo/src/addons/mediapool/tests/",
"redaxo/src/addons/structure/tests/",
"redaxo/src/addons/structure/plugins/content/tests/",
"redaxo/src/core/tests/"
]
},
"bin": [
"redaxo/bin/console"
],
"scripts": {
"clone-addon": ".tools/bin/clone-addon",
"refresh": ".tools/bin/refresh",
"release": ".tools/bin/release",
"update-all": ".tools/bin/update-all",
"cs": "php-cs-fixer fix -v --ansi",
"phpunit": "phpunit --colors=always",
"phpstan": "phpstan analyse --ansi",
"psalm": "psalm --diff",
"sa": [
"@phpstan",
"@psalm"
],
"check": [
"@cs",
"@sa",
"@phpunit"
]
},
"scripts-descriptions": {
"clone-addon": "Clone given addon (by user/repo or github url) into addon directory",
"refresh": "Refresh local instance (refresh core assets, re-install system addons, clear cache, update dev tools)",
"release": "Create release zip for given version number",
"update-all": "Update all vendor libs (php and js) in core, system addons and dev tools",
"cs": "Fix code style via php-cs-fixer",
"phpunit": "Run phpunit",
"phpstan": "Run static analysis via phpstan",
"psalm": "Run static analysis via psalm",
"sa": "Run all static analyses (psalm and phpstan)",
"check": "Check all (code style, static analysis, unit tests)"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}