Skip to content

Commit

Permalink
fix: Remove json extensions from PHP >= 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jun 30, 2022
1 parent e949488 commit 5134360
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/phps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,21 @@ let
php80 = {
inherit extensions;
inherit devExtensions;
withoutExtensions = [ "json" ];
php = "php80";
};

php81 = {
inherit extensions;
inherit devExtensions;
withoutExtensions = [ "json" ];
php = "php81";
};

php82 = {
inherit extensions;
inherit devExtensions;
withoutExtensions = [ "json" ];
php = "php82";
};
};
Expand Down

0 comments on commit 5134360

Please sign in to comment.