workbench, tests
This commit is contained in:
parent
d83a324eb0
commit
367858c97c
27 changed files with 568 additions and 410 deletions
12
flake.nix
12
flake.nix
|
|
@ -16,10 +16,20 @@
|
|||
system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
php = (
|
||||
pkgs.php.withExtensions (
|
||||
{ enabled, all }:
|
||||
enabled
|
||||
++ [
|
||||
all.pcntl
|
||||
all.xdebug
|
||||
]
|
||||
)
|
||||
);
|
||||
in
|
||||
{
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
packages = [
|
||||
php
|
||||
php.packages.composer
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue