mirror of
https://codeberg.org/icewind/flakelight-php.git
synced 2026-06-03 09:54:20 +02:00
26 lines
442 B
Markdown
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 ./. {};
|
|
}
|
|
```
|