summaryrefslogtreecommitdiff
path: root/composer.json
blob: 162af24275420902c7c16921e9ae2dc298638813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
    "name": "askonomm/hird",
    "description": "An extensible validation library for your data with sane defaults.",
    "type": "library",
    "license": "MIT",
    "autoload": {
        "psr-4": {
            "Askonomm\\Hird\\": "src/"
        }
    },
    "authors": [
        {
            "name": "Asko Nomm",
            "email": "asko@bien.ee",
            "homepage": "https://bien.ee"
        }
    ],
    "require": {
        "php": "^8.1"
    },
    "require-dev": {
        "pestphp/pest": "^1.21"
    },
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    }
}