aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
blob: 79487c913adf32088d939d9fb25453d63d307c14 (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
30
31
{
    "name": "nsfisis/waddiwasi",
    "type": "project",
    "description": "WebAssembly runtime written in pure PHP",
    "license": "MIT",
    "authors": [
        {
            "name": "nsfisis"
        }
    ],
    "autoload": {
        "psr-4": {
            "Nsfisis\\Waddiwasi\\": "src/"
        }
    },
    "require-dev": {
        "phpstan/phpstan": "^1.10.50",
        "phpstan/phpstan-deprecation-rules": "^1.1.4",
        "phpstan/phpstan-strict-rules": "^1.5.2",
        "symplify/easy-coding-standard": "^12.0.13"
    },
    "config": {
        "preferred-install": "dist",
        "sort-packages": true
    },
    "scripts": {
        "ecs": "ecs check",
        "ecsfix": "ecs check --fix",
        "phpstan": "phpstan --memory-limit=1G analyse"
    }
}