aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
blob: 4c3664fcb9e624f6017b88d39750f8f5e8cf7730 (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
{
    "name": "nsfisis/phphp",
    "description": "Toy self-hosted PHP interpreter",
    "type": "project",
    "license": "MIT",
    "authors": [
        {
            "name": "nsfisis",
            "email": "nsfisis@gmail.com"
        }
    ],
    "config": {
        "platform": {
            "php": "8.4"
        },
        "preferred-install": "dist",
        "sort-packages": true
    },
    "require-dev": {
        "symplify/easy-coding-standard": "^12.5.9"
    },
    "scripts": {
        "lint": "ecs check",
        "fmt": "ecs check --fix"
    }
}