initial version

This commit is contained in:
Robin Appelman 2025-10-25 15:23:20 +02:00
commit 1eceb2ce73
8 changed files with 428 additions and 0 deletions

26
README.md Normal file
View file

@ -0,0 +1,26 @@
# flakelight-php
An opinionated php module for
[flakelight](https://github.com/nix-community/flakelight).
## Features
Included checks:
- php-cs-checker
## Usage
```nix
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.05";
flakelight-php = {
url = "path:/home/robin/Projects/flakelight-php";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {flakelight-php, ...}:
flakelight-php ./. {};
}
```