Skip to main content

PHPLoaderOptions

Index

Properties

optionalextensions

extensions?: PHPExtension[]

PHP extensions to install before the runtime starts.

Use built-in names such as intl, xdebug, redis, and memcached, or pass an external JSPI extension source such as a manifest.

optionalfollowSymlinks

followSymlinks?: boolean

optionalwithIntl

withIntl?: boolean
@deprecated

Use extensions: ['intl'] instead.

optionalwithMemcached

withMemcached?: boolean
@deprecated

Use extensions: ['memcached'] instead.

optionalwithRedis

withRedis?: boolean
@deprecated

Use extensions: ['redis'] instead.

optionalwithXdebug

withXdebug?: boolean | XdebugOptions
@deprecated

Use extensions: ['xdebug'] or extensions: [{ name: 'xdebug', options }] instead.