diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..455d17b --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "nsfisis/waddiwasi", + "type": "project", + "description": "WebAssembly interpreter 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 analyse" + } +} |
