flakelight-php/README.md
2025-10-25 20:59:10 +02:00

26 lines
442 B
Markdown

# 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 = "git+https://codeberg.org/icewind/flakelight-php.git";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {flakelight-php, ...}:
flakelight-php ./. {};
}
```