Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,47 @@
#code coverage
# codecoverage (if present)
code_coverage

# codeception (if present)
c3.php

# composer
composer.lock

# gitHub copilot config (if present)
.copilot/
.github/copilot/**

#node_modules
# mac ds_store (if present)
.DS_Store

# netbeans project (if present)
nbproject

# node_modules (if present)
node_modules
package-lock.json

# phpstorm project files
# phpstorm project (if present)
.idea

# phpunit
# phpunit (if present)
.phpunit.cache
.phpunit.result.cache
phpunit.xml*

# vendor directory
# vagrant (if present)
.vagrant

# vendor
vendor

# vscode
# vscode project (if present)
.vscode

# windows thumbnail cache
# windows thumbnail cache (if present)
Thumbs.db

# zend studio for eclipse project (if present)
.buildpath
.project
.settings
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
- Bug #73: Update workflow actions to use `v1` stable version instead of `main`, update `LICENSE.md` (@terabytesoftw)
- Bug #74: Update `README.md` to include `Behavior` integration section and example usage (@terabytesoftw)
- Bug #75: Update `README.md` to enhance badge visibility and improve installation instructions (@terabytesoftw)
- Bug #76: Update workflows and documentation for improved CI/CD processes and feature clarity (@terabytesoftw)
- Bug #76: chore(deps): bump `php-forge/actions from` `1` to `2` (@dependabot)
- Bug #77: Update workflows and documentation for improved CI/CD processes and feature clarity (@terabytesoftw)
- Bug #78: Improve `.gitignore` formatting and add missing entries for better clarity (@terabytesoftw)

## 0.3.1 August 16, 2025

Expand Down
Loading