php: 72
This commit is contained in:
parent
11ee876f31
commit
f0281d7325
1 changed files with 27 additions and 2 deletions
|
@ -17,7 +17,33 @@
|
|||
|
||||
php = (nix-shell.api.makePhp system {
|
||||
php = "php72";
|
||||
withExtensions = [ "xdebug" ];
|
||||
withExtensions = [
|
||||
"bcmath"
|
||||
"curl"
|
||||
"dom"
|
||||
"gd"
|
||||
"gettext"
|
||||
"iconv"
|
||||
"imagick"
|
||||
"intl"
|
||||
"mbstring"
|
||||
"mysqli"
|
||||
"mysqnd"
|
||||
"openssl"
|
||||
"pdo"
|
||||
"pdo_mysql"
|
||||
"pdo_sqlite"
|
||||
"posix"
|
||||
"soap"
|
||||
"sodium"
|
||||
"tidy"
|
||||
"tokenizer"
|
||||
"xdebug"
|
||||
"xmlreader"
|
||||
"xmlwriter"
|
||||
"xsl"
|
||||
"zip"
|
||||
];
|
||||
# withoutExtensions = [ "sodium" ];
|
||||
extraConfig = ''
|
||||
memory_limit=-1
|
||||
|
@ -44,7 +70,6 @@
|
|||
buildInputs = [
|
||||
php
|
||||
php.packages.composer
|
||||
pkgs.mailhog
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue