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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
"name": "nsfisis/waddiwasi",
"type": "project",
"description": "WebAssembly runtime written in pure PHP",
"license": "MIT",
"authors": [
{
"name": "nsfisis"
}
],
"autoload": {
"psr-4": {
"Nsfisis\\Waddiwasi\\": "src/",
"Nsfisis\\Waddiwasi\\Tests\\": "tests/src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-strict-rules": "^1.5.5",
"phpunit/phpunit": "^11.1",
"reliforp/reli-prof": "0.12.x-dev",
"symplify/easy-coding-standard": "^12.1.14"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"check": [
"@lint",
"@test"
],
"ecs": "ecs check",
"ecsfix": "ecs --memory-limit=1G check --fix",
"lint": [
"@ecs",
"@phpstan"
],
"phpstan": "phpstan --memory-limit=1G analyse",
"phpunit": "phpunit",
"test": [
"@phpunit"
]
}
}
|