]> git.agnieray.net Git - galette.git/blob - .composer-require-checker.config.json
Do not override members list filters on member display or edit; closes #1803
[galette.git] / .composer-require-checker.config.json
1 {
2 "php-core-extensions": [
3 "core", "standard",
4
5 "ctype", "date", "fileinfo", "filter", "iconv", "json", "pcre", "reflection", "session", "simplexml", "spl", "xml",
6
7 "curl", "gd", "intl", "mbstring", "mysqli", "zlib", "pdo", "pgsql", "gettext",
8
9 "exif", "pcntl"
10 ],
11 "symbol-whitelist": [
12 "// PHP symbols",
13 "null",
14 "false", "true",
15 "static", "self", "parent",
16 "array", "bool", "callable", "float", "int", "iterable", "object", "string", "void",
17
18 "// random native PHP functions",
19 "// these are moved in random native extension in PHP 8.2, but this extension does not exists in previous PHP versions",
20 "mt_rand",
21 "rand",
22 "random_int",
23
24 "// Galette constants (not detected as they are dynamically declared)",
25 "GALETTE_ATTACHMENTS_PATH",
26 "GALETTE_BASE_PATH",
27 "GALETTE_CACHE_DIR",
28 "GALETTE_CARD_COLS",
29 "GALETTE_CARD_HEIGHT",
30 "GALETTE_CARD_ROWS",
31 "GALETTE_CARD_WIDTH",
32 "GALETTE_COMPAT_VERSION",
33 "GALETTE_CONFIG_PATH",
34 "GALETTE_DATA_PATH",
35 "GALETTE_DB_VERSION",
36 "GALETTE_EXPORTS_PATH",
37 "GALETTE_FILES_PATH",
38 "GALETTE_IMPORTS_PATH",
39 "GALETTE_LOGS_PATH",
40 "GALETTE_MODE",
41 "GALETTE_NIGHTLY",
42 "GALETTE_PHOTOS_PATH",
43 "GALETTE_PLUGINS_PATH",
44 "GALETTE_ROOT",
45 "GALETTE_TELEMETRY_URI",
46 "GALETTE_TEMPIMAGES_PATH",
47 "GALETTE_THEME",
48 "GALETTE_THEMES_PATH",
49 "GALETTE_VERSION",
50 "GALETTE_X_FORWARDED_FOR_INDEX",
51 "_CURRENT_THEME_PATH",
52 "GALETTE_URI",
53 "GALETTE_MYSQL_MIN",
54 "GALETTE_MARIADB_MIN",
55 "GALETTE_PGSQL_MIN",
56
57 "// Galette db constants (not detected as they are dynamically declared)",
58 "HOST_DB",
59 "NAME_DB",
60 "PORT_DB",
61 "PREFIX_DB",
62 "PWD_DB",
63 "TYPE_DB",
64 "USER_DB",
65
66 "//XHProf constants",
67
68 "//know but not detected Galette function,",
69 "remove_remarks",
70 "custom_html_entity_decode",
71 "get_form_value",
72 "get_numeric_form_value",
73 "isValidWebUrl",
74 "remove_remarks",
75 "split_sql_file",
76 "_T",
77 "__",
78
79
80 "// XHProf PECL extension",
81 "XHProfRuns_Default",
82 "xhprof_disable",
83 "xhprof_enable",
84 "GALETTE_XHPROF_PATH",
85 "XHPROF_PATH",
86 "XHPROF_URL",
87 "XHPROF_FLAGS_CPU",
88 "XHPROF_FLAGS_MEMORY",
89 "XHPROF_FLAGS_NO_BUILTINS",
90 "XHPROF_HOST",
91
92 "// DI functions",
93 "DI\\autowire",
94 "DI\\Container",
95 "DI\\ContainerBuilder",
96 "DI\\Attribute\\Inject",
97
98 "// Not detected, do not know why.",
99 "Psr\\Http\\Server\\RequestHandlerInterface"
100 ],
101 "scan-files": [
102 "galette/*.php",
103 "galette/lib/**/.php",
104 "galette/includes/**/*.php",
105 "galette/includes/*.php",
106 "galette/install/*.php",
107 "galette/install/**/*.php",
108 "galette/webroot/*.php",
109 "tests/**/*.php",
110 "tests/*.php"
111 ]
112 }