Remove deprecation notices

This commit is contained in:
Oliver Davies 2025-08-17 15:42:05 +01:00
parent 1dd6f82308
commit 97ef8bde61

View file

@ -10,7 +10,12 @@
{ {
devShells.${system}.default = pkgs.mkShell { devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
php83 (php83.buildEnv {
extraConfig = ''
error_reporting = E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED
'';
})
php83Packages.composer php83Packages.composer
tailwindcss tailwindcss
]; ];