Initial Commit

This commit is contained in:
icefox 2026-02-18 19:06:59 -03:00
commit 88b5850c32
No known key found for this signature in database
12 changed files with 11441 additions and 0 deletions

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "PHP Data Transfer Object";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
php
php.packages.composer
];
};
}
);
}