aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-01-03 02:00:02 +0900
committernsfisis <nsfisis@gmail.com>2024-01-03 02:04:22 +0900
commit5b4652d080c7eae26f8aac482468a6777ad9defe (patch)
treed871440fa20cd531f72f52ed1a0d9d95b4db49a7 /composer.json
parent168104e90dd45e8de71ab209a646a6a642cce471 (diff)
downloadphp-waddiwasi-5b4652d080c7eae26f8aac482468a6777ad9defe.tar.gz
php-waddiwasi-5b4652d080c7eae26f8aac482468a6777ad9defe.tar.zst
php-waddiwasi-5b4652d080c7eae26f8aac482468a6777ad9defe.zip
chore: set up basic Composer packages
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json31
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"
+ }
+}