From fe292a43ae4567d5fabbb85d4d9ce0464018b1f6 Mon Sep 17 00:00:00 2001 From: naingaunglwin-dev Date: Wed, 4 Feb 2026 22:23:22 +0630 Subject: [PATCH 1/2] chore: add pestphp for testing --- composer.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index deacffc..63d96e5 100644 --- a/composer.json +++ b/composer.json @@ -8,15 +8,28 @@ "authors": [ { "name": "naingaunglwin-dev", - "email": "example@gmail.com" + "email": "naingaunglwin.wd@gmail.com" } ], "require": { - "php": "^8.0" + "php": "^8.4" }, "autoload": { "psr-4": { - "NAL\\Session\\": "src/" + "Naingaunglwin\\Session\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "require-dev": { + "pestphp/pest": "^4.3" + }, + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true } } } From 106f5e7dcdc74f3ea7993199eaee136c5aead061 Mon Sep 17 00:00:00 2001 From: naingaunglwin-dev Date: Wed, 4 Feb 2026 22:25:26 +0630 Subject: [PATCH 2/2] chore: update .gitignore --- .gitignore | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 60feaf0..bb8fc2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,21 @@ -./src/encrypt_key/ +# Ignore vendor directory (generated by Composer) +vendor/ +composer.lock + +# Ignore IDE-specific files .idea/ +.vscode/ +*.sublime-workspace +*.sublime-project + +# Ignore operating system files +.DS_Store +Thumbs.db + +# Ignore other common backup/editor files +*~ +*.swp +*.swo + +# Pest / Testing +/coverage/