Skip to content

Commit

Permalink
Added imagick php extension
Browse files Browse the repository at this point in the history
  • Loading branch information
mischabraam committed Feb 11, 2024
1 parent fcd8eb4 commit fe9dd54
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions cli/ValetPlus/PhpExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class PhpExtension
public const YAML_EXTENSION = 'yaml';
/** @var string */
public const DATASTRUCTURE_EXTENSION = 'ds';
/** @var string */
public const IMAGICK_EXTENSION = 'imagick';

protected const PHP_EXTENSIONS = [
self::XDEBUG_EXTENSION => [
Expand All @@ -35,7 +37,10 @@ class PhpExtension
]
],
self::APCU_EXTENSION => [
'default' => true
'default' => true,
'ini_files' => [
'20-apcu'
]
],
self::MEMCACHE_EXTENSION => [
'default' => false,
Expand All @@ -50,11 +55,20 @@ class PhpExtension
'default' => true,
'brew_dependency' => 'libyaml',
'ini_files' => [
'20-apcu'
'20-yaml'
]
],
self::DATASTRUCTURE_EXTENSION => [
'default' => true
'default' => true,
'ini_files' => [
'20-ds.ini'
]
],
self::IMAGICK_EXTENSION => [
'default' => true,
'ini_files' => [
'20-imagick.ini'
]
],
];

Expand Down

0 comments on commit fe9dd54

Please sign in to comment.