https://github.com/ioncakephper/test-weaver
Test-Weaver is a Node.js CLI tool that automatically generates Jest test files from simple YAML definitions. Streamline your testing workflow, reduce boilerplate, and ensure consistency. Ideal for JavaScript/TypeScript developers looking to accelerate their TDD or BDD process.
https://github.com/ioncakephper/test-weaver
automation bdd cli code-generation developer-tools hacktoberfest javascript jest nodejs scaffolding tdd test-automation testing yaml
Last synced: 5 months ago
JSON representation
Test-Weaver is a Node.js CLI tool that automatically generates Jest test files from simple YAML definitions. Streamline your testing workflow, reduce boilerplate, and ensure consistency. Ideal for JavaScript/TypeScript developers looking to accelerate their TDD or BDD process.
- Host: GitHub
- URL: https://github.com/ioncakephper/test-weaver
- Owner: ioncakephper
- License: mit
- Created: 2025-08-01T05:48:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-07T16:10:37.000Z (11 months ago)
- Last Synced: 2025-08-09T17:39:55.795Z (11 months ago)
- Topics: automation, bdd, cli, code-generation, developer-tools, hacktoberfest, javascript, jest, nodejs, scaffolding, tdd, test-automation, testing, yaml
- Language: JavaScript
- Homepage: https://ioncakephper.github.io/test-weaver/
- Size: 35.2 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Test Weaver
[](LICENSE) [](https://www.npmjs.com/package/test-weaver) [](https://github.com/ioncakephper/test-weaver/issues) [](https://github.com/ioncakephper/test-weaver/discussions) [](CODE_OF_CONDUCT.md) [](https://github.com/ioncakephper/test-weaver/actions/workflows/ci.yml) [](https://codecov.io/gh/ioncakephper/test-weaver) [](https://github.com/prettier/prettier) [](CHANGELOG.md)
A command-line utility that skillfully weaves Jest-compatible test files from simple, declarative YAML threads.
This project provides a solid foundation for building high-quality JavaScript applications, ensuring code consistency and best practices from the start.
## π Table of Contents
- [β¨ Key Features](#-key-features)
- [How It Works: From YAML to Jest](#how-it-works-from-yaml-to-jest)
- [Example YAML Input](#example-yaml-input)
- [Generated `.test.js` Output](#generated-testjs-output)
- [Jest Output](#jest-output)
- [π Getting Started](#-getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Install via npm (recommended)](#install-via-npm-recommended)
- [Or use npx (no global install required)](#or-use-npx-no-global-install-required)
- [Or clone and run locally](#or-clone-and-run-locally)
- [Usage](#usage)
- [Default Command: `generate`](#default-command-generate)
- [`init` Command](#init-command)
- [βοΈ Configuration](#-configuration)
- [`patterns`](#patterns)
- [`ignore`](#ignore)
- [Other Settings](#other-settings)
- [API](#api)
- [Global Options](#global-options)
- [Commands](#commands)
- [`generate` (Default Command)](#generate-default-command)
- [`init`](#init)
- [π Available Scripts](#-available-scripts)
- [Automated Documentation](#automated-documentation)
- [Code Quality & Formatting](#code-quality--formatting)
- [Core Development](#core-development)
- [The "One-Click" Pre-Commit Workflow](#the-one-click-pre-commit-workflow)
- [A Focus on Quality and Productivity](#a-focus-on-quality-and-productivity)
- [The Cost of Stale Documentation](#the-cost-of-stale-documentation)
- [The Power of Workflow Scripts](#the-power-of-workflow-scripts)
- [π¦ Release & Versioning](#-release--versioning)
- [How it Works](#how-it-works)
- [Creating a New Release](#creating-a-new-release)
- [Your First Release](#your-first-release)
- [π Project Structure](#-project-structure)
- [βοΈ Linting for Documentation](#-linting-for-documentation)
- [How to Check for Missing Documentation](#how-to-check-for-missing-documentation)
- [Example](#example)
- [π Bug Reports](#-bug-reports)
- [π€ Contributing](#-contributing)
- [πΊοΈ Roadmap](#-roadmap)
- [βοΈ Code of Conduct](#-code-of-conduct)
- [π Acknowledgements](#-acknowledgements)
- [π¨βπ» About the Author](#-about-the-author)
- [π License](#-license)
## β¨ Key Features
- **Declarative Test Generation**: Define your Jest tests in simple, human-readable YAML files. No more boilerplate.
- **YAML to Jest**: Automatically converts your YAML test definitions into fully functional `*.test.js` files, ready to be run by Jest.
- **Watch Mode**: Automatically re-generate test files whenever your YAML definitions change.
- **Customizable Configuration**: Use a `testweaver.json` file to configure input/output directories and other options. See the [default configuration](config/default.json) for all available settings.
- **Configuration Schema**: Auto-generate a JSON schema for your configuration file to enable validation and autocompletion in your editor.
- **Security**: Prevents writing generated files to unsafe locations outside the project directory, enhancing project integrity.
## How It Works: From YAML to Jest
`test-weaver` simplifies test creation by transforming a clear, human-readable YAML file into a standard Jest test file. It interprets nested structures as test suites (`describe`) and leaf items as individual tests (`it`), with bullet points serving as assertions.
### Example YAML Input
This YAML file, `cli-tests.test.yaml`, demonstrates how `test-weaver` interprets a free-form, nested YAML structure to generate Jest tests.
```yaml
'Given a CLI':
'When invoked without arguments':
- 'It should display the help screen'
- 'process should exit with code 0'
'When invoked with --version':
- 'It should display the current version'
- 'process should exit with code 0'
'Given a command "generate"':
'When invoked with valid patterns':
- 'It should create test files'
- 'It should log success messages'
'When invoked with invalid patterns':
- 'It should log an error'
- 'process should exit with code 1'
```
### Generated `.test.js` Output
After running `test-weaver`, the following `cli-tests.test.js` file is generated, perfectly mirroring the structure of the YAML input, with unit tests marked as `it.todo`.
```javascript
describe('Given a CLI', () => {
describe('When invoked without arguments', () => {
it.todo('It should display the help screen');
it.todo('process should exit with code 0');
});
describe('When invoked with --version', () => {
it.todo('It should display the current version');
it.todo('process should exit with code 0');
});
describe('Given a command "generate"', () => {
describe('When invoked with valid patterns', () => {
it.todo('It should create test files');
it.todo('It should log success messages');
});
describe('When invoked with invalid patterns', () => {
it.todo('It should log an error');
it.todo('process should exit with code 1');
});
});
});
```
### Jest Output
When Jest executes the generated `.test.js` file, it will report the `it.todo` tests as follows:
```plaintext
PASS ./cli-tests.test.js
Given a CLI
When invoked without arguments
β It should display the help screen (todo)
β process should exit with code 0 (todo)
When invoked with --version
β It should display the current version (todo)
β process should exit with code 0 (todo)
Given a command "generate"
When invoked with valid patterns
β It should create test files (todo)
β It should log success messages (todo)
When invoked with invalid patterns
β It should log an error (todo)
β process should exit with code 1 (todo)
Test Suites: 1 passed, 1 total
Tests: 8 todo, 8 total
Snapshots: 0 total
Time: 0.XXX s
Ran all test suites.
```
This example illustrates how `test-weaver` bridges the gap between simple, declarative definitions and executable test code, maintaining a clean and organized testing structure.
## π Getting Started
### Prerequisites
- Node.js version 18.0.0 or higher
### Installation
#### Install via npm (recommended)
```bash
npm install -g test-weaver
# testweaver is now available globally.
# check it's available by running:
# testweaver -V
```
#### Or use npx (no global install required)
```bash
npx test-weaver input.yaml output.test
# npx test-weaver --help
# npx test-weaver --version
# npx test-weaver generate input.yaml output.test
# npx test-weaver init -h
# npx test-weaver init -q -f --no-defaults
```
#### Or clone and run locally
```bash
git clone https://github.com/ioncakephper/test-weaver.git
cd test-weaver
npm install
npm link
```
## Usage
`testweaver` is a command-line utility that can be invoked using `testweaver` (if installed globally via `npm install -g test-weaver`) or `npx test-weaver` (for one-off use without global installation).
```bash
# Display help information for the main command
testweaver --help
testweaver -h
# Display version information for the main command
testweaver --version
testweaver -V
```
### Default Command: `generate`
When no specific command is provided, `test-weaver` defaults to the `generate` command. This means you can omit `generate` from your command line.
```bash
# Generates test files based on configuration or default patterns
testweaver
# Same as above, explicitly calling the generate command
testweaver generate
# Using the alias for generate
testweaver g
# Display help information for the generate command
testweaver generate --help
testweaver generate -h
testweaver g --help
testweaver g -h
# Generate with specific patterns (long form)
testweaver generate "src/**/*.yaml" "features/**/*.yml"
# Generate with specific patterns (short form)
testweaver g "src/**/*.yaml"
# Generate with a custom config file
testweaver generate --config my-custom-config.json
testweaver g -c my-custom-config.json
# Generate and watch for changes
testweaver generate --watch
testweaver g -w
# Generate with patterns and watch for changes
testweaver generate "src/**/*.yaml" --watch
testweaver g "src/**/*.yaml" -w
# Perform a dry run (simulate generation without writing files)
testweaver generate --dry-run
testweaver g -n
# Specify a different test keyword (e.g., 'test' instead of 'it')
testweaver generate --test-keyword test
testweaver g -k test
# Generate with a custom output directory, preserving the source folder structure
# For a source file at 'tests/sample/cli.test.yaml', the output will be 'out/tests/sample/cli.test.js'
testweaver generate --output-dir out
testweaver g -o out
# Disable cleanup of generated files when source YAML is unlinked in watch mode
testweaver generate --no-cleanup
```
### `init` Command
Initializes a new project by creating a `testweaver.json` configuration file.
```bash
# Create a default testweaver.json in the current directory (interactive mode)
testweaver init
testweaver i
# Display help information for the init command
testweaver init --help
testweaver init -h
testweaver i --help
testweaver i -h
# Create a default testweaver.json without interactive prompts
testweaver init --quick
testweaver i -q
# Create a custom config file named 'my-config.json'
testweaver init my-config.json
testweaver i my-config.json
# Force overwrite an existing config file
testweaver init --force
testweaver i -f
# Create a config file with only non-default settings
testweaver init --no-defaults
testweaver i --no-defaults
# Combine options: quick, force, and custom filename
testweaver init my-config.json --quick --force
testweaver i my-config.json -q -f
```
## βοΈ Configuration
`test-weaver` is designed to work out-of-the-box with zero configuration, but you can customize its behavior by creating a `testweaver.json` file in your project root. When you run the `init` command, a configuration file is created with the default settings.
The default settings are defined in [`config/default.json`](config/default.json). Let's break down what they mean:
### `patterns`
This is an array of glob patterns that `test-weaver` uses to find your YAML test definition files. By default, it looks for files that:
- Are in any `__tests__` directory and end with `.yaml` or `.yml`.
- _Example Match_: `src/components/__tests__/button.yaml`
- End with `.test.yaml` or `.test.yml`.
- _Example Match_: `src/utils/parser.test.yml`
- End with `.spec.yaml` or `.spec.yml`.
- _Example Match_: `src/api/user.spec.yaml`
- Are inside a top-level `tests` directory and end with `.yaml` or `.yml`.
- _Example Match_: `tests/integration/auth.yml`
- Are inside a top-level `features` directory and end with `.yaml` or `.yml`.
- _Example Match_: `features/login.yaml`
You can override these patterns in your own `testweaver.json` or by providing them directly on the command line.
### `ignore`
This array tells `test-weaver` which files or directories to exclude, even if they match the `patterns` above. The default ignore patterns are:
- `node_modules`: To avoid scanning dependency folders.
- `.git`: To avoid scanning Git-related folders.
- `temp_files/**/*.{yaml,yml}`: A sample pattern to exclude temporary test files.
### Other Settings
- `testKeyword`: Specifies the Jest test function to use. Allowed values are `"it"` (default) and `"test"`.
- `verbose`, `debug`, `silent`: Control the logging level. These are typically set via command-line flags (`--verbose`, `--debug`, `--silent`).
- `dryRun`: If `true`, simulates test generation without writing any files. Set via `--dry-run`.
- `noCleanup`: If `true`, prevents the deletion of generated test files when a source YAML is removed in watch mode. Set via `--no-cleanup`.
- `quick`, `force`, `no-defaults`: These relate to the `init` command for generating configuration files.
## API
### Global Options
`testweaver` supports the following global options, which can be applied before any command:
- `-h, --help`: Display help for command
- `-V, --version`: Output the version number
- `--verbose`: Enable verbose logging for detailed output.
- `--debug`: Enable debug logging for highly detailed debugging (most verbose).
- `--silent`: Suppress all output except critical errors.
### Commands
#### `generate` (Default Command)
Generates Jest-compatible test files from YAML definitions.
**Arguments**
- `[patterns...]`: one or more glob patterns for yaml files. overrides config
**Options**
- `-c, --config `: specify a custom configuration file to load patterns from. overrides default cascade
- `-i, --ignore `: list of glob file patterns to exclude from matched files. overrides config
- `-k, --test-keyword `: specify keyword for test blocks. Allowed values: "it", "test".
- `-n, --dry-run`: perform a dry run: simulate file generation without writing to disk
- `-o, --output-dir `: specify the output directory for generated test files. overrides config
- `-w, --watch`: watch for changes in yaml files and regenerate test files automatically
- `--no-cleanup`: do not delete generated .test.js files when source yaml is unlinked in watch mode
**Examples**
```bash
# Generate tests from all YAML files in the 'tests' directory
testweaver generate "tests/**/*.yaml"
# Generate tests from a specific YAML file and enable watch mode
testweaver generate my-feature.yaml --watch
# Generate tests using a custom configuration file and ignore specific patterns
testweaver generate -c custom-config.json -i "temp/**/*.yaml"
# Perform a dry run for all YAML files in the 'features' directory
testweaver generate "features/**/*.yml" --dry-run
# Generate tests with a custom output directory, preserving the source folder structure
# For a source file at 'tests/sample/cli.test.yaml', the output will be 'out/tests/sample/cli.test.js'
testweaver generate --output-dir out
```
#### `init`
Initializes a new project by creating a `.testweaver.json` configuration file in the current directory.
**Arguments**
- `[filename]`: The name of the configuration file to create. Defaults to `testweaver.json`.
**Options**
- `-f, --force`: Force overwrite the configuration file if it already exists.
- `--no-defaults`: Only include settings in the generated file whose values differ from the default values.
- `-q, --quick`: Skip interactive questions and generate the configuration file with default values.
**Examples**
```bash
# Create a default testweaver.json interactively
testweaver init
# Create a default testweaver.json without prompts
testweaver init --quick
# Create a custom config file named 'my-config.json'
testweaver init my-config.json
# Force overwrite an existing config file without prompts
testweaver init --quick --force
# Create a config file with only non-default settings
testweaver init --no-defaults
```
## π Available Scripts
This repository includes a set of scripts designed to streamline development, enforce quality, and automate documentation.
### Automated Documentation
- `npm run docs:all`: A convenience script that updates all documentation sections: table of contents, available scripts, and project structure.
- `npm run docs:scripts`: Updates the "Available Scripts" section in `README.md` with this script.
- `npm run docs:structure`: Updates the project structure tree in `README.md`.
- `npm run generate-schema`: Generates a JSON schema for the configuration file.
- `npm run toc`: Generates a Table of Contents in `README.md` using `doctoc`.
### Code Quality & Formatting
- `npm run check`: A convenience script that runs the linter.
- `npm run fix`: A convenience script that formats code and then fixes lint issues.
- `npm run format`: Formats all JavaScript, Markdown, and JSON files with Prettier.
- `npm run lint`: Lints all JavaScript and Markdown files using ESLint.
- `npm run lint:fix`: Automatically fixes linting issues in all JavaScript and Markdown files.
### Core Development
- `npm run start`: Runs the application using `node src/index.js`.
- `npm run test`: Runs all tests with Jest.
- `npm run test:coverage`: Runs all tests with Jest and generates a coverage report.
- `npm run test:watch`: Runs Jest in watch mode, re-running tests on file changes.
### The "One-Click" Pre-Commit Workflow
- `npm run ready`: A convenience script to run before committing: updates all documentation and then formats and fixes all files.
## A Focus on Quality and Productivity
This repository is more than just a collection of files; it's a workflow designed to maximize developer productivity and enforce high-quality standards from day one. The core philosophy is to **automate the tedious and error-prone tasks** so you can focus on what matters: building great software.
### The Cost of Stale Documentation
In many projects, the `README.md` quickly becomes outdated. Manually updating the project structure or list of scripts is an easily forgotten chore.
`test-weaver` solves this problem with its custom documentation scripts:
- `scripts/update-readme-structure.js`: Saves you from manually drawing out file trees. What might take 5-10 minutes of careful, manual work (and is often forgotten) is now an instant, accurate, and repeatable command.
- `scripts/update-readme-scripts.js`: Ensures that your project's capabilities are always documented. It reads directly from `package.json`, so the documentation can't lie. It even reminds you to describe your scripts, promoting good habits.
### The Power of Workflow Scripts
Chaining commands together is a simple but powerful concept. The `fix`, `docs:all`, and `ready` scripts are designed to create a seamless development experience.
- Instead of remembering to run `prettier` then `eslint --fix`, you just run `npm run fix`.
- Instead of running three separate documentation commands, you just run `npm run docs:all`.
- And most importantly, before you commit, you run `npm run ready`. This single command is your pre-flight check. It guarantees that every commit you push is not only functional but also perfectly formatted, linted, and documented. This discipline saves countless hours in code review and prevents messy commit histories.
By embracing this automation, `test-weaver` helps you build better software, faster.
## π¦ Release & Versioning
This project uses [`release-please`](https://github.com/googleapis/release-please) to automate releases, versioning, and changelog generation. This ensures a consistent and hands-off release process, relying on the Conventional Commits specification.
### How it Works
1. **Conventional Commits**: All changes merged into the `main` branch should follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification (e.g., `feat: add new feature`, `fix: resolve bug`).
2. **Release Pull Request**: `release-please` runs as a GitHub Action and monitors the `main` branch for new Conventional Commits. When it detects changes that warrant a new release (e.g., a `feat` commit for a minor version, a `fix` commit for a patch version), it automatically creates a "Release PR" with a title like `chore(release): 1.2.3`.
3. **Review and Merge**: This Release PR contains:
- An updated `CHANGELOG.md` with all changes since the last release.
- A bumped version number in `package.json`.
- Proposed release notes. Review this PR, and once satisfied, merge it into `main`.
4. **Automated GitHub Release & Publish**: Merging the Release PR triggers two final, sequential actions:
- The `release-please` action creates a formal GitHub Release and a corresponding Git tag (e.g., `v1.1.0`).
- The creation of this release then triggers the `publish.yml` workflow, which automatically publishes the package to the npm registry.
### Creating a New Release
To create subsequent releases, simply merge changes into the `main` branch using Conventional Commits. `release-please` will handle the rest by creating a Release PR. Once that PR is merged, the new version will be released automatically.
#### Your First Release
To bootstrap the process and create your very first release:
1. Ensure your `package.json` version is at a sensible starting point (e.g., `1.0.0`).
2. Make at least one commit to the `main` branch that follows the Conventional Commits specification. A good first commit would be: `feat: Initial release`.
3. Push your commit(s) to `main`. The `release-please` action will run and create your first Release PR.
4. Review and merge this PR. This will trigger the creation of your `v1.0.0` GitHub Release and publish the package to npm.
For more details, refer to the [release-please documentation](https://github.com/googleapis/release-please#how-it-works).
## π Project Structure
```plaintext
.
βββ .github/ # GitHub Actions workflows
β βββ workflows/
β βββ ci.yml # Continuous Integration (CI) workflow
β βββ publish.yml
β βββ release-please.yml
βββ .qodo/
β βββ testConfig.toml
βββ config/
β βββ default-config.schema.json
β βββ default.json
βββ docs/
βββ src/ # Source code
β βββ commands/
β β βββ generate.js
β β βββ init.js
β βββ config/
β β βββ configLoader.js
β βββ core/
β β βββ fileProcessor.js
β β βββ testGenerator.js
β β βββ watcher.js
β βββ utils/
β β βββ commandLoader.js
β β βββ logger.js
β βββ index.js # Main application entry point
βββ tests/
β βββ fileProcessor.security.test.js
β βββ fileProcessor.test.js
β βββ generate-output-dir.test.js
β βββ generate.test.js
β βββ index.test.js
β βββ testGenerator.test.js
βββ .eslintignore # Files/folders for ESLint to ignore
βββ .eslintrc.json # ESLint configuration
βββ .gitignore # Files/folders for Git to ignore
βββ .npmrc
βββ .prettierignore # Files/folders for Prettier to ignore
βββ .prettierrc.json # Prettier configuration
βββ CHANGELOG.md
βββ CODE_OF_CONDUCT.md # Community standards
βββ CONTRIBUTING.md # Guidelines for contributors
βββ jest.config.js
βββ LICENSE # Project license
βββ package.json # Project metadata and dependencies
βββ README.md # This file
```
## βοΈ Linting for Documentation
This project uses the [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) package to enforce that all functions, classes, and methods are properly documented using JSDoc comments. This helps maintain a high level of code quality and makes the codebase easier for new and existing developers to understand.
### How to Check for Missing Documentation
You can check the entire project for missing or incomplete docblocks by running the standard linting command:
```bash
npm run lint
```
ESLint will scan your JavaScript files and report any undocumented code as a warning.
### Example
Consider the following function in your code without any documentation:
```javascript
function calculateArea(width, height) {
return width * height;
}
```
When you run `npm run lint`, ESLint will produce a warning similar to this:
```plaintext
/path/to/your/project/src/your-file.js
1:1 warning Missing JSDoc for function 'calculateArea' jsdoc/require-jsdoc
```
To fix this, you would add a JSDoc block that describes the function, its parameters, and what it returns. Most modern code editors (like VS Code) can help by generating a skeleton for you if you type `/**` and press Enter above the function.
**Corrected Code:**
```javascript
/**
* Calculates the area of a rectangle.
* @param {number} width The width of the rectangle.
* @param {number} height The height of the rectangle.
* @returns {number} The calculated area.
*/
function calculateArea(width, height) {
return width * height;
}
```
After adding the docblock, running `npm run lint` again will no longer show the warning for this function.
## π Bug Reports
Found a bug? We'd love to hear about it. Please raise an issue on our [GitHub Issues](https://github.com/ioncakephper/test-weaver/issues) page.
## π€ Contributing
Contributions are welcome! Please read our [contributing guidelines](CONTRIBUTING.md) to get started.
## πΊοΈ Roadmap
This project is actively maintained, and we have a clear vision for its future. Here are some of the features and improvements we are planning:
- **TypeScript Support**: Add a separate branch or configuration for a TypeScript version of this template.
- **Monorepo Example**: Provide guidance and an example setup for using this template within a monorepo structure.
- **Containerization**: Include a `Dockerfile` and `docker-compose.yml` for easy container-based development.
- **Additional CI/CD Examples**: Add examples for other CI/CD providers like CircleCI or GitLab CI.
If you have ideas for other features, please open an issue to discuss them!
## βοΈ Code of Conduct
To ensure a welcoming and inclusive community, this project adheres to a [Code of Conduct](CODE_OF_CONDUCT.md). Please read it to understand the standards of behavior we expect from all participants.
## π Acknowledgements
This project was built upon the shoulders of giants. We'd like to thank the creators and maintainers of these amazing open-source tools and specifications that make this template possible:
- [Node.js](https://nodejs.org/)
- [Jest](https://jestjs.io/)
- [ESLint](https://eslint.org/)
- [Prettier](https://prettier.io/)
- [Release Please](https://github.com/googleapis/release-please)
- [Conventional Commits](https://www.conventionalcommits.org/)
- [Doctoc](https://github.com/thlorenz/doctoc)
- [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc)
- [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [Semantic Versioning](https://semver.org/)
- [Contributor Covenant](https://www.contributor-covenant.org/)
## π¨βπ» About the Author
This template was created and is maintained by **Ion Gireada**.
- **GitHub**: [@ioncakephper](https://github.com/ioncakephper)
- **Website**: Feel free to add your personal website or blog here.
- **LinkedIn**: Connect with me on [LinkedIn](https://www.linkedin.com/in/ion-gireada-223929/)!
## π License
This project is licensed under the [MIT License](LICENSE).