diff --git a/.gitattributes b/.gitattributes
index f2dbac49..1a87fa23 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,7 +1,6 @@
/.build export-ignore
/.github export-ignore
/.phive export-ignore
-/docs export-ignore
/tests export-ignore
.editorconfig export-ignore
.env export-ignore
@@ -10,18 +9,15 @@
.gitignore export-ignore
.php-cs-fixer.dist.php export-ignore
.pre-commit-config.yaml export-ignore
-.yamllint.yaml export-ignore
composer.lock export-ignore
composer-require-checker.json export-ignore
docker-compose.yaml export-ignore
infection.json.dist export-ignore
Makefile export-ignore
-package.json export-ignore
+pest.xml.dist export-ignore
phpstan.neon.dist export-ignore
phpstan-baseline.neon export-ignore
phpunit.xml.dist export-ignore
psalm.xml export-ignore
psalm-baseline.xml export-ignore
-renovate.json export-ignore
rector.php export-ignore
-renovate.json export-ignore
diff --git a/.markdownlint.json b/.github/.markdownlint.json
similarity index 75%
rename from .markdownlint.json
rename to .github/.markdownlint.json
index 587ebe27..77f382df 100644
--- a/.markdownlint.json
+++ b/.github/.markdownlint.json
@@ -1,5 +1,5 @@
{
- "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.34.0/schema/markdownlint-config-schema.json",
+ "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
"line-length": false,
"no-inline-html": false,
"first-line-h1": false,
diff --git a/.yamllint.yaml b/.github/.yamllint.yaml
similarity index 99%
rename from .yamllint.yaml
rename to .github/.yamllint.yaml
index e2997f15..657554db 100644
--- a/.yamllint.yaml
+++ b/.github/.yamllint.yaml
@@ -5,7 +5,6 @@ extends: default
ignore: |
.build/
vendor/
- docs/
rules:
braces:
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 785ac77f..5cc476be 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,8 +1,48 @@
# Contributing
-If you would like to contribute to this project, please open an issue or a pull request. We are always looking for ways to improve the project and would love to hear your ideas.
+Welcome to our project!
-The latest changes are always in master branch, so please make your Pull Request against that branch.
+We appreciate your interest in contributing. This guide will help you get started, ensuring an effective collaboration.
+
+
+
+## ๐ Table of Contents
+
+* [Introduction](#-introduction)
+* [Development Requirements](#-development-requirements)
+ * [Optional Tools](#-optional-tools)
+* [Quick Project Setup](#-quick-project-setup)
+* [Using the Makefile](#-using-the-makefile)
+ * [Key Commands](#-key-commands)
+* [Workflow](#-workflow)
+* [Docker Support](#-docker-support)
+* [Continuous Integration with GitHub Actions](#-continuous-integration-with-github-actions)
+* [Before You Contribute](#-before-you-contribute)
+* [Commit Message Guidelines](#-commit-message-guidelines)
+* [PHAR Dependencies](#-phar-dependencies)
+* [Coding Standards](#-coding-standards)
+ * [Composer Normalization](#-composer-normalization)
+ * [Yaml Lint](#-yaml-lint)
+ * [Action Lint](#-action-lint)
+ * [Markdown Lint](#-markdown-lint)
+ * [PHP CS Fixer](#-php-cs-fixer)
+ * [Rector](#-rector)
+* [Dependency Analysis](#-dependency-analysis)
+* [Security Audits](#-security-audits)
+* [Mutation Tests](#-mutation-tests)
+* [Static Code Analysis](#-static-code-analysis)
+* [Unit and Functional Tests](#-unit-and-functional-tests)
+* [Pre-commit Hooks](#-pre-commit-hooks)
+ * [Configured Hooks](#-configured-hooks)
+ * [Installing Pre-commit Hooks](#-installing-pre-commit-hooks)
+
+
+
+## ๐ Introduction
+
+If you would like to contribute, please **open an issue** or a pull request. We are always looking for ways to improve the project and would love to hear your ideas.
+
+The latest changes are always in **`master`** branch, so please make your Pull Request against that branch.
@@ -10,42 +50,71 @@ The latest changes are always in master branch, so please make your Pull Request
Before you begin, you will need to set up your local development environment. Here is what you'll need:
-- **Operating System**: macOS Monterey+, Linux, or Windows with WSL2.
-- **Docker**: Version 26.0.0 or newer. Installation guides:
- - [Docker on Ubuntu 22.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04)
- - [Docker Desktop on Mac](https://docs.docker.com/desktop/install/mac-install/)
-- **Homebrew** (macOS only): Install via [brew.sh](https://brew.sh/).
+* **Operating System**: macOS Monterey+, Linux, or Windows with WSL2.
+* **Docker**: Version 26.0.0 or newer. Installation guides:
+ * [Docker on Ubuntu 22.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04)
+ * [Docker Desktop on Mac](https://docs.docker.com/desktop/install/mac-install/)
### โ Optional Tools
-- [Pre-commit](https://pre-commit.com) โ Automates the running of git pre-commit hooks.
- - Installation: `brew install pre-commit` and `make hooks`
-- [Cz-git](https://cz-git.qbb.sh) โ Commitizen adapter, that assists in formatting git commits.
- - Installation: `brew install czg`
+* **Homebrew** (macOS only)
+ * Install via [brew.sh](https://brew.sh/).
+* [Pre-commit](https://pre-commit.com) โ Automates the running of git pre-commit hooks.
+ * Installation: `brew install pre-commit` and `make hooks`
+* [Cz-git](https://cz-git.qbb.sh) โ Commitizen adapter, that assists in formatting git commits.
+ * Installation: `brew install czg`
-## ๐ ๏ธ Makefile
+## ๐ Quick Project Setup
-This project uses a Makefile to streamline common development tasks. The Makefile includes utilities for managing Docker environments, running tests, and linting code.
+We use a dockerized environment. Follow these steps to start working with the project:
+
+1. **Clone this repository:**
+
+ ```bash
+ git clone git@github.com:wayofdev/laravel-package-tpl.git \
+ && cd ./laravel-package-tpl
+ ```
+
+2. **Create `.env` file:**
+
+ ```bash
+ make env
+ ```
+
+3. **Install phive and composer dependencies:**
+
+ ```bash
+ make phive
+ make install
+ ```
+
+
+
+## ๐ง Using the Makefile
+
+This project uses a Makefile to streamline common development tasks. The Makefile includes utilities for managing Docker environments, installing project dependencies, running tests, and linting code.
```bash
make help
```
-![Screenshot](../assets/screenshot.png)
+![Screenshot](./assets/screenshot.png)
### โ Key Commands
-- `make up`: Starts all services using Docker Compose.
-- `make down`: Stops all running Docker containers.
-- `make ssh`: Logs into the running application container for command line operations.
-- `make lint`: Executes all linting procedures for YAML, PHP, and Composer files.
-- `make test`: Runs all configured tests using PHPUnit and Pest in a Dockerized environment.
-- `make commit`: Runs cz-git, a commitizen adapter for commit message formatting in a native environment.
-- `make install`: Installs project dependencies through Composer in a Dockerized environment.
+* `make env`: Creates a `.env` file from the `.env.example` template.
+* `make install`: Installs project composer dependencies
+* `make update`: Updates project composer dependencies
+* `make up`: Starts all services using Docker Compose.
+* `make down`: Stops and removes all services.
+* `make logs`: Displays logs for all services.
+* `make ssh`: Logs into the running application container for command line operations.
+* `make lint`: Executes all linting procedures for YAML, PHP, and Composer files.
+* `make commit`: Runs cz-git, a commitizen adapter for commit message formatting in a native environment.
-Refer to the output of `make help` for a comprehensive list of available commands.
+For a full list of commands, run `make help`.
@@ -55,21 +124,21 @@ Refer to the output of `make help` for a comprehensive list of available command
>
> Please feature/fix/update... into individual PRs (not one changing everything)
-- **Fork the Repository**: Start by forking the repository to your GitHub account.
-- **Create a Branch**: In your fork, create a new branch for your work. Name it appropriately based on the feature, fix, or update you're working on.
-- **Make Your Changes**: Implement your changes
-- **Run Tests**: Ensure all tests pass and the code adheres to the coding standards.
-- **Update Documentation**: If you've made changes that affect the project's documentation, ensure it is updated.
-- **Run Linters**: Ensure your code passes all linting checks using `make lint`.
-- **Commit Your Changes**: Use the [Conventional Commits](#-commit-message-guidelines) standard for your commit messages. You can use `make commit` to assist in creating commit messages.
-- **Push Your Changes**: Push your branch to your fork on GitHub.
-- **Open a Pull Request**: Submit a pull request to the `master` branch of the original repository. Ensure your PR is focused, addressing a single feature, fix, or improvement.
+* **Fork the Repository**: Start by forking the repository to your GitHub account.
+* **Create a Branch**: In your fork, create a new branch for your work. Name it appropriately based on the feature, fix, or update you're working on.
+* **Make Your Changes**: Implement your changes
+* **Run Tests**: Ensure all tests pass by running `make test`.
+* **Update Documentation**: If you've made changes that affect the project's documentation, ensure it is updated.
+* **Run Linters**: Ensure your code passes all linting checks using `make lint`.
+* **Commit Your Changes**: Use the [Conventional Commits](#-commit-message-guidelines) standard for your commit messages. You can use `make commit` to assist in creating commit messages.
+* **Push Your Changes**: Push your branch to your fork on GitHub.
+* **Open a Pull Request**: Submit a pull request to the `master` branch of the original repository. Ensure your PR is focused, addressing a single feature, fix, or improvement.
## ๐ณ Docker Support
-This package leverages Docker to provide a consistent and isolated development environment. The included [`Makefile`](../Makefile) utilizes `docker-compose.yaml` along with the [wayofdev/docker-php-dev](https://github.com/wayofdev/docker-php-dev) PHP image to streamline setup and usage. This setup facilitates easy configuration of tools like Xdebug for debugging and profiling, enhancing the development experience.
+This package leverages Docker to provide a consistent and isolated development environment. The included [`Makefile`](../Makefile) utilizes `docker-compose.yaml` along with the [wayofdev/docker-php-dev](https://github.com/wayofdev/docker-php-dev) PHP image to streamline setup and usage. This setup facilitates easy configuration of tools like XDebug for debugging and profiling, enhancing the development experience.
To run docker container:
@@ -91,24 +160,31 @@ By default, phpunit and phpstan commands will be ran against docker environment.
-## โก๏ธ Continuous Integration with GitHub Actions
+## ๐จ Continuous Integration with GitHub Actions
Our project employs [GitHub Actions](https://github.com/features/actions) for continuous integration, ensuring code quality and reliability. We encourage contributors to review our workflow configurations to understand the CI processes:
-- [`workflows/integrate.yaml`](workflows/integrate.yaml)
-- [`workflows/apply-labels.yml`](workflows/apply-labels.yml)
-- [`workflows/create-release.yml`](workflows/create-release.yml)
-- [`workflows/shellcheck.yml`](workflows/shellcheck.yml)
-- [`workflows/create-arch-diagram.yml`](workflows/create-arch-diagram.yml)
+| Workflow | Description |
+|----------------------------------------------------------------|---------------------------------------------------------------------|
+| [`apply-labels.yml`](workflows/apply-labels.yml) | Auto labels PRs based on rules. |
+| [`auto-merge-release.yml`](workflows/auto-merge-release.yml) | Automatically merges release PRs. |
+| [`coding-standards.yml`](workflows/coding-standards.yml) | Checks `yaml`, `md`, `composer`, `php` and commit coding standards. |
+| [`create-release.yml`](workflows/create-release.yml) | Creates a release on GitHub. |
+| [`dependency-analysis.yml`](workflows/dependency-analysis.yml) | Checks for dependency issues. |
+| [`refactoring.yml`](workflows/refactoring.yml) | Runs rector/rector code check. |
+| [`security-analysis.yml`](workflows/security-analysis.yml) | Checks for security issues. |
+| [`shellcheck.yml`](workflows/shellcheck.yml) | Checks shell scripts. |
+| [`static-analysis.yml`](workflows/static-analysis.yml) | Runs `psalm` and `phpstan` tools. |
+| [`testing.yml`](workflows/testing.yml) | Runs coverage, unit and mutation tests. |
## ๐ Before You Contribute
-- **Tests**: Include tests that cover any new features or bug fixes.
-- **Code Quality**: Utilize `make lint` for code style checks and `make lint-stan` for static analysis with [Psalm](https://psalm.dev/).
-- **Documentation**: Update relevant documentation to reflect your changes, ensuring other developers can understand and use your contributions effectively.
-- **Commits**: use Conventional Commits standard to create a commit
+* **Tests**: Include tests that cover any new features or bug fixes.
+* **Code Quality**: Utilize `make lint` for code style checks and `make lint-stan lint-psalm` for static analysis with [PHPStan](https://phpstan.org) and [Psalm](https://psalm.dev/).
+* **Documentation**: Update relevant documentation to reflect your changes, ensuring other developers can understand and use your contributions effectively.
+* **Commits**: use Conventional Commits standard to create a commit
@@ -125,25 +201,35 @@ git commit -am 'fix: something has been fixed'
**Allowed Prefixes:**
-| Prefix | Purpose |
-|------------|---------------------------------------------------------------|
-| `feat` | Introduces a new feature |
-| `fix` | Fixes a bug |
-| `perf` | Improves performance |
-| `docs` | Documentation only changes |
-| `style` | Code style changes (formatting, missing semi-colons, etc.) |
-| `deps` | Updates dependencies |
-| `refactor` | Code changes that neither fixes a bug nor adds a feature |
-| `ci` | Changes to our CI configuration files and scripts |
-| `test` | Adding missing tests or correcting existing tests |
-| `revert` | Reverts a previous commit |
-| `build` | Changes that affect the build system or external dependencies |
-| `chore` | Other changes that don't modify src or test files |
-| `security` | A code change that fixes a security issue |
+| Prefix | Purpose |
+|-------------|---------------------------------------------------------------|
+| `feat:` | Introduces a new feature |
+| `fix:` | Fixes a bug |
+| `perf:` | Improves performance |
+| `docs:` | Documentation only changes |
+| `style:` | Code style changes (formatting, missing semi-colons, etc.) |
+| `deps:` | Updates dependencies |
+| `refactor:` | Code changes that neither fixes a bug nor adds a feature |
+| `ci:` | Changes to our CI configuration files and scripts |
+| `test:` | Adding missing tests or correcting existing tests |
+| `revert:` | Reverts a previous commit |
+| `build:` | Changes that affect the build system or external dependencies |
+| `chore:` | Other changes that don't modify src or test files |
+| `security:` | A code change that fixes a security issue |
-## ๐ Coding Standards and Tools
+## ๐ฆ PHAR Dependencies
+
+We use [Phive](https://phar.io/) to manage PHAR dependencies. You can install all dependencies using the `make phive` command, which will be executed through the Docker environment.
+
+```bash
+make phive
+```
+
+
+
+## ๐ Coding Standards
We enforce coding standards to maintain high code quality and readability. Here's a list of tools we use:
@@ -169,8 +255,6 @@ make lint-yaml
by default, [`cytopia/yamllint`](https://github.com/cytopia/docker-yamllint) Docker image will be used to run linter.
-
-
### โ Action Lint
We use [`actionlint`](https://github.com/rhysd/actionlint) to enforce coding standards in GitHub Actions workflows.
@@ -183,7 +267,16 @@ make lint-actions
by default, [`rhysd/actionlint`](https://hub.docker.com/r/rhysd/actionlint/tags) Docker image will be used to run linter.
-
+### โ Markdown Lint
+
+We use [`markdownlint-cli2`](https://github.com/davidanson/markdownlint-cli2) to enforce coding standards in Markdown files.
+
+To lint markdown files run:
+
+```bash
+make lint-md-dry
+make lint-md
+```
### โ PHP CS Fixer
@@ -197,6 +290,18 @@ make lint-php
to automatically fix coding standard violations.
+### โ Rector
+
+We use [`rector/rector`](https://github.com/rectorphp/rector) to refactor and modernize PHP code.
+
+Run
+
+```bash
+make refactor
+```
+
+to perform code refactoring.
+
## ๐ฌ Dependency Analysis
@@ -205,7 +310,7 @@ We use [`maglnet/composer-require-checker`](https://github.com/maglnet/ComposerR
Run
-```sh
+```bash
make lint-deps
```
@@ -213,13 +318,25 @@ to run a dependency analysis.
+## ๐ Security Audits
+
+We use Composer's built-in audit feature to check for known vulnerabilities in dependencies.
+
+Run
+
+```bash
+make lint-audit
+```
+
+
+
## ๐ฆ Mutation Tests
-We use [`infection/infection`](https://github.com/infection/infection) to ensure a minimum quality of the tests.
+We use [`infection/infection`](https://github.com/infection/infection) together with [`roave/infection-static-analysis-plugin`](https://github.com/Roave/infection-static-analysis-plugin) to ensure a minimum quality of the tests. Roave plugin is used to publish mutation score results to the [Stryker Dashboard](https://dashboard.stryker-mutator.io/).
-Xdebug support is enabled by default, when running commands through `Makefile`:
+Xdebug support is enabled by default when running commands through the `Makefile`:
-```sh
+```bash
make infect
```
@@ -227,13 +344,13 @@ to run mutation tests.
-## โ๏ธ Static Code Analysis
+## ๐ Static Code Analysis
We use both [`phpstan/phpstan`](https://github.com/phpstan/phpstan) and [`vimeo/psalm`](https://github.com/vimeo/psalm) to statically analyze the code.
Run
-```sh
+```bash
make lint-stan
make lint-psalm
```
@@ -244,15 +361,15 @@ We also use the baseline features of [`phpstan/phpstan`](https://phpstan.org/use
Run
-```sh
+```bash
make lint-stan-baseline
make lint-psalm-baseline
```
to regenerate the baselines in:
-- [`../phpstan-baseline.neon`](../phpstan-baseline.neon).
-- [`../psalm-baseline.xml`](../psalm-baseline.xml).
+* [`../phpstan-baseline.neon`](../phpstan-baseline.neon).
+* [`../psalm-baseline.xml`](../psalm-baseline.xml).
> [!IMPORTANT]
>
@@ -260,17 +377,22 @@ to regenerate the baselines in:
-## ๐งช Tests
+## ๐งช Unit and Functional Tests
We use [`phpunit/phpunit`](https://github.com/sebastianbergmann/phpunit) and [`pestphp/pest`](https://github.com/pestphp/pest) to drive the development.
-Run
+Run to run all the tests:
-```sh
-make tests
-```
+```bash
+# To run both, arch (pest) and unit (phpunit) tests
+make test
-to run all the tests.
+# To run only arch (pest) tests
+make test-arch
+
+# To run only unit (phpunit) tests
+make test-unit
+```
@@ -282,11 +404,12 @@ Pre-commit hooks are an optional but highly recommended way to automate the lint
Our pre-commit configuration includes several hooks:
-- **Trailing Whitespace**: Removes unnecessary trailing spaces.
-- **End-of-File Fixer**: Ensures that files end with a newline.
-- **Check Added Large Files**: Prevents accidentally adding large files to the git repository, with a current limit set to 600 KB.
-- **Commitizen**: Ensures commit messages meet the conventional commit format. This hook is triggered at the commit message stage.
-- **PHP-CS-Fixer:** Enforces coding standards in PHP files.
+* **Trailing Whitespace**: Removes unnecessary trailing spaces.
+* **End-of-File Fixer**: Ensures that files end with a newline.
+* **Check Added Large Files**: Prevents accidentally adding large files to the git repository, with a current limit set to 600 KB.
+* **Commitizen**: Ensures commit messages meet the conventional commit format. This hook is triggered at the commit message stage.
+* **PHP-CS-Fixer:** Enforces coding standards in PHP files.
+* **Markdown Lint:** Enforces coding standards in Markdown files.
### โ Installing Pre-commit Hooks
@@ -295,3 +418,5 @@ To utilize these hooks, you first need to install them using the command provide
```bash
make hooks
```
+
+
diff --git a/assets/screenshot.png b/.github/assets/screenshot.png
similarity index 100%
rename from assets/screenshot.png
rename to .github/assets/screenshot.png
diff --git a/.github/labeler.yml b/.github/labeler.yml
index e5d40386..211fe339 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -11,7 +11,7 @@
"type: documentation":
- changed-files:
- - any-glob-to-any-file: ['assets/**/*', '.github/*', './*.md']
+ - any-glob-to-any-file: ['.github/*', './*.md']
"type: maintenance":
- changed-files:
diff --git a/renovate.json b/.github/renovate.json
similarity index 70%
rename from renovate.json
rename to .github/renovate.json
index a3936642..6e77c8dd 100644
--- a/renovate.json
+++ b/.github/renovate.json
@@ -1,7 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
- "config:base"
+ "config:base",
+ ":semanticCommitTypeAll(deps)"
],
"automerge": true,
"platformAutomerge": true
diff --git a/.github/workflows/apply-labels.yml b/.github/workflows/apply-labels.yml
index f2b6f59b..2a14666f 100644
--- a/.github/workflows/apply-labels.yml
+++ b/.github/workflows/apply-labels.yml
@@ -14,7 +14,7 @@ name: ๐ท๏ธ Add labels
jobs:
label:
- uses: wayofdev/gh-actions/.github/workflows/apply-labels.yml@v3.1.0
+ uses: wayofdev/gh-actions/.github/workflows/apply-labels.yml@v3.1.1
with:
os: ubuntu-latest
secrets:
diff --git a/.github/workflows/auto-merge-release.yml b/.github/workflows/auto-merge-release.yml
index 97cf2374..8f5f45a0 100644
--- a/.github/workflows/auto-merge-release.yml
+++ b/.github/workflows/auto-merge-release.yml
@@ -4,6 +4,8 @@
on: # yamllint disable-line rule:truthy
pull_request:
+ branches:
+ - master
permissions:
pull-requests: write
@@ -13,7 +15,7 @@ name: ๐ค Auto merge release
jobs:
auto-merge:
- uses: wayofdev/gh-actions/.github/workflows/auto-merge-release.yml@v3.1.0
+ uses: wayofdev/gh-actions/.github/workflows/auto-merge-release.yml@v3.1.1
with:
os: ubuntu-latest
pull-request-number: ${{ github.event.pull_request.number }}
diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml
new file mode 100644
index 00000000..1c4f0c25
--- /dev/null
+++ b/.github/workflows/coding-standards.yml
@@ -0,0 +1,197 @@
+---
+
+on: # yamllint disable-line rule:truthy
+ pull_request:
+ branches:
+ - master
+ push:
+ branches:
+ - master
+
+name: ๐งน Fix PHP coding standards
+
+jobs:
+ commit-linting:
+ timeout-minutes: 4
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ pull-requests: read
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ง Lint commits using "commitlint"
+ uses: wagoid/commitlint-github-action@v6.0.1
+ with:
+ configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs
+ failOnWarnings: false
+ failOnErrors: true
+ helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint'
+
+ yaml-linting:
+ timeout-minutes: 4
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ pull-requests: read
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ง Lint YAML files
+ uses: ibiqlik/action-yamllint@v3.1.1
+ with:
+ config_file: .github/.yamllint.yaml
+ file_or_dir: '.'
+ strict: true
+
+ markdown-linting:
+ timeout-minutes: 4
+ runs-on: ubuntu-latest
+ concurrency:
+ cancel-in-progress: true
+ group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ง Lint Markdown files
+ uses: DavidAnson/markdownlint-cli2-action@v16.0.0
+ with:
+ config: '.github/.markdownlint.json'
+ globs: |
+ **/*.md
+ !CHANGELOG.md
+
+ composer-linting:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: composer-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ permissions:
+ contents: write
+ steps:
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, phar, fileinfo, curl
+ ini-values: error_reporting=E_ALL
+ coverage: none
+ tools: phive
+
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: |
+ echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies with composer
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ฅ Install dependencies with phive
+ uses: wayofdev/gh-actions/actions/phive/install@v3.1.1
+ with:
+ phive-home: '.phive'
+ trust-gpg-keys: 0xC00543248C87FB13,0x033E5F8D801A2F8D
+
+ - name: ๐ Run ergebnis/composer-normalize
+ run: .phive/composer-normalize --ansi --dry-run
+
+ coding-standards:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: coding-standards-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ permissions:
+ contents: write
+ steps:
+ - name: โ๏ธ Set git to use LF line endings
+ run: |
+ git config --global core.autocrlf false
+ git config --global core.eol lf
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, curl
+ ini-values: error_reporting=E_ALL
+ coverage: none
+
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: |
+ echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies with composer
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ ๏ธ Prepare environment
+ run: make prepare
+
+ - name: ๐จ Run coding standards task
+ run: composer cs:fix
+ env:
+ PHP_CS_FIXER_IGNORE_ENV: true
+
+ - name: ๐ค Commit and push changed files back to GitHub
+ uses: stefanzweifel/git-auto-commit-action@v5.0.1
+ with:
+ commit_message: 'style(php-cs-fixer): lint php files and fix coding standards'
+ branch: ${{ github.head_ref }}
+ commit_author: 'github-actions '
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/create-arch-diagram.yml b/.github/workflows/create-arch-diagram.yml
index 149d4813..7f1b1e61 100644
--- a/.github/workflows/create-arch-diagram.yml
+++ b/.github/workflows/create-arch-diagram.yml
@@ -19,7 +19,7 @@ permissions: read-all
jobs:
codesee:
- uses: wayofdev/gh-actions/.github/workflows/create-arch-diagram.yml@v3.1.0
+ uses: wayofdev/gh-actions/.github/workflows/create-arch-diagram.yml@v3.1.1
with:
os: ubuntu-latest
continue-on-error: true
diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml
index e1245aa4..c9aed094 100644
--- a/.github/workflows/create-release.yml
+++ b/.github/workflows/create-release.yml
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ๐ Create release
- uses: google-github-actions/release-please-action@v4
+ uses: googleapis/release-please-action@v4.1.1
id: release
with:
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
diff --git a/.github/workflows/dependency-analysis.yml b/.github/workflows/dependency-analysis.yml
new file mode 100644
index 00000000..8032bd83
--- /dev/null
+++ b/.github/workflows/dependency-analysis.yml
@@ -0,0 +1,83 @@
+---
+
+on: # yamllint disable-line rule:truthy
+ push:
+ branches:
+ - master
+ paths:
+ - 'config/**'
+ - 'src/**'
+ - 'tests/**'
+ - '.php-cs-fixer.dist.php'
+ - 'composer.*'
+ pull_request:
+ branches:
+ - master
+ paths:
+ - 'config/**'
+ - 'src/**'
+ - 'tests/**'
+ - '.php-cs-fixer.dist.php'
+ - 'composer.*'
+
+name: ๐ Dependency analysis
+
+jobs:
+ dependency-analysis:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: dependency-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: none
+ tools: phive
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ฅ Install dependencies with phive
+ uses: wayofdev/gh-actions/actions/phive/install@v3.1.1
+ with:
+ phive-home: '.phive'
+ trust-gpg-keys: 0xC00543248C87FB13,0x033E5F8D801A2F8D
+
+ - name: ๐ฌ Run maglnet/composer-require-checker
+ run: .phive/composer-require-checker check --ansi --config-file="$(pwd)/composer-require-checker.json" --verbose
diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml
deleted file mode 100644
index bd8dea36..00000000
--- a/.github/workflows/integrate.yml
+++ /dev/null
@@ -1,495 +0,0 @@
----
-
-on: # yamllint disable-line rule:truthy
- pull_request:
- branches:
- - master
- push:
- branches:
- - master
-
-name: ๐ Continuous integration
-
-jobs:
- commit-linting:
- timeout-minutes: 4
- runs-on: ubuntu-latest
- permissions:
- contents: read
- pull-requests: read
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ง Lint commits using "commitlint"
- uses: wagoid/commitlint-github-action@v6.0.1
- with:
- configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs
- failOnWarnings: false
- failOnErrors: false
- helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint'
-
- markdown-linting:
- timeout-minutes: 4
- runs-on: ubuntu-latest
- concurrency:
- cancel-in-progress: true
- group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ง Lint Markdown files
- uses: DavidAnson/markdownlint-cli2-action@v16.0.0
- with:
- globs: |
- **/*.md
- !CHANGELOG.md
-
- code-coverage:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: code-coverage-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: xdebug
-
- - name: ๐ ๏ธ Setup problem matchers
- run: |
- echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐งช Collect code coverage with Xdebug and phpunit/phpunit
- run: composer test:cc
-
- - name: ๐ค Upload code coverage report to Codecov
- uses: codecov/codecov-action@v4.4.1
- with:
- files: .build/phpunit/logs/clover.xml
- token: ${{ secrets.CODECOV_TOKEN }}
- verbose: true
-
- coding-standards:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: coding-standards-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ง Lint YAML files
- uses: ibiqlik/action-yamllint@v3.1.1
- with:
- config_file: .yamllint.yaml
- file_or_dir: '.'
- strict: true
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: xdebug
-
- - name: ๐ ๏ธ Setup problem matchers
- run: |
- echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐ ๏ธ Prepare environment
- run: make prepare
-
- - name: ๐จ Run coding standards task
- run: composer cs:diff
- env:
- PHP_CS_FIXER_IGNORE_ENV: true
-
- dependency-analysis:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: dependency-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, json, curl, dom, xml, phar
- ini-values: error_reporting=E_ALL
- coverage: none
- tools: phive
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐ฅ Install dependencies with phive
- uses: wayofdev/gh-actions/actions/phive/install@v3.1.0
- with:
- phive-home: '.phive'
- trust-gpg-keys: '0x033E5F8D801A2F8D'
-
- - name: ๐ฌ Run maglnet/composer-require-checker
- run: .phive/composer-require-checker check --ansi --config-file="$(pwd)/composer-require-checker.json" --verbose
-
- mutation-testing:
- timeout-minutes: 16
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: mutation-testing-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: xdebug
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐งช Run mutation testing using Xdebug and infection/infection
- run: composer infect:ci
- env:
- STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
-
- security-analysis:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: security-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: none
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐ Check installed packages for security vulnerability advisories
- run: composer audit --ansi
-
- static-analysis:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: static-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: none
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐ Run static analysis using phpstan
- run: composer stan:ci
-
- testing:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: testing-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}-${{ matrix.dependencies }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- - '8.3'
- dependencies:
- - lowest
- - locked
- - highest
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: none
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: โ๏ธ Remove platform configuration with composer
- if: matrix.dependencies != 'locked'
- run: composer config platform.php --ansi --unset
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: ๐งช Run tests using phpunit/phpunit
- run: php vendor/bin/pest
-
- refactoring:
- timeout-minutes: 4
- runs-on: ${{ matrix.os }}
- concurrency:
- cancel-in-progress: true
- group: refactoring-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- strategy:
- fail-fast: true
- matrix:
- os:
- - ubuntu-latest
- php-version:
- - '8.2'
- dependencies:
- - locked
- steps:
- - name: ๐ฆ Check out the codebase
- uses: actions/checkout@v4.1.6
-
- - name: ๐ ๏ธ Setup PHP
- uses: shivammathur/setup-php@2.30.4
- with:
- php-version: ${{ matrix.php-version }}
- extensions: mbstring, pdo, pdo_sqlite
- ini-values: error_reporting=E_ALL
- coverage: none
-
- - name: ๐ ๏ธ Setup problem matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
-
- - name: ๐ค Validate composer.json and composer.lock
- run: composer validate --ansi --strict
-
- - name: ๐ Get composer cache directory
- uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.0
-
- - name: โป๏ธ Restore cached dependencies installed with composer
- uses: actions/cache@v4.0.2
- with:
- path: ${{ env.COMPOSER_CACHE_DIR }}
- key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
- restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
-
- - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
- uses: wayofdev/gh-actions/actions/composer/install@v3.1.0
- with:
- dependencies: ${{ matrix.dependencies }}
-
- - name: โ๏ธ Run automated refactoring with rector/rector
- run: composer refactor:ci
-
-...
diff --git a/.github/workflows/refactoring.yml b/.github/workflows/refactoring.yml
new file mode 100644
index 00000000..1d04474c
--- /dev/null
+++ b/.github/workflows/refactoring.yml
@@ -0,0 +1,66 @@
+---
+
+on: # yamllint disable-line rule:truthy
+ pull_request:
+ branches:
+ - master
+ paths:
+ - 'config/**'
+ - 'src/**'
+ - 'tests/**'
+ - '.php-cs-fixer.dist.php'
+ - 'rector.php'
+
+name: โ๏ธ Refactoring
+
+jobs:
+ refactoring:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: refactoring-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: mbstring, pdo, pdo_sqlite, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: none
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: โ๏ธ Run automated refactoring with rector/rector
+ run: composer refactor:ci
diff --git a/.github/workflows/security-analysis.yml b/.github/workflows/security-analysis.yml
new file mode 100644
index 00000000..8863e5f7
--- /dev/null
+++ b/.github/workflows/security-analysis.yml
@@ -0,0 +1,63 @@
+---
+
+on: # yamllint disable-line rule:truthy
+ pull_request:
+ branches:
+ - master
+ push:
+ branches:
+ - master
+
+name: ๐ Security analysis
+
+jobs:
+ security-analysis:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: security-analysis-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, curl
+ ini-values: error_reporting=E_ALL
+ coverage: none
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ Check installed packages for security vulnerability advisories
+ run: composer audit --ansi
diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml
index 32f1ca88..95d35856 100644
--- a/.github/workflows/shellcheck.yml
+++ b/.github/workflows/shellcheck.yml
@@ -2,6 +2,8 @@
on: # yamllint disable-line rule:truthy
pull_request:
+ branches:
+ - master
name: ๐ Differential shell-check
@@ -10,7 +12,7 @@ permissions:
jobs:
shellcheck:
- uses: wayofdev/gh-actions/.github/workflows/shellcheck.yml@v3.1.0
+ uses: wayofdev/gh-actions/.github/workflows/shellcheck.yml@v3.1.1
with:
os: ubuntu-latest
severity: warning
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
new file mode 100644
index 00000000..e2e02b2b
--- /dev/null
+++ b/.github/workflows/static-analysis.yml
@@ -0,0 +1,130 @@
+---
+
+on: # yamllint disable-line rule:truthy
+ push:
+ branches:
+ - master
+ paths:
+ - 'phpstan*'
+ - 'psalm*'
+ - 'composer.*'
+ - 'config/**'
+ - 'src/**'
+ - 'tests/**'
+ - '.php-cs-fixer.dist.php'
+ pull_request:
+ branches:
+ - master
+ paths:
+ - 'phpstan*'
+ - 'psalm*'
+ - 'composer.*'
+ - 'config/**'
+ - 'src/**'
+ - 'tests/**'
+ - '.php-cs-fixer.dist.php'
+
+name: ๐ Static analysis
+
+jobs:
+ phpstan:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: phpstan-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, fileinfo, xmlwriter, opcache, pcntl, posix
+ ini-values: error_reporting=E_ALL
+ coverage: none
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ Run static analysis using phpstan/phpstan
+ run: composer stan:ci
+
+ psalm:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: psalm-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, fileinfo, xmlwriter, opcache, pcntl, posix
+ ini-values: error_reporting=E_ALL
+ coverage: xdebug
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐ Run static analysis using vimeo/psalm
+ run: composer psalm:ci
diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
new file mode 100644
index 00000000..3173bb66
--- /dev/null
+++ b/.github/workflows/testing.yml
@@ -0,0 +1,242 @@
+---
+
+name: ๐งช Unit testing
+
+on: # yamllint disable-line rule:truthy
+ pull_request:
+ branches:
+ - master
+ push:
+ branches:
+ - master
+
+jobs:
+ code-coverage:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: code-coverage-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}-${{ matrix.dependencies }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, opcache, pcntl, posix, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: xdebug
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: |
+ echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+ echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐งช Collect code coverage with Xdebug and pestphp/pest
+ run: composer test:cc
+
+ - name: ๐ค Upload code coverage report to Codecov
+ uses: codecov/codecov-action@v4.4.1
+ with:
+ files: .build/phpunit/logs/clover.xml
+ token: ${{ secrets.CODECOV_TOKEN }}
+ verbose: true
+
+ unit-testing:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: unit-testing-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}-${{ matrix.dependencies }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ - '8.3'
+ dependencies:
+ - lowest
+ - locked
+ - highest
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, opcache, pcntl, posix, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: xdebug
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: |
+ echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+ echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: โ๏ธ Remove platform configuration with composer
+ if: matrix.dependencies != 'locked'
+ run: composer config platform.php --ansi --unset
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐งช Run unit tests using pestphp/pest
+ run: composer test
+
+ arch-testing:
+ timeout-minutes: 4
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: arch-testing-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}-${{ matrix.dependencies }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, opcache, pcntl, posix, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: xdebug
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: |
+ echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+ echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: โ๏ธ Remove platform configuration with composer
+ if: matrix.dependencies != 'locked'
+ run: composer config platform.php --ansi --unset
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐งช Run architecture tests using pestphp/pest
+ run: composer test:arch
+
+ mutation-testing:
+ timeout-minutes: 16
+ runs-on: ${{ matrix.os }}
+ concurrency:
+ cancel-in-progress: true
+ group: mutation-testing-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
+ strategy:
+ fail-fast: true
+ matrix:
+ os:
+ - ubuntu-latest
+ php-version:
+ - '8.2'
+ dependencies:
+ - locked
+ steps:
+ - name: ๐ฆ Check out the codebase
+ uses: actions/checkout@v4.1.6
+
+ - name: ๐ ๏ธ Setup PHP
+ uses: shivammathur/setup-php@2.30.5
+ with:
+ php-version: ${{ matrix.php-version }}
+ extensions: mbstring, pdo, pdo_sqlite, fileinfo
+ ini-values: error_reporting=E_ALL
+ coverage: xdebug
+
+ - name: ๐ ๏ธ Setup problem matchers
+ run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
+
+ - name: ๐ค Validate composer.json and composer.lock
+ run: composer validate --ansi --strict
+
+ - name: ๐ Get composer cache directory
+ uses: wayofdev/gh-actions/actions/composer/get-cache-directory@v3.1.1
+
+ - name: โป๏ธ Restore cached dependencies installed with composer
+ uses: actions/cache@v4.0.2
+ with:
+ path: ${{ env.COMPOSER_CACHE_DIR }}
+ key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}
+ restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
+
+ - name: ๐ฅ Install "${{ matrix.dependencies }}" dependencies
+ uses: wayofdev/gh-actions/actions/composer/install@v3.1.1
+ with:
+ dependencies: ${{ matrix.dependencies }}
+
+ - name: ๐งช Run mutation testing using Xdebug and infection/infection
+ run: composer infect:ci
+ env:
+ STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
diff --git a/.gitignore b/.gitignore
index 0fff09a1..4b6104fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+/.idea/
/vendor/
/.build/
.env
diff --git a/.phive/phars.xml b/.phive/phars.xml
index 8fa992c8..404a96a0 100644
--- a/.phive/phars.xml
+++ b/.phive/phars.xml
@@ -1,4 +1,5 @@
-
+
+
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
index 28f8fd68..f3417f86 100644
--- a/.php-cs-fixer.dist.php
+++ b/.php-cs-fixer.dist.php
@@ -7,11 +7,12 @@
require_once 'vendor/autoload.php';
-$config = ConfigBuilder::createFromRuleSet(new DefaultSet(['static_lambda' => false]))
+$config = ConfigBuilder::createFromRuleSet(new DefaultSet())
->inDir(__DIR__ . '/src')
->inDir(__DIR__ . '/config')
->inDir(__DIR__ . '/tests')
->addFiles([__FILE__])
+ ->useParallelConfig()
->getConfig()
;
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 1f1ed107..e5d8c0a8 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -10,7 +10,7 @@ repos:
args: ['--maxkb=600']
- repo: https://github.com/commitizen-tools/commitizen
- rev: v3.21.3
+ rev: v3.27.0
hooks:
- id: commitizen
stages:
@@ -36,6 +36,7 @@ repos:
description: Run markdownlint-cli2 on your Markdown files using the docker image
language: docker_image
types: [markdown]
- entry: davidanson/markdownlint-cli2-rules:latest
+ entry: 'davidanson/markdownlint-cli2-rules:latest'
+ args: ['--config', '.github/.markdownlint.json']
...
diff --git a/Makefile b/Makefile
index 0718975e..5881381e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,10 @@
# https://docs.docker.com/compose/environment-variables/envvars/
export DOCKER_BUILDKIT ?= 1
+# User ID and Group ID to use inside docker containers
+HOST_UID ?= $(shell id -u)
+HOST_GID ?= $(shell id -g)
+
# Docker binary to use, when executing docker tasks
DOCKER ?= docker
@@ -32,6 +36,7 @@ ENVSUBST ?= $(BUILDER) envsubst
YAML_LINT_RUNNER ?= $(DOCKER) run --rm $$(tty -s && echo "-it" || echo) \
-v $(PWD):/data \
cytopia/yamllint:latest \
+ -c ./.github/.yamllint.yaml \
-f colored .
ACTION_LINT_RUNNER ?= $(DOCKER) run --rm $$(tty -s && echo "-it" || echo) \
@@ -43,7 +48,8 @@ ACTION_LINT_RUNNER ?= $(DOCKER) run --rm $$(tty -s && echo "-it" || echo) \
MARKDOWN_LINT_RUNNER ?= $(DOCKER) run --rm $$(tty -s && echo "-it" || echo) \
-v $(shell pwd):/app \
--workdir /app \
- davidanson/markdownlint-cli2-rules:latest
+ davidanson/markdownlint-cli2-rules:latest \
+ --config ".github/.markdownlint.json"
PHIVE_RUNNER ?= $(DOCKER_COMPOSE) run --rm --no-deps app
@@ -51,7 +57,9 @@ NPM_RUNNER ?= pnpm
EXPORT_VARS = '\
$${COMPOSE_PROJECT_NAME} \
- $${COMPOSER_AUTH}'
+ $${COMPOSER_AUTH} \
+ $${HOST_UID} \
+ $${HOST_GID}'
#
# Self documenting Makefile code
@@ -90,9 +98,9 @@ help: ## Show this menu
@echo
@echo ' ๐ Logs are stored in $(MAKE_LOGFILE)'
@echo
- @echo ' ๐ฆ Package laravel-package-tpl (github.com/wayofdev/laravel-package-tpl)'
- @echo ' ๐ค Author Andrij Orlenko (github.com/lotyp)'
- @echo ' ๐ข ${YELLOW}Org wayofdev (github.com/wayofdev)${RST}'
+ @echo ' ๐ฆ Package laravel-package-tpl (https://github.com/wayofdev/laravel-package-tpl)'
+ @echo ' ๐ค Author Andrij Orlenko (https://github.com/lotyp)'
+ @echo ' ๐ข ${YELLOW}Org wayofdev (https://github.com/wayofdev)${RST}'
@echo
.PHONY: help
@@ -121,7 +129,7 @@ else
endif
.PHONY: env
-prepare:
+prepare: ## Prepare project for development
mkdir -p .build/php-cs-fixer
.PHONY: prepare
@@ -136,6 +144,10 @@ down: # Stops and removes containers of this project
$(DOCKER_COMPOSE) down --remove-orphans --volumes
.PHONY: down
+stop: ## Stops all containers, without removing them
+ $(DOCKER_COMPOSE) stop
+.PHONY: stop
+
restart: down up ## Runs down and up commands
.PHONY: restart
@@ -171,7 +183,7 @@ update: ## Updates composer dependencies by running composer update command
.PHONY: update
phive: ## Installs dependencies with phive
- $(APP_RUNNER) /usr/local/bin/phive install --trust-gpg-keys 0x033E5F8D801A2F8D
+ $(APP_RUNNER) /usr/local/bin/phive install --trust-gpg-keys 0xC00543248C87FB13,0x033E5F8D801A2F8D
.PHONY: phive
#
@@ -241,7 +253,7 @@ lint-deps: ## Runs composer-require-checker โ checks for dependencies that are
.PHONY: lint-deps
lint-composer: ## Normalize composer.json and composer.lock files
- $(APP_COMPOSER) normalize
+ $(APP_RUNNER) .phive/composer-normalize normalize
.PHONY: lint-composer
lint-audit: ## Runs security checks for composer dependencies
@@ -263,10 +275,17 @@ infect-ci: ## Runs infection โ mutation testing framework with github output (
$(APP_COMPOSER) infect:ci
.PHONY: lint-infect-ci
-test: ## Run project php-unit and pest tests
+test: test-unit test-arch ## Run project php-unit and pest tests
+.PHONY: test
+
+test-unit: ## Run project php-unit tests
$(APP_COMPOSER) test
.PHONY: test
+test-arch: ## Run project pest tests with architecture checks
+ $(APP_COMPOSER) test:arch
+.PHONY: test-arch
+
test-cc: ## Run project php-unit and pest tests in coverage mode and build report
$(APP_COMPOSER) test:cc
.PHONY: test-cc
@@ -274,26 +293,6 @@ test-cc: ## Run project php-unit and pest tests in coverage mode and build repor
#
# Release
# ------------------------------------------------------------------------------------
-commit:
+commit: ## Run commitizen to create commit message
czg commit --config="./.github/.cz.config.js"
.PHONY: commit
-
-#
-# Documentation
-# Only in case, when `./docs` folder exists and has package.json
-# ------------------------------------------------------------------------------------
-docs-deps-update: ## Check for outdated dependencies and automatically update them using pnpm
- cd docs && $(NPM_RUNNER) run deps:update
-.PHONY: docs-deps-update
-
-docs-deps-install: ## Install dependencies for documentation using pnpm
- cd docs && $(NPM_RUNNER) install
-.PHONY: docs-deps-install
-
-docs-up: ## Start documentation server
- cd docs && $(NPM_RUNNER) dev
-.PHONY: docs-up
-
-docs-build: ## Build documentation
- cd docs && $(NPM_RUNNER) build
-.PHONY: docs-up
diff --git a/README.md b/README.md
index 0fe5a933..f9f69826 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
-
-
+
+
+
+ Build
+
+
+
+ Project
+
+
+
+
+
+
+ Quality
+
+
+
+
+
+ Community
+
+
+
@@ -33,7 +42,7 @@ This is a template repository designed to kick-start the development of Laravel
If you **like/use** this package, please consider โญ๏ธ **starring** it. Thanks!
-![Screenshot](assets/screenshot.png)
+![Screenshot](.github/assets/screenshot.png)
## ๐ Features
@@ -196,12 +205,13 @@ You are more than welcome. Before contributing, kindly check our [contribution g
## ๐ซก Contributors
+
-
+
-
+
## ๐ Social Links
diff --git a/composer.json b/composer.json
index 5a3b6280..3092e0b4 100644
--- a/composer.json
+++ b/composer.json
@@ -3,9 +3,17 @@
"description": "๐ Jump-start your Laravel package development with our pre-configured Composer template, designed for seamless integration. This template includes essential tools such as PHPUnit, PHPStan, GitHub Actions, and Docker to streamline your workflow and enhance productivity.",
"license": "MIT",
"type": "library",
+ "keywords": [
+ "php",
+ "template",
+ "laravel-package",
+ "laravel-template",
+ "php8",
+ "laravel-package-template"
+ ],
"authors": [
{
- "name": "lotyp",
+ "name": "Andrij Orlenko",
"email": "the@wayof.dev"
}
],
@@ -21,26 +29,24 @@
"illuminate/support": "^10.48 || ^11.0"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.42",
"ergebnis/phpunit-slow-test-detector": "^2.14",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
- "orchestra/testbench": "^8.5 || ^9.0",
+ "orchestra/testbench": "^8.5 || ^9.1",
"pestphp/pest": "^2.34",
- "pestphp/pest-plugin-laravel": "^2.3",
+ "pestphp/pest-plugin-laravel": "^2.4",
"phpstan/extension-installer": "^1.3",
- "phpstan/phpstan": "^1.10",
- "phpstan/phpstan-deprecation-rules": "^1.1",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.5",
+ "phpstan/phpstan": "^1.11",
+ "phpstan/phpstan-deprecation-rules": "^1.2",
+ "phpstan/phpstan-phpunit": "^1.4",
+ "phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5 || ^11.0",
"psalm/plugin-laravel": "^2.11",
- "psalm/plugin-phpunit": "~0.19.0",
- "rector/rector": "^1.0",
+ "psalm/plugin-phpunit": "^0.19",
+ "rector/rector": "^1.1",
"roave/infection-static-analysis-plugin": "^1.35",
- "roave/security-advisories": "dev-latest",
- "vimeo/psalm": "^5.23.1",
- "wayofdev/cs-fixer-config": "^1.2"
+ "vimeo/psalm": "^5.24",
+ "wayofdev/cs-fixer-config": "^1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
@@ -84,19 +90,35 @@
}
},
"scripts": {
- "cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
- "cs:fix": "php vendor/bin/php-cs-fixer fix -v",
- "infect": "XDEBUG_MODE=coverage php vendor/bin/roave-infection-static-analysis-plugin --configuration=infection.json.dist",
- "infect:ci": "XDEBUG_MODE=coverage php vendor/bin/roave-infection-static-analysis-plugin --ansi --configuration=infection.json.dist --logger-github --ignore-msi-with-no-mutations --only-covered",
- "psalm": "php vendor/bin/psalm --show-info=true",
- "psalm:baseline": "php vendor/bin/psalm --set-baseline=psalm-baseline.xml",
- "psalm:ci": "php vendor/bin/psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
- "refactor": "php vendor/bin/rector process --config=rector.php",
- "refactor:ci": "php vendor/bin/rector process --config=rector.php --dry-run --ansi",
- "stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
- "stan:baseline": "php vendor/bin/phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
- "stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github",
- "test": "XDEBUG_MODE=coverage php vendor/bin/pest",
- "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
+ "cs:diff": "php-cs-fixer fix --dry-run -v --diff",
+ "cs:fix": "php-cs-fixer fix -v",
+ "infect": [
+ "@putenv XDEBUG_MODE=coverage",
+ "roave-infection-static-analysis-plugin"
+ ],
+ "infect:ci": [
+ "@putenv XDEBUG_MODE=coverage",
+ "roave-infection-static-analysis-plugin --ansi --logger-github --ignore-msi-with-no-mutations --only-covered"
+ ],
+ "psalm": "psalm --show-info=true",
+ "psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
+ "psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
+ "refactor": "rector process --config=rector.php",
+ "refactor:ci": "rector process --config=rector.php --dry-run --ansi",
+ "stan": "phpstan analyse --memory-limit=2G",
+ "stan:baseline": "phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
+ "stan:ci": "phpstan analyse --memory-limit=2G --error-format=github",
+ "test": [
+ "@putenv XDEBUG_MODE=coverage",
+ "pest --color=always"
+ ],
+ "test:arch": [
+ "@putenv XDEBUG_MODE=coverage",
+ "pest --color=always --configuration pest.xml.dist"
+ ],
+ "test:cc": [
+ "@putenv XDEBUG_MODE=coverage",
+ "pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
+ ]
}
}
diff --git a/composer.lock b/composer.lock
index f77f9e3c..7d89258c 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,29 +4,29 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "4e7802072701f07e8c21273eaec6414b",
+ "content-hash": "9d0e974ddf4e1228a7a2add2509b179a",
"packages": [
{
"name": "brick/math",
- "version": "0.11.0",
+ "version": "0.12.1",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
- "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
+ "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
- "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
+ "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
+ "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
"shasum": ""
},
"require": {
- "php": "^8.0"
+ "php": "^8.1"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
- "phpunit/phpunit": "^9.0",
- "vimeo/psalm": "5.0.0"
+ "phpunit/phpunit": "^10.1",
+ "vimeo/psalm": "5.16.0"
},
"type": "library",
"autoload": {
@@ -46,12 +46,17 @@
"arithmetic",
"bigdecimal",
"bignum",
+ "bignumber",
"brick",
- "math"
+ "decimal",
+ "integer",
+ "math",
+ "mathematics",
+ "rational"
],
"support": {
"issues": "https://github.com/brick/math/issues",
- "source": "https://github.com/brick/math/tree/0.11.0"
+ "source": "https://github.com/brick/math/tree/0.12.1"
},
"funding": [
{
@@ -59,7 +64,7 @@
"type": "github"
}
],
- "time": "2023-01-15T23:15:59+00:00"
+ "time": "2023-11-29T23:19:16+00:00"
},
{
"name": "carbonphp/carbon-doctrine-types",
@@ -1047,16 +1052,16 @@
},
{
"name": "laravel/framework",
- "version": "v11.5.0",
+ "version": "v11.10.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "e3c24268f1404805e15099b9f035fe310cb30753"
+ "reference": "99b4255194912044b75ab72329f8c19e6345720e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/e3c24268f1404805e15099b9f035fe310cb30753",
- "reference": "e3c24268f1404805e15099b9f035fe310cb30753",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/99b4255194912044b75ab72329f8c19e6345720e",
+ "reference": "99b4255194912044b75ab72329f8c19e6345720e",
"shasum": ""
},
"require": {
@@ -1159,7 +1164,7 @@
"league/flysystem-sftp-v3": "^3.0",
"mockery/mockery": "^1.6",
"nyholm/psr7": "^1.2",
- "orchestra/testbench-core": "^9.0.6",
+ "orchestra/testbench-core": "^9.0.15",
"pda/pheanstalk": "^5.0",
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^10.5|^11.0",
@@ -1181,7 +1186,7 @@
"ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
"ext-pdo": "Required to use all database features.",
"ext-posix": "Required to use all features of the queue worker.",
- "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
+ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
"fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
"filp/whoops": "Required for friendly error pages in development (^2.14.3).",
"laravel/tinker": "Required to use the tinker console command (^2.0).",
@@ -1248,20 +1253,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2024-04-23T15:11:31+00:00"
+ "time": "2024-06-04T13:45:55+00:00"
},
{
"name": "laravel/prompts",
- "version": "v0.1.20",
+ "version": "v0.1.23",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
- "reference": "bf9a360c484976692de0f3792f30066f4f4b34a2"
+ "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/prompts/zipball/bf9a360c484976692de0f3792f30066f4f4b34a2",
- "reference": "bf9a360c484976692de0f3792f30066f4f4b34a2",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
+ "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
"shasum": ""
},
"require": {
@@ -1301,11 +1306,12 @@
"license": [
"MIT"
],
+ "description": "Add beautiful and user-friendly forms to your command-line applications.",
"support": {
"issues": "https://github.com/laravel/prompts/issues",
- "source": "https://github.com/laravel/prompts/tree/v0.1.20"
+ "source": "https://github.com/laravel/prompts/tree/v0.1.23"
},
- "time": "2024-04-18T00:45:25+00:00"
+ "time": "2024-05-27T13:53:20+00:00"
},
{
"name": "laravel/serializable-closure",
@@ -1557,16 +1563,16 @@
},
{
"name": "league/flysystem",
- "version": "3.27.0",
+ "version": "3.28.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "4729745b1ab737908c7d055148c9a6b3e959832f"
+ "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/4729745b1ab737908c7d055148c9a6b3e959832f",
- "reference": "4729745b1ab737908c7d055148c9a6b3e959832f",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
+ "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
"shasum": ""
},
"require": {
@@ -1590,10 +1596,13 @@
"composer/semver": "^3.0",
"ext-fileinfo": "*",
"ext-ftp": "*",
+ "ext-mongodb": "^1.3",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.5",
"google/cloud-storage": "^1.23",
+ "guzzlehttp/psr7": "^2.6",
"microsoft/azure-storage-blob": "^1.1",
+ "mongodb/mongodb": "^1.2",
"phpseclib/phpseclib": "^3.0.36",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.11|^10.0",
@@ -1631,32 +1640,22 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.27.0"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
},
- "funding": [
- {
- "url": "https://ecologi.com/frankdejonge",
- "type": "custom"
- },
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- }
- ],
- "time": "2024-04-07T19:17:50+00:00"
+ "time": "2024-05-22T10:09:12+00:00"
},
{
"name": "league/flysystem-local",
- "version": "3.25.1",
+ "version": "3.28.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92"
+ "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92",
- "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
+ "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
"shasum": ""
},
"require": {
@@ -1690,19 +1689,9 @@
"local"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1"
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
},
- "funding": [
- {
- "url": "https://ecologi.com/frankdejonge",
- "type": "custom"
- },
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- }
- ],
- "time": "2024-03-15T19:58:44+00:00"
+ "time": "2024-05-06T20:05:52+00:00"
},
{
"name": "league/mime-type-detection",
@@ -1863,16 +1852,16 @@
},
{
"name": "nesbot/carbon",
- "version": "3.3.0",
+ "version": "3.5.0",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "7219739c4e01d4680c980545821733b6ed8ee880"
+ "reference": "415782b7e48223342f1a616c16c45a95b15b2318"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7219739c4e01d4680c980545821733b6ed8ee880",
- "reference": "7219739c4e01d4680c980545821733b6ed8ee880",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/415782b7e48223342f1a616c16c45a95b15b2318",
+ "reference": "415782b7e48223342f1a616c16c45a95b15b2318",
"shasum": ""
},
"require": {
@@ -1890,13 +1879,13 @@
"require-dev": {
"doctrine/dbal": "^3.6.3 || ^4.0",
"doctrine/orm": "^2.15.2 || ^3.0",
- "friendsofphp/php-cs-fixer": "^3.52.1",
+ "friendsofphp/php-cs-fixer": "^3.57.2",
"kylekatarnls/multi-tester": "^2.5.3",
"ondrejmirtes/better-reflection": "^6.25.0.4",
"phpmd/phpmd": "^2.15.0",
"phpstan/extension-installer": "^1.3.1",
- "phpstan/phpstan": "^1.10.65",
- "phpunit/phpunit": "^10.5.15",
+ "phpstan/phpstan": "^1.11.2",
+ "phpunit/phpunit": "^10.5.20",
"squizlabs/php_codesniffer": "^3.9.0"
},
"bin": [
@@ -1965,7 +1954,7 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T16:35:06+00:00"
+ "time": "2024-06-03T17:25:54+00:00"
},
{
"name": "nette/schema",
@@ -2483,20 +2472,20 @@
},
{
"name": "psr/http-factory",
- "version": "1.0.2",
+ "version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-factory.git",
- "reference": "e616d01114759c4c489f93b099585439f795fe35"
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
- "reference": "e616d01114759c4c489f93b099585439f795fe35",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
"shasum": ""
},
"require": {
- "php": ">=7.0.0",
+ "php": ">=7.1",
"psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
@@ -2520,7 +2509,7 @@
"homepage": "https://www.php-fig.org/"
}
],
- "description": "Common interfaces for PSR-7 HTTP message factories",
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
"keywords": [
"factory",
"http",
@@ -2532,9 +2521,9 @@
"response"
],
"support": {
- "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
+ "source": "https://github.com/php-fig/http-factory"
},
- "time": "2023-04-10T20:10:41+00:00"
+ "time": "2024-04-15T12:06:14+00:00"
},
{
"name": "psr/http-message",
@@ -2825,20 +2814,20 @@
},
{
"name": "ramsey/uuid",
- "version": "4.7.5",
+ "version": "4.7.6",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
- "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
"shasum": ""
},
"require": {
- "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
"ext-json": "*",
"php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0"
@@ -2901,7 +2890,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.7.5"
+ "source": "https://github.com/ramsey/uuid/tree/4.7.6"
},
"funding": [
{
@@ -2913,20 +2902,20 @@
"type": "tidelift"
}
],
- "time": "2023-11-08T05:53:05+00:00"
+ "time": "2024-04-27T21:32:50+00:00"
},
{
"name": "symfony/clock",
- "version": "v7.0.5",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/clock.git",
- "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2"
+ "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2",
- "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2",
+ "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
+ "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
"shasum": ""
},
"require": {
@@ -2971,7 +2960,7 @@
"time"
],
"support": {
- "source": "https://github.com/symfony/clock/tree/v7.0.5"
+ "source": "https://github.com/symfony/clock/tree/v7.1.1"
},
"funding": [
{
@@ -2987,20 +2976,20 @@
"type": "tidelift"
}
],
- "time": "2024-03-02T12:46:12+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/console",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "c981e0e9380ce9f146416bde3150c79197ce9986"
+ "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/c981e0e9380ce9f146416bde3150c79197ce9986",
- "reference": "c981e0e9380ce9f146416bde3150c79197ce9986",
+ "url": "https://api.github.com/repos/symfony/console/zipball/9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
+ "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
"shasum": ""
},
"require": {
@@ -3064,7 +3053,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v7.0.7"
+ "source": "https://github.com/symfony/console/tree/v7.1.1"
},
"funding": [
{
@@ -3080,20 +3069,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v7.0.3",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be"
+ "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be",
- "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
+ "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
"shasum": ""
},
"require": {
@@ -3129,7 +3118,7 @@
"description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/css-selector/tree/v7.0.3"
+ "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
},
"funding": [
{
@@ -3145,7 +3134,7 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T15:02:46+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/deprecation-contracts",
@@ -3216,16 +3205,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "46a4cc138f799886d4bd70477c55c699d3e9dfc8"
+ "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/46a4cc138f799886d4bd70477c55c699d3e9dfc8",
- "reference": "46a4cc138f799886d4bd70477c55c699d3e9dfc8",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/e9b8bbce0b4f322939332ab7b6b81d8c11da27dd",
+ "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd",
"shasum": ""
},
"require": {
@@ -3271,7 +3260,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v7.0.6"
+ "source": "https://github.com/symfony/error-handler/tree/v7.1.1"
},
"funding": [
{
@@ -3287,20 +3276,20 @@
"type": "tidelift"
}
],
- "time": "2024-03-19T11:57:22+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9"
+ "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/db2a7fab994d67d92356bb39c367db115d9d30f9",
- "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
+ "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
"shasum": ""
},
"require": {
@@ -3351,7 +3340,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.7"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
},
"funding": [
{
@@ -3367,7 +3356,7 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
@@ -3447,16 +3436,16 @@
},
{
"name": "symfony/finder",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c"
+ "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c",
- "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
+ "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
"shasum": ""
},
"require": {
@@ -3491,7 +3480,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/finder/tree/v7.0.7"
+ "source": "https://github.com/symfony/finder/tree/v7.1.1"
},
"funding": [
{
@@ -3507,20 +3496,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-28T11:44:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c"
+ "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8789625dcf36e5fbf753014678a1e090f1bc759c",
- "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/74d171d5b6a1d9e4bfee09a41937c17a7536acfa",
+ "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa",
"shasum": ""
},
"require": {
@@ -3568,7 +3557,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v7.0.6"
+ "source": "https://github.com/symfony/http-foundation/tree/v7.1.1"
},
"funding": [
{
@@ -3584,25 +3573,26 @@
"type": "tidelift"
}
],
- "time": "2024-03-19T11:46:48+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "34c872391046d59af804af62d4573b829cfe4824"
+ "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34c872391046d59af804af62d4573b829cfe4824",
- "reference": "34c872391046d59af804af62d4573b829cfe4824",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fa8d1c75b5f33b1302afccf81811f93976c6e26f",
+ "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f",
"shasum": ""
},
"require": {
"php": ">=8.2",
"psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/error-handler": "^6.4|^7.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
@@ -3643,14 +3633,15 @@
"symfony/finder": "^6.4|^7.0",
"symfony/http-client-contracts": "^2.5|^3",
"symfony/process": "^6.4|^7.0",
- "symfony/property-access": "^6.4|^7.0",
+ "symfony/property-access": "^7.1",
"symfony/routing": "^6.4|^7.0",
- "symfony/serializer": "^6.4.4|^7.0.4",
+ "symfony/serializer": "^7.1",
"symfony/stopwatch": "^6.4|^7.0",
"symfony/translation": "^6.4|^7.0",
"symfony/translation-contracts": "^2.5|^3",
"symfony/uid": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0",
"symfony/var-exporter": "^6.4|^7.0",
"twig/twig": "^3.0.4"
},
@@ -3680,7 +3671,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v7.0.6"
+ "source": "https://github.com/symfony/http-kernel/tree/v7.1.1"
},
"funding": [
{
@@ -3696,20 +3687,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-03T06:12:25+00:00"
+ "time": "2024-06-04T06:52:15+00:00"
},
{
"name": "symfony/mailer",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0"
+ "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0",
- "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/2eaad2e167cae930f25a3d731fec8b2ded5e751e",
+ "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e",
"shasum": ""
},
"require": {
@@ -3760,7 +3751,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v7.0.6"
+ "source": "https://github.com/symfony/mailer/tree/v7.1.1"
},
"funding": [
{
@@ -3776,20 +3767,20 @@
"type": "tidelift"
}
],
- "time": "2024-03-28T09:20:36+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/mime",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2"
+ "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/99362408c9abdf8c7cadcf0529b6fc8b16f5ace2",
- "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/21027eaacc1a8a20f5e616c25c3580f5dd3a15df",
+ "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df",
"shasum": ""
},
"require": {
@@ -3802,7 +3793,7 @@
"phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0",
"symfony/mailer": "<6.4",
- "symfony/serializer": "<6.4"
+ "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
},
"require-dev": {
"egulias/email-validator": "^2.1.10|^3.1|^4",
@@ -3812,7 +3803,7 @@
"symfony/process": "^6.4|^7.0",
"symfony/property-access": "^6.4|^7.0",
"symfony/property-info": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0"
+ "symfony/serializer": "^6.4.3|^7.0.3"
},
"type": "library",
"autoload": {
@@ -3844,7 +3835,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v7.0.6"
+ "source": "https://github.com/symfony/mime/tree/v7.1.1"
},
"funding": [
{
@@ -3860,7 +3851,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-21T19:37:36+00:00"
+ "time": "2024-06-04T06:40:14+00:00"
},
{
"name": "symfony/polyfill-ctype",
@@ -4575,16 +4566,16 @@
},
{
"name": "symfony/process",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0"
+ "reference": "febf90124323a093c7ee06fdb30e765ca3c20028"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0",
- "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0",
+ "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028",
+ "reference": "febf90124323a093c7ee06fdb30e765ca3c20028",
"shasum": ""
},
"require": {
@@ -4616,7 +4607,7 @@
"description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/process/tree/v7.0.7"
+ "source": "https://github.com/symfony/process/tree/v7.1.1"
},
"funding": [
{
@@ -4632,20 +4623,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/routing",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c"
+ "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/cded64e5bbf9f31786f1055fcc76718fdd77519c",
- "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/60c31bab5c45af7f13091b87deb708830f3c96c0",
+ "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0",
"shasum": ""
},
"require": {
@@ -4697,7 +4688,7 @@
"url"
],
"support": {
- "source": "https://github.com/symfony/routing/tree/v7.0.6"
+ "source": "https://github.com/symfony/routing/tree/v7.1.1"
},
"funding": [
{
@@ -4713,7 +4704,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-28T21:02:11+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/service-contracts",
@@ -4800,16 +4791,16 @@
},
{
"name": "symfony/string",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63"
+ "reference": "60bc311c74e0af215101235aa6f471bcbc032df2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
- "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
+ "url": "https://api.github.com/repos/symfony/string/zipball/60bc311c74e0af215101235aa6f471bcbc032df2",
+ "reference": "60bc311c74e0af215101235aa6f471bcbc032df2",
"shasum": ""
},
"require": {
@@ -4823,6 +4814,7 @@
"symfony/translation-contracts": "<2.5"
},
"require-dev": {
+ "symfony/emoji": "^7.1",
"symfony/error-handler": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/intl": "^6.4|^7.0",
@@ -4866,7 +4858,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v7.0.7"
+ "source": "https://github.com/symfony/string/tree/v7.1.1"
},
"funding": [
{
@@ -4882,20 +4874,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-06-04T06:40:14+00:00"
},
{
"name": "symfony/translation",
- "version": "v7.0.4",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0"
+ "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
- "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
+ "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
"shasum": ""
},
"require": {
@@ -4960,7 +4952,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v7.0.4"
+ "source": "https://github.com/symfony/translation/tree/v7.1.1"
},
"funding": [
{
@@ -4976,7 +4968,7 @@
"type": "tidelift"
}
],
- "time": "2024-02-22T20:27:20+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -5058,16 +5050,16 @@
},
{
"name": "symfony/uid",
- "version": "v7.0.3",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/uid.git",
- "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b"
+ "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/87cedaf3fabd7b733859d4d77aa4ca598259054b",
- "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/bb59febeecc81528ff672fad5dab7f06db8c8277",
+ "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277",
"shasum": ""
},
"require": {
@@ -5112,7 +5104,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/uid/tree/v7.0.3"
+ "source": "https://github.com/symfony/uid/tree/v7.1.1"
},
"funding": [
{
@@ -5128,20 +5120,20 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T15:02:46+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v7.0.6",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb"
+ "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb",
- "reference": "66d13dc207d5dab6b4f4c2b5460efe1bea29dbfb",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/deb2c2b506ff6fdbb340e00b34e9901e1605f293",
+ "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293",
"shasum": ""
},
"require": {
@@ -5195,7 +5187,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v7.0.6"
+ "source": "https://github.com/symfony/var-dumper/tree/v7.1.1"
},
"funding": [
{
@@ -5211,7 +5203,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-19T11:57:22+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
@@ -6041,16 +6033,16 @@
},
{
"name": "composer/class-map-generator",
- "version": "1.1.1",
+ "version": "1.3.2",
"source": {
"type": "git",
"url": "https://github.com/composer/class-map-generator.git",
- "reference": "8286a62d243312ed99b3eee20d5005c961adb311"
+ "reference": "acd227952154850d0bb7d65caa4f9edf9cd806a7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8286a62d243312ed99b3eee20d5005c961adb311",
- "reference": "8286a62d243312ed99b3eee20d5005c961adb311",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/acd227952154850d0bb7d65caa4f9edf9cd806a7",
+ "reference": "acd227952154850d0bb7d65caa4f9edf9cd806a7",
"shasum": ""
},
"require": {
@@ -6094,7 +6086,7 @@
],
"support": {
"issues": "https://github.com/composer/class-map-generator/issues",
- "source": "https://github.com/composer/class-map-generator/tree/1.1.1"
+ "source": "https://github.com/composer/class-map-generator/tree/1.3.2"
},
"funding": [
{
@@ -6110,7 +6102,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-15T12:53:41+00:00"
+ "time": "2024-05-31T19:45:56+00:00"
},
{
"name": "composer/package-versions-deprecated",
@@ -6487,415 +6479,6 @@
},
"time": "2024-01-30T19:34:25+00:00"
},
- {
- "name": "ergebnis/composer-normalize",
- "version": "2.42.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
- "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^2.0.0",
- "ergebnis/json": "^1.2.0",
- "ergebnis/json-normalizer": "^4.5.0",
- "ergebnis/json-printer": "^3.5.0",
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.12",
- "localheinz/diff": "^1.1.1",
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "composer/composer": "^2.6.6",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.2",
- "symfony/filesystem": "^5.4.25",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
- },
- "plugin-optional": true
- },
- "autoload": {
- "psr-4": {
- "Ergebnis\\Composer\\Normalize\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides a composer plugin for normalizing composer.json.",
- "homepage": "https://github.com/ergebnis/composer-normalize",
- "keywords": [
- "composer",
- "normalize",
- "normalizer",
- "plugin"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/composer-normalize/issues",
- "security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/composer-normalize"
- },
- "time": "2024-01-30T11:54:02+00:00"
- },
- {
- "name": "ergebnis/json",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/json.git",
- "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json/zipball/a457f25a5ba7ea11fc94f84d53678c5211abfce0",
- "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "ergebnis/data-provider": "^3.2.0",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.2",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "library",
- "extra": {
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
- }
- },
- "autoload": {
- "psr-4": {
- "Ergebnis\\Json\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides a Json value object for representing a valid JSON string.",
- "homepage": "https://github.com/ergebnis/json",
- "keywords": [
- "json"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/json/issues",
- "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/json"
- },
- "time": "2024-01-29T15:09:24+00:00"
- },
- {
- "name": "ergebnis/json-normalizer",
- "version": "4.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/json-normalizer.git",
- "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/f0ee9e70739f121b27fac8b743e4a52b23de2152",
- "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152",
- "shasum": ""
- },
- "require": {
- "ergebnis/json": "^1.2.0",
- "ergebnis/json-pointer": "^3.4.0",
- "ergebnis/json-printer": "^3.5.0",
- "ergebnis/json-schema-validator": "^4.2.0",
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.12",
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "composer/semver": "^3.4.0",
- "ergebnis/data-provider": "^3.2.0",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.4",
- "vimeo/psalm": "^5.20.0"
- },
- "suggest": {
- "composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Ergebnis\\Json\\Normalizer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
- "homepage": "https://github.com/ergebnis/json-normalizer",
- "keywords": [
- "json",
- "normalizer"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/json-normalizer/issues",
- "security": "https://github.com/ergebnis/json-normalizer/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/json-normalizer"
- },
- "time": "2024-01-30T09:10:15+00:00"
- },
- {
- "name": "ergebnis/json-pointer",
- "version": "3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/json-pointer.git",
- "reference": "b654757d873050622c2166f55ab25d04685261c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/b654757d873050622c2166f55ab25d04685261c5",
- "reference": "b654757d873050622c2166f55ab25d04685261c5",
- "shasum": ""
- },
- "require": {
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "ergebnis/data-provider": "^3.2.0",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.2",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "library",
- "extra": {
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
- }
- },
- "autoload": {
- "psr-4": {
- "Ergebnis\\Json\\Pointer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides an abstraction of a JSON pointer.",
- "homepage": "https://github.com/ergebnis/json-pointer",
- "keywords": [
- "RFC6901",
- "json",
- "pointer"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/json-pointer/issues",
- "security": "https://github.com/ergebnis/json-pointer/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/json-pointer"
- },
- "time": "2024-01-29T16:37:15+00:00"
- },
- {
- "name": "ergebnis/json-printer",
- "version": "3.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/json-printer.git",
- "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/549e16fe6de34b8c3aee7b421be12caa552f3ced",
- "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "ergebnis/data-provider": "^3.2.0",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.2",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Ergebnis\\Json\\Printer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides a JSON printer, allowing for flexible indentation.",
- "homepage": "https://github.com/ergebnis/json-printer",
- "keywords": [
- "formatter",
- "json",
- "printer"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/json-printer/issues",
- "security": "https://github.com/ergebnis/json-printer/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/json-printer"
- },
- "time": "2024-01-29T15:33:37+00:00"
- },
- {
- "name": "ergebnis/json-schema-validator",
- "version": "4.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ergebnis/json-schema-validator.git",
- "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
- "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
- "shasum": ""
- },
- "require": {
- "ergebnis/json": "^1.2.0",
- "ergebnis/json-pointer": "^3.4.0",
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.12",
- "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "require-dev": {
- "ergebnis/data-provider": "^3.2.0",
- "ergebnis/license": "^2.4.0",
- "ergebnis/php-cs-fixer-config": "^6.20.0",
- "ergebnis/phpunit-slow-test-detector": "^2.9.0",
- "fakerphp/faker": "^1.23.1",
- "infection/infection": "~0.26.6",
- "phpunit/phpunit": "^9.6.16",
- "psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.19.2",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "library",
- "extra": {
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
- }
- },
- "autoload": {
- "psr-4": {
- "Ergebnis\\Json\\SchemaValidator\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
- }
- ],
- "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
- "homepage": "https://github.com/ergebnis/json-schema-validator",
- "keywords": [
- "json",
- "schema",
- "validator"
- ],
- "support": {
- "issues": "https://github.com/ergebnis/json-schema-validator/issues",
- "security": "https://github.com/ergebnis/json-schema-validator/blob/main/.github/SECURITY.md",
- "source": "https://github.com/ergebnis/json-schema-validator"
- },
- "time": "2024-01-29T16:50:15+00:00"
- },
{
"name": "ergebnis/phpunit-slow-test-detector",
"version": "2.14.0",
@@ -7308,16 +6891,16 @@
},
{
"name": "friendsofphp/php-cs-fixer",
- "version": "v3.58.0",
+ "version": "v3.58.1",
"source": {
"type": "git",
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
- "reference": "55d3483c80c09f91d876aa4e2971ce349d07310c"
+ "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/55d3483c80c09f91d876aa4e2971ce349d07310c",
- "reference": "55d3483c80c09f91d876aa4e2971ce349d07310c",
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
+ "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
"shasum": ""
},
"require": {
@@ -7396,7 +6979,7 @@
],
"support": {
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
- "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.0"
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
},
"funding": [
{
@@ -7404,7 +6987,7 @@
"type": "github"
}
],
- "time": "2024-05-28T16:55:30+00:00"
+ "time": "2024-05-29T16:39:07+00:00"
},
{
"name": "hamcrest/hamcrest-php",
@@ -7830,12 +7413,12 @@
"version": "v5.2.13",
"source": {
"type": "git",
- "url": "https://github.com/justinrainbow/json-schema.git",
+ "url": "https://github.com/jsonrainbow/json-schema.git",
"reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
"reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
"shasum": ""
},
@@ -7890,23 +7473,23 @@
"schema"
],
"support": {
- "issues": "https://github.com/justinrainbow/json-schema/issues",
- "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
+ "issues": "https://github.com/jsonrainbow/json-schema/issues",
+ "source": "https://github.com/jsonrainbow/json-schema/tree/v5.2.13"
},
"time": "2023-09-26T02:20:38+00:00"
},
{
"name": "larastan/larastan",
- "version": "v2.9.5",
+ "version": "v2.9.7",
"source": {
"type": "git",
"url": "https://github.com/larastan/larastan.git",
- "reference": "101f1a4470f87326f4d3995411d28679d8800abe"
+ "reference": "5c805f636095cc2e0b659e3954775cf8f1dad1bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/larastan/larastan/zipball/101f1a4470f87326f4d3995411d28679d8800abe",
- "reference": "101f1a4470f87326f4d3995411d28679d8800abe",
+ "url": "https://api.github.com/repos/larastan/larastan/zipball/5c805f636095cc2e0b659e3954775cf8f1dad1bb",
+ "reference": "5c805f636095cc2e0b659e3954775cf8f1dad1bb",
"shasum": ""
},
"require": {
@@ -7920,7 +7503,7 @@
"illuminate/support": "^9.52.16 || ^10.28.0 || ^11.0",
"php": "^8.0.2",
"phpmyadmin/sql-parser": "^5.9.0",
- "phpstan/phpstan": "^1.10.66"
+ "phpstan/phpstan": "^1.11.1"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
@@ -7975,7 +7558,7 @@
],
"support": {
"issues": "https://github.com/larastan/larastan/issues",
- "source": "https://github.com/larastan/larastan/tree/v2.9.5"
+ "source": "https://github.com/larastan/larastan/tree/v2.9.7"
},
"funding": [
{
@@ -7995,7 +7578,7 @@
"type": "patreon"
}
],
- "time": "2024-04-16T19:13:34+00:00"
+ "time": "2024-05-27T18:33:26+00:00"
},
{
"name": "laravel/tinker",
@@ -8063,78 +7646,18 @@
},
"time": "2024-01-04T16:10:04+00:00"
},
- {
- "name": "localheinz/diff",
- "version": "1.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/localheinz/diff.git",
- "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c",
- "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c",
- "shasum": ""
- },
- "require": {
- "php": "^7.1 || ^8.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.5 || ^8.0",
- "symfony/process": "^4.2 || ^5"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- }
- ],
- "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize",
- "homepage": "https://github.com/localheinz/diff",
- "keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
- ],
- "support": {
- "source": "https://github.com/localheinz/diff/tree/main"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-07-06T04:49:32+00:00"
- },
{
"name": "mockery/mockery",
- "version": "1.6.11",
+ "version": "1.6.12",
"source": {
"type": "git",
"url": "https://github.com/mockery/mockery.git",
- "reference": "81a161d0b135df89951abd52296adf97deb0723d"
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mockery/mockery/zipball/81a161d0b135df89951abd52296adf97deb0723d",
- "reference": "81a161d0b135df89951abd52296adf97deb0723d",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
"shasum": ""
},
"require": {
@@ -8204,7 +7727,7 @@
"security": "https://github.com/mockery/mockery/security/advisories",
"source": "https://github.com/mockery/mockery"
},
- "time": "2024-03-21T18:34:15+00:00"
+ "time": "2024-05-16T03:13:13+00:00"
},
{
"name": "myclabs/deep-copy",
@@ -8692,25 +8215,25 @@
},
{
"name": "orchestra/testbench",
- "version": "v9.0.4",
+ "version": "v9.1.2",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench.git",
- "reference": "1fe2e613fa4b01f4bb4dafdceb4aae766363937e"
+ "reference": "e3aa89ddfc76c22c65bf653f220bb906c26726a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orchestral/testbench/zipball/1fe2e613fa4b01f4bb4dafdceb4aae766363937e",
- "reference": "1fe2e613fa4b01f4bb4dafdceb4aae766363937e",
+ "url": "https://api.github.com/repos/orchestral/testbench/zipball/e3aa89ddfc76c22c65bf653f220bb906c26726a1",
+ "reference": "e3aa89ddfc76c22c65bf653f220bb906c26726a1",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.23",
- "laravel/framework": "^11.1",
+ "laravel/framework": "^11.7",
"mockery/mockery": "^1.6",
- "orchestra/testbench-core": "^9.0.13",
- "orchestra/workbench": "^9.0",
+ "orchestra/testbench-core": "^9.1.3",
+ "orchestra/workbench": "^9.1",
"php": "^8.2",
"phpunit/phpunit": "^10.5 || ^11.0.1",
"symfony/process": "^7.0",
@@ -8741,22 +8264,22 @@
],
"support": {
"issues": "https://github.com/orchestral/testbench/issues",
- "source": "https://github.com/orchestral/testbench/tree/v9.0.4"
+ "source": "https://github.com/orchestral/testbench/tree/v9.1.2"
},
- "time": "2024-04-16T09:56:54+00:00"
+ "time": "2024-06-04T12:30:43+00:00"
},
{
"name": "orchestra/testbench-core",
- "version": "v9.0.15",
+ "version": "v9.1.4",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench-core.git",
- "reference": "f3a8819310294646d628fc3c5b5958a0a651b066"
+ "reference": "8738ddaf1fc657053bc466b81a136b60b7b8256f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/f3a8819310294646d628fc3c5b5958a0a651b066",
- "reference": "f3a8819310294646d628fc3c5b5958a0a651b066",
+ "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/8738ddaf1fc657053bc466b81a136b60b7b8256f",
+ "reference": "8738ddaf1fc657053bc466b81a136b60b7b8256f",
"shasum": ""
},
"require": {
@@ -8775,7 +8298,7 @@
"laravel/framework": "^11.1",
"laravel/pint": "^1.6",
"mockery/mockery": "^1.6",
- "phpstan/phpstan": "^1.10.50",
+ "phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5 || ^11.0.1",
"spatie/laravel-ray": "^1.35",
"symfony/process": "^7.0",
@@ -8832,20 +8355,20 @@
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench-core"
},
- "time": "2024-04-24T12:11:58+00:00"
+ "time": "2024-06-06T07:15:36+00:00"
},
{
"name": "orchestra/workbench",
- "version": "v9.0.0",
+ "version": "v9.1.0",
"source": {
"type": "git",
"url": "https://github.com/orchestral/workbench.git",
- "reference": "979ebf99e4167b68446a4b60f5fcab9521d209cd"
+ "reference": "590a7d6741eba8c556bc1fa86861a27963a26bb6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orchestral/workbench/zipball/979ebf99e4167b68446a4b60f5fcab9521d209cd",
- "reference": "979ebf99e4167b68446a4b60f5fcab9521d209cd",
+ "url": "https://api.github.com/repos/orchestral/workbench/zipball/590a7d6741eba8c556bc1fa86861a27963a26bb6",
+ "reference": "590a7d6741eba8c556bc1fa86861a27963a26bb6",
"shasum": ""
},
"require": {
@@ -8853,8 +8376,9 @@
"fakerphp/faker": "^1.23",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9",
- "orchestra/canvas": "^9.0",
- "orchestra/testbench-core": "^9.0",
+ "nunomaduro/collision": "^8.0",
+ "orchestra/canvas": "^9.0.2",
+ "orchestra/testbench-core": "^9.1.0",
"php": "^8.1",
"spatie/laravel-ray": "^1.35",
"symfony/polyfill-php83": "^1.28",
@@ -8863,7 +8387,7 @@
"require-dev": {
"laravel/pint": "^1.6",
"mockery/mockery": "^1.6",
- "phpstan/phpstan": "^1.10.50",
+ "phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5 || ^11.0",
"symfony/process": "^7.0"
},
@@ -8895,9 +8419,9 @@
],
"support": {
"issues": "https://github.com/orchestral/workbench/issues",
- "source": "https://github.com/orchestral/workbench/tree/v9.0.0"
+ "source": "https://github.com/orchestral/workbench/tree/v9.1.0"
},
- "time": "2024-03-13T06:19:29+00:00"
+ "time": "2024-05-20T23:55:00+00:00"
},
{
"name": "pestphp/pest",
@@ -9395,16 +8919,16 @@
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "5.4.0",
+ "version": "5.4.1",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "298d2febfe79d03fe714eb871d5538da55205b1a"
+ "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a",
- "reference": "298d2febfe79d03fe714eb871d5538da55205b1a",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
+ "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
"shasum": ""
},
"require": {
@@ -9453,9 +8977,9 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.0"
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
},
- "time": "2024-04-09T21:13:58+00:00"
+ "time": "2024-05-21T05:55:05+00:00"
},
{
"name": "phpdocumentor/type-resolver",
@@ -9605,20 +9129,20 @@
},
{
"name": "phpstan/extension-installer",
- "version": "1.3.1",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/extension-installer.git",
- "reference": "f45734bfb9984c6c56c4486b71230355f066a58a"
+ "reference": "5b19a72c93e79bb0d410ac2cd55f02c4a6e0cfbe"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/f45734bfb9984c6c56c4486b71230355f066a58a",
- "reference": "f45734bfb9984c6c56c4486b71230355f066a58a",
+ "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/5b19a72c93e79bb0d410ac2cd55f02c4a6e0cfbe",
+ "reference": "5b19a72c93e79bb0d410ac2cd55f02c4a6e0cfbe",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^2.0",
+ "composer-plugin-api": "^2.6.0",
"php": "^7.2 || ^8.0",
"phpstan/phpstan": "^1.9.0"
},
@@ -9643,22 +9167,22 @@
"description": "Composer plugin for automatic installation of PHPStan extensions",
"support": {
"issues": "https://github.com/phpstan/extension-installer/issues",
- "source": "https://github.com/phpstan/extension-installer/tree/1.3.1"
+ "source": "https://github.com/phpstan/extension-installer/tree/1.4.0"
},
- "time": "2023-05-24T08:59:17+00:00"
+ "time": "2024-06-06T11:26:29+00:00"
},
{
"name": "phpstan/phpdoc-parser",
- "version": "1.28.0",
+ "version": "1.29.1",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb"
+ "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
- "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
+ "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
"shasum": ""
},
"require": {
@@ -9690,22 +9214,22 @@
"description": "PHPDoc parser with support for nullable, intersection and generic types",
"support": {
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/1.28.0"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
},
- "time": "2024-04-03T18:51:33+00:00"
+ "time": "2024-05-31T08:52:43+00:00"
},
{
"name": "phpstan/phpstan",
- "version": "1.10.67",
+ "version": "1.11.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493"
+ "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/16ddbe776f10da6a95ebd25de7c1dbed397dc493",
- "reference": "16ddbe776f10da6a95ebd25de7c1dbed397dc493",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9100a76ce8015b9aa7125b9171ae3a76887b6c82",
+ "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82",
"shasum": ""
},
"require": {
@@ -9750,29 +9274,28 @@
"type": "github"
}
],
- "time": "2024-04-16T07:22:02+00:00"
+ "time": "2024-06-06T12:19:22+00:00"
},
{
"name": "phpstan/phpstan-deprecation-rules",
- "version": "1.1.4",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
- "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa"
+ "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
- "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
+ "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/fa8cce7720fa782899a0aa97b6a41225d1bb7b26",
+ "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
- "phpstan/phpstan": "^1.10.3"
+ "phpstan/phpstan": "^1.11"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-php-parser": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5"
},
@@ -9796,27 +9319,27 @@
"description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
"support": {
"issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
- "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4"
+ "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.0"
},
- "time": "2023-08-05T09:02:04+00:00"
+ "time": "2024-04-20T06:39:48+00:00"
},
{
"name": "phpstan/phpstan-phpunit",
- "version": "1.3.16",
+ "version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-phpunit.git",
- "reference": "d5242a59d035e46774f2e634b374bc39ff62cb95"
+ "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/d5242a59d035e46774f2e634b374bc39ff62cb95",
- "reference": "d5242a59d035e46774f2e634b374bc39ff62cb95",
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/f3ea021866f4263f07ca3636bf22c64be9610c11",
+ "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
- "phpstan/phpstan": "^1.10"
+ "phpstan/phpstan": "^1.11"
},
"conflict": {
"phpunit/phpunit": "<7.0"
@@ -9848,27 +9371,27 @@
"description": "PHPUnit extensions and rules for PHPStan",
"support": {
"issues": "https://github.com/phpstan/phpstan-phpunit/issues",
- "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.16"
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.0"
},
- "time": "2024-02-23T09:51:20+00:00"
+ "time": "2024-04-20T06:39:00+00:00"
},
{
"name": "phpstan/phpstan-strict-rules",
- "version": "1.5.5",
+ "version": "1.6.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-strict-rules.git",
- "reference": "2e193a07651a6f4be3baa44ddb21d822681f5918"
+ "reference": "363f921dd8441777d4fc137deb99beb486c77df1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/2e193a07651a6f4be3baa44ddb21d822681f5918",
- "reference": "2e193a07651a6f4be3baa44ddb21d822681f5918",
+ "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/363f921dd8441777d4fc137deb99beb486c77df1",
+ "reference": "363f921dd8441777d4fc137deb99beb486c77df1",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
- "phpstan/phpstan": "^1.10.60"
+ "phpstan/phpstan": "^1.11"
},
"require-dev": {
"nikic/php-parser": "^4.13.0",
@@ -9897,9 +9420,9 @@
"description": "Extra strict and opinionated rules for PHPStan",
"support": {
"issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
- "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.5.5"
+ "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.6.0"
},
- "time": "2024-04-19T15:12:26+00:00"
+ "time": "2024-04-20T06:37:51+00:00"
},
{
"name": "phpunit/php-code-coverage",
@@ -11119,21 +10642,21 @@
},
{
"name": "rector/rector",
- "version": "1.0.4",
+ "version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/rectorphp/rector.git",
- "reference": "6e04d0eb087aef707fa0c5686d33d6ff61f4a555"
+ "reference": "556509e2dcf527369892b7d411379c4a02f31859"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/rectorphp/rector/zipball/6e04d0eb087aef707fa0c5686d33d6ff61f4a555",
- "reference": "6e04d0eb087aef707fa0c5686d33d6ff61f4a555",
+ "url": "https://api.github.com/repos/rectorphp/rector/zipball/556509e2dcf527369892b7d411379c4a02f31859",
+ "reference": "556509e2dcf527369892b7d411379c4a02f31859",
"shasum": ""
},
"require": {
"php": "^7.2|^8.0",
- "phpstan/phpstan": "^1.10.57"
+ "phpstan/phpstan": "^1.11"
},
"conflict": {
"rector/rector-doctrine": "*",
@@ -11166,7 +10689,7 @@
],
"support": {
"issues": "https://github.com/rectorphp/rector/issues",
- "source": "https://github.com/rectorphp/rector/tree/1.0.4"
+ "source": "https://github.com/rectorphp/rector/tree/1.1.0"
},
"funding": [
{
@@ -11174,7 +10697,7 @@
"type": "github"
}
],
- "time": "2024-04-05T09:01:07+00:00"
+ "time": "2024-05-18T09:40:27+00:00"
},
{
"name": "roave/infection-static-analysis-plugin",
@@ -11227,797 +10750,6 @@
},
"time": "2024-03-10T11:55:48+00:00"
},
- {
- "name": "roave/security-advisories",
- "version": "dev-latest",
- "source": {
- "type": "git",
- "url": "https://github.com/Roave/SecurityAdvisories.git",
- "reference": "74d263d0c5bb600a8c7254f031c81de7c6267e59"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/74d263d0c5bb600a8c7254f031c81de7c6267e59",
- "reference": "74d263d0c5bb600a8c7254f031c81de7c6267e59",
- "shasum": ""
- },
- "conflict": {
- "3f/pygmentize": "<1.2",
- "admidio/admidio": "<4.2.13",
- "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
- "aheinze/cockpit": "<2.2",
- "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
- "airesvsg/acf-to-rest-api": "<=3.1",
- "akaunting/akaunting": "<2.1.13",
- "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
- "alextselegidis/easyappointments": "<1.5",
- "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
- "amazing/media2click": ">=1,<1.3.3",
- "amphp/artax": "<1.0.6|>=2,<2.0.6",
- "amphp/http": "<=1.7.2|>=2,<=2.1",
- "amphp/http-client": ">=4,<4.4",
- "anchorcms/anchor-cms": "<=0.12.7",
- "andreapollastri/cipi": "<=3.1.15",
- "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
- "apache-solr-for-typo3/solr": "<2.8.3",
- "apereo/phpcas": "<1.6",
- "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6|>=2.6,<2.7.10|>=3,<3.0.12|>=3.1,<3.1.3",
- "appwrite/server-ce": "<=1.2.1",
- "arc/web": "<3",
- "area17/twill": "<1.2.5|>=2,<2.5.3",
- "artesaos/seotools": "<0.17.2",
- "asymmetricrypt/asymmetricrypt": "<9.9.99",
- "athlon1600/php-proxy": "<=5.1",
- "athlon1600/php-proxy-app": "<=3",
- "austintoddj/canvas": "<=3.4.2",
- "automad/automad": "<=1.10.9",
- "automattic/jetpack": "<9.8",
- "awesome-support/awesome-support": "<=6.0.7",
- "aws/aws-sdk-php": "<3.288.1",
- "azuracast/azuracast": "<0.18.3",
- "backdrop/backdrop": "<1.24.2",
- "backpack/crud": "<3.4.9",
- "bacula-web/bacula-web": "<8.0.0.0-RC2-dev",
- "badaso/core": "<2.7",
- "bagisto/bagisto": "<2.1",
- "barrelstrength/sprout-base-email": "<1.2.7",
- "barrelstrength/sprout-forms": "<3.9",
- "barryvdh/laravel-translation-manager": "<0.6.2",
- "barzahlen/barzahlen-php": "<2.0.1",
- "baserproject/basercms": "<5.0.9",
- "bassjobsen/bootstrap-3-typeahead": ">4.0.2",
- "bbpress/bbpress": "<2.6.5",
- "bcosca/fatfree": "<3.7.2",
- "bedita/bedita": "<4",
- "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
- "billz/raspap-webgui": "<2.9.5",
- "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
- "blueimp/jquery-file-upload": "==6.4.4",
- "bmarshall511/wordpress_zero_spam": "<5.2.13",
- "bolt/bolt": "<3.7.2",
- "bolt/core": "<=4.2",
- "bottelet/flarepoint": "<2.2.1",
- "bref/bref": "<2.1.17",
- "brightlocal/phpwhois": "<=4.2.5",
- "brotkrueml/codehighlight": "<2.7",
- "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
- "brotkrueml/typo3-matomo-integration": "<1.3.2",
- "buddypress/buddypress": "<7.2.1",
- "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
- "bytefury/crater": "<6.0.2",
- "cachethq/cachet": "<2.5.1",
- "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
- "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
- "cardgate/magento2": "<2.0.33",
- "cardgate/woocommerce": "<=3.1.15",
- "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
- "cartalyst/sentry": "<=2.1.6",
- "catfan/medoo": "<1.7.5",
- "causal/oidc": "<2.1",
- "cecil/cecil": "<7.47.1",
- "centreon/centreon": "<22.10.15",
- "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
- "chriskacerguis/codeigniter-restserver": "<=2.7.1",
- "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3",
- "ckeditor/ckeditor": "<4.24",
- "cockpit-hq/cockpit": "<=2.6.3|==2.7",
- "codeception/codeception": "<3.1.3|>=4,<4.1.22",
- "codeigniter/framework": "<3.1.9",
- "codeigniter4/framework": "<4.4.7",
- "codeigniter4/shield": "<1.0.0.0-beta8",
- "codiad/codiad": "<=2.8.4",
- "composer/composer": "<1.10.27|>=2,<2.2.23|>=2.3,<2.7",
- "concrete5/concrete5": "<9.2.8",
- "concrete5/core": "<8.5.8|>=9,<9.1",
- "contao-components/mediaelement": ">=2.14.2,<2.21.1",
- "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4",
- "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4",
- "contao/core": "<3.5.39",
- "contao/core-bundle": "<4.13.40|>=5,<5.3.4",
- "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8",
- "contao/managed-edition": "<=1.5",
- "corveda/phpsandbox": "<1.3.5",
- "cosenary/instagram": "<=2.3",
- "craftcms/cms": "<4.6.2",
- "croogo/croogo": "<4",
- "cuyz/valinor": "<0.12",
- "czproject/git-php": "<4.0.3",
- "dapphp/securimage": "<3.6.6",
- "darylldoyle/safe-svg": "<1.9.10",
- "datadog/dd-trace": ">=0.30,<0.30.2",
- "datatables/datatables": "<1.10.10",
- "david-garcia/phpwhois": "<=4.3.1",
- "dbrisinajumi/d2files": "<1",
- "dcat/laravel-admin": "<=2.1.3.0-beta",
- "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",
- "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4",
- "desperado/xml-bundle": "<=0.1.7",
- "devgroup/dotplant": "<2020.09.14-dev",
- "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2",
- "doctrine/annotations": "<1.2.7",
- "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
- "doctrine/common": "<2.4.3|>=2.5,<2.5.1",
- "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
- "doctrine/doctrine-bundle": "<1.5.2",
- "doctrine/doctrine-module": "<=0.7.1",
- "doctrine/mongodb-odm": "<1.0.2",
- "doctrine/mongodb-odm-bundle": "<3.0.1",
- "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
- "dolibarr/dolibarr": "<=19",
- "dompdf/dompdf": "<2.0.4",
- "doublethreedigital/guest-entries": "<3.1.2",
- "drupal/core": ">=6,<6.38|>=7,<7.96|>=8,<10.1.8|>=10.2,<10.2.2",
- "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",
- "duncanmcclean/guest-entries": "<3.1.2",
- "dweeves/magmi": "<=0.7.24",
- "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2",
- "ecodev/newsletter": "<=4",
- "ectouch/ectouch": "<=2.7.2",
- "egroupware/egroupware": "<16.1.20170922",
- "elefant/cms": "<2.0.7",
- "elgg/elgg": "<3.3.24|>=4,<4.0.5",
- "elijaa/phpmemcacheadmin": "<=1.3",
- "encore/laravel-admin": "<=1.8.19",
- "endroid/qr-code-bundle": "<3.4.2",
- "enhavo/enhavo-app": "<=0.13.1",
- "enshrined/svg-sanitize": "<0.15",
- "erusev/parsedown": "<1.7.2",
- "ether/logs": "<3.0.4",
- "evolutioncms/evolution": "<=3.2.3",
- "exceedone/exment": "<4.4.3|>=5,<5.0.3",
- "exceedone/laravel-admin": "<2.2.3|==3",
- "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev",
- "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
- "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev",
- "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev",
- "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
- "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26",
- "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
- "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12",
- "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35",
- "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
- "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev",
- "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15",
- "ezsystems/ezplatform-user": ">=1,<1.0.1",
- "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31",
- "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.06,<=2019.03.5.1",
- "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
- "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
- "ezyang/htmlpurifier": "<4.1.1",
- "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
- "facturascripts/facturascripts": "<=2022.08",
- "fastly/magento2": "<1.2.26",
- "feehi/cms": "<=2.1.1",
- "feehi/feehicms": "<=2.1.1",
- "fenom/fenom": "<=2.12.1",
- "filegator/filegator": "<7.8",
- "filp/whoops": "<2.1.13",
- "fineuploader/php-traditional-server": "<=1.2.2",
- "firebase/php-jwt": "<6",
- "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",
- "fixpunkt/fp-newsletter": "<1.1.1|>=2,<2.1.2|>=2.2,<3.2.6",
- "flarum/core": "<1.8.5",
- "flarum/flarum": "<0.1.0.0-beta8",
- "flarum/framework": "<1.8.5",
- "flarum/mentions": "<1.6.3",
- "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15",
- "flarum/tags": "<=0.1.0.0-beta13",
- "floriangaerber/magnesium": "<0.3.1",
- "fluidtypo3/vhs": "<5.1.1",
- "fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
- "fof/upload": "<1.2.3",
- "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
- "fooman/tcpdf": "<6.2.22",
- "forkcms/forkcms": "<5.11.1",
- "fossar/tcpdf-parser": "<6.2.22",
- "francoisjacquet/rosariosis": "<=11.5.1",
- "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",
- "friendsofsymfony/oauth2-php": "<1.3",
- "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
- "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
- "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5",
- "friendsofsymfony1/symfony1": ">=1.1,<1.15.19",
- "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
- "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6",
- "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.3",
- "froxlor/froxlor": "<=2.1.1",
- "frozennode/administrator": "<=5.0.12",
- "fuel/core": "<1.8.1",
- "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3",
- "gaoming13/wechat-php-sdk": "<=1.10.2",
- "genix/cms": "<=1.1.11",
- "getgrav/grav": "<1.7.45",
- "getkirby/cms": "<4.1.1",
- "getkirby/kirby": "<=2.5.12",
- "getkirby/panel": "<2.5.14",
- "getkirby/starterkit": "<=3.7.0.2",
- "gilacms/gila": "<=1.15.4",
- "gleez/cms": "<=1.2|==2",
- "globalpayments/php-sdk": "<2",
- "gogentooss/samlbase": "<1.2.7",
- "google/protobuf": "<3.15",
- "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
- "gree/jose": "<2.2.1",
- "gregwar/rst": "<1.0.3",
- "grumpydictator/firefly-iii": "<6.1.7",
- "gugoan/economizzer": "<=0.9.0.0-beta1",
- "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
- "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
- "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2",
- "harvesthq/chosen": "<1.8.7",
- "helloxz/imgurl": "<=2.31",
- "hhxsv5/laravel-s": "<3.7.36",
- "hillelcoren/invoice-ninja": "<5.3.35",
- "himiklab/yii2-jqgrid-widget": "<1.0.8",
- "hjue/justwriting": "<=1",
- "hov/jobfair": "<1.0.13|>=2,<2.0.2",
- "httpsoft/http-message": "<1.0.12",
- "hyn/multi-tenant": ">=5.6,<5.7.2",
- "ibexa/admin-ui": ">=4.2,<4.2.3",
- "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2",
- "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
- "ibexa/post-install": "<=1.0.4",
- "ibexa/solr": ">=4.5,<4.5.4",
- "ibexa/user": ">=4,<4.4.3",
- "icecoder/icecoder": "<=8.1",
- "idno/known": "<=1.3.1",
- "ilicmiljan/secure-props": ">=1.2,<1.2.2",
- "illuminate/auth": "<5.5.10",
- "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
- "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
- "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
- "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
- "imdbphp/imdbphp": "<=5.1.1",
- "impresscms/impresscms": "<=1.4.5",
- "impresspages/impresspages": "<=1.0.12",
- "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.2.3",
- "in2code/ipandlanguageredirect": "<5.1.2",
- "in2code/lux": "<17.6.1|>=18,<24.0.2",
- "innologi/typo3-appointments": "<2.0.6",
- "intelliants/subrion": "<4.2.2",
- "inter-mediator/inter-mediator": "==5.5",
- "islandora/islandora": ">=2,<2.4.1",
- "ivankristianto/phpwhois": "<=4.3",
- "jackalope/jackalope-doctrine-dbal": "<1.7.4",
- "james-heinrich/getid3": "<1.9.21",
- "james-heinrich/phpthumb": "<1.7.12",
- "jasig/phpcas": "<1.3.3",
- "jcbrand/converse.js": "<3.3.3",
- "johnbillion/wp-crontrol": "<1.16.2",
- "joomla/application": "<1.0.13",
- "joomla/archive": "<1.1.12|>=2,<2.0.1",
- "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
- "joomla/filter": "<1.4.4|>=2,<2.0.1",
- "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12",
- "joomla/input": ">=2,<2.0.2",
- "joomla/joomla-cms": ">=2.5,<3.9.12",
- "joomla/session": "<1.3.1",
- "joyqi/hyper-down": "<=2.4.27",
- "jsdecena/laracom": "<2.0.9",
- "jsmitty12/phpwhois": "<5.1",
- "juzaweb/cms": "<=3.4",
- "kazist/phpwhois": "<=4.2.6",
- "kelvinmo/simplexrd": "<3.1.1",
- "kevinpapst/kimai2": "<1.16.7",
- "khodakhah/nodcms": "<=3",
- "kimai/kimai": "<2.13",
- "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4",
- "klaviyo/magento2-extension": ">=1,<3",
- "knplabs/knp-snappy": "<=1.4.2",
- "kohana/core": "<3.3.3",
- "krayin/laravel-crm": "<1.2.2",
- "kreait/firebase-php": ">=3.2,<3.8.1",
- "kumbiaphp/kumbiapp": "<=1.1.1",
- "la-haute-societe/tcpdf": "<6.2.22",
- "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2",
- "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
- "laminas/laminas-http": "<2.14.2",
- "laravel/fortify": "<1.11.1",
- "laravel/framework": "<6.20.44|>=7,<7.30.6|>=8,<8.75",
- "laravel/laravel": ">=5.4,<5.4.22",
- "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
- "latte/latte": "<2.10.8",
- "lavalite/cms": "<=9",
- "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
- "league/commonmark": "<0.18.3",
- "league/flysystem": "<1.1.4|>=2,<2.1.1",
- "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3",
- "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
- "libreform/libreform": ">=2,<=2.0.8",
- "librenms/librenms": "<2017.08.18",
- "liftkit/database": "<2.13.2",
- "lightsaml/lightsaml": "<1.3.5",
- "limesurvey/limesurvey": "<3.27.19",
- "livehelperchat/livehelperchat": "<=3.91",
- "livewire/livewire": ">2.2.4,<2.2.6|>=3.3.5,<3.4.9",
- "lms/routes": "<2.1.1",
- "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
- "luyadev/yii-helpers": "<1.2.1",
- "magento/community-edition": "<2.4.3.0-patch3|>=2.4.4,<2.4.5",
- "magento/core": "<=1.9.4.5",
- "magento/magento1ce": "<1.9.4.3-dev",
- "magento/magento1ee": ">=1,<1.14.4.3-dev",
- "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2.0-patch2",
- "magneto/core": "<1.9.4.4-dev",
- "maikuolan/phpmussel": ">=1,<1.6",
- "mainwp/mainwp": "<=4.4.3.3",
- "mantisbt/mantisbt": "<2.26.1",
- "marcwillmann/turn": "<0.3.3",
- "matyhtf/framework": "<3.0.6",
- "mautic/core": "<4.4.12|>=5.0.0.0-alpha,<5.0.4",
- "mdanter/ecc": "<2",
- "mediawiki/core": "<1.36.2",
- "mediawiki/matomo": "<2.4.3",
- "mediawiki/semantic-media-wiki": "<4.0.2",
- "melisplatform/melis-asset-manager": "<5.0.1",
- "melisplatform/melis-cms": "<5.0.1",
- "melisplatform/melis-front": "<5.0.1",
- "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
- "mgallegos/laravel-jqgrid": "<=1.3",
- "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1",
- "microsoft/microsoft-graph-beta": "<2.0.1",
- "microsoft/microsoft-graph-core": "<2.0.2",
- "microweber/microweber": "<=2.0.4",
- "mikehaertl/php-shellcommand": "<1.6.1",
- "miniorange/miniorange-saml": "<1.4.3",
- "mittwald/typo3_forum": "<1.2.1",
- "mobiledetect/mobiledetectlib": "<2.8.32",
- "modx/revolution": "<=2.8.3.0-patch",
- "mojo42/jirafeau": "<4.4",
- "mongodb/mongodb": ">=1,<1.9.2",
- "monolog/monolog": ">=1.8,<1.12",
- "moodle/moodle": "<=4.3.3",
- "mos/cimage": "<0.7.19",
- "movim/moxl": ">=0.8,<=0.10",
- "movingbytes/social-network": "<=1.2.1",
- "mpdf/mpdf": "<=7.1.7",
- "munkireport/comment": "<4.1",
- "munkireport/managedinstalls": "<2.6",
- "munkireport/munki_facts": "<1.5",
- "munkireport/munkireport": ">=2.5.3,<5.6.3",
- "munkireport/reportdata": "<3.5",
- "munkireport/softwareupdate": "<1.6",
- "mustache/mustache": ">=2,<2.14.1",
- "namshi/jose": "<2.2",
- "neoan3-apps/template": "<1.1.1",
- "neorazorx/facturascripts": "<2022.04",
- "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
- "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
- "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9",
- "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
- "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
- "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
- "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
- "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
- "nilsteampassnet/teampass": "<3.0.10",
- "nonfiction/nterchange": "<4.1.1",
- "notrinos/notrinos-erp": "<=0.7",
- "noumo/easyii": "<=0.9",
- "nukeviet/nukeviet": "<4.5.02",
- "nyholm/psr7": "<1.6.1",
- "nystudio107/craft-seomatic": "<3.4.12",
- "nzedb/nzedb": "<0.8",
- "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
- "october/backend": "<1.1.2",
- "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
- "october/october": "<=3.4.4",
- "october/rain": "<1.0.472|>=1.1,<1.1.2",
- "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2",
- "omeka/omeka-s": "<4.0.3",
- "onelogin/php-saml": "<2.10.4",
- "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5",
- "open-web-analytics/open-web-analytics": "<1.7.4",
- "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev",
- "openid/php-openid": "<2.3",
- "openmage/magento-lts": "<20.5",
- "opensolutions/vimbadmin": "<=3.0.15",
- "opensource-workshop/connect-cms": "<1.7.2|>=2,<2.3.2",
- "orchid/platform": ">=9,<9.4.4|>=14.0.0.0-alpha4,<14.5",
- "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1",
- "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1",
- "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
- "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1",
- "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3",
- "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3",
- "oxid-esales/oxideshop-ce": "<4.5",
- "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1",
- "packbackbooks/lti-1-3-php-library": "<5",
- "padraic/humbug_get_contents": "<1.1.2",
- "pagarme/pagarme-php": "<3",
- "pagekit/pagekit": "<=1.0.18",
- "paragonie/random_compat": "<2",
- "passbolt/passbolt_api": "<2.11",
- "paypal/adaptivepayments-sdk-php": "<=3.9.2",
- "paypal/invoice-sdk-php": "<=3.9",
- "paypal/merchant-sdk-php": "<3.12",
- "paypal/permissions-sdk-php": "<=3.9.1",
- "pear/archive_tar": "<1.4.14",
- "pear/auth": "<1.2.4",
- "pear/crypt_gpg": "<1.6.7",
- "pear/pear": "<=1.10.1",
- "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
- "personnummer/personnummer": "<3.0.2",
- "phanan/koel": "<5.1.4",
- "phenx/php-svg-lib": "<0.5.2",
- "php-mod/curl": "<2.3.2",
- "phpbb/phpbb": "<3.2.10|>=3.3,<3.3.1",
- "phpems/phpems": ">=6,<=6.1.3",
- "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
- "phpmailer/phpmailer": "<6.5",
- "phpmussel/phpmussel": ">=1,<1.6",
- "phpmyadmin/phpmyadmin": "<5.2.1",
- "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5",
- "phpoffice/common": "<0.2.9",
- "phpoffice/phpexcel": "<1.8",
- "phpoffice/phpspreadsheet": "<1.16",
- "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36",
- "phpservermon/phpservermon": "<3.6",
- "phpsysinfo/phpsysinfo": "<3.4.3",
- "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
- "phpwhois/phpwhois": "<=4.2.5",
- "phpxmlrpc/extras": "<0.6.1",
- "phpxmlrpc/phpxmlrpc": "<4.9.2",
- "pi/pi": "<=2.5",
- "pimcore/admin-ui-classic-bundle": "<1.3.4",
- "pimcore/customer-management-framework-bundle": "<4.0.6",
- "pimcore/data-hub": "<1.2.4",
- "pimcore/demo": "<10.3",
- "pimcore/ecommerce-framework-bundle": "<1.0.10",
- "pimcore/perspective-editor": "<1.5.1",
- "pimcore/pimcore": "<11.2.3",
- "pixelfed/pixelfed": "<0.11.11",
- "plotly/plotly.js": "<2.25.2",
- "pocketmine/bedrock-protocol": "<8.0.2",
- "pocketmine/pocketmine-mp": "<5.11.2",
- "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1",
- "pressbooks/pressbooks": "<5.18",
- "prestashop/autoupgrade": ">=4,<4.10.1",
- "prestashop/blockreassurance": "<=5.1.3",
- "prestashop/blockwishlist": ">=2,<2.1.1",
- "prestashop/contactform": ">=1.0.1,<4.3",
- "prestashop/gamification": "<2.3.2",
- "prestashop/prestashop": "<8.1.4",
- "prestashop/productcomments": "<5.0.2",
- "prestashop/ps_emailsubscription": "<2.6.1",
- "prestashop/ps_facetedsearch": "<3.4.1",
- "prestashop/ps_linklist": "<3.1",
- "privatebin/privatebin": "<1.4",
- "processwire/processwire": "<=3.0.210",
- "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
- "propel/propel1": ">=1,<=1.7.1",
- "pterodactyl/panel": "<1.7",
- "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
- "ptrofimov/beanstalk_console": "<1.7.14",
- "pubnub/pubnub": "<6.1",
- "pusher/pusher-php-server": "<2.2.1",
- "pwweb/laravel-core": "<=0.3.6.0-beta",
- "pyrocms/pyrocms": "<=3.9.1",
- "qcubed/qcubed": "<=3.1.1",
- "quickapps/cms": "<=2.0.0.0-beta2",
- "rainlab/blog-plugin": "<1.4.1",
- "rainlab/debugbar-plugin": "<3.1",
- "rainlab/user-plugin": "<=1.4.5",
- "rankmath/seo-by-rank-math": "<=1.0.95",
- "rap2hpoutre/laravel-log-viewer": "<0.13",
- "react/http": ">=0.7,<1.9",
- "really-simple-plugins/complianz-gdpr": "<6.4.2",
- "redaxo/source": "<=5.15.1",
- "remdex/livehelperchat": "<4.29",
- "reportico-web/reportico": "<=8.1",
- "rhukster/dom-sanitizer": "<1.0.7",
- "rmccue/requests": ">=1.6,<1.8",
- "robrichards/xmlseclibs": ">=1,<3.0.4",
- "roots/soil": "<4.1",
- "rudloff/alltube": "<3.0.3",
- "s-cart/core": "<6.9",
- "s-cart/s-cart": "<6.9",
- "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
- "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9",
- "scheb/two-factor-bundle": "<3.26|>=4,<4.11",
- "sensiolabs/connect": "<4.2.3",
- "serluck/phpwhois": "<=4.2.6",
- "sfroemken/url_redirect": "<=1.2.1",
- "sheng/yiicms": "<=1.2",
- "shopware/core": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1",
- "shopware/platform": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1",
- "shopware/production": "<=6.3.5.2",
- "shopware/shopware": "<6.2.3",
- "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev",
- "shopxo/shopxo": "<2.2.6",
- "showdoc/showdoc": "<2.10.4",
- "silverstripe-australia/advancedreports": ">=1,<=2",
- "silverstripe/admin": "<1.13.19|>=2,<2.1.8",
- "silverstripe/assets": ">=1,<1.11.1",
- "silverstripe/cms": "<4.11.3",
- "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
- "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
- "silverstripe/framework": "<4.13.39|>=5,<5.1.11",
- "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3",
- "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
- "silverstripe/recipe-cms": ">=4.5,<4.5.3",
- "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
- "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2",
- "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
- "silverstripe/subsites": ">=2,<2.6.1",
- "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
- "silverstripe/userforms": "<3|>=5,<5.4.2",
- "silverstripe/versioned-admin": ">=1,<1.11.1",
- "simple-updates/phpwhois": "<=1",
- "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12",
- "simplesamlphp/simplesamlphp": "<1.18.6",
- "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
- "simplesamlphp/simplesamlphp-module-openid": "<1",
- "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",
- "simplesamlphp/xml-security": "==1.6.11",
- "simplito/elliptic-php": "<1.0.6",
- "sitegeist/fluid-components": "<3.5",
- "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3",
- "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",
- "slim/slim": "<2.6",
- "slub/slub-events": "<3.0.3",
- "smarty/smarty": "<3.1.48|>=4,<4.3.1",
- "snipe/snipe-it": "<=6.2.2",
- "socalnick/scn-social-auth": "<1.15.2",
- "socialiteproviders/steam": "<1.1",
- "spatie/browsershot": "<3.57.4",
- "spipu/html2pdf": "<5.2.8",
- "spoon/library": "<1.4.1",
- "spoonity/tcpdf": "<6.2.22",
- "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
- "ssddanbrown/bookstack": "<22.02.3",
- "statamic/cms": "<4.46",
- "stormpath/sdk": "<9.9.99",
- "studio-42/elfinder": "<2.1.62",
- "subhh/libconnect": "<7.0.8|>=8,<8.1",
- "sukohi/surpass": "<1",
- "sulu/sulu": "<1.6.44|>=2,<2.4.17|>=2.5,<2.5.13",
- "sumocoders/framework-user-bundle": "<1.4",
- "superbig/craft-audit": "<3.0.2",
- "swag/paypal": "<5.4.4",
- "swiftmailer/swiftmailer": "<6.2.5",
- "swiftyedit/swiftyedit": "<1.2",
- "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
- "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
- "sylius/grid-bundle": "<1.10.1",
- "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1",
- "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
- "sylius/sylius": "<=1.12.13",
- "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
- "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
- "symbiote/silverstripe-seed": "<6.0.3",
- "symbiote/silverstripe-versionedfiles": "<=2.0.3",
- "symfont/process": ">=0",
- "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
- "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
- "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
- "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4",
- "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
- "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
- "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
- "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
- "symfony/mime": ">=4.3,<4.3.8",
- "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/polyfill": ">=1,<1.10",
- "symfony/polyfill-php55": ">=1,<1.10",
- "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/routing": ">=2,<2.0.19",
- "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
- "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
- "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
- "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
- "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
- "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2|>=5.4,<5.4.31|>=6,<6.3.8",
- "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
- "symfony/symfony": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
- "symfony/translation": ">=2,<2.0.17",
- "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
- "symfony/ux-autocomplete": "<2.11.2",
- "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
- "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
- "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
- "symfony/webhook": ">=6.3,<6.3.8",
- "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7|>=2.2.0.0-beta1,<2.2.0.0-beta2",
- "symphonycms/symphony-2": "<2.6.4",
- "t3/dce": "<0.11.5|>=2.2,<2.6.2",
- "t3g/svg-sanitizer": "<1.0.3",
- "t3s/content-consent": "<1.0.3|>=2,<2.0.2",
- "tastyigniter/tastyigniter": "<3.3",
- "tcg/voyager": "<=1.4",
- "tecnickcom/tcpdf": "<=6.7.4",
- "terminal42/contao-tablelookupwizard": "<3.3.5",
- "thelia/backoffice-default-template": ">=2.1,<2.1.2",
- "thelia/thelia": ">=2.1,<2.1.3",
- "theonedemon/phpwhois": "<=4.2.5",
- "thinkcmf/thinkcmf": "<6.0.8",
- "thorsten/phpmyfaq": "<3.2.2",
- "tikiwiki/tiki-manager": "<=17.1",
- "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
- "tinymce/tinymce": "<7",
- "tinymighty/wiki-seo": "<1.2.2",
- "titon/framework": "<9.9.99",
- "tobiasbg/tablepress": "<=2.0.0.0-RC1",
- "topthink/framework": "<6.0.14",
- "topthink/think": "<=6.1.1",
- "topthink/thinkphp": "<=3.2.3",
- "torrentpier/torrentpier": "<=2.4.1",
- "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2",
- "tribalsystems/zenario": "<=9.4.59197",
- "truckersmp/phpwhois": "<=4.3.1",
- "ttskch/pagination-service-provider": "<1",
- "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3",
- "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
- "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
- "typo3/cms-core": "<=8.7.56|>=9,<=9.5.45|>=10,<=10.4.42|>=11,<=11.5.34|>=12,<=12.4.10|==13",
- "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
- "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
- "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
- "typo3/cms-frontend": "<4.3.9|>=4.4,<4.4.5",
- "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8",
- "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
- "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
- "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3",
- "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
- "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
- "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
- "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
- "ua-parser/uap-php": "<3.8",
- "uasoft-indonesia/badaso": "<=2.9.7",
- "unisharp/laravel-filemanager": "<2.6.4",
- "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
- "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
- "uvdesk/community-skeleton": "<=1.1.1",
- "uvdesk/core-framework": "<=1.1.1",
- "vanilla/safecurl": "<0.9.2",
- "verbb/comments": "<1.5.5",
- "verbb/image-resizer": "<2.0.9",
- "verbb/knock-knock": "<1.2.8",
- "verot/class.upload.php": "<=2.1.6",
- "villagedefrance/opencart-overclocked": "<=1.11.1",
- "vova07/yii2-fileapi-widget": "<0.1.9",
- "vrana/adminer": "<4.8.1",
- "waldhacker/hcaptcha": "<2.1.2",
- "wallabag/tcpdf": "<6.2.22",
- "wallabag/wallabag": "<2.6.7",
- "wanglelecc/laracms": "<=1.0.3",
- "web-auth/webauthn-framework": ">=3.3,<3.3.4",
- "web-feet/coastercms": "==5.5",
- "webbuilders-group/silverstripe-kapost-bridge": "<0.4",
- "webcoast/deferred-image-processing": "<1.0.2",
- "webklex/laravel-imap": "<5.3",
- "webklex/php-imap": "<5.3",
- "webpa/webpa": "<3.1.2",
- "wikibase/wikibase": "<=1.39.3",
- "wikimedia/parsoid": "<0.12.2",
- "willdurand/js-translation-bundle": "<2.1.1",
- "winter/wn-backend-module": "<1.2.4",
- "winter/wn-dusk-plugin": "<2.1",
- "winter/wn-system-module": "<1.2.4",
- "wintercms/winter": "<=1.2.3",
- "woocommerce/woocommerce": "<6.6",
- "wp-cli/wp-cli": ">=0.12,<2.5",
- "wp-graphql/wp-graphql": "<=1.14.5",
- "wp-premium/gravityforms": "<2.4.21",
- "wpanel/wpanel4-cms": "<=4.3.1",
- "wpcloud/wp-stateless": "<3.2",
- "wpglobus/wpglobus": "<=1.9.6",
- "wwbn/avideo": "<=12.4",
- "xataface/xataface": "<3",
- "xpressengine/xpressengine": "<3.0.15",
- "yab/quarx": "<2.4.5",
- "yeswiki/yeswiki": "<4.1",
- "yetiforce/yetiforce-crm": "<=6.4",
- "yidashi/yii2cmf": "<=2",
- "yii2mod/yii2-cms": "<1.9.2",
- "yiisoft/yii": "<1.1.29",
- "yiisoft/yii2": "<2.0.38",
- "yiisoft/yii2-authclient": "<2.2.15",
- "yiisoft/yii2-bootstrap": "<2.0.4",
- "yiisoft/yii2-dev": "<2.0.43",
- "yiisoft/yii2-elasticsearch": "<2.0.5",
- "yiisoft/yii2-gii": "<=2.2.4",
- "yiisoft/yii2-jui": "<2.0.4",
- "yiisoft/yii2-redis": "<2.0.8",
- "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
- "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
- "yourls/yourls": "<=1.8.2",
- "yuan1994/tpadmin": "<=1.3.12",
- "zencart/zencart": "<=1.5.7.0-beta",
- "zendesk/zendesk_api_client_php": "<2.2.11",
- "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
- "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
- "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
- "zendframework/zend-db": "<2.2.10|>=2.3,<2.3.5",
- "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
- "zendframework/zend-diactoros": "<1.8.4",
- "zendframework/zend-feed": "<2.10.3",
- "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-http": "<2.8.1",
- "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
- "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
- "zendframework/zend-mail": "<2.4.11|>=2.5,<2.7.2",
- "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
- "zendframework/zend-validator": ">=2.3,<2.3.6",
- "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
- "zendframework/zendframework": "<=3",
- "zendframework/zendframework1": "<1.12.20",
- "zendframework/zendopenid": "<2.0.2",
- "zendframework/zendrest": "<2.0.2",
- "zendframework/zendservice-amazon": "<2.0.3",
- "zendframework/zendservice-api": "<1",
- "zendframework/zendservice-audioscrobbler": "<2.0.2",
- "zendframework/zendservice-nirvanix": "<2.0.2",
- "zendframework/zendservice-slideshare": "<2.0.2",
- "zendframework/zendservice-technorati": "<2.0.2",
- "zendframework/zendservice-windowsazure": "<2.0.2",
- "zendframework/zendxml": ">=1,<1.0.1",
- "zenstruck/collection": "<0.2.1",
- "zetacomponents/mail": "<1.8.2",
- "zf-commons/zfc-user": "<1.2.2",
- "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
- "zfr/zfr-oauth2-server-module": "<0.1.2",
- "zoujingli/thinkadmin": "<=6.1.53"
- },
- "default-branch": true,
- "type": "metapackage",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "role": "maintainer"
- },
- {
- "name": "Ilya Tribusean",
- "email": "slash3b@gmail.com",
- "role": "maintainer"
- }
- ],
- "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
- "keywords": [
- "dev"
- ],
- "support": {
- "issues": "https://github.com/Roave/SecurityAdvisories/issues",
- "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
- },
- "funding": [
- {
- "url": "https://github.com/Ocramius",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
- "type": "tidelift"
- }
- ],
- "time": "2024-04-26T00:14:37+00:00"
- },
{
"name": "sanmai/later",
"version": "0.1.4",
@@ -13196,16 +11928,16 @@
},
{
"name": "spatie/laravel-ray",
- "version": "1.36.1",
+ "version": "1.36.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ray.git",
- "reference": "799eb881d5ede337f373b5fe9722c92b787890f4"
+ "reference": "1852faa96e5aa6778ea3401ec3176eee77268718"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/799eb881d5ede337f373b5fe9722c92b787890f4",
- "reference": "799eb881d5ede337f373b5fe9722c92b787890f4",
+ "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1852faa96e5aa6778ea3401ec3176eee77268718",
+ "reference": "1852faa96e5aa6778ea3401ec3176eee77268718",
"shasum": ""
},
"require": {
@@ -13267,7 +11999,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-ray/issues",
- "source": "https://github.com/spatie/laravel-ray/tree/1.36.1"
+ "source": "https://github.com/spatie/laravel-ray/tree/1.36.2"
},
"funding": [
{
@@ -13279,7 +12011,7 @@
"type": "other"
}
],
- "time": "2024-04-12T12:15:59+00:00"
+ "time": "2024-05-02T08:26:02+00:00"
},
{
"name": "spatie/macroable",
@@ -13418,22 +12150,24 @@
},
{
"name": "symfony/filesystem",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5"
+ "reference": "802e87002f919296c9f606457d9fa327a0b3d6b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
- "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/802e87002f919296c9f606457d9fa327a0b3d6b2",
+ "reference": "802e87002f919296c9f606457d9fa327a0b3d6b2",
"shasum": ""
},
"require": {
"php": ">=8.2",
"symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "require-dev": {
"symfony/process": "^6.4|^7.0"
},
"type": "library",
@@ -13462,7 +12196,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v7.0.7"
+ "source": "https://github.com/symfony/filesystem/tree/v7.1.1"
},
"funding": [
{
@@ -13478,20 +12212,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/options-resolver",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/options-resolver.git",
- "reference": "23cc173858776ad451e31f053b1c9f47840b2cfa"
+ "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/23cc173858776ad451e31f053b1c9f47840b2cfa",
- "reference": "23cc173858776ad451e31f053b1c9f47840b2cfa",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55",
+ "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55",
"shasum": ""
},
"require": {
@@ -13529,7 +12263,7 @@
"options"
],
"support": {
- "source": "https://github.com/symfony/options-resolver/tree/v7.0.7"
+ "source": "https://github.com/symfony/options-resolver/tree/v7.1.1"
},
"funding": [
{
@@ -13545,7 +12279,7 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/polyfill-iconv",
@@ -13705,16 +12439,16 @@
},
{
"name": "symfony/stopwatch",
- "version": "v7.0.7",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/stopwatch.git",
- "reference": "41a7a24aa1dc82adf46a06bc292d1923acfe6b84"
+ "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/41a7a24aa1dc82adf46a06bc292d1923acfe6b84",
- "reference": "41a7a24aa1dc82adf46a06bc292d1923acfe6b84",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
+ "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
"shasum": ""
},
"require": {
@@ -13747,7 +12481,7 @@
"description": "Provides a way to profile code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/stopwatch/tree/v7.0.7"
+ "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
},
"funding": [
{
@@ -13763,20 +12497,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "symfony/yaml",
- "version": "v7.0.3",
+ "version": "v7.1.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "2d4fca631c00700597e9442a0b2451ce234513d3"
+ "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3",
- "reference": "2d4fca631c00700597e9442a0b2451ce234513d3",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
+ "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
"shasum": ""
},
"require": {
@@ -13818,7 +12552,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v7.0.3"
+ "source": "https://github.com/symfony/yaml/tree/v7.1.1"
},
"funding": [
{
@@ -13834,7 +12568,7 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T15:02:46+00:00"
+ "time": "2024-05-31T14:57:53+00:00"
},
{
"name": "ta-tikoma/phpunit-architecture-test",
@@ -14196,16 +12930,16 @@
},
{
"name": "wayofdev/cs-fixer-config",
- "version": "v1.5.0",
+ "version": "v1.5.1",
"source": {
"type": "git",
"url": "https://github.com/wayofdev/php-cs-fixer-config.git",
- "reference": "1300d46e72b7893b038c429585206981820fb4e8"
+ "reference": "1edacc13db903e85ab42d5ff7d5fc04d11663d8e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/wayofdev/php-cs-fixer-config/zipball/1300d46e72b7893b038c429585206981820fb4e8",
- "reference": "1300d46e72b7893b038c429585206981820fb4e8",
+ "url": "https://api.github.com/repos/wayofdev/php-cs-fixer-config/zipball/1edacc13db903e85ab42d5ff7d5fc04d11663d8e",
+ "reference": "1edacc13db903e85ab42d5ff7d5fc04d11663d8e",
"shasum": ""
},
"require": {
@@ -14222,6 +12956,7 @@
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "~0.19.0",
+ "rector/rector": "^1.1",
"roave/infection-static-analysis-plugin": "^1.35",
"vimeo/psalm": "^5.23.1"
},
@@ -14270,20 +13005,20 @@
"type": "github"
}
],
- "time": "2024-05-29T08:43:41+00:00"
+ "time": "2024-06-05T19:23:33+00:00"
},
{
"name": "zbateson/mail-mime-parser",
- "version": "2.4.0",
+ "version": "2.4.1",
"source": {
"type": "git",
"url": "https://github.com/zbateson/mail-mime-parser.git",
- "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a"
+ "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/20b3e48eb799537683780bc8782fbbe9bc25934a",
- "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a",
+ "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
+ "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
"shasum": ""
},
"require": {
@@ -14345,7 +13080,7 @@
"type": "github"
}
],
- "time": "2023-02-14T22:58:03+00:00"
+ "time": "2024-04-28T00:58:54+00:00"
},
{
"name": "zbateson/mb-wrapper",
@@ -14482,9 +13217,7 @@
],
"aliases": [],
"minimum-stability": "dev",
- "stability-flags": {
- "roave/security-advisories": 20
- },
+ "stability-flags": [],
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
diff --git a/docker-compose.yaml b/docker-compose.yaml
index e283ccd6..9c30313c 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -1,7 +1,5 @@
---
-version: '3.9'
-
services:
app:
image: wayofdev/php-dev:8.3-cli-alpine-latest
diff --git a/pest.xml.dist b/pest.xml.dist
new file mode 100644
index 00000000..953282e2
--- /dev/null
+++ b/pest.xml.dist
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ tests/src/Arch
+
+
+
+
+ src
+
+
+
diff --git a/phpstan.neon.dist b/phpstan.neon.dist
index 2dd23726..87a4bd57 100644
--- a/phpstan.neon.dist
+++ b/phpstan.neon.dist
@@ -9,9 +9,8 @@ parameters:
- tests/
- .php-cs-fixer.dist.php
- rector.php
-
- checkMissingIterableValueType: false
+ excludePaths:
+ - tests/src/Arch
checkOctaneCompatibility: true
checkModelProperties: true
-
tmpDir: .build/phpstan/
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 5d4087d5..16fc71a2 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -7,13 +7,15 @@
failOnWarning="true"
failOnRisky="true"
executionOrder="random"
- beStrictAboutOutputDuringTests="true">
+ stderr="true"
+ beStrictAboutOutputDuringTests="true"
+>
-
- tests
+
+ tests/src/Functional
@@ -28,7 +30,7 @@
- src
+ src
diff --git a/psalm-baseline.xml b/psalm-baseline.xml
index 20db6de7..f95bd3df 100644
--- a/psalm-baseline.xml
+++ b/psalm-baseline.xml
@@ -1,5 +1,5 @@
-
+
@@ -8,7 +8,7 @@
-
+
@@ -16,12 +16,7 @@
-
-
-
-
-
-
+
diff --git a/psalm.xml b/psalm.xml
index 39b0d187..dddcd0e3 100644
--- a/psalm.xml
+++ b/psalm.xml
@@ -19,7 +19,10 @@
-
+
+
+
+
diff --git a/tests/src/Arch/DebugTest.php b/tests/src/Arch/DebugTest.php
new file mode 100644
index 00000000..9d2c487e
--- /dev/null
+++ b/tests/src/Arch/DebugTest.php
@@ -0,0 +1,8 @@
+expect(['trap', 'dd', 'dump', 'exit', 'die', 'print_r', 'var_dump', 'echo', 'print'])
+ ->not
+ ->toBeUsed();
diff --git a/tests/src/Bridge/Laravel/Providers/PackageServiceProviderTest.php b/tests/src/Functional/Bridge/Laravel/Providers/PackageServiceProviderTest.php
similarity index 82%
rename from tests/src/Bridge/Laravel/Providers/PackageServiceProviderTest.php
rename to tests/src/Functional/Bridge/Laravel/Providers/PackageServiceProviderTest.php
index 1472d999..b91e7961 100644
--- a/tests/src/Bridge/Laravel/Providers/PackageServiceProviderTest.php
+++ b/tests/src/Functional/Bridge/Laravel/Providers/PackageServiceProviderTest.php
@@ -2,11 +2,11 @@
declare(strict_types=1);
-namespace WayOfDev\Tests\Bridge\Laravel\Providers;
+namespace WayOfDev\Tests\Functional\Bridge\Laravel\Providers;
use PHPUnit\Framework\Attributes\Test;
use WayOfDev\Package\Bridge\Laravel\Providers\PackageServiceProvider;
-use WayOfDev\Tests\TestCase;
+use WayOfDev\Tests\Functional\TestCase;
class PackageServiceProviderTest extends TestCase
{
diff --git a/tests/src/TestCase.php b/tests/src/Functional/TestCase.php
similarity index 95%
rename from tests/src/TestCase.php
rename to tests/src/Functional/TestCase.php
index d0b1f7ac..f4803ca8 100644
--- a/tests/src/TestCase.php
+++ b/tests/src/Functional/TestCase.php
@@ -2,7 +2,7 @@
declare(strict_types=1);
-namespace WayOfDev\Tests;
+namespace WayOfDev\Tests\Functional;
use Faker\Factory as FakerFactory;
use Faker\Generator;
diff --git a/tests/src/Pest.php b/tests/src/Pest.php
deleted file mode 100644
index dceea7a0..00000000
--- a/tests/src/Pest.php
+++ /dev/null
@@ -1,7 +0,0 @@
-in(__DIR__);