forked from glpi-project/glpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.composer-require-checker.config.json
65 lines (51 loc) · 1.79 KB
/
.composer-require-checker.config.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
{
"php-core-extensions": [
"core", "standard",
"date", "pcre", "reflection", "spl",
"exif", "ldap", "pcntl", "posix"
],
"symbol-whitelist": [
"// Missing constant in Alpine Linux",
"GLOB_BRACE",
"// PHP 8.1 symbols",
"LDAP\\Connection",
"// GLPI config classes",
"DB", "DBSlave",
"// OPCache extension (not installed on testing env)",
"opcache_get_status", "opcache_invalidate", "opcache_reset",
"// random native PHP functions",
"// these are moved in random native extension in PHP 8.2, but this extension does not exists in previous PHP versions",
"mt_getrandmax",
"mt_rand",
"rand",
"random_bytes",
"random_int",
"// SELinux PECL extension",
"selinux_getenforce", "selinux_get_boolean_active", "selinux_is_enabled",
"// XHProf PECL extension",
"XHProfRuns_Default", "xhprof_disable", "xhprof_enable", "XHPROF_PATH", "XHPROF_URL",
"// paragonie/sodium_compat library",
"SODIUM_CRYPTO_AEAD_XCHACHA20POLY1305_IETF_KEYBYTES", "SODIUM_CRYPTO_AEAD_XCHACHA20POLY1305_IETF_NPUBBYTES", "sodium_crypto_aead_xchacha20poly1305_ietf_decrypt", "sodium_crypto_aead_xchacha20poly1305_ietf_encrypt", "sodium_crypto_aead_chacha20poly1305_ietf_keygen",
"//xhprof",
"XHPROF_FLAGS_NO_BUILTINS", "XHPROF_FLAGS_CPU", "XHPROF_FLAGS_MEMORY",
"//brotli compression",
"brotli_uncompress",
"brotli_compress",
"// composer autoloader",
"Composer\\Autoload\\ClassLoader",
"// dev dependencies",
"Symfony\\Bundle\\TwigBundle\\TwigBundle",
"Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle",
"SodiumException"
],
"scan-files": [
"ajax/**/*.php",
"bin/console",
"front/**/*.php",
"inc/**/*.php",
"install/**/*.php",
"src/**/*.php",
"stubs/**/*.php",
"/*.php"
]
}