diff --git a/.editorconfig b/.editorconfig
index a25ea9c..95b2348 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -10,5 +10,14 @@ trim_trailing_whitespace = true
[*.json]
indent_size = 2
+[*.yml]
+indent_size = 2
+
+[*.yaml]
+indent_size = 2
+
[Makefile]
indent_style = tab
+
+[*.neon]
+indent_style = tab
diff --git a/.gitattributes b/.gitattributes
index 562766d..418a22e 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,8 +1,13 @@
# Ignoring files for distribution archieves
-examples/ export-ignore
+.github/ export-ignore
+etc/ export-ignore
tests/ export-ignore
-.travis.yml export-ignore
-.gitignore export-ignore
+var/ export-ignore
+.devcontainer.json export-ignore
+.editorconfig export-ignore
.gitattributes export-ignore
-.scrutinizer.yml export-ignore
-phpunit.xml.dist export-ignore
+.gitignore export-ignore
+CONTRIBUTING.md export-ignore
+infection.json.dist export-ignore
+Makefile export-ignore
+README.md export-ignore
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 6396afc..9c4f1ea 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1 +1 @@
-github: WyriHaximus
+github: WyriHaximus
\ No newline at end of file
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index c4b1374..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "composer"
- directory: "/"
- schedule:
- interval: "daily"
- labels:
- - "Dependencies 📦"
- - "PHP 🐘"
- versioning-strategy: "widen"
- open-pull-requests-limit: 1
diff --git a/.github/renovate.json b/.github/renovate.json
new file mode 100644
index 0000000..c3a6d94
--- /dev/null
+++ b/.github/renovate.json
@@ -0,0 +1,6 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "github>WyriHaximus/renovate-config:php-package"
+ ]
+}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0a3f1d5..cd15956 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,178 +6,12 @@ on:
- 'master'
- 'refs/heads/v[0-9]+.[0-9]+.[0-9]+'
pull_request:
+## This workflow needs the `pull-request` permissions to work for the package diffing
+## Refs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
+permissions:
+ pull-requests: write
+ contents: read
jobs:
- supported-versions-matrix:
- name: Supported Versions Matrix
- runs-on: ubuntu-latest
- needs:
- - lint-yaml
- - lint-json
- outputs:
- version: ${{ steps.supported-versions-matrix.outputs.version }}
- steps:
- - uses: actions/checkout@v1
- - id: supported-versions-matrix
- uses: WyriHaximus/github-action-composer-php-versions-in-range@v1
- supported-checks-matrix:
- name: Supported Checks Matrix
- runs-on: ubuntu-latest
- needs:
- - lint-yaml
- - composer-install
- outputs:
- check: ${{ steps.supported-checks-matrix.outputs.check }}
- steps:
- - uses: actions/checkout@v1
- - id: supported-checks-matrix
- name: Generate check
- run: |
- printf "Checks found: %s\r\n" $(make task-list-ci)
- printf "::set-output name=check::%s" $(make task-list-ci)
- composer-install:
- strategy:
- fail-fast: false
- matrix:
- php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
- composer: [lowest, current, highest]
- needs:
- - lint-yaml
- - lint-json
- - supported-versions-matrix
- runs-on: ubuntu-latest
- container:
- image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root
- steps:
- - uses: actions/checkout@v1
- - name: Cache composer packages
- uses: actions/cache@v1
- with:
- path: ./vendor/
- key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
- - name: Install Dependencies
- run: composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist -o
- if: matrix.composer == 'lowest'
- - name: Install Dependencies
- run: composer install --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'current'
- - name: Install Dependencies
- run: composer update --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'highest'
- qa:
- name: Run ${{ matrix.check }} on PHP ${{ matrix.php }} with ${{ matrix.composer }} dependency preference (Linux)
- strategy:
- fail-fast: false
- matrix:
- php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
- composer: [lowest, current, highest]
- check: ${{ fromJson(needs.supported-checks-matrix.outputs.check) }}
- needs:
- - lint-yaml
- - lint-json
- - composer-install
- - supported-checks-matrix
- - supported-versions-matrix
- runs-on: ubuntu-latest
- container:
- image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root
- steps:
- - uses: actions/checkout@v1
- - name: Cache composer packages
- uses: actions/cache@v1
- with:
- path: ./vendor/
- key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist -o
- if: matrix.composer == 'lowest'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer install --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'current'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'highest'
- - name: Fetch Tags
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
- if: matrix.check == 'backward-compatibility-check'
- - run: make ${{ matrix.check }}
- env:
- COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}
- unittests-directly-on-os:
- name: Run unit tests on PHP ${{ matrix.php }} with ${{ matrix.composer }} dependency preference (${{ matrix.os }})
- strategy:
- fail-fast: false
- matrix:
- os: [ubuntu-latest, windows-latest, macos-latest]
- php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
- composer: [lowest, current, highest]
- needs:
- - lint-yaml
- - lint-json
- - composer-install
- - supported-versions-matrix
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v1
- - name: Setup PHP, extensions and composer with shivammathur/setup-php
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php }}
- coverage: xdebug, pcov
- - name: Cache composer packages
- uses: actions/cache@v1
- with:
- path: ./vendor/
- key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist -o
- if: matrix.composer == 'lowest'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer install --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'current'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --ansi --no-progress --no-interaction --prefer-dist -o
- if: matrix.composer == 'highest'
- - name: Fetch Tags
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
- if: matrix.check == 'backward-compatibility-check'
- - run: |
- ./vendor/bin/phpunit -c ./etc/qa/phpunit.xml
- env:
- COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}
- lint-yaml:
- name: Lint YAML
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: yaml-lint
- uses: ibiqlik/action-yamllint@v3
- with:
- config_data: |
- extends: default
- ignore: |
- /.git/
- rules:
- line-length: disable
- document-start: disable
- truthy: disable
- lint-json:
- name: Lint JSON
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - name: json-syntax-check
- uses: limitusus/json-syntax-check@v1
- with:
- pattern: "\\.json$"
- check-mark:
- name: ✔️
- needs:
- - lint-yaml
- - lint-json
- - qa
- - unittests-directly-on-os
- runs-on: ubuntu-latest
- steps:
- - run: echo "✔️"
+ ci:
+ name: Continuous Integration
+ uses: WyriHaximus/github-workflows/.github/workflows/package.yaml@main
diff --git a/.github/workflows/craft-release.yaml b/.github/workflows/craft-release.yaml
deleted file mode 100644
index 9b14210..0000000
--- a/.github/workflows/craft-release.yaml
+++ /dev/null
@@ -1,56 +0,0 @@
-name: Create Release
-env:
- MILESTONE: ${{ github.event.milestone.title }}
-on:
- milestone:
- types:
- - closed
-jobs:
- generate-changelog:
- name: Generate Changelog
- runs-on: ubuntu-latest
- outputs:
- changelog: ${{ steps.changelog.outputs.changelog }}
- steps:
- - name: Generate changelog
- uses: WyriHaximus/github-action-jwage-changelog-generator@v1
- id: changelog
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- milestone: ${{ env.MILESTONE }}
- - name: Show changelog
- run: echo "${CHANGELOG}"
- env:
- CHANGELOG: ${{ steps.changelog.outputs.changelog }}
- create-release:
- name: Create Release
- needs:
- - generate-changelog
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- env:
- CHANGELOG: ${{ needs.generate-changelog.outputs.changelog }}
- - run: |
- echo -e "${MILESTONE_DESCRIPTION}\r\n\r\n${CHANGELOG}" > release-${{ env.MILESTONE }}-release-message.md
- cat release-${{ env.MILESTONE }}-release-message.md
- release_message=$(cat release-${{ env.MILESTONE }}-release-message.md)
- release_message="${release_message//'%'/'%25'}"
- release_message="${release_message//$'\n'/'%0A'}"
- release_message="${release_message//$'\r'/'%0D'}"
- echo "::set-output name=release_message::$release_message"
- id: releasemessage
- env:
- MILESTONE_DESCRIPTION: ${{ github.event.milestone.description }}
- CHANGELOG: ${{ needs.generate-changelog.outputs.changelog }}
- - name: Create Reference Release with Changelog
- uses: fleskesvor/create-release@feature/support-target-commitish
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- tag_name: ${{ env.MILESTONE }}
- release_name: ${{ env.MILESTONE }}
- body: ${{ steps.releasemessage.outputs.release_message }}
- draft: false
- prerelease: false
diff --git a/.github/workflows/release-managment.yaml b/.github/workflows/release-managment.yaml
new file mode 100644
index 0000000..c49b362
--- /dev/null
+++ b/.github/workflows/release-managment.yaml
@@ -0,0 +1,23 @@
+name: Release Management
+on:
+ pull_request:
+ types:
+ - opened
+ - labeled
+ - unlabeled
+ - synchronize
+ - reopened
+ milestone:
+ types:
+ - closed
+permissions:
+ contents: write
+ issues: write
+ pull-requests: write
+jobs:
+ release-managment:
+ name: Create Release
+ uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main
+ with:
+ milestone: ${{ github.event.milestone.title }}
+ description: ${{ github.event.milestone.title }}
diff --git a/.github/workflows/set-milestone-on-pr.yaml b/.github/workflows/set-milestone-on-pr.yaml
deleted file mode 100644
index fe217a9..0000000
--- a/.github/workflows/set-milestone-on-pr.yaml
+++ /dev/null
@@ -1,87 +0,0 @@
-name: Set Milestone
-on:
- pull_request:
- types:
- - assigned
- - opened
- - synchronize
- - reopened
- - edited
- - ready_for_review
- - review_requested
-jobs:
- set-milestone:
- name: Set Milestone
- if: github.event.pull_request.milestone == null
- runs-on: ubuntu-latest
- outputs:
- check: ${{ steps.generate-checks-strategy.outputs.check }}
- steps:
- - uses: actions/checkout@v1
- - name: 'Get Previous tag'
- id: previoustag
- uses: "WyriHaximus/github-action-get-previous-tag@v1"
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - name: 'Get next versions'
- id: semvers
- uses: "WyriHaximus/github-action-next-semvers@v1"
- with:
- version: ${{ steps.previoustag.outputs.tag }}
- - name: 'Decide which version fits this PR'
- id: decidedversion
- run: |
- if [ "$(jq '.sender.id' -r ${GITHUB_EVENT_PATH})" = "49699333" ]; then
- printf "::set-output name=version::%s" "${PATCH}"
- exit 0
- fi
-
- composer install --no-progress --ansi --no-interaction --prefer-dist -o -q
-
- if ! (./vendor/bin/roave-backward-compatibility-check); then
- printf "::set-output name=version::%s" "${MAJOR}"
- exit 0
- fi
-
- printf "::set-output name=version::%s" "${MINOR}"
- env:
- MAJOR: ${{ steps.semvers.outputs.major }}
- MINOR: ${{ steps.semvers.outputs.minor }}
- PATCH: ${{ steps.semvers.outputs.patch }}
- - name: 'Get Milestones'
- uses: "WyriHaximus/github-action-get-milestones@master"
- id: milestones
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - run: printf "::set-output name=number::%s" $(printenv MILESTONES | jq --arg MILESTONE $(printenv MILESTONE) '.[] | select(.title == $MILESTONE) | .number')
- id: querymilestone
- env:
- MILESTONES: ${{ steps.milestones.outputs.milestones }}
- MILESTONE: ${{ steps.decidedversion.outputs.version }}
- - name: 'Create Milestone'
- if: steps.querymilestone.outputs.number == ''
- id: createmilestone
- uses: "WyriHaximus/github-action-create-milestone@0.1.0"
- with:
- title: ${{ steps.decidedversion.outputs.version }}
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - name: 'Select found or created Milestone'
- id: selectmilestone
- run: |
- if [ $(echo ${QUERY_NUMBER} | wc -c) -eq 1 ] ; then
- printf "::set-output name=number::%s" "${CREATED_NUMBER}"
- exit 0
- fi
-
- printf "::set-output name=number::%s" "${QUERY_NUMBER}"
- env:
- CREATED_NUMBER: ${{ steps.createmilestone.outputs.number }}
- QUERY_NUMBER: ${{ steps.querymilestone.outputs.number }}
- - name: 'Set Milestone'
- uses: "WyriHaximus/github-action-set-milestone@master"
- with:
- issue_number: ${{ github.event.pull_request.number }}
- milestone_number: ${{ steps.selectmilestone.outputs.number }}
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.gitignore b/.gitignore
index 48b8bf9..03ad991 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,4 @@
+var/*
+!var/.gitkeep
vendor/
+etc/qa/.phpunit.result.cache
diff --git a/Makefile b/Makefile
index e3e0e9d..00ff562 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,11 @@ SHELL=bash
.PHONY: *
-COMPOSER_CACHE_DIR=$(shell composer config --global cache-dir -q || echo ${HOME}/.composer-php/cache)
COMPOSER_SHOW_EXTENSION_LIST=$(shell composer show -t | grep -o "\-\-\(ext-\).\+" | sort | uniq | cut -d- -f4- | tr -d '\n' | grep . | sed '/^$$/d' | xargs | sed -e 's/ /, /g' | tr -cd '[:alnum:],' | sed 's/.$$//')
SLIM_DOCKER_IMAGE=$(shell php -r 'echo count(array_intersect(["gd", "vips"], explode(",", "${COMPOSER_SHOW_EXTENSION_LIST}"))) > 0 ? "" : "-slim";')
+COMPOSER_CACHE_DIR=$(shell composer config --global cache-dir -q || echo ${HOME}/.composer-php/cache)
+PHP_VERSION:=$(shell docker run --rm -v "`pwd`:`pwd`" jess/jq jq -r -c '.config.platform.php' "`pwd`/composer.json" | php -r "echo str_replace('|', '.', explode('.', implode('|', explode('.', stream_get_contents(STDIN), 2)), 2)[0]);")
+COMPOSER_CONTAINER_CACHE_DIR=$(shell docker run --rm -it "ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-nts-alpine${SLIM_DOCKER_IMAGE}-dev" composer config --global cache-dir -q || echo ${HOME}/.composer-php/cache)
ifneq ("$(wildcard /.you-are-in-a-wyrihaximus.net-php-docker-image)","")
IN_DOCKER=TRUE
@@ -16,12 +18,11 @@ endif
ifeq ("$(IN_DOCKER)","TRUE")
DOCKER_RUN:=
else
- PHP_VERSION:=$(shell docker run --rm -v "`pwd`:`pwd`" jess/jq jq -r -c '.config.platform.php' "`pwd`/composer.json" | php -r "echo str_replace('|', '.', explode('.', implode('|', explode('.', stream_get_contents(STDIN), 2)), 2)[0]);")
DOCKER_RUN:=docker run --rm -it \
-v "`pwd`:`pwd`" \
- -v "${COMPOSER_CACHE_DIR}:/home/app/.composer/cache" \
+ -v "${COMPOSER_CACHE_DIR}:${COMPOSER_CONTAINER_CACHE_DIR}" \
-w "`pwd`" \
- "ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-nts-alpine3.12${SLIM_DOCKER_IMAGE}-dev"
+ "ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-nts-alpine${SLIM_DOCKER_IMAGE}-dev"
endif
ifneq (,$(findstring icrosoft,$(shell cat /proc/version)))
@@ -43,7 +44,7 @@ cs: ## Check the code for code style issues
$(DOCKER_RUN) vendor/bin/phpcs --parallel=$(THREADS) --cache=./var/.phpcs.cache.json --standard=./etc/qa/phpcs.xml
stan: ## Run static analysis (PHPStan)
- $(DOCKER_RUN) vendor/bin/phpstan analyse src tests --level max --ansi -c ./etc/qa/phpstan.neon
+ $(DOCKER_RUN) vendor/bin/phpstan analyse src tests --ansi -c ./etc/qa/phpstan.neon
psalm: ## Run static analysis (Psalm)
$(DOCKER_RUN) vendor/bin/psalm --threads=$(THREADS) --shepherd --stats --config=./etc/qa/psalm.xml
@@ -52,14 +53,21 @@ unit-testing: ## Run tests
$(DOCKER_RUN) vendor/bin/phpunit --colors=always -c ./etc/qa/phpunit.xml --coverage-text --coverage-html ./var/tests-unit-coverage-html --coverage-clover ./var/tests-unit-clover-coverage.xml
$(DOCKER_RUN) test -n "$(COVERALLS_REPO_TOKEN)" && test -n "$(COVERALLS_RUN_LOCALLY)" && test -f ./var/tests-unit-clover-coverage.xml && vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true
+unit-testing-raw: ## Run tests ###
+ php vendor/phpunit/phpunit/phpunit --colors=always -c ./etc/qa/phpunit.xml --coverage-text --coverage-html ./var/tests-unit-coverage-html --coverage-clover ./var/tests-unit-clover-coverage.xml
+ test -n "$(COVERALLS_REPO_TOKEN)" && test -n "$(COVERALLS_RUN_LOCALLY)" && test -f ./var/tests-unit-clover-coverage.xml && ./vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true
+
mutation-testing: ## Run mutation testing
- $(DOCKER_RUN) vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(THREADS) --ignore-msi-with-no-mutations || (cat ./var/infection.log && false)
+ $(DOCKER_RUN) vendor/bin/roave-infection-static-analysis-plugin --ansi --log-verbosity=all --threads=$(THREADS) --psalm-config etc/qa/psalm.xml || (cat ./var/infection.log && false)
+
+mutation-testing-raw: ## Run mutation testing ###
+ php vendor/roave/infection-static-analysis-plugin/bin/roave-infection-static-analysis-plugin --ansi --log-verbosity=all --threads=$(THREADS) --psalm-config etc/qa/psalm.xml || (cat ./var/infection.log && false)
composer-require-checker: ## Ensure we require every package used in this package directly
$(DOCKER_RUN) vendor/bin/composer-require-checker --ignore-parse-errors --ansi -vvv --config-file=./etc/qa/composer-require-checker.json
composer-unused: ## Ensure we don't require any package we don't use in this package directly
- $(DOCKER_RUN) composer unused --ansi
+ $(DOCKER_RUN) vendor/bin/composer-unused --ansi
composer-install: ## Install dependencies
$(DOCKER_RUN) composer install --no-progress --ansi --no-interaction --prefer-dist -o
diff --git a/composer.json b/composer.json
index a44a4f8..c96b385 100644
--- a/composer.json
+++ b/composer.json
@@ -9,15 +9,15 @@
}
],
"require": {
- "php": "^8 || ^7.4",
- "clue/redis-react": "^2.3",
- "evenement/evenement": "^3.0",
+ "php": "^8.2",
+ "clue/redis-react": "^2.6",
+ "evenement/evenement": "^3.0.2",
"react/cache": "^1.1.1",
- "react/promise": "^3 || ^2.8",
- "thecodingmachine/safe": "^2 || ^1.3"
+ "react/promise": "^2.8 || ^3",
+ "thecodingmachine/safe": "^1.3 || ^2"
},
"require-dev": {
- "wyrihaximus/async-test-utilities": "^4.0"
+ "wyrihaximus/async-test-utilities": "^7.2"
},
"autoload": {
"psr-4": {
@@ -32,12 +32,12 @@
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
- "infection/extension-installer": true,
"ergebnis/composer-normalize": true,
- "icanhazstring/composer-unused": true
+ "icanhazstring/composer-unused": true,
+ "infection/extension-installer": true
},
"platform": {
- "php": "7.4.7"
+ "php": "8.2.13"
},
"sort-packages": true
},
diff --git a/composer.lock b/composer.lock
index c59a4bb..eb65838 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "6d597152ece2a70b999d371ab1572b22",
+ "content-hash": "356ad3a90e24426e4acc6505687a258d",
"packages": [
{
"name": "clue/redis-protocol",
@@ -124,28 +124,28 @@
},
{
"name": "evenement/evenement",
- "version": "v3.0.1",
+ "version": "v3.0.2",
"source": {
"type": "git",
"url": "https://github.com/igorw/evenement.git",
- "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7"
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
- "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7",
+ "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
"shasum": ""
},
"require": {
"php": ">=7.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.0"
+ "phpunit/phpunit": "^9 || ^6"
},
"type": "library",
"autoload": {
- "psr-0": {
- "Evenement": "src"
+ "psr-4": {
+ "Evenement\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -165,9 +165,9 @@
],
"support": {
"issues": "https://github.com/igorw/evenement/issues",
- "source": "https://github.com/igorw/evenement/tree/master"
+ "source": "https://github.com/igorw/evenement/tree/v3.0.2"
},
- "time": "2017-07-23T21:35:13+00:00"
+ "time": "2023-08-08T05:53:35+00:00"
},
{
"name": "react/cache",
@@ -243,33 +243,33 @@
},
{
"name": "react/dns",
- "version": "v1.10.0",
+ "version": "v1.12.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/dns.git",
- "reference": "a5427e7dfa47713e438016905605819d101f238c"
+ "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/dns/zipball/a5427e7dfa47713e438016905605819d101f238c",
- "reference": "a5427e7dfa47713e438016905605819d101f238c",
+ "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
+ "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
"shasum": ""
},
"require": {
"php": ">=5.3.0",
"react/cache": "^1.0 || ^0.6 || ^0.5",
"react/event-loop": "^1.2",
- "react/promise": "^3.0 || ^2.7 || ^1.2.1",
- "react/promise-timer": "^1.9"
+ "react/promise": "^3.0 || ^2.7 || ^1.2.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^4.8.35",
- "react/async": "^4 || ^3 || ^2"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/async": "^4 || ^3 || ^2",
+ "react/promise-timer": "^1.9"
},
"type": "library",
"autoload": {
"psr-4": {
- "React\\Dns\\": "src"
+ "React\\Dns\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -307,49 +307,43 @@
],
"support": {
"issues": "https://github.com/reactphp/dns/issues",
- "source": "https://github.com/reactphp/dns/tree/v1.10.0"
+ "source": "https://github.com/reactphp/dns/tree/v1.12.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-09-08T12:22:46+00:00"
+ "time": "2023-11-29T12:41:06+00:00"
},
{
"name": "react/event-loop",
- "version": "v1.3.0",
+ "version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/event-loop.git",
- "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137"
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/event-loop/zipball/187fb56f46d424afb6ec4ad089269c72eec2e137",
- "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137",
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"suggest": {
- "ext-event": "~1.0 for ExtEventLoop",
- "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
- "ext-uv": "* for ExtUvLoop"
+ "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
},
"type": "library",
"autoload": {
"psr-4": {
- "React\\EventLoop\\": "src"
+ "React\\EventLoop\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -385,39 +379,35 @@
],
"support": {
"issues": "https://github.com/reactphp/event-loop/issues",
- "source": "https://github.com/reactphp/event-loop/tree/v1.3.0"
+ "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-03-17T11:10:22+00:00"
+ "time": "2023-11-13T13:48:05+00:00"
},
{
"name": "react/promise",
- "version": "v2.9.0",
+ "version": "v2.11.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/promise.git",
- "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
+ "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
- "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
+ "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
"shasum": ""
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"type": "library",
"autoload": {
@@ -461,32 +451,28 @@
],
"support": {
"issues": "https://github.com/reactphp/promise/issues",
- "source": "https://github.com/reactphp/promise/tree/v2.9.0"
+ "source": "https://github.com/reactphp/promise/tree/v2.11.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-02-11T10:27:51+00:00"
+ "time": "2023-11-16T16:16:50+00:00"
},
{
"name": "react/promise-timer",
- "version": "v1.9.0",
+ "version": "v1.10.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/promise-timer.git",
- "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495"
+ "reference": "4cb85c1c2125390748e3908120bb82feb99fe766"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
- "reference": "aa7a73c74b8d8c0f622f5982ff7b0351bc29e495",
+ "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/4cb85c1c2125390748e3908120bb82feb99fe766",
+ "reference": "4cb85c1c2125390748e3908120bb82feb99fe766",
"shasum": ""
},
"require": {
@@ -495,7 +481,7 @@
"react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
},
"type": "library",
"autoload": {
@@ -544,47 +530,43 @@
],
"support": {
"issues": "https://github.com/reactphp/promise-timer/issues",
- "source": "https://github.com/reactphp/promise-timer/tree/v1.9.0"
+ "source": "https://github.com/reactphp/promise-timer/tree/v1.10.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-06-13T13:41:03+00:00"
+ "time": "2023-07-20T15:40:28+00:00"
},
{
"name": "react/socket",
- "version": "v1.12.0",
+ "version": "v1.14.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/socket.git",
- "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b"
+ "reference": "21591111d3ea62e31f2254280ca0656bc2b1bda6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/socket/zipball/81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
- "reference": "81e1b4d7f5450ebd8d2e9a95bb008bb15ca95a7b",
+ "url": "https://api.github.com/repos/reactphp/socket/zipball/21591111d3ea62e31f2254280ca0656bc2b1bda6",
+ "reference": "21591111d3ea62e31f2254280ca0656bc2b1bda6",
"shasum": ""
},
"require": {
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"php": ">=5.3.0",
- "react/dns": "^1.8",
+ "react/dns": "^1.11",
"react/event-loop": "^1.2",
"react/promise": "^3 || ^2.6 || ^1.2.1",
- "react/promise-timer": "^1.9",
"react/stream": "^1.2"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
"react/async": "^4 || ^3 || ^2",
- "react/promise-stream": "^1.4"
+ "react/promise-stream": "^1.4",
+ "react/promise-timer": "^1.10"
},
"type": "library",
"autoload": {
@@ -628,32 +610,28 @@
],
"support": {
"issues": "https://github.com/reactphp/socket/issues",
- "source": "https://github.com/reactphp/socket/tree/v1.12.0"
+ "source": "https://github.com/reactphp/socket/tree/v1.14.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2022-08-25T12:32:25+00:00"
+ "time": "2023-08-25T13:48:09+00:00"
},
{
"name": "react/stream",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/stream.git",
- "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9"
+ "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/stream/zipball/7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
- "reference": "7a423506ee1903e89f1e08ec5f0ed430ff784ae9",
+ "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
+ "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
"shasum": ""
},
"require": {
@@ -663,12 +641,12 @@
},
"require-dev": {
"clue/stream-filter": "~1.2",
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
},
"type": "library",
"autoload": {
"psr-4": {
- "React\\Stream\\": "src"
+ "React\\Stream\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -710,55 +688,58 @@
],
"support": {
"issues": "https://github.com/reactphp/stream/issues",
- "source": "https://github.com/reactphp/stream/tree/v1.2.0"
+ "source": "https://github.com/reactphp/stream/tree/v1.3.0"
},
"funding": [
{
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- },
- {
- "url": "https://github.com/clue",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2021-07-11T12:37:55+00:00"
+ "time": "2023-06-16T10:52:11+00:00"
},
{
"name": "thecodingmachine/safe",
- "version": "v1.3.3",
+ "version": "v2.5.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/safe.git",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc"
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
+ "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
"shasum": ""
},
"require": {
- "php": ">=7.2"
+ "php": "^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan": "^1.5",
+ "phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.2",
- "thecodingmachine/phpstan-strict-rules": "^0.12"
+ "thecodingmachine/phpstan-strict-rules": "^1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.1-dev"
+ "dev-master": "2.2.x-dev"
}
},
"autoload": {
"files": [
"deprecated/apc.php",
+ "deprecated/array.php",
+ "deprecated/datetime.php",
"deprecated/libevent.php",
+ "deprecated/misc.php",
+ "deprecated/password.php",
"deprecated/mssql.php",
"deprecated/stats.php",
+ "deprecated/strings.php",
"lib/special_cases.php",
+ "deprecated/mysqli.php",
"generated/apache.php",
"generated/apcu.php",
"generated/array.php",
@@ -779,6 +760,7 @@
"generated/fpm.php",
"generated/ftp.php",
"generated/funchand.php",
+ "generated/gettext.php",
"generated/gmp.php",
"generated/gnupg.php",
"generated/hash.php",
@@ -788,7 +770,6 @@
"generated/image.php",
"generated/imap.php",
"generated/info.php",
- "generated/ingres-ii.php",
"generated/inotify.php",
"generated/json.php",
"generated/ldap.php",
@@ -797,20 +778,14 @@
"generated/mailparse.php",
"generated/mbstring.php",
"generated/misc.php",
- "generated/msql.php",
"generated/mysql.php",
- "generated/mysqli.php",
- "generated/mysqlndMs.php",
- "generated/mysqlndQc.php",
"generated/network.php",
"generated/oci8.php",
"generated/opcache.php",
"generated/openssl.php",
"generated/outcontrol.php",
- "generated/password.php",
"generated/pcntl.php",
"generated/pcre.php",
- "generated/pdf.php",
"generated/pgsql.php",
"generated/posix.php",
"generated/ps.php",
@@ -821,7 +796,6 @@
"generated/sem.php",
"generated/session.php",
"generated/shmop.php",
- "generated/simplexml.php",
"generated/sockets.php",
"generated/sodium.php",
"generated/solr.php",
@@ -844,13 +818,13 @@
"generated/zip.php",
"generated/zlib.php"
],
- "psr-4": {
- "Safe\\": [
- "lib/",
- "deprecated/",
- "generated/"
- ]
- }
+ "classmap": [
+ "lib/DateTime.php",
+ "lib/DateTimeImmutable.php",
+ "lib/Exceptions/",
+ "deprecated/Exceptions/",
+ "generated/Exceptions/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -859,9 +833,9 @@
"description": "PHP core functions that throw exceptions instead of returning FALSE on error",
"support": {
"issues": "https://github.com/thecodingmachine/safe/issues",
- "source": "https://github.com/thecodingmachine/safe/tree/v1.3.3"
+ "source": "https://github.com/thecodingmachine/safe/tree/v2.5.0"
},
- "time": "2020-10-28T17:51:34+00:00"
+ "time": "2023-04-05T11:54:14+00:00"
}
],
"packages-dev": [
@@ -1031,18 +1005,92 @@
],
"time": "2021-03-30T17:13:30+00:00"
},
+ {
+ "name": "azjezz/psl",
+ "version": "2.8.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/azjezz/psl.git",
+ "reference": "4955aa9d30790a3618b7933762359abdb41fd313"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/azjezz/psl/zipball/4955aa9d30790a3618b7933762359abdb41fd313",
+ "reference": "4955aa9d30790a3618b7933762359abdb41fd313",
+ "shasum": ""
+ },
+ "require": {
+ "ext-bcmath": "*",
+ "ext-intl": "*",
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-sodium": "*",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "revolt/event-loop": "^1.0.1"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.22.0",
+ "php-coveralls/php-coveralls": "^2.6.0",
+ "php-standard-library/psalm-plugin": "^2.2.1",
+ "phpbench/phpbench": "^1.2.14",
+ "phpunit/phpunit": "^9.6.10",
+ "roave/infection-static-analysis-plugin": "^1.32.0",
+ "squizlabs/php_codesniffer": "^3.7.2",
+ "vimeo/psalm": "^5.13.1"
+ },
+ "suggest": {
+ "php-standard-library/psalm-plugin": "Psalm integration"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "hhvm/hsl",
+ "url": "https://github.com/hhvm/hsl"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/bootstrap.php"
+ ],
+ "psr-4": {
+ "Psl\\": "src/Psl"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "azjezz",
+ "email": "azjezz@protonmail.com"
+ }
+ ],
+ "description": "PHP Standard Library",
+ "support": {
+ "issues": "https://github.com/azjezz/psl/issues",
+ "source": "https://github.com/azjezz/psl/tree/2.8.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/azjezz",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-22T07:49:48+00:00"
+ },
{
"name": "beberlei/assert",
- "version": "v3.2.7",
+ "version": "v3.3.2",
"source": {
"type": "git",
"url": "https://github.com/beberlei/assert.git",
- "reference": "d63a6943fc4fd1a2aedb65994e3548715105abcf"
+ "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/beberlei/assert/zipball/d63a6943fc4fd1a2aedb65994e3548715105abcf",
- "reference": "d63a6943fc4fd1a2aedb65994e3548715105abcf",
+ "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
+ "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
"shasum": ""
},
"require": {
@@ -1050,12 +1098,13 @@
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
- "php": "^7"
+ "php": "^7.0 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
- "phpstan/phpstan-shim": "*",
- "phpunit/phpunit": ">=6.0.0 <8"
+ "phpstan/phpstan": "*",
+ "phpunit/phpunit": ">=6.0.0",
+ "yoast/phpunit-polyfills": "^0.1.0"
},
"suggest": {
"ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
@@ -1093,39 +1142,56 @@
],
"support": {
"issues": "https://github.com/beberlei/assert/issues",
- "source": "https://github.com/beberlei/assert/tree/v3"
+ "source": "https://github.com/beberlei/assert/tree/v3.3.2"
},
- "time": "2019-12-19T17:51:41+00:00"
+ "time": "2021-12-16T21:41:27+00:00"
},
{
- "name": "clue/block-react",
- "version": "v1.5.0",
+ "name": "colinodell/json5",
+ "version": "v2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/clue/reactphp-block.git",
- "reference": "718b0571a94aa693c6fffc72182e87257ac900f3"
+ "url": "https://github.com/colinodell/json5.git",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/clue/reactphp-block/zipball/718b0571a94aa693c6fffc72182e87257ac900f3",
- "reference": "718b0571a94aa693c6fffc72182e87257ac900f3",
+ "url": "https://api.github.com/repos/colinodell/json5/zipball/15b063f8cb5e6deb15f0cd39123264ec0d19c710",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710",
"shasum": ""
},
"require": {
- "php": ">=5.3",
- "react/event-loop": "^1.2",
- "react/promise": "^3.0 || ^2.7 || ^1.2.1",
- "react/promise-timer": "^1.5"
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "php": "^7.1.3|^8.0"
+ },
+ "conflict": {
+ "scrutinizer/ocular": "1.7.*"
},
"require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
- "react/http": "^1.4"
+ "mikehaertl/php-shellcommand": "^1.2.5",
+ "phpstan/phpstan": "^1.4",
+ "scrutinizer/ocular": "^1.6",
+ "squizlabs/php_codesniffer": "^2.3 || ^3.0",
+ "symfony/finder": "^4.4|^5.4|^6.0",
+ "symfony/phpunit-bridge": "^5.4|^6.0"
},
+ "bin": [
+ "bin/json5"
+ ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
"autoload": {
"files": [
- "src/functions_include.php"
- ]
+ "src/global.php"
+ ],
+ "psr-4": {
+ "ColinODell\\Json5\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1133,51 +1199,173 @@
],
"authors": [
{
- "name": "Christian Lück",
- "email": "christian@clue.engineering"
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Developer"
}
],
- "description": "Lightweight library that eases integrating async components built for ReactPHP in a traditional, blocking environment.",
- "homepage": "https://github.com/clue/reactphp-block",
+ "description": "UTF-8 compatible JSON5 parser for PHP",
+ "homepage": "https://github.com/colinodell/json5",
"keywords": [
- "async",
- "await",
- "blocking",
- "event loop",
- "promise",
- "reactphp",
- "sleep",
- "synchronous"
+ "JSON5",
+ "json",
+ "json5_decode",
+ "json_decode"
],
"support": {
- "issues": "https://github.com/clue/reactphp-block/issues",
- "source": "https://github.com/clue/reactphp-block/tree/v1.5.0"
+ "issues": "https://github.com/colinodell/json5/issues",
+ "source": "https://github.com/colinodell/json5/tree/v2.3.0"
},
"funding": [
{
- "url": "https://clue.engineering/support",
+ "url": "https://www.colinodell.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/clue",
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/colinodell",
+ "type": "patreon"
+ }
+ ],
+ "time": "2022-12-27T16:44:40+00:00"
+ },
+ {
+ "name": "composer-unused/contracts",
+ "version": "0.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer-unused/contracts.git",
+ "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer-unused/contracts/zipball/5ec448d3ee80735dccad6a21a3266c377d0845ae",
+ "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ComposerUnused\\Contracts\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Andreas Frömer",
+ "email": "composer-unused@icanhazstring.com"
+ }
+ ],
+ "description": "Contract repository for composer-unused",
+ "support": {
+ "issues": "https://github.com/composer-unused/contracts/issues",
+ "source": "https://github.com/composer-unused/contracts/tree/0.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/icanhazstring",
+ "type": "github"
+ }
+ ],
+ "time": "2023-03-17T00:41:49+00:00"
+ },
+ {
+ "name": "composer-unused/symbol-parser",
+ "version": "0.2.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer-unused/symbol-parser.git",
+ "reference": "528cf09e0c78de2cf2ffd2fc8d4b7db7cbd85576"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer-unused/symbol-parser/zipball/528cf09e0c78de2cf2ffd2fc8d4b7db7cbd85576",
+ "reference": "528cf09e0c78de2cf2ffd2fc8d4b7db7cbd85576",
+ "shasum": ""
+ },
+ "require": {
+ "composer-unused/contracts": "^0.3",
+ "nikic/php-parser": "^4.17",
+ "php": "^7.4 || ^8.0",
+ "phpstan/phpdoc-parser": "^1.23",
+ "psr/container": "^1.0 || ^2.0",
+ "psr/log": "^1.1 || ^2 || ^3",
+ "symfony/finder": "^4.4 || ^5.3 || ^6.0 || ^7.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.28",
+ "ext-ds": "*",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^9.6.10",
+ "roave/security-advisories": "dev-master",
+ "squizlabs/php_codesniffer": "^3.7.2",
+ "symfony/serializer": "^5.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ComposerUnused\\SymbolParser\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Andreas Frömer",
+ "email": "composer-unused@icanhazstring.com"
+ }
+ ],
+ "description": "Toolkit to parse symbols from a composer package",
+ "homepage": "https://github.com/composer-unused/symbol-parser",
+ "keywords": [
+ "composer",
+ "parser",
+ "symbol"
+ ],
+ "support": {
+ "issues": "https://github.com/composer-unused/symbol-parser/issues",
+ "source": "https://github.com/composer-unused/symbol-parser"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/icanhazstring",
"type": "github"
+ },
+ {
+ "url": "https://paypal.me/icanhazstring",
+ "type": "other"
}
],
- "abandoned": "react/async",
- "time": "2021-10-20T14:07:33+00:00"
+ "time": "2023-11-30T16:36:43+00:00"
},
{
"name": "composer/ca-bundle",
- "version": "1.3.5",
+ "version": "1.3.7",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
- "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd"
+ "reference": "76e46335014860eec1aa5a724799a00a2e47cc85"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
- "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85",
+ "reference": "76e46335014860eec1aa5a724799a00a2e47cc85",
"shasum": ""
},
"require": {
@@ -1224,7 +1412,7 @@
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/ca-bundle/issues",
- "source": "https://github.com/composer/ca-bundle/tree/1.3.5"
+ "source": "https://github.com/composer/ca-bundle/tree/1.3.7"
},
"funding": [
{
@@ -1240,61 +1428,44 @@
"type": "tidelift"
}
],
- "time": "2023-01-11T08:27:00+00:00"
+ "time": "2023-08-30T09:31:38+00:00"
},
{
- "name": "composer/composer",
- "version": "1.10.26",
+ "name": "composer/class-map-generator",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/composer.git",
- "reference": "3e196135eacf9e519a6b00986bc6fe6aff977997"
+ "url": "https://github.com/composer/class-map-generator.git",
+ "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/composer/zipball/3e196135eacf9e519a6b00986bc6fe6aff977997",
- "reference": "3e196135eacf9e519a6b00986bc6fe6aff977997",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9",
+ "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9",
"shasum": ""
},
"require": {
- "composer/ca-bundle": "^1.0",
- "composer/semver": "^1.0",
- "composer/spdx-licenses": "^1.2",
- "composer/xdebug-handler": "^1.1",
- "justinrainbow/json-schema": "^5.2.10",
- "php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0",
- "seld/jsonlint": "^1.4",
- "seld/phar-utils": "^1.0",
- "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
- },
- "conflict": {
- "symfony/console": "2.8.38"
+ "composer/pcre": "^2.1 || ^3.1",
+ "php": "^7.2 || ^8.0",
+ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
},
"require-dev": {
- "phpspec/prophecy": "^1.10",
- "symfony/phpunit-bridge": "^4.2"
- },
- "suggest": {
- "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
- "ext-zip": "Enabling the zip extension allows you to unzip archives",
- "ext-zlib": "Allow gzip compression of HTTP requests"
+ "phpstan/phpstan": "^1.6",
+ "phpstan/phpstan-deprecation-rules": "^1",
+ "phpstan/phpstan-phpunit": "^1",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/filesystem": "^5.4 || ^6",
+ "symfony/phpunit-bridge": "^5"
},
- "bin": [
- "bin/composer"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.10-dev"
+ "dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Composer\\": "src/Composer"
+ "Composer\\ClassMapGenerator\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1303,14 +1474,118 @@
],
"authors": [
{
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
+ }
+ ],
+ "description": "Utilities to scan PHP code and generate class maps.",
+ "keywords": [
+ "classmap"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/class-map-generator/issues",
+ "source": "https://github.com/composer/class-map-generator/tree/1.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-06-30T13:58:57+00:00"
+ },
+ {
+ "name": "composer/composer",
+ "version": "2.6.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/composer.git",
+ "reference": "683557bd2466072777309d039534bb1332d0dda5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/composer/zipball/683557bd2466072777309d039534bb1332d0dda5",
+ "reference": "683557bd2466072777309d039534bb1332d0dda5",
+ "shasum": ""
+ },
+ "require": {
+ "composer/ca-bundle": "^1.0",
+ "composer/class-map-generator": "^1.0",
+ "composer/metadata-minifier": "^1.0",
+ "composer/pcre": "^2.1 || ^3.1",
+ "composer/semver": "^3.2.5",
+ "composer/spdx-licenses": "^1.5.7",
+ "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
+ "justinrainbow/json-schema": "^5.2.11",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "react/promise": "^2.8 || ^3",
+ "seld/jsonlint": "^1.4",
+ "seld/phar-utils": "^1.2",
+ "seld/signal-handler": "^2.0",
+ "symfony/console": "^5.4.11 || ^6.0.11",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7",
+ "symfony/finder": "^5.4 || ^6.0 || ^7",
+ "symfony/polyfill-php73": "^1.24",
+ "symfony/polyfill-php80": "^1.24",
+ "symfony/polyfill-php81": "^1.24",
+ "symfony/process": "^5.4 || ^6.0 || ^7"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.9.3",
+ "phpstan/phpstan-deprecation-rules": "^1",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1",
+ "phpstan/phpstan-symfony": "^1.2.10",
+ "symfony/phpunit-bridge": "^6.0 || ^7"
+ },
+ "suggest": {
+ "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
+ "ext-zip": "Enabling the zip extension allows you to unzip archives",
+ "ext-zlib": "Allow gzip compression of HTTP requests"
+ },
+ "bin": [
+ "bin/composer"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.6-dev"
+ },
+ "phpstan": {
+ "includes": [
+ "phpstan/rules.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\": "src/Composer/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "https://www.naderman.de"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "homepage": "https://seld.be"
}
],
"description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
@@ -1321,9 +1596,10 @@
"package"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
+ "irc": "ircs://irc.libera.chat:6697/composer",
"issues": "https://github.com/composer/composer/issues",
- "source": "https://github.com/composer/composer/tree/1.10.26"
+ "security": "https://github.com/composer/composer/security/policy",
+ "source": "https://github.com/composer/composer/tree/2.6.6"
},
"funding": [
{
@@ -1339,44 +1615,39 @@
"type": "tidelift"
}
],
- "time": "2022-04-13T14:39:56+00:00"
+ "time": "2023-12-08T17:32:26+00:00"
},
{
- "name": "composer/package-versions-deprecated",
- "version": "1.11.99.5",
+ "name": "composer/metadata-minifier",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/package-versions-deprecated.git",
- "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
+ "url": "https://github.com/composer/metadata-minifier.git",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
- "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
+ "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.1.0 || ^2.0",
- "php": "^7 || ^8"
- },
- "replace": {
- "ocramius/package-versions": "1.11.99"
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "composer/composer": "^1.9.3 || ^2.0@dev",
- "ext-zip": "^1.13",
- "phpunit/phpunit": "^6.5 || ^7"
+ "composer/composer": "^2",
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
- "type": "composer-plugin",
+ "type": "library",
"extra": {
- "class": "PackageVersions\\Installer",
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "PackageVersions\\": "src/PackageVersions"
+ "Composer\\MetadataMinifier\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1385,18 +1656,90 @@
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Small utility library that handles metadata minification and expansion.",
+ "keywords": [
+ "composer",
+ "compression"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/metadata-minifier/issues",
+ "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
},
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-04-07T13:37:33+00:00"
+ },
+ {
+ "name": "composer/pcre",
+ "version": "3.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
+ "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
{
"name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be"
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
}
],
- "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "keywords": [
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
+ ],
"support": {
- "issues": "https://github.com/composer/package-versions-deprecated/issues",
- "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.1.1"
},
"funding": [
{
@@ -1412,32 +1755,33 @@
"type": "tidelift"
}
],
- "time": "2022-01-17T14:14:24+00:00"
+ "time": "2023-10-11T07:11:09+00:00"
},
{
"name": "composer/semver",
- "version": "1.7.2",
+ "version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/composer/semver.git",
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
+ "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
"shasum": ""
},
"require": {
"php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.5 || ^5.0.5"
+ "phpstan/phpstan": "^1.4",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-main": "3.x-dev"
}
},
"autoload": {
@@ -1474,9 +1818,9 @@
"versioning"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
+ "irc": "ircs://irc.libera.chat:6697/composer",
"issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/1.7.2"
+ "source": "https://github.com/composer/semver/tree/3.4.0"
},
"funding": [
{
@@ -1492,20 +1836,20 @@
"type": "tidelift"
}
],
- "time": "2020-12-03T15:47:16+00:00"
+ "time": "2023-08-31T09:50:34+00:00"
},
{
"name": "composer/spdx-licenses",
- "version": "1.5.7",
+ "version": "1.5.8",
"source": {
"type": "git",
"url": "https://github.com/composer/spdx-licenses.git",
- "reference": "c848241796da2abf65837d51dce1fae55a960149"
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
- "reference": "c848241796da2abf65837d51dce1fae55a960149",
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
"shasum": ""
},
"require": {
@@ -1554,9 +1898,9 @@
"validator"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
+ "irc": "ircs://irc.libera.chat:6697/composer",
"issues": "https://github.com/composer/spdx-licenses/issues",
- "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
+ "source": "https://github.com/composer/spdx-licenses/tree/1.5.8"
},
"funding": [
{
@@ -1572,29 +1916,31 @@
"type": "tidelift"
}
],
- "time": "2022-05-23T07:37:50+00:00"
+ "time": "2023-11-20T07:44:33+00:00"
},
{
"name": "composer/xdebug-handler",
- "version": "1.4.6",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/composer/xdebug-handler.git",
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0"
+ "composer/pcre": "^1 || ^2 || ^3",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
- "phpstan/phpstan": "^0.12.55",
- "symfony/phpunit-bridge": "^4.2 || ^5"
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^6.0"
},
"type": "library",
"autoload": {
@@ -1620,7 +1966,7 @@
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/xdebug-handler/issues",
- "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
},
"funding": [
{
@@ -1636,39 +1982,42 @@
"type": "tidelift"
}
],
- "time": "2021-03-25T17:01:18+00:00"
+ "time": "2022-02-25T21:32:43+00:00"
},
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
- "version": "v0.7.2",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
- "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
+ "url": "https://github.com/PHPCSStandards/composer-installer.git",
+ "reference": "4be43904336affa5c2f70744a348312336afd0da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
- "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
+ "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
+ "reference": "4be43904336affa5c2f70744a348312336afd0da",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
- "php": ">=5.3",
+ "php": ">=5.4",
"squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
},
"require-dev": {
"composer/composer": "*",
+ "ext-json": "*",
+ "ext-zip": "*",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
- "phpcompatibility/php-compatibility": "^9.0"
+ "phpcompatibility/php-compatibility": "^9.0",
+ "yoast/phpunit-polyfills": "^1.0"
},
"type": "composer-plugin",
"extra": {
- "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
+ "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
},
"autoload": {
"psr-4": {
- "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
+ "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1684,7 +2033,7 @@
},
{
"name": "Contributors",
- "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
+ "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
}
],
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
@@ -1708,59 +2057,10 @@
"tests"
],
"support": {
- "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
- "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
- },
- "time": "2022-02-04T12:51:07+00:00"
- },
- {
- "name": "dereuromark/composer-prefer-lowest",
- "version": "0.1.10",
- "source": {
- "type": "git",
- "url": "https://github.com/dereuromark/composer-prefer-lowest.git",
- "reference": "9290203cfc25d4a2d0605cb3119bb227aa1195d6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/dereuromark/composer-prefer-lowest/zipball/9290203cfc25d4a2d0605cb3119bb227aa1195d6",
- "reference": "9290203cfc25d4a2d0605cb3119bb227aa1195d6",
- "shasum": ""
- },
- "require": {
- "composer/semver": "^1.4 || ^2.0 || ^3.0",
- "ext-json": "*",
- "php": ">=7.3"
- },
- "require-dev": {
- "fig-r/psr2r-sniffer": "dev-master",
- "phpunit/phpunit": "^9.5"
- },
- "bin": [
- "bin/validate-prefer-lowest"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "ComposerPreferLowest\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mark Scherer",
- "email": "euromark@web.de"
- }
- ],
- "description": "Checks prefer-lowest more strictly. Add-on for CI.",
- "support": {
- "issues": "https://github.com/dereuromark/composer-prefer-lowest/issues",
- "source": "https://github.com/dereuromark/composer-prefer-lowest/tree/0.1.10"
+ "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
+ "source": "https://github.com/PHPCSStandards/composer-installer"
},
- "time": "2021-11-02T02:20:22+00:00"
+ "time": "2023-01-05T11:28:13+00:00"
},
{
"name": "dnoegel/php-xdg-base-dir",
@@ -1801,23 +2101,23 @@
},
{
"name": "doctrine/coding-standard",
- "version": "9.0.2",
+ "version": "12.0.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/coding-standard.git",
- "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1"
+ "reference": "1b2b7dc58c68833af481fb9325c25abd40681c79"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/35a2452c6025cb739c3244b3348bcd1604df07d1",
- "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1",
+ "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/1b2b7dc58c68833af481fb9325c25abd40681c79",
+ "reference": "1b2b7dc58c68833af481fb9325c25abd40681c79",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
- "php": "^7.1 || ^8.0",
- "slevomat/coding-standard": "^7.0.0",
- "squizlabs/php_codesniffer": "^3.6.0"
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0.0",
+ "php": "^7.2 || ^8.0",
+ "slevomat/coding-standard": "^8.11",
+ "squizlabs/php_codesniffer": "^3.7"
},
"type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
@@ -1841,6 +2141,7 @@
"code",
"coding",
"cs",
+ "dev",
"doctrine",
"rules",
"sniffer",
@@ -1850,36 +2151,83 @@
],
"support": {
"issues": "https://github.com/doctrine/coding-standard/issues",
- "source": "https://github.com/doctrine/coding-standard/tree/9.0.2"
+ "source": "https://github.com/doctrine/coding-standard/tree/12.0.0"
+ },
+ "time": "2023-04-24T17:43:28+00:00"
+ },
+ {
+ "name": "doctrine/deprecations",
+ "version": "1.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/deprecations.git",
+ "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
+ "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^9",
+ "phpstan/phpstan": "1.4.10 || 1.10.15",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+ "psalm/plugin-phpunit": "0.18.4",
+ "psr/log": "^1 || ^2 || ^3",
+ "vimeo/psalm": "4.30.0 || 5.12.0"
+ },
+ "suggest": {
+ "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
},
- "time": "2021-04-12T15:11:14+00:00"
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
+ "homepage": "https://www.doctrine-project.org/",
+ "support": {
+ "issues": "https://github.com/doctrine/deprecations/issues",
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
+ },
+ "time": "2023-09-27T20:04:15+00:00"
},
{
"name": "doctrine/instantiator",
- "version": "1.5.0",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
- "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
- "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^8.1"
},
"require-dev": {
- "doctrine/coding-standard": "^9 || ^11",
+ "doctrine/coding-standard": "^11",
"ext-pdo": "*",
"ext-phar": "*",
- "phpbench/phpbench": "^0.16 || ^1",
- "phpstan/phpstan": "^1.4",
- "phpstan/phpstan-phpunit": "^1",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "vimeo/psalm": "^4.30 || ^5.4"
+ "phpbench/phpbench": "^1.2",
+ "phpstan/phpstan": "^1.9.4",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.5.27",
+ "vimeo/psalm": "^5.4"
},
"type": "library",
"autoload": {
@@ -1906,7 +2254,7 @@
],
"support": {
"issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
+ "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
},
"funding": [
{
@@ -1922,39 +2270,47 @@
"type": "tidelift"
}
],
- "time": "2022-12-30T00:15:36+00:00"
+ "time": "2022-12-30T00:23:10+00:00"
},
{
"name": "ergebnis/composer-normalize",
- "version": "2.28.3",
+ "version": "2.40.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c"
+ "reference": "665de8e2bbe7c3e31b0a819b4dc0165289c0d230"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
+ "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/665de8e2bbe7c3e31b0a819b4dc0165289c0d230",
+ "reference": "665de8e2bbe7c3e31b0a819b4dc0165289c0d230",
"shasum": ""
},
"require": {
"composer-plugin-api": "^2.0.0",
- "ergebnis/json-normalizer": "~2.1.0",
- "ergebnis/json-printer": "^3.2.0",
+ "ergebnis/json": "^1.1.0",
+ "ergebnis/json-normalizer": "^4.3.0",
+ "ergebnis/json-printer": "^3.4.0",
+ "ext-json": "*",
"justinrainbow/json-schema": "^5.2.12",
"localheinz/diff": "^1.1.1",
- "php": "^7.4 || ^8.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "conflict": {
+ "symfony/console": "^7.0.0"
},
"require-dev": {
- "composer/composer": "^2.3.9",
- "ergebnis/license": "^1.2.0",
- "ergebnis/php-cs-fixer-config": "^4.4.0",
- "fakerphp/faker": "^1.19.0",
- "phpunit/phpunit": "^9.5.21",
- "psalm/plugin-phpunit": "~0.17.0",
- "symfony/filesystem": "^5.4.9",
- "vimeo/psalm": "^4.24.0"
+ "composer/composer": "^2.6.5",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "~6.13.1",
+ "ergebnis/phpunit-slow-test-detector": "^2.7.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.8",
+ "phpunit/phpunit": "^10.4.2",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.12",
+ "symfony/filesystem": "^6.4.0",
+ "vimeo/psalm": "^5.17.0"
},
"type": "composer-plugin",
"extra": {
@@ -1962,7 +2318,8 @@
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
- }
+ },
+ "plugin-optional": true
},
"autoload": {
"psr-4": {
@@ -1976,7 +2333,8 @@
"authors": [
{
"name": "Andreas Möller",
- "email": "am@localheinz.com"
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
"description": "Provides a composer plugin for normalizing composer.json.",
@@ -1989,45 +2347,51 @@
],
"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": "2022-07-05T16:09:10+00:00"
+ "time": "2023-12-05T16:07:43+00:00"
},
{
- "name": "ergebnis/json-normalizer",
- "version": "2.1.0",
+ "name": "ergebnis/json",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/json-normalizer.git",
- "reference": "2039eb11131a243b9204bf51219baa08935e6b1d"
+ "url": "https://github.com/ergebnis/json.git",
+ "reference": "9f2b9086c43b189d7044a5b6215a931fb6e9125d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/2039eb11131a243b9204bf51219baa08935e6b1d",
- "reference": "2039eb11131a243b9204bf51219baa08935e6b1d",
+ "url": "https://api.github.com/repos/ergebnis/json/zipball/9f2b9086c43b189d7044a5b6215a931fb6e9125d",
+ "reference": "9f2b9086c43b189d7044a5b6215a931fb6e9125d",
"shasum": ""
},
"require": {
- "ergebnis/json-printer": "^3.2.0",
- "ergebnis/json-schema-validator": "^2.0.0",
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.11",
- "php": "^7.4 || ^8.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "ergebnis/data-provider": "^1.0.0",
- "ergebnis/license": "^1.2.0",
- "ergebnis/php-cs-fixer-config": "^3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.5",
- "phpunit/phpunit": "^9.5.11",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.17.0"
+ "ergebnis/composer-normalize": "^2.29.0",
+ "ergebnis/data-provider": "^3.0.0",
+ "ergebnis/license": "^2.2.0",
+ "ergebnis/php-cs-fixer-config": "^6.6.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.4",
+ "phpunit/phpunit": "^10.4.1",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.5",
+ "vimeo/psalm": "^5.15.0"
},
"type": "library",
+ "extra": {
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
+ }
+ },
"autoload": {
"psr-4": {
- "Ergebnis\\Json\\Normalizer\\": "src/"
+ "Ergebnis\\Json\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2037,54 +2401,189 @@
"authors": [
{
"name": "Andreas Möller",
- "email": "am@localheinz.com"
+ "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",
+ "description": "Provides a Json value object for representing a valid JSON string.",
+ "homepage": "https://github.com/ergebnis/json",
"keywords": [
- "json",
- "normalizer"
+ "json"
],
"support": {
- "issues": "https://github.com/ergebnis/json-normalizer/issues",
- "source": "https://github.com/ergebnis/json-normalizer"
+ "issues": "https://github.com/ergebnis/json/issues",
+ "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/json"
},
- "funding": [
+ "time": "2023-10-10T07:57:48+00:00"
+ },
+ {
+ "name": "ergebnis/json-normalizer",
+ "version": "4.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ergebnis/json-normalizer.git",
+ "reference": "716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd",
+ "reference": "716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd",
+ "shasum": ""
+ },
+ "require": {
+ "ergebnis/json": "^1.1.0",
+ "ergebnis/json-pointer": "^3.2.0",
+ "ergebnis/json-printer": "^3.4.0",
+ "ergebnis/json-schema-validator": "^4.1.0",
+ "ext-json": "*",
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "require-dev": {
+ "composer/semver": "^3.4.0",
+ "ergebnis/data-provider": "^3.0.0",
+ "ergebnis/license": "^2.2.0",
+ "ergebnis/php-cs-fixer-config": "~6.7.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.4",
+ "phpunit/phpunit": "^10.4.1",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.5",
+ "symfony/filesystem": "^6.3.1",
+ "symfony/finder": "^6.3.5",
+ "vimeo/psalm": "^5.15.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": [
{
- "url": "https://github.com/localheinz",
- "type": "github"
+ "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": "2023-10-10T15:15:03+00:00"
+ },
+ {
+ "name": "ergebnis/json-pointer",
+ "version": "3.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ergebnis/json-pointer.git",
+ "reference": "8e517faefc06b7c761eaa041febef51a9375819a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/8e517faefc06b7c761eaa041febef51a9375819a",
+ "reference": "8e517faefc06b7c761eaa041febef51a9375819a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.29.0",
+ "ergebnis/data-provider": "^3.0.0",
+ "ergebnis/license": "^2.2.0",
+ "ergebnis/php-cs-fixer-config": "~6.7.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.4",
+ "phpunit/phpunit": "^10.4.1",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.5",
+ "vimeo/psalm": "^5.15.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"
}
],
- "time": "2022-01-04T11:19:55+00:00"
+ "description": "Provides JSON pointer as a value object.",
+ "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": "2023-10-10T14:41:06+00:00"
},
{
"name": "ergebnis/json-printer",
- "version": "3.2.0",
+ "version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/json-printer.git",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005"
+ "reference": "05841593d72499de4f7ce4034a237c77e470558f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/651cab2b7604a6b338d0d16749f5ea0851a68005",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005",
+ "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/05841593d72499de4f7ce4034a237c77e470558f",
+ "reference": "05841593d72499de4f7ce4034a237c77e470558f",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
- "php": "^7.4 || ^8.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.5",
- "phpunit/phpunit": "^9.5.11",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.16.1"
+ "ergebnis/license": "^2.2.0",
+ "ergebnis/php-cs-fixer-config": "^6.6.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.3",
+ "phpunit/phpunit": "^10.4.1",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.5",
+ "vimeo/psalm": "^5.15.0"
},
"type": "library",
"autoload": {
@@ -2099,7 +2598,8 @@
"authors": [
{
"name": "Andreas Möller",
- "email": "am@localheinz.com"
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
"description": "Provides a JSON printer, allowing for flexible indentation.",
@@ -2111,45 +2611,44 @@
],
"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"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2021-12-27T12:39:13+00:00"
+ "time": "2023-10-10T07:42:48+00:00"
},
{
"name": "ergebnis/json-schema-validator",
- "version": "2.0.0",
+ "version": "4.1.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/json-schema-validator.git",
- "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac"
+ "reference": "d568ed85d1cdc2e49d650c2fc234dc2516f3f25b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/dacd8a47c1cc2c426ec71e952da3609ebe901fac",
- "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac",
+ "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/d568ed85d1cdc2e49d650c2fc234dc2516f3f25b",
+ "reference": "d568ed85d1cdc2e49d650c2fc234dc2516f3f25b",
"shasum": ""
},
"require": {
+ "ergebnis/json": "^1.0.1",
+ "ergebnis/json-pointer": "^3.2.0",
"ext-json": "*",
- "justinrainbow/json-schema": "^5.2.10",
- "php": "^7.4 || ^8.0"
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.18.0",
- "ergebnis/data-provider": "^1.0.0",
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "~3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.3",
- "phpunit/phpunit": "~9.5.10",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.15.0"
+ "ergebnis/composer-normalize": "^2.21.0",
+ "ergebnis/data-provider": "^3.0.0",
+ "ergebnis/license": "^2.2.0",
+ "ergebnis/php-cs-fixer-config": "~6.6.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.4",
+ "phpunit/phpunit": "^10.4.1",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.18.5",
+ "vimeo/psalm": "^5.15.0"
},
"type": "library",
"extra": {
@@ -2170,7 +2669,8 @@
"authors": [
{
"name": "Andreas Möller",
- "email": "am@localheinz.com"
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
"description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
@@ -2182,50 +2682,46 @@
],
"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"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2021-12-13T16:54:56+00:00"
+ "time": "2023-10-10T14:16:57+00:00"
},
{
"name": "ergebnis/phpstan-rules",
- "version": "0.15.3",
+ "version": "2.1.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/phpstan-rules.git",
- "reference": "78a3dd88893cf3250ba339843503dcea7e9bee64"
+ "reference": "119e229c48688946450ccca9f1c57c9ca4fb6f02"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/78a3dd88893cf3250ba339843503dcea7e9bee64",
- "reference": "78a3dd88893cf3250ba339843503dcea7e9bee64",
+ "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/119e229c48688946450ccca9f1c57c9ca4fb6f02",
+ "reference": "119e229c48688946450ccca9f1c57c9ca4fb6f02",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"nikic/php-parser": "^4.2.3",
- "php": "^7.2 || ^8.0",
- "phpstan/phpstan": "~0.11.15 || ~0.12.0"
- },
- "require-dev": {
- "ergebnis/composer-normalize": "^2.9.0",
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^2.5.1",
- "ergebnis/test-util": "^1.3.0",
- "infection/infection": "~0.15.3",
- "nette/di": "^3.0.1",
- "phpstan/phpstan-deprecation-rules": "~0.11.2",
- "phpstan/phpstan-strict-rules": "~0.11.1",
- "phpunit/phpunit": "^8.5.8",
- "psalm/plugin-phpunit": "~0.12.2",
- "psr/container": "^1.0.0",
- "vimeo/psalm": "^3.18",
- "zendframework/zend-servicemanager": "^2.0.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "phpstan/phpstan": "^1.10.21"
+ },
+ "require-dev": {
+ "doctrine/orm": "^2.16.1",
+ "ergebnis/composer-normalize": "^2.35.0",
+ "ergebnis/license": "^2.1.0",
+ "ergebnis/php-cs-fixer-config": "^5.13.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "infection/infection": "~0.27.0",
+ "nette/di": "^3.1.3",
+ "phpstan/phpstan-deprecation-rules": "^1.1.4",
+ "phpstan/phpstan-strict-rules": "^1.1.0",
+ "phpunit/phpunit": "^10.3.2",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "psr/container": "^1.1.2",
+ "rector/rector": "~0.17.13",
+ "vimeo/psalm": "^5.14.1"
},
"type": "phpstan-extension",
"extra": {
@@ -2261,66 +2757,7 @@
"issues": "https://github.com/ergebnis/phpstan-rules/issues",
"source": "https://github.com/ergebnis/phpstan-rules"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2020-10-30T09:50:34+00:00"
- },
- {
- "name": "facade/ignition-contracts",
- "version": "1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/facade/ignition-contracts.git",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
- "shasum": ""
- },
- "require": {
- "php": "^7.3|^8.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^v2.15.8",
- "phpunit/phpunit": "^9.3.11",
- "vimeo/psalm": "^3.17.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Facade\\IgnitionContracts\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Freek Van der Herten",
- "email": "freek@spatie.be",
- "homepage": "https://flareapp.io",
- "role": "Developer"
- }
- ],
- "description": "Solution contracts for Ignition",
- "homepage": "https://github.com/facade/ignition-contracts",
- "keywords": [
- "contracts",
- "flare",
- "ignition"
- ],
- "support": {
- "issues": "https://github.com/facade/ignition-contracts/issues",
- "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
- },
- "time": "2020-10-16T08:27:54+00:00"
+ "time": "2023-08-17T10:28:37+00:00"
},
{
"name": "felixfbecker/advanced-json-rpc",
@@ -2423,18 +2860,79 @@
},
"time": "2022-03-02T22:36:06+00:00"
},
+ {
+ "name": "fidry/cpu-core-counter",
+ "version": "0.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theofidry/cpu-core-counter.git",
+ "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
+ "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "fidry/makefile": "^0.2.0",
+ "phpstan/extension-installer": "^1.2.0",
+ "phpstan/phpstan": "^1.9.2",
+ "phpstan/phpstan-deprecation-rules": "^1.0.0",
+ "phpstan/phpstan-phpunit": "^1.2.2",
+ "phpstan/phpstan-strict-rules": "^1.4.4",
+ "phpunit/phpunit": "^9.5.26 || ^8.5.31",
+ "theofidry/php-cs-fixer-config": "^1.0",
+ "webmozarts/strict-phpunit": "^7.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Fidry\\CpuCoreCounter\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Théo FIDRY",
+ "email": "theo.fidry@gmail.com"
+ }
+ ],
+ "description": "Tiny utility to get the number of CPU cores.",
+ "keywords": [
+ "CPU",
+ "core"
+ ],
+ "support": {
+ "issues": "https://github.com/theofidry/cpu-core-counter/issues",
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/0.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theofidry",
+ "type": "github"
+ }
+ ],
+ "time": "2022-12-24T12:35:10+00:00"
+ },
{
"name": "filp/whoops",
- "version": "2.14.6",
+ "version": "2.15.4",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "f7948baaa0330277c729714910336383286305da"
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
- "reference": "f7948baaa0330277c729714910336383286305da",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
"shasum": ""
},
"require": {
@@ -2484,7 +2982,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.14.6"
+ "source": "https://github.com/filp/whoops/tree/2.15.4"
},
"funding": [
{
@@ -2492,26 +2990,26 @@
"type": "github"
}
],
- "time": "2022-11-02T16:23:29+00:00"
+ "time": "2023-11-03T12:00:00+00:00"
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.5.0",
+ "version": "7.8.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
- "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
"shasum": ""
},
"require": {
"ext-json": "*",
- "guzzlehttp/promises": "^1.5",
- "guzzlehttp/psr7": "^1.9 || ^2.4",
+ "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
+ "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0"
@@ -2520,10 +3018,11 @@
"psr/http-client-implementation": "1.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.8.1",
+ "bamarni/composer-bin-plugin": "^1.8.2",
"ext-curl": "*",
- "php-http/client-integration-tests": "^3.0",
- "phpunit/phpunit": "^8.5.29 || ^9.5.23",
+ "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
+ "php-http/message-factory": "^1.1",
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"suggest": {
@@ -2536,9 +3035,6 @@
"bamarni-bin": {
"bin-links": true,
"forward-command": false
- },
- "branch-alias": {
- "dev-master": "7.5-dev"
}
},
"autoload": {
@@ -2604,7 +3100,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
+ "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
},
"funding": [
{
@@ -2620,38 +3116,37 @@
"type": "tidelift"
}
],
- "time": "2022-08-28T15:39:27+00:00"
+ "time": "2023-12-03T20:35:24+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "1.5.2",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "b94b2807d85443f9719887892882d0329d1e2598"
+ "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
- "reference": "b94b2807d85443f9719887892882d0329d1e2598",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
+ "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
"shasum": ""
},
"require": {
- "php": ">=5.5"
+ "php": "^7.2.5 || ^8.0"
},
"require-dev": {
- "symfony/phpunit-bridge": "^4.4 || ^5.1"
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.5-dev"
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
}
},
"autoload": {
- "files": [
- "src/functions_include.php"
- ],
"psr-4": {
"GuzzleHttp\\Promise\\": "src/"
}
@@ -2688,7 +3183,7 @@
],
"support": {
"issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/1.5.2"
+ "source": "https://github.com/guzzle/promises/tree/2.0.2"
},
"funding": [
{
@@ -2704,20 +3199,20 @@
"type": "tidelift"
}
],
- "time": "2022-08-28T14:55:35+00:00"
+ "time": "2023-12-03T20:19:20+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "2.5.0",
+ "version": "2.6.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
- "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
"shasum": ""
},
"require": {
@@ -2731,9 +3226,9 @@
"psr/http-message-implementation": "1.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.8.1",
+ "bamarni/composer-bin-plugin": "^1.8.2",
"http-interop/http-factory-tests": "^0.9",
- "phpunit/phpunit": "^8.5.29 || ^9.5.23"
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15"
},
"suggest": {
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
@@ -2804,7 +3299,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.5.0"
+ "source": "https://github.com/guzzle/psr7/tree/2.6.2"
},
"funding": [
{
@@ -2820,52 +3315,71 @@
"type": "tidelift"
}
],
- "time": "2023-04-17T16:11:26+00:00"
+ "time": "2023-12-03T20:05:35+00:00"
},
{
"name": "icanhazstring/composer-unused",
- "version": "0.7.10",
+ "version": "0.8.11",
"source": {
"type": "git",
"url": "https://github.com/composer-unused/composer-unused.git",
- "reference": "97086da19c7434a42427df0cf47b21278609ffb8"
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/97086da19c7434a42427df0cf47b21278609ffb8",
- "reference": "97086da19c7434a42427df0cf47b21278609ffb8",
+ "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/4720206edc29a7da1913ece0e508f6d82fbcd905",
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^2.0",
+ "composer-unused/contracts": "^0.3",
+ "composer-unused/symbol-parser": "^0.2.1",
"ext-json": "*",
- "nikic/php-parser": "^4.13",
- "php": ">=7.3 || ^8.0",
+ "nikic/php-parser": "^4.15",
+ "ondram/ci-detector": "^4.1",
+ "php": "^7.4 || ^8.0",
+ "phpstan/phpdoc-parser": "^1.12",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2 || ^3",
- "symfony/finder": "^4.2 || ^5.0"
+ "symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
+ "symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
+ "symfony/dependency-injection": "^4.4.8 || ^5.4 || ^6.0 || ^7.0",
+ "symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
+ "symfony/serializer": "^4.4 || ^5.4 || ^6.0 || ^7.0",
+ "symfony/validator": "^4.4 || ^5.4 || ^6.0 || ^7.0",
+ "webmozart/assert": "^1.10",
+ "webmozart/glob": "^4.4"
},
"require-dev": {
- "composer/composer": "^2.1",
+ "bamarni/composer-bin-plugin": "^1.8",
+ "codeception/verify": "^3.0",
+ "dg/bypass-finals": "^1.5",
+ "ergebnis/composer-normalize": "^2.28",
"ext-ds": "*",
"ext-zend-opcache": "*",
- "jangregor/phpstan-prophecy": "^0.8.1",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/phpstan": "^0.12.99",
- "phpunit/phpunit": "^9.5.10",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "php-ds/php-ds": "^1.4",
+ "phpspec/prophecy-phpunit": "^2.0.2",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.6.13",
"roave/security-advisories": "dev-master",
- "squizlabs/php_codesniffer": "^3.6"
+ "squizlabs/php_codesniffer": "^3.7"
},
"bin": [
"bin/composer-unused"
],
- "type": "composer-plugin",
+ "type": "library",
"extra": {
- "class": "Icanhazstring\\Composer\\Unused\\UnusedPlugin"
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": true
+ }
},
"autoload": {
"psr-4": {
- "Icanhazstring\\Composer\\Unused\\": "src"
+ "ComposerUnused\\ComposerUnused\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2875,7 +3389,7 @@
"authors": [
{
"name": "Andreas Frömer",
- "email": "blubb0r05+github@gmail.com"
+ "email": "composer-unused@icanhazstring.com"
}
],
"description": "Show unused packages by scanning your code",
@@ -2883,7 +3397,7 @@
"keywords": [
"composer",
"php-parser",
- "plugin",
+ "static analysis",
"unused"
],
"support": {
@@ -2900,29 +3414,29 @@
"type": "other"
}
],
- "time": "2021-12-16T21:59:44+00:00"
+ "time": "2023-11-30T14:35:29+00:00"
},
{
"name": "infection/abstract-testframework-adapter",
- "version": "0.3.1",
+ "version": "0.5.0",
"source": {
"type": "git",
"url": "https://github.com/infection/abstract-testframework-adapter.git",
- "reference": "c52539339f28d6b67625ff24496289b3e6d66025"
+ "reference": "18925e20d15d1a5995bb85c9dc09e8751e1e069b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/abstract-testframework-adapter/zipball/c52539339f28d6b67625ff24496289b3e6d66025",
- "reference": "c52539339f28d6b67625ff24496289b3e6d66025",
+ "url": "https://api.github.com/repos/infection/abstract-testframework-adapter/zipball/18925e20d15d1a5995bb85c9dc09e8751e1e069b",
+ "reference": "18925e20d15d1a5995bb85c9dc09e8751e1e069b",
"shasum": ""
},
"require": {
- "php": "^7.3 || ^8.0"
+ "php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
- "friendsofphp/php-cs-fixer": "^2.16",
- "phpunit/phpunit": "^9.0"
+ "friendsofphp/php-cs-fixer": "^2.17",
+ "phpunit/phpunit": "^9.5"
},
"type": "library",
"autoload": {
@@ -2943,9 +3457,19 @@
"description": "Abstract Test Framework Adapter for Infection",
"support": {
"issues": "https://github.com/infection/abstract-testframework-adapter/issues",
- "source": "https://github.com/infection/abstract-testframework-adapter/tree/0.3"
+ "source": "https://github.com/infection/abstract-testframework-adapter/tree/0.5.0"
},
- "time": "2020-08-30T13:50:12+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/infection",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/infection",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2021-08-17T18:49:12+00:00"
},
{
"name": "infection/extension-installer",
@@ -3071,60 +3595,67 @@
},
{
"name": "infection/infection",
- "version": "0.20.2",
+ "version": "0.27.8",
"source": {
"type": "git",
"url": "https://github.com/infection/infection.git",
- "reference": "6035c1566af6a5a8d833a276351e5e18ed412305"
+ "reference": "673ce762abf3355fcdc186ca17eb89edf86993bf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/infection/zipball/6035c1566af6a5a8d833a276351e5e18ed412305",
- "reference": "6035c1566af6a5a8d833a276351e5e18ed412305",
+ "url": "https://api.github.com/repos/infection/infection/zipball/673ce762abf3355fcdc186ca17eb89edf86993bf",
+ "reference": "673ce762abf3355fcdc186ca17eb89edf86993bf",
"shasum": ""
},
"require": {
- "composer/xdebug-handler": "^1.3.3",
+ "colinodell/json5": "^2.2",
+ "composer-runtime-api": "^2.0",
+ "composer/xdebug-handler": "^2.0 || ^3.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
- "infection/abstract-testframework-adapter": "^0.3.1",
+ "ext-mbstring": "*",
+ "fidry/cpu-core-counter": "^0.4.0 || ^0.5.0 || ^1.0",
+ "infection/abstract-testframework-adapter": "^0.5.0",
"infection/extension-installer": "^0.1.0",
- "infection/include-interceptor": "^0.2.4",
- "justinrainbow/json-schema": "^5.2",
- "nikic/php-parser": "^4.10.2",
- "ocramius/package-versions": "^1.2 || ^2.0",
- "ondram/ci-detector": "^3.3.0",
- "php": "^7.4 || ^8.0",
- "sanmai/pipeline": "^3.1 || ^5.0",
- "sebastian/diff": "^3.0.2 || ^4.0",
- "seld/jsonlint": "^1.7",
- "symfony/console": "^3.4.29 || ^4.1.19 || ^5.0",
- "symfony/filesystem": "^3.4.29 || ^4.1.19 || ^5.0",
- "symfony/finder": "^3.4.29 || ^4.1.19 || ^5.0",
- "symfony/process": "^3.4.29 || ^4.1.19 || ^5.0",
- "thecodingmachine/safe": "^1.0",
- "webmozart/assert": "^1.3",
- "webmozart/path-util": "^2.3"
+ "infection/include-interceptor": "^0.2.5",
+ "justinrainbow/json-schema": "^5.2.10",
+ "nikic/php-parser": "^4.15.1",
+ "ondram/ci-detector": "^4.1.0",
+ "php": "^8.1",
+ "sanmai/later": "^0.1.1",
+ "sanmai/pipeline": "^5.1 || ^6",
+ "sebastian/diff": "^3.0.2 || ^4.0 || ^5.0",
+ "symfony/console": "^5.4 || ^6.0 || ^7.0",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
+ "symfony/finder": "^5.4 || ^6.0 || ^7.0",
+ "symfony/process": "^5.4 || ^6.0 || ^7.0",
+ "thecodingmachine/safe": "^2.1.2",
+ "webmozart/assert": "^1.11"
},
"conflict": {
- "phpunit/php-code-coverage": ">9 <9.1.4",
- "symfony/console": "=4.1.5"
+ "antecedent/patchwork": "<2.1.25",
+ "dg/bypass-finals": "<1.4.1",
+ "phpunit/php-code-coverage": ">9,<9.1.4 || >9.2.17,<9.2.21"
},
"require-dev": {
+ "brianium/paratest": "^6.11",
"ext-simplexml": "*",
+ "fidry/makefile": "^0.2.0",
"helmich/phpunit-json-assert": "^3.0",
+ "phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^0.12.8",
- "phpstan/phpstan-phpunit": "^0.12.6",
- "phpstan/phpstan-strict-rules": "^0.12.5",
- "phpstan/phpstan-webmozart-assert": "^0.12.2",
- "phpunit/phpunit": "^9.3.11",
- "symfony/phpunit-bridge": "^4.4.14 || ^5.1.6",
- "symfony/yaml": "^5.0",
- "thecodingmachine/phpstan-safe-rule": "^1.0",
- "vimeo/psalm": "^4.0"
+ "phpstan/extension-installer": "^1.1.0",
+ "phpstan/phpstan": "^1.10.15",
+ "phpstan/phpstan-phpunit": "^1.0.0",
+ "phpstan/phpstan-strict-rules": "^1.1.0",
+ "phpstan/phpstan-webmozart-assert": "^1.0.2",
+ "phpunit/phpunit": "^9.6",
+ "rector/rector": "^0.16.0",
+ "sidz/phpstan-rules": "^0.4.0",
+ "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
+ "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
+ "thecodingmachine/phpstan-safe-rule": "^1.2.0"
},
"bin": [
"bin/infection"
@@ -3180,9 +3711,19 @@
],
"support": {
"issues": "https://github.com/infection/infection/issues",
- "source": "https://github.com/infection/infection/tree/0.20.2"
+ "source": "https://github.com/infection/infection/tree/0.27.8"
},
- "time": "2020-11-20T17:15:57+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/infection",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/infection",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-08T14:29:03+00:00"
},
{
"name": "jakobbuis/simple-slow-test-reporter",
@@ -3226,21 +3767,21 @@
},
{
"name": "jangregor/phpstan-prophecy",
- "version": "0.8.1",
+ "version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/Jan0707/phpstan-prophecy.git",
- "reference": "f01ca476840c370bbf9c224aed25fca60eecca9d"
+ "reference": "2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Jan0707/phpstan-prophecy/zipball/f01ca476840c370bbf9c224aed25fca60eecca9d",
- "reference": "f01ca476840c370bbf9c224aed25fca60eecca9d",
+ "url": "https://api.github.com/repos/Jan0707/phpstan-prophecy/zipball/2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0",
+ "reference": "2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.6"
+ "phpstan/phpstan": "^1.0.0"
},
"conflict": {
"phpspec/prophecy": "<1.7.0,>=2.0.0",
@@ -3279,39 +3820,36 @@
"description": "Provides a phpstan/phpstan extension for phpspec/prophecy",
"support": {
"issues": "https://github.com/Jan0707/phpstan-prophecy/issues",
- "source": "https://github.com/Jan0707/phpstan-prophecy/tree/0.8.1"
+ "source": "https://github.com/Jan0707/phpstan-prophecy/tree/1.0.0"
},
"funding": [
- {
- "url": "https://www.buymeacoffee.com/localheinz",
- "type": "custom"
- },
{
"url": "https://github.com/localheinz",
"type": "github"
}
],
- "time": "2020-10-24T15:04:14+00:00"
+ "time": "2021-11-08T16:37:47+00:00"
},
{
"name": "jetbrains/phpstorm-stubs",
- "version": "v2019.3",
+ "version": "v2023.2",
"source": {
"type": "git",
"url": "https://github.com/JetBrains/phpstorm-stubs.git",
- "reference": "883b6facd78e01c0743b554af86fa590c2573f40"
+ "reference": "3bb9c8a1050ad324c2dca7964487fa9f081f1005"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/883b6facd78e01c0743b554af86fa590c2573f40",
- "reference": "883b6facd78e01c0743b554af86fa590c2573f40",
+ "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/3bb9c8a1050ad324c2dca7964487fa9f081f1005",
+ "reference": "3bb9c8a1050ad324c2dca7964487fa9f081f1005",
"shasum": ""
},
"require-dev": {
- "nikic/php-parser": "^4",
- "php": "^7.1",
- "phpdocumentor/reflection-docblock": "^4.3",
- "phpunit/phpunit": "^7"
+ "friendsofphp/php-cs-fixer": "@stable",
+ "nikic/php-parser": "@stable",
+ "php": "^8.0",
+ "phpdocumentor/reflection-docblock": "@stable",
+ "phpunit/phpunit": "^9.6"
},
"type": "library",
"autoload": {
@@ -3336,22 +3874,22 @@
"type"
],
"support": {
- "source": "https://github.com/JetBrains/phpstorm-stubs/tree/master"
+ "source": "https://github.com/JetBrains/phpstorm-stubs/tree/v2023.2"
},
- "time": "2019-12-05T16:56:26+00:00"
+ "time": "2023-07-14T12:50:15+00:00"
},
{
"name": "justinrainbow/json-schema",
- "version": "5.2.12",
+ "version": "v5.2.13",
"source": {
"type": "git",
"url": "https://github.com/justinrainbow/json-schema.git",
- "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
- "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
"shasum": ""
},
"require": {
@@ -3406,9 +3944,9 @@
],
"support": {
"issues": "https://github.com/justinrainbow/json-schema/issues",
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
+ "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
},
- "time": "2022-04-13T08:02:27+00:00"
+ "time": "2023-09-26T02:20:38+00:00"
},
{
"name": "localheinz/diff",
@@ -3472,36 +4010,36 @@
},
{
"name": "maglnet/composer-require-checker",
- "version": "3.8.0",
+ "version": "4.8.0",
"source": {
"type": "git",
"url": "https://github.com/maglnet/ComposerRequireChecker.git",
- "reference": "537138b833ab0f9ad72b667a72bece2a765e88ab"
+ "reference": "1c7498e4c31ff7e467ac1b5138d277736c838393"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/537138b833ab0f9ad72b667a72bece2a765e88ab",
- "reference": "537138b833ab0f9ad72b667a72bece2a765e88ab",
+ "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/1c7498e4c31ff7e467ac1b5138d277736c838393",
+ "reference": "1c7498e4c31ff7e467ac1b5138d277736c838393",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.0.0",
- "ext-json": "*",
"ext-phar": "*",
- "nikic/php-parser": "^4.13.0",
- "php": "^7.4 || ^8.0",
- "symfony/console": "^5.4.0",
- "webmozart/assert": "^1.9.1",
- "webmozart/glob": "^4.4.0"
+ "nikic/php-parser": "^4.17.1",
+ "php": "~8.2.0 || ~8.3.0",
+ "symfony/console": "^6.4.1 || ^7.0.1",
+ "webmozart/assert": "^1.11.0",
+ "webmozart/glob": "^4.6.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9.0.0",
+ "doctrine/coding-standard": "^12.0.0",
"ext-zend-opcache": "*",
- "mikey179/vfsstream": "^1.6.10",
- "phing/phing": "^2.17.0",
- "phpstan/phpstan": "^1.2.0",
- "phpunit/phpunit": "^9.5.10",
- "vimeo/psalm": "^4.14.0"
+ "mikey179/vfsstream": "^1.6.11",
+ "phing/phing": "^2.17.4",
+ "phpstan/phpstan": "^1.10.47",
+ "phpunit/phpunit": "^10.5.1",
+ "roave/infection-static-analysis-plugin": "^1.34.0",
+ "vimeo/psalm": "^5.16.0"
},
"bin": [
"bin/composer-require-checker"
@@ -3546,22 +4084,22 @@
],
"support": {
"issues": "https://github.com/maglnet/ComposerRequireChecker/issues",
- "source": "https://github.com/maglnet/ComposerRequireChecker/tree/3.8.0"
+ "source": "https://github.com/maglnet/ComposerRequireChecker/tree/4.8.0"
},
- "time": "2021-12-07T14:25:47+00:00"
+ "time": "2023-12-03T22:28:20+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.11.0",
+ "version": "1.11.1",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
- "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
"shasum": ""
},
"require": {
@@ -3599,7 +4137,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
},
"funding": [
{
@@ -3607,20 +4145,20 @@
"type": "tidelift"
}
],
- "time": "2022-03-03T13:19:32+00:00"
+ "time": "2023-03-08T13:26:56+00:00"
},
{
"name": "netresearch/jsonmapper",
- "version": "v4.1.0",
+ "version": "v4.2.0",
"source": {
"type": "git",
"url": "https://github.com/cweiske/jsonmapper.git",
- "reference": "cfa81ea1d35294d64adb9c68aa4cb9e92400e53f"
+ "reference": "f60565f8c0566a31acf06884cdaa591867ecc956"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/cfa81ea1d35294d64adb9c68aa4cb9e92400e53f",
- "reference": "cfa81ea1d35294d64adb9c68aa4cb9e92400e53f",
+ "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/f60565f8c0566a31acf06884cdaa591867ecc956",
+ "reference": "f60565f8c0566a31acf06884cdaa591867ecc956",
"shasum": ""
},
"require": {
@@ -3656,22 +4194,22 @@
"support": {
"email": "cweiske@cweiske.de",
"issues": "https://github.com/cweiske/jsonmapper/issues",
- "source": "https://github.com/cweiske/jsonmapper/tree/v4.1.0"
+ "source": "https://github.com/cweiske/jsonmapper/tree/v4.2.0"
},
- "time": "2022-12-08T20:46:14+00:00"
+ "time": "2023-04-09T17:37:40+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v4.15.2",
+ "version": "v4.18.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
+ "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
- "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
+ "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
"shasum": ""
},
"require": {
@@ -3712,22 +4250,22 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
},
- "time": "2022-11-12T15:38:23+00:00"
+ "time": "2023-12-10T21:03:43+00:00"
},
{
"name": "nikolaposa/version",
- "version": "4.1.0",
+ "version": "4.1.1",
"source": {
"type": "git",
"url": "https://github.com/nikolaposa/version.git",
- "reference": "0aada6b801962c084ae465f7569397dc2186b6a7"
+ "reference": "f6bdd64be914940529b843a67335d6386d980cec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikolaposa/version/zipball/0aada6b801962c084ae465f7569397dc2186b6a7",
- "reference": "0aada6b801962c084ae465f7569397dc2186b6a7",
+ "url": "https://api.github.com/repos/nikolaposa/version/zipball/f6bdd64be914940529b843a67335d6386d980cec",
+ "reference": "f6bdd64be914940529b843a67335d6386d980cec",
"shasum": ""
},
"require": {
@@ -3744,7 +4282,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0.x-dev"
+ "dev-master": "4.1.x-dev"
}
},
"autoload": {
@@ -3773,40 +4311,46 @@
],
"support": {
"issues": "https://github.com/nikolaposa/version/issues",
- "source": "https://github.com/nikolaposa/version/tree/4.1.0"
+ "source": "https://github.com/nikolaposa/version/tree/4.1.1"
},
- "time": "2020-12-12T10:47:10+00:00"
+ "time": "2023-08-04T17:13:40+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v5.11.0",
+ "version": "v7.10.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
- "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
"shasum": ""
},
"require": {
- "facade/ignition-contracts": "^1.0",
- "filp/whoops": "^2.14.3",
- "php": "^7.3 || ^8.0",
- "symfony/console": "^5.0"
+ "filp/whoops": "^2.15.3",
+ "nunomaduro/termwind": "^1.15.1",
+ "php": "^8.1.0",
+ "symfony/console": "^6.3.4"
+ },
+ "conflict": {
+ "laravel/framework": ">=11.0.0"
},
"require-dev": {
- "brianium/paratest": "^6.1",
- "fideloper/proxy": "^4.4.1",
- "fruitcake/laravel-cors": "^2.0.3",
- "laravel/framework": "8.x-dev",
- "nunomaduro/larastan": "^0.6.2",
- "nunomaduro/mock-final-classes": "^1.0",
- "orchestra/testbench": "^6.0",
- "phpstan/phpstan": "^0.12.64",
- "phpunit/phpunit": "^9.5.0"
+ "brianium/paratest": "^7.3.0",
+ "laravel/framework": "^10.28.0",
+ "laravel/pint": "^1.13.3",
+ "laravel/sail": "^1.25.0",
+ "laravel/sanctum": "^3.3.1",
+ "laravel/tinker": "^2.8.2",
+ "nunomaduro/larastan": "^2.6.4",
+ "orchestra/testbench-core": "^8.13.0",
+ "pestphp/pest": "^2.23.2",
+ "phpunit/phpunit": "^10.4.1",
+ "sebastian/environment": "^6.0.1",
+ "spatie/laravel-ignition": "^2.3.1"
},
"type": "library",
"extra": {
@@ -3817,6 +4361,9 @@
}
},
"autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
"psr-4": {
"NunoMaduro\\Collision\\": "src/"
}
@@ -3862,20 +4409,168 @@
"type": "patreon"
}
],
- "time": "2022-01-10T16:22:52+00:00"
+ "time": "2023-10-11T15:45:01+00:00"
+ },
+ {
+ "name": "nunomaduro/termwind",
+ "version": "v1.15.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": "^8.0",
+ "symfony/console": "^5.3.0|^6.0.0"
+ },
+ "require-dev": {
+ "ergebnis/phpstan-rules": "^1.0.",
+ "illuminate/console": "^8.0|^9.0",
+ "illuminate/support": "^8.0|^9.0",
+ "laravel/pint": "^1.0.0",
+ "pestphp/pest": "^1.21.0",
+ "pestphp/pest-plugin-mock": "^1.0",
+ "phpstan/phpstan": "^1.4.6",
+ "phpstan/phpstan-strict-rules": "^1.1.0",
+ "symfony/var-dumper": "^5.2.7|^6.0.0",
+ "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Termwind\\Laravel\\TermwindServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php"
+ ],
+ "psr-4": {
+ "Termwind\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Its like Tailwind CSS, but for the console.",
+ "keywords": [
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/xiCO2k",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-08T01:06:31+00:00"
+ },
+ {
+ "name": "ocramius/package-versions",
+ "version": "2.8.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Ocramius/PackageVersions.git",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.2.0",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "replace": {
+ "composer/package-versions-deprecated": "*"
+ },
+ "require-dev": {
+ "composer/composer": "^2.6.3",
+ "doctrine/coding-standard": "^12.0.0",
+ "ext-zip": "^1.15.0",
+ "phpunit/phpunit": "^9.6.12",
+ "roave/infection-static-analysis-plugin": "^1.33",
+ "vimeo/psalm": "^5.15.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PackageVersions\\": "src/PackageVersions"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Provides efficient querying for installed package versions (no runtime IO)",
+ "support": {
+ "issues": "https://github.com/Ocramius/PackageVersions/issues",
+ "source": "https://github.com/Ocramius/PackageVersions/tree/2.8.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Ocramius",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ocramius/package-versions",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-09-15T11:02:59+00:00"
},
{
"name": "ondram/ci-detector",
- "version": "3.5.1",
+ "version": "4.1.0",
"source": {
"type": "git",
"url": "https://github.com/OndraM/ci-detector.git",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd"
+ "reference": "8a4b664e916df82ff26a44709942dfd593fa6f30"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/594e61252843b68998bddd48078c5058fe9028bd",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd",
+ "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8a4b664e916df82ff26a44709942dfd593fa6f30",
+ "reference": "8a4b664e916df82ff26a44709942dfd593fa6f30",
"shasum": ""
},
"require": {
@@ -3883,11 +4578,11 @@
},
"require-dev": {
"ergebnis/composer-normalize": "^2.2",
- "lmc/coding-standard": "^1.3 || ^2.0",
- "php-parallel-lint/php-parallel-lint": "^1.1",
- "phpstan/extension-installer": "^1.0.3",
- "phpstan/phpstan": "^0.12.0",
- "phpstan/phpstan-phpunit": "^0.12.1",
+ "lmc/coding-standard": "^1.3 || ^2.1",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0.5",
+ "phpstan/phpstan": "^0.12.58",
+ "phpstan/phpstan-phpunit": "^0.12.16",
"phpunit/phpunit": "^7.1 || ^8.0 || ^9.0"
},
"type": "library",
@@ -3915,6 +4610,9 @@
"appveyor",
"aws",
"aws codebuild",
+ "azure",
+ "azure devops",
+ "azure pipelines",
"bamboo",
"bitbucket",
"buddy",
@@ -3922,85 +4620,35 @@
"codebuild",
"continuous integration",
"continuousphp",
+ "devops",
"drone",
"github",
"gitlab",
"interface",
"jenkins",
+ "pipelines",
+ "sourcehut",
"teamcity",
"travis"
],
"support": {
"issues": "https://github.com/OndraM/ci-detector/issues",
- "source": "https://github.com/OndraM/ci-detector/tree/main"
- },
- "time": "2020-09-04T11:21:14+00:00"
- },
- {
- "name": "openlss/lib-array2xml",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nullivex/lib-array2xml.git",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "LSS": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Bryan Tong",
- "email": "bryan@nullivex.com",
- "homepage": "https://www.nullivex.com"
- },
- {
- "name": "Tony Butler",
- "email": "spudz76@gmail.com",
- "homepage": "https://www.nullivex.com"
- }
- ],
- "description": "Array2XML conversion library credit to lalit.org",
- "homepage": "https://www.nullivex.com",
- "keywords": [
- "array",
- "array conversion",
- "xml",
- "xml conversion"
- ],
- "support": {
- "issues": "https://github.com/nullivex/lib-array2xml/issues",
- "source": "https://github.com/nullivex/lib-array2xml/tree/master"
+ "source": "https://github.com/OndraM/ci-detector/tree/4.1.0"
},
- "time": "2019-03-29T20:06:56+00:00"
+ "time": "2021-04-14T09:16:52+00:00"
},
{
"name": "orklah/psalm-insane-comparison",
- "version": "v1.0.3",
+ "version": "v2.2.0",
"source": {
"type": "git",
"url": "https://github.com/orklah/psalm-insane-comparison.git",
- "reference": "770b9b5273afd16a25243c5895b6949c30dbaaea"
+ "reference": "f0e44bf31678d189c8ee4556598d0ad6e3f853c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orklah/psalm-insane-comparison/zipball/770b9b5273afd16a25243c5895b6949c30dbaaea",
- "reference": "770b9b5273afd16a25243c5895b6949c30dbaaea",
+ "url": "https://api.github.com/repos/orklah/psalm-insane-comparison/zipball/f0e44bf31678d189c8ee4556598d0ad6e3f853c9",
+ "reference": "f0e44bf31678d189c8ee4556598d0ad6e3f853c9",
"shasum": ""
},
"require": {
@@ -4009,7 +4657,7 @@
},
"require-dev": {
"nikic/php-parser": "^4.0",
- "vimeo/psalm": "^4.0"
+ "vimeo/psalm": "^4.0|^5"
},
"type": "psalm-plugin",
"extra": {
@@ -4039,36 +4687,36 @@
"description": "Detects possible insane comparison (\"string\" == 0) to help migrate to PHP8",
"support": {
"issues": "https://github.com/orklah/psalm-insane-comparison/issues",
- "source": "https://github.com/orklah/psalm-insane-comparison/tree/v1.0.3"
+ "source": "https://github.com/orklah/psalm-insane-comparison/tree/v2.2.0"
},
- "time": "2021-01-12T17:01:14+00:00"
+ "time": "2023-01-06T09:06:11+00:00"
},
{
"name": "pepakriz/phpstan-exception-rules",
- "version": "v0.11.7",
+ "version": "v0.12.0",
"source": {
"type": "git",
"url": "https://github.com/pepakriz/phpstan-exception-rules.git",
- "reference": "0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4"
+ "reference": "c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pepakriz/phpstan-exception-rules/zipball/0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4",
- "reference": "0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4",
+ "url": "https://api.github.com/repos/pepakriz/phpstan-exception-rules/zipball/c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd",
+ "reference": "c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.4",
+ "nikic/php-parser": "^4.13",
"php": ">=7.1",
- "phpstan/phpstan": "^0.12.26"
+ "phpstan/phpstan": "^1.0"
},
"require-dev": {
"nette/utils": "^3.0",
"php-parallel-lint/php-console-highlighter": "^0.4.0",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
- "phpstan/phpstan-nette": "^0.12.0",
- "phpstan/phpstan-phpunit": "^0.12.0",
- "phpstan/phpstan-strict-rules": "^0.12.0",
+ "phpstan/phpstan-nette": "^1.0",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^7.5.6 || ^9.4.2",
"slevomat/coding-standard": "^6.4.1",
"squizlabs/php_codesniffer": "~3.5.2"
@@ -4076,7 +4724,7 @@
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.11-dev"
+ "dev-master": "0.12-dev"
},
"phpstan": {
"includes": [
@@ -4096,9 +4744,9 @@
"description": "Exception rules for PHPStan",
"support": {
"issues": "https://github.com/pepakriz/phpstan-exception-rules/issues",
- "source": "https://github.com/pepakriz/phpstan-exception-rules/tree/v0.11.7"
+ "source": "https://github.com/pepakriz/phpstan-exception-rules/tree/v0.12.0"
},
- "time": "2021-05-05T06:07:22+00:00"
+ "time": "2021-11-07T19:03:56+00:00"
},
{
"name": "phar-io/manifest",
@@ -4213,28 +4861,28 @@
},
{
"name": "php-coveralls/php-coveralls",
- "version": "v2.5.3",
+ "version": "v2.7.0",
"source": {
"type": "git",
"url": "https://github.com/php-coveralls/php-coveralls.git",
- "reference": "9d8243bbf0e053333692857c98fab7cfba0d60a9"
+ "reference": "b36fa4394e519dafaddc04ae03976bc65a25ba15"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/9d8243bbf0e053333692857c98fab7cfba0d60a9",
- "reference": "9d8243bbf0e053333692857c98fab7cfba0d60a9",
+ "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/b36fa4394e519dafaddc04ae03976bc65a25ba15",
+ "reference": "b36fa4394e519dafaddc04ae03976bc65a25ba15",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
- "php": "^5.5 || ^7.0 || ^8.0",
+ "php": "^7.0 || ^8.0",
"psr/log": "^1.0 || ^2.0",
- "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+ "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0 || >=8.0 <8.5.29 || >=9.0 <9.5.23",
@@ -4290,41 +4938,40 @@
],
"support": {
"issues": "https://github.com/php-coveralls/php-coveralls/issues",
- "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.5.3"
+ "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.7.0"
},
- "time": "2022-09-12T20:47:09+00:00"
+ "time": "2023-11-22T10:21:01+00:00"
},
{
"name": "php-parallel-lint/php-console-color",
- "version": "v0.3",
+ "version": "v1.0.1",
"source": {
"type": "git",
"url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
- "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
+ "reference": "7adfefd530aa2d7570ba87100a99e2483a543b88"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/b6af326b2088f1ad3b264696c9fd590ec395b49e",
- "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/7adfefd530aa2d7570ba87100a99e2483a543b88",
+ "reference": "7adfefd530aa2d7570ba87100a99e2483a543b88",
"shasum": ""
},
"require": {
- "php": ">=5.4.0"
+ "php": ">=5.3.2"
},
"replace": {
"jakub-onderka/php-console-color": "*"
},
"require-dev": {
- "php-parallel-lint/php-code-style": "1.0",
- "php-parallel-lint/php-parallel-lint": "1.0",
+ "php-parallel-lint/php-code-style": "^2.0",
+ "php-parallel-lint/php-parallel-lint": "^1.0",
"php-parallel-lint/php-var-dump-check": "0.*",
- "phpunit/phpunit": "~4.3",
- "squizlabs/php_codesniffer": "1.*"
+ "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "JakubOnderka\\PhpConsoleColor\\": "src/"
+ "PHP_Parallel_Lint\\PhpConsoleColor\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4337,45 +4984,45 @@
"email": "jakub.onderka@gmail.com"
}
],
+ "description": "Simple library for creating colored console ouput.",
"support": {
"issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
+ "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/v1.0.1"
},
- "time": "2020-05-14T05:47:14+00:00"
+ "time": "2021-12-25T06:49:29+00:00"
},
{
"name": "php-parallel-lint/php-console-highlighter",
- "version": "v0.5",
+ "version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
- "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
+ "reference": "5b4803384d3303cf8e84141039ef56c8a123138d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
- "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/5b4803384d3303cf8e84141039ef56c8a123138d",
+ "reference": "5b4803384d3303cf8e84141039ef56c8a123138d",
"shasum": ""
},
"require": {
"ext-tokenizer": "*",
- "php": ">=5.4.0",
- "php-parallel-lint/php-console-color": "~0.2"
+ "php": ">=5.3.2",
+ "php-parallel-lint/php-console-color": "^1.0.1"
},
"replace": {
"jakub-onderka/php-console-highlighter": "*"
},
"require-dev": {
- "php-parallel-lint/php-code-style": "~1.0",
- "php-parallel-lint/php-parallel-lint": "~1.0",
- "php-parallel-lint/php-var-dump-check": "~0.1",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
+ "php-parallel-lint/php-code-style": "^2.0",
+ "php-parallel-lint/php-parallel-lint": "^1.0",
+ "php-parallel-lint/php-var-dump-check": "0.*",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
+ "PHP_Parallel_Lint\\PhpConsoleHighlighter\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4392,9 +5039,9 @@
"description": "Highlight PHP code in terminal",
"support": {
"issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
+ "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/v1.0.0"
},
- "time": "2020-05-13T07:37:49+00:00"
+ "time": "2022-02-18T08:23:19+00:00"
},
{
"name": "php-parallel-lint/php-parallel-lint",
@@ -4453,6 +5100,60 @@
},
"time": "2022-02-21T12:50:22+00:00"
},
+ {
+ "name": "php-standard-library/psalm-plugin",
+ "version": "2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-standard-library/psalm-plugin.git",
+ "reference": "bf6d560ae498966150bc66a42e02744b0ee242c5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-standard-library/psalm-plugin/zipball/bf6d560ae498966150bc66a42e02744b0ee242c5",
+ "reference": "bf6d560ae498966150bc66a42e02744b0ee242c5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1",
+ "vimeo/psalm": ">=5.16"
+ },
+ "conflict": {
+ "azjezz/psl": "<2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.18",
+ "roave/security-advisories": "dev-master",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "type": "psalm-plugin",
+ "extra": {
+ "psalm": {
+ "pluginClass": "Psl\\Psalm\\Plugin"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psl\\Psalm\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "azjezz",
+ "email": "azjezz@protonmail.com"
+ }
+ ],
+ "description": "Psalm plugin for the PHP Standard Library",
+ "support": {
+ "issues": "https://github.com/php-standard-library/psalm-plugin/issues",
+ "source": "https://github.com/php-standard-library/psalm-plugin/tree/2.3.0"
+ },
+ "time": "2023-11-28T12:22:48+00:00"
+ },
{
"name": "phpdocumentor/reflection-common",
"version": "2.2.0",
@@ -4565,24 +5266,27 @@
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.6.2",
+ "version": "1.7.3",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d"
+ "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
- "reference": "48f445a408c131e38cab1c235aa6d2bb7a0bb20d",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
+ "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
"shasum": ""
},
"require": {
+ "doctrine/deprecations": "^1.0",
"php": "^7.4 || ^8.0",
- "phpdocumentor/reflection-common": "^2.0"
+ "phpdocumentor/reflection-common": "^2.0",
+ "phpstan/phpdoc-parser": "^1.13"
},
"require-dev": {
"ext-tokenizer": "*",
+ "phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
@@ -4614,34 +5318,35 @@
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.2"
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
},
- "time": "2022-10-14T12:47:21+00:00"
+ "time": "2023-08-12T11:01:26+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "v1.16.0",
+ "version": "v1.18.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "be8cac52a0827776ff9ccda8c381ac5b71aeb359"
+ "reference": "d4f454f7e1193933f04e6500de3e79191648ed0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be8cac52a0827776ff9ccda8c381ac5b71aeb359",
- "reference": "be8cac52a0827776ff9ccda8c381ac5b71aeb359",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d4f454f7e1193933f04e6500de3e79191648ed0c",
+ "reference": "d4f454f7e1193933f04e6500de3e79191648ed0c",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.2",
- "php": "^7.2 || 8.0.* || 8.1.* || 8.2.*",
+ "doctrine/instantiator": "^1.2 || ^2.0",
+ "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*",
"phpdocumentor/reflection-docblock": "^5.2",
- "sebastian/comparator": "^3.0 || ^4.0",
- "sebastian/recursion-context": "^3.0 || ^4.0"
+ "sebastian/comparator": "^3.0 || ^4.0 || ^5.0",
+ "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpspec/phpspec": "^6.0 || ^7.0",
- "phpunit/phpunit": "^8.0 || ^9.0"
+ "phpstan/phpstan": "^1.9",
+ "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0"
},
"type": "library",
"extra": {
@@ -4674,6 +5379,7 @@
"keywords": [
"Double",
"Dummy",
+ "dev",
"fake",
"mock",
"spy",
@@ -4681,28 +5387,28 @@
],
"support": {
"issues": "https://github.com/phpspec/prophecy/issues",
- "source": "https://github.com/phpspec/prophecy/tree/v1.16.0"
+ "source": "https://github.com/phpspec/prophecy/tree/v1.18.0"
},
- "time": "2022-11-29T15:06:56+00:00"
+ "time": "2023-12-07T16:22:33+00:00"
},
{
"name": "phpspec/prophecy-phpunit",
- "version": "v2.0.1",
+ "version": "v2.1.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy-phpunit.git",
- "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177"
+ "reference": "29f8114c2c319a4308e6b070902211e062efa392"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/2d7a9df55f257d2cba9b1d0c0963a54960657177",
- "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177",
+ "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/29f8114c2c319a4308e6b070902211e062efa392",
+ "reference": "29f8114c2c319a4308e6b070902211e062efa392",
"shasum": ""
},
"require": {
"php": "^7.3 || ^8",
- "phpspec/prophecy": "^1.3",
- "phpunit/phpunit": "^9.1"
+ "phpspec/prophecy": "^1.18",
+ "phpunit/phpunit": "^9.1 || ^10.1"
},
"type": "library",
"extra": {
@@ -4733,28 +5439,30 @@
],
"support": {
"issues": "https://github.com/phpspec/prophecy-phpunit/issues",
- "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.1"
+ "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.1.0"
},
- "time": "2020-07-09T08:33:42+00:00"
+ "time": "2023-12-08T12:48:02+00:00"
},
{
"name": "phpstan/phpdoc-parser",
- "version": "1.15.3",
+ "version": "1.24.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "61800f71a5526081d1b5633766aa88341f1ade76"
+ "reference": "6bd0c26f3786cd9b7c359675cb789e35a8e07496"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/61800f71a5526081d1b5633766aa88341f1ade76",
- "reference": "61800f71a5526081d1b5633766aa88341f1ade76",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6bd0c26f3786cd9b7c359675cb789e35a8e07496",
+ "reference": "6bd0c26f3786cd9b7c359675cb789e35a8e07496",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
+ "doctrine/annotations": "^2.0",
+ "nikic/php-parser": "^4.15",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.5",
@@ -4778,26 +5486,26 @@
"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.15.3"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.4"
},
- "time": "2022-12-20T20:56:55+00:00"
+ "time": "2023-11-26T18:29:22+00:00"
},
{
"name": "phpstan/phpstan",
- "version": "0.12.100",
+ "version": "1.10.49",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "48236ddf823547081b2b153d1cd2994b784328c3"
+ "reference": "9367ba4c4f6ad53e9efb594d74a8941563caccf6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/48236ddf823547081b2b153d1cd2994b784328c3",
- "reference": "48236ddf823547081b2b153d1cd2994b784328c3",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9367ba4c4f6ad53e9efb594d74a8941563caccf6",
+ "reference": "9367ba4c4f6ad53e9efb594d74a8941563caccf6",
"shasum": ""
},
"require": {
- "php": "^7.1|^8.0"
+ "php": "^7.2|^8.0"
},
"conflict": {
"phpstan/phpstan-shim": "*"
@@ -4807,11 +5515,6 @@
"phpstan.phar"
],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- }
- },
"autoload": {
"files": [
"bootstrap.php"
@@ -4822,9 +5525,16 @@
"MIT"
],
"description": "PHPStan - PHP Static Analysis Tool",
+ "keywords": [
+ "dev",
+ "static analysis"
+ ],
"support": {
+ "docs": "https://phpstan.org/user-guide/getting-started",
+ "forum": "https://github.com/phpstan/phpstan/discussions",
"issues": "https://github.com/phpstan/phpstan/issues",
- "source": "https://github.com/phpstan/phpstan/tree/0.12.100"
+ "security": "https://github.com/phpstan/phpstan/security/policy",
+ "source": "https://github.com/phpstan/phpstan-src"
},
"funding": [
{
@@ -4840,37 +5550,34 @@
"type": "tidelift"
}
],
- "time": "2022-11-01T09:52:08+00:00"
+ "time": "2023-12-12T10:05:12+00:00"
},
{
"name": "phpstan/phpstan-deprecation-rules",
- "version": "0.12.6",
+ "version": "1.1.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
- "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb"
+ "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
- "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
+ "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
+ "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.60"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10.3"
},
"require-dev": {
- "phing/phing": "^2.16.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpunit/phpunit": "^7.5.20"
+ "phpstan/phpstan-php-parser": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^9.5"
},
"type": "phpstan-extension",
"extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
"phpstan": {
"includes": [
"rules.neon"
@@ -4889,40 +5596,38 @@
"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/0.12.6"
+ "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4"
},
- "time": "2020-12-13T10:20:54+00:00"
+ "time": "2023-08-05T09:02:04+00:00"
},
{
- "name": "phpstan/phpstan-php-parser",
- "version": "0.12.3",
+ "name": "phpstan/phpstan-mockery",
+ "version": "1.1.1",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-php-parser.git",
- "reference": "e140bc57f3bd5e8a4d45155556618a43736592e9"
+ "url": "https://github.com/phpstan/phpstan-mockery.git",
+ "reference": "6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-php-parser/zipball/e140bc57f3bd5e8a4d45155556618a43736592e9",
- "reference": "e140bc57f3bd5e8a4d45155556618a43736592e9",
+ "url": "https://api.github.com/repos/phpstan/phpstan-mockery/zipball/6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6",
+ "reference": "6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.60"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10"
},
"require-dev": {
- "phing/phing": "^2.16.3",
+ "mockery/mockery": "^1.2.4",
+ "nikic/php-parser": "^4.13.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12.16",
- "phpstan/phpstan-strict-rules": "^0.12.6",
- "phpunit/phpunit": "^7.5.20"
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5"
},
"type": "phpstan-extension",
"extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
"phpstan": {
"includes": [
"extension.neon"
@@ -4938,49 +5643,45 @@
"license": [
"MIT"
],
- "description": "PHP-Parser extensions for PHPStan",
+ "description": "PHPStan Mockery extension",
"support": {
- "issues": "https://github.com/phpstan/phpstan-php-parser/issues",
- "source": "https://github.com/phpstan/phpstan-php-parser/tree/0.12.3"
+ "issues": "https://github.com/phpstan/phpstan-mockery/issues",
+ "source": "https://github.com/phpstan/phpstan-mockery/tree/1.1.1"
},
- "abandoned": true,
- "time": "2020-12-12T21:05:25+00:00"
+ "time": "2023-02-18T13:54:03+00:00"
},
{
- "name": "phpstan/phpstan-phpunit",
- "version": "0.12.22",
+ "name": "phpstan/phpstan-php-parser",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-phpunit.git",
- "reference": "7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc"
+ "url": "https://github.com/phpstan/phpstan-php-parser.git",
+ "reference": "1c7670dd92da864b5d019f22d9f512a6ae18b78e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc",
- "reference": "7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc",
+ "url": "https://api.github.com/repos/phpstan/phpstan-php-parser/zipball/1c7670dd92da864b5d019f22d9f512a6ae18b78e",
+ "reference": "1c7670dd92da864b5d019f22d9f512a6ae18b78e",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.92"
- },
- "conflict": {
- "phpunit/phpunit": "<7.0"
+ "phpstan/phpstan": "^1.3"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-strict-rules": "^0.12.6",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5"
},
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.12-dev"
+ "dev-master": "1.1-dev"
},
"phpstan": {
"includes": [
- "extension.neon",
- "rules.neon"
+ "extension.neon"
]
}
},
@@ -4993,43 +5694,46 @@
"license": [
"MIT"
],
- "description": "PHPUnit extensions and rules for PHPStan",
+ "description": "PHP-Parser extensions for PHPStan",
"support": {
- "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
- "source": "https://github.com/phpstan/phpstan-phpunit/tree/0.12.22"
+ "issues": "https://github.com/phpstan/phpstan-php-parser/issues",
+ "source": "https://github.com/phpstan/phpstan-php-parser/tree/1.1.0"
},
- "time": "2021-08-12T10:53:43+00:00"
+ "abandoned": true,
+ "time": "2021-12-16T19:43:32+00:00"
},
{
- "name": "phpstan/phpstan-strict-rules",
- "version": "0.12.11",
+ "name": "phpstan/phpstan-phpunit",
+ "version": "1.3.15",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-strict-rules.git",
- "reference": "2b72e8e17d2034145f239126e876e5fb659675e2"
+ "url": "https://github.com/phpstan/phpstan-phpunit.git",
+ "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/2b72e8e17d2034145f239126e876e5fb659675e2",
- "reference": "2b72e8e17d2034145f239126e876e5fb659675e2",
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/70ecacc64fe8090d8d2a33db5a51fe8e88acd93a",
+ "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.96"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.0"
},
"require-dev": {
+ "nikic/php-parser": "^4.13.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12.16",
+ "phpstan/phpstan-strict-rules": "^1.5.1",
"phpunit/phpunit": "^9.5"
},
"type": "phpstan-extension",
"extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
"phpstan": {
"includes": [
+ "extension.neon",
"rules.neon"
]
}
@@ -5043,32 +5747,81 @@
"license": [
"MIT"
],
- "description": "Extra strict and opinionated rules for PHPStan",
+ "description": "PHPUnit extensions and rules for PHPStan",
"support": {
- "issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
- "source": "https://github.com/phpstan/phpstan-strict-rules/tree/0.12.11"
+ "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.15"
},
- "time": "2021-08-21T11:36:27+00:00"
+ "time": "2023-10-09T18:58:39+00:00"
},
{
- "name": "phpunit/php-code-coverage",
- "version": "9.2.23",
+ "name": "phpstan/phpstan-strict-rules",
+ "version": "1.5.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan-strict-rules.git",
+ "reference": "7a50e9662ee9f3942e4aaaf3d603653f60282542"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/7a50e9662ee9f3942e4aaaf3d603653f60282542",
+ "reference": "7a50e9662ee9f3942e4aaaf3d603653f60282542",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10.34"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^4.13.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "phpstan-extension",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "rules.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "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.2"
+ },
+ "time": "2023-10-30T14:35:06+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "9.2.29",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c"
+ "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
- "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76",
+ "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
- "nikic/php-parser": "^4.14",
+ "nikic/php-parser": "^4.15",
"php": ">=7.3",
"phpunit/php-file-iterator": "^3.0.3",
"phpunit/php-text-template": "^2.0.2",
@@ -5083,8 +5836,8 @@
"phpunit/phpunit": "^9.3"
},
"suggest": {
- "ext-pcov": "*",
- "ext-xdebug": "*"
+ "ext-pcov": "PHP extension that provides line coverage",
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
},
"type": "library",
"extra": {
@@ -5117,7 +5870,8 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.23"
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
},
"funding": [
{
@@ -5125,7 +5879,7 @@
"type": "github"
}
],
- "time": "2022-12-28T12:41:10+00:00"
+ "time": "2023-09-19T04:57:46+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -5370,20 +6124,20 @@
},
{
"name": "phpunit/phpunit",
- "version": "9.5.27",
+ "version": "9.6.15",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
+ "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
- "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
+ "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.3.1",
+ "doctrine/instantiator": "^1.3.1 || ^2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
@@ -5394,7 +6148,7 @@
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2",
"php": ">=7.3",
- "phpunit/php-code-coverage": "^9.2.13",
+ "phpunit/php-code-coverage": "^9.2.28",
"phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1",
"phpunit/php-text-template": "^2.0.3",
@@ -5412,8 +6166,8 @@
"sebastian/version": "^3.0.2"
},
"suggest": {
- "ext-soap": "*",
- "ext-xdebug": "*"
+ "ext-soap": "To be able to generate mocks based on WSDL files",
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
},
"bin": [
"phpunit"
@@ -5421,7 +6175,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "9.5-dev"
+ "dev-master": "9.6-dev"
}
},
"autoload": {
@@ -5452,7 +6206,8 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
},
"funding": [
{
@@ -5468,20 +6223,20 @@
"type": "tidelift"
}
],
- "time": "2022-12-09T07:31:23+00:00"
+ "time": "2023-12-01T16:55:19+00:00"
},
{
"name": "psalm/plugin-phpunit",
- "version": "0.16.1",
+ "version": "0.18.4",
"source": {
"type": "git",
"url": "https://github.com/psalm/psalm-plugin-phpunit.git",
- "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24"
+ "reference": "e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/5dd3be04f37a857d52880ef6af2524a441dfef24",
- "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc",
+ "reference": "e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc",
"shasum": ""
},
"require": {
@@ -5489,7 +6244,7 @@
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"ext-simplexml": "*",
"php": "^7.1 || ^8.0",
- "vimeo/psalm": "dev-master || dev-4.x || ^4.5"
+ "vimeo/psalm": "dev-master || dev-4.x || ^4.7.1 || ^5@beta || ^5.0"
},
"conflict": {
"phpunit/phpunit": "<7.5"
@@ -5526,28 +6281,33 @@
"description": "Psalm plugin for PHPUnit",
"support": {
"issues": "https://github.com/psalm/psalm-plugin-phpunit/issues",
- "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.16.1"
+ "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.18.4"
},
- "time": "2021-06-18T23:56:46+00:00"
+ "time": "2022-12-03T07:47:07+00:00"
},
{
"name": "psr/container",
- "version": "1.1.2",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/php-fig/container.git",
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
"shasum": ""
},
"require": {
"php": ">=7.4.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Psr\\Container\\": "src/"
@@ -5574,27 +6334,27 @@
],
"support": {
"issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/1.1.2"
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
},
- "time": "2021-11-05T16:50:12+00:00"
+ "time": "2021-11-05T16:47:00+00:00"
},
{
"name": "psr/http-client",
- "version": "1.0.1",
+ "version": "1.0.3",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-client.git",
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
"shasum": ""
},
"require": {
"php": "^7.0 || ^8.0",
- "psr/http-message": "^1.0"
+ "psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
"extra": {
@@ -5614,7 +6374,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP clients",
@@ -5626,9 +6386,9 @@
"psr-18"
],
"support": {
- "source": "https://github.com/php-fig/http-client/tree/master"
+ "source": "https://github.com/php-fig/http-client"
},
- "time": "2020-06-29T06:28:15+00:00"
+ "time": "2023-09-23T14:17:50+00:00"
},
{
"name": "psr/http-factory",
@@ -5687,16 +6447,16 @@
},
{
"name": "psr/http-message",
- "version": "1.1",
+ "version": "2.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
@@ -5705,7 +6465,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -5720,7 +6480,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP messages",
@@ -5734,36 +6494,36 @@
"response"
],
"support": {
- "source": "https://github.com/php-fig/http-message/tree/1.1"
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
},
- "time": "2023-04-04T09:50:52+00:00"
+ "time": "2023-04-04T09:54:51+00:00"
},
{
"name": "psr/log",
- "version": "1.1.4",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
+ "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
+ "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": ">=8.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Psr\\Log\\": "Psr/Log/"
+ "Psr\\Log\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -5784,9 +6544,9 @@
"psr-3"
],
"support": {
- "source": "https://github.com/php-fig/log/tree/1.1.4"
+ "source": "https://github.com/php-fig/log/tree/2.0.0"
},
- "time": "2021-05-03T11:20:27+00:00"
+ "time": "2021-07-14T16:41:46+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -5832,39 +6592,191 @@
},
"time": "2019-03-08T08:55:37+00:00"
},
+ {
+ "name": "react/async",
+ "version": "v4.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/async.git",
+ "reference": "7c3738e837b38c9513af44398b8c1b2b1be1fbbc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/async/zipball/7c3738e837b38c9513af44398b8c1b2b1be1fbbc",
+ "reference": "7c3738e837b38c9513af44398b8c1b2b1be1fbbc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3.0 || ^2.8 || ^1.2.1"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "1.10.39",
+ "phpunit/phpunit": "^9.6"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "React\\Async\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Async utilities and fibers for ReactPHP",
+ "keywords": [
+ "async",
+ "reactphp"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/async/issues",
+ "source": "https://github.com/reactphp/async/tree/v4.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-22T16:43:46+00:00"
+ },
+ {
+ "name": "revolt/event-loop",
+ "version": "v1.0.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/revoltphp/event-loop.git",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/25de49af7223ba039f64da4ae9a28ec2d10d0254",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "ext-json": "*",
+ "jetbrains/phpstorm-stubs": "^2019.3",
+ "phpunit/phpunit": "^9",
+ "psalm/phar": "^5.15"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Revolt\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Aaron Piotrowski",
+ "email": "aaron@trowski.com"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "ceesjank@gmail.com"
+ },
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering"
+ },
+ {
+ "name": "Niklas Keller",
+ "email": "me@kelunik.com"
+ }
+ ],
+ "description": "Rock-solid event loop for concurrent PHP applications.",
+ "keywords": [
+ "async",
+ "asynchronous",
+ "concurrency",
+ "event",
+ "event-loop",
+ "non-blocking",
+ "scheduler"
+ ],
+ "support": {
+ "issues": "https://github.com/revoltphp/event-loop/issues",
+ "source": "https://github.com/revoltphp/event-loop/tree/v1.0.6"
+ },
+ "time": "2023-11-30T05:34:44+00:00"
+ },
{
"name": "roave/backward-compatibility-check",
- "version": "5.0.0",
+ "version": "8.4.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/BackwardCompatibilityCheck.git",
- "reference": "15611feaa64b3b9fb8dbac3425e4d605c1f35c4f"
+ "reference": "9b45bc3431f3dc651a8f2d6e199ca0d1e60a9978"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/BackwardCompatibilityCheck/zipball/15611feaa64b3b9fb8dbac3425e4d605c1f35c4f",
- "reference": "15611feaa64b3b9fb8dbac3425e4d605c1f35c4f",
+ "url": "https://api.github.com/repos/Roave/BackwardCompatibilityCheck/zipball/9b45bc3431f3dc651a8f2d6e199ca0d1e60a9978",
+ "reference": "9b45bc3431f3dc651a8f2d6e199ca0d1e60a9978",
"shasum": ""
},
"require": {
- "composer/composer": "^1.10.7",
+ "azjezz/psl": "^2.3.1",
+ "composer/composer": "^2.5.1",
"ext-json": "*",
- "nikolaposa/version": "^4.0.0",
- "ocramius/package-versions": "^1.8.0",
- "php": "^7.4.7",
- "roave/better-reflection": "^4.6.1",
- "symfony/console": "^5.1.2",
- "symfony/process": "^5.1.2",
- "thecodingmachine/safe": "^1.1.1",
- "webmozart/assert": "^1.9.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^8.0.0",
- "infection/infection": "^0.16.3",
- "phpunit/phpunit": "^9.2.5",
+ "nikic/php-parser": "^4.15.3",
+ "nikolaposa/version": "^4.1.0",
+ "ocramius/package-versions": "^2.7.0",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "roave/better-reflection": "^6.5.0",
+ "symfony/console": "^6.2.3"
+ },
+ "conflict": {
+ "revolt/event-loop": "<0.2.5",
+ "symfony/process": "<5.3.7"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12.0.0",
+ "php-standard-library/psalm-plugin": "^2.2.1",
+ "phpunit/phpunit": "^9.5.27",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "roave/infection-static-analysis-plugin": "^1.27.0",
"roave/security-advisories": "dev-master",
- "squizlabs/php_codesniffer": "^3.5.5",
- "vimeo/psalm": "^3.11.6"
+ "squizlabs/php_codesniffer": "^3.7.1",
+ "vimeo/psalm": "^5.4.0"
},
"bin": [
"bin/roave-backward-compatibility-check"
@@ -5892,50 +6804,46 @@
"description": "Tool to compare two revisions of a public API to check for BC breaks",
"support": {
"issues": "https://github.com/Roave/BackwardCompatibilityCheck/issues",
- "source": "https://github.com/Roave/BackwardCompatibilityCheck/tree/master"
+ "source": "https://github.com/Roave/BackwardCompatibilityCheck/tree/8.4.0"
},
- "time": "2020-06-22T11:14:45+00:00"
+ "time": "2023-11-25T16:28:35+00:00"
},
{
"name": "roave/better-reflection",
- "version": "4.12.2",
+ "version": "6.19.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/BetterReflection.git",
- "reference": "73c376c7245b2928837ed1e8bef446f57f1148a0"
+ "reference": "92e9cbd9ccfea0924135a29f4be3959cd59cf54c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/73c376c7245b2928837ed1e8bef446f57f1148a0",
- "reference": "73c376c7245b2928837ed1e8bef446f57f1148a0",
+ "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/92e9cbd9ccfea0924135a29f4be3959cd59cf54c",
+ "reference": "92e9cbd9ccfea0924135a29f4be3959cd59cf54c",
"shasum": ""
},
"require": {
"ext-json": "*",
- "jetbrains/phpstorm-stubs": "2019.3",
- "nikic/php-parser": "^4.6.0",
- "php": ">=7.4.1,<7.5.0",
- "phpdocumentor/reflection-docblock": "^5.2.2",
- "phpdocumentor/type-resolver": "^1.4.0",
- "roave/signature": "^1.3"
+ "jetbrains/phpstorm-stubs": "2023.2",
+ "nikic/php-parser": "^4.17.1",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "roave/signature": "^1.8.0"
+ },
+ "conflict": {
+ "thecodingmachine/safe": "<1.1.3"
},
"require-dev": {
- "doctrine/coding-standard": "^8.2.0",
- "infection/infection": "^0.20.0",
- "phpstan/phpstan": "0.12.25",
- "phpunit/phpunit": "^9.4.4",
- "roave/infection-static-analysis-plugin": "^1.2",
- "vimeo/psalm": "^4.2"
+ "doctrine/coding-standard": "^12.0.0",
+ "phpstan/phpstan": "^1.10.47",
+ "phpstan/phpstan-phpunit": "^1.3.15",
+ "phpunit/phpunit": "^10.5.2",
+ "roave/infection-static-analysis-plugin": "^1.34.0",
+ "vimeo/psalm": "5.17.0"
},
"suggest": {
"composer/composer": "Required to use the ComposerSourceLocator"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
"autoload": {
"psr-4": {
"Roave\\BetterReflection\\": "src"
@@ -5970,33 +6878,34 @@
"description": "Better Reflection - an improved code reflection API",
"support": {
"issues": "https://github.com/Roave/BetterReflection/issues",
- "source": "https://github.com/Roave/BetterReflection/tree/4.12.2"
+ "source": "https://github.com/Roave/BetterReflection/tree/6.19.0"
},
- "time": "2020-12-17T17:48:54+00:00"
+ "time": "2023-12-07T10:58:42+00:00"
},
{
"name": "roave/infection-static-analysis-plugin",
- "version": "1.7.1",
+ "version": "1.34.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/infection-static-analysis-plugin.git",
- "reference": "36d171236fa44b485538c88f56fd1f536b903036"
+ "reference": "7b045a2e342ef86d8fc8f2b08f364cb99677a59d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/36d171236fa44b485538c88f56fd1f536b903036",
- "reference": "36d171236fa44b485538c88f56fd1f536b903036",
+ "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/7b045a2e342ef86d8fc8f2b08f364cb99677a59d",
+ "reference": "7b045a2e342ef86d8fc8f2b08f364cb99677a59d",
"shasum": ""
},
"require": {
- "infection/infection": "0.20.2",
- "ocramius/package-versions": "^1.9.0 || ^2.0.0",
- "php": "~7.4.7|~8.0.0",
- "vimeo/psalm": "^4.3.2"
+ "composer-runtime-api": "^2.2",
+ "infection/infection": "0.27.8",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "sanmai/later": "^0.1.4",
+ "vimeo/psalm": "^4.30.0 || ^5.15"
},
"require-dev": {
- "doctrine/coding-standard": "^8.2.0",
- "phpunit/phpunit": "^9.5.0"
+ "doctrine/coding-standard": "^12.0.0",
+ "phpunit/phpunit": "^10.5.0"
},
"bin": [
"bin/roave-infection-static-analysis-plugin"
@@ -6020,32 +6929,32 @@
"description": "Static analysis on top of mutation testing - prevents escaped mutants from being invalid according to static analysis",
"support": {
"issues": "https://github.com/Roave/infection-static-analysis-plugin/issues",
- "source": "https://github.com/Roave/infection-static-analysis-plugin/tree/1.7.1"
+ "source": "https://github.com/Roave/infection-static-analysis-plugin/tree/1.34.0"
},
- "time": "2021-03-04T16:33:09+00:00"
+ "time": "2023-12-01T11:52:19+00:00"
},
{
"name": "roave/signature",
- "version": "1.6.0",
+ "version": "1.8.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/Signature.git",
- "reference": "ed898589a3088217e6aa4f4a77d7b2b8f5e91a8a"
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/Signature/zipball/ed898589a3088217e6aa4f4a77d7b2b8f5e91a8a",
- "reference": "ed898589a3088217e6aa4f4a77d7b2b8f5e91a8a",
+ "url": "https://api.github.com/repos/Roave/Signature/zipball/f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
"shasum": ""
},
"require": {
- "php": "7.4.*|8.0.*|8.1.*|8.2.*"
+ "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "doctrine/coding-standard": "^10.0.0",
- "infection/infection": "^0.26.6",
- "phpunit/phpunit": "^9.5.9",
- "vimeo/psalm": "^4.27.0"
+ "doctrine/coding-standard": "^12.0.0",
+ "infection/infection": "^0.26.19",
+ "phpunit/phpunit": "^9.6.7",
+ "vimeo/psalm": "^5.9.0"
},
"type": "library",
"autoload": {
@@ -6060,42 +6969,106 @@
"description": "Sign and verify stuff",
"support": {
"issues": "https://github.com/Roave/Signature/issues",
- "source": "https://github.com/Roave/Signature/tree/1.6.0"
+ "source": "https://github.com/Roave/Signature/tree/1.8.0"
+ },
+ "time": "2023-11-25T00:11:29+00:00"
+ },
+ {
+ "name": "sanmai/later",
+ "version": "0.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sanmai/later.git",
+ "reference": "e24c4304a4b1349c2a83151a692cec0c10579f60"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sanmai/later/zipball/e24c4304a4b1349c2a83151a692cec0c10579f60",
+ "reference": "e24c4304a4b1349c2a83151a692cec0c10579f60",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.8",
+ "friendsofphp/php-cs-fixer": "^3.35.1",
+ "infection/infection": ">=0.27.6",
+ "phan/phan": ">=2",
+ "php-coveralls/php-coveralls": "^2.0",
+ "phpstan/phpstan": ">=1.4.5",
+ "phpunit/phpunit": ">=9.5 <10",
+ "vimeo/psalm": ">=2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.1.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Later\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Alexey Kopytko",
+ "email": "alexey@kopytko.com"
+ }
+ ],
+ "description": "Later: deferred wrapper object",
+ "support": {
+ "issues": "https://github.com/sanmai/later/issues",
+ "source": "https://github.com/sanmai/later/tree/0.1.4"
},
- "time": "2022-09-06T11:01:18+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sanmai",
+ "type": "github"
+ }
+ ],
+ "time": "2023-10-24T00:25:28+00:00"
},
{
"name": "sanmai/pipeline",
- "version": "v5.2.1",
+ "version": "v6.9",
"source": {
"type": "git",
"url": "https://github.com/sanmai/pipeline.git",
- "reference": "2b5509a7635143165041109eb1c393c8515724f1"
+ "reference": "c48f45c22c3ce4140d071f7658fb151df1cc08ea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sanmai/pipeline/zipball/2b5509a7635143165041109eb1c393c8515724f1",
- "reference": "2b5509a7635143165041109eb1c393c8515724f1",
+ "url": "https://api.github.com/repos/sanmai/pipeline/zipball/c48f45c22c3ce4140d071f7658fb151df1cc08ea",
+ "reference": "c48f45c22c3ce4140d071f7658fb151df1cc08ea",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
- "friendsofphp/php-cs-fixer": "^3",
+ "friendsofphp/php-cs-fixer": "^3.17",
"infection/infection": ">=0.10.5",
- "league/pipeline": "^1.0 || ^0.3",
+ "league/pipeline": "^0.3 || ^1.0",
"phan/phan": ">=1.1",
"php-coveralls/php-coveralls": "^2.4.1",
"phpstan/phpstan": ">=0.10",
- "phpunit/phpunit": "^7.4 || ^8.1 || ^9.4",
+ "phpunit/phpunit": ">=9.4",
"vimeo/psalm": ">=2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "v5.x-dev"
+ "dev-main": "v6.x-dev"
}
},
"autoload": {
@@ -6119,7 +7092,7 @@
"description": "General-purpose collections pipeline",
"support": {
"issues": "https://github.com/sanmai/pipeline/issues",
- "source": "https://github.com/sanmai/pipeline/tree/v5.2.1"
+ "source": "https://github.com/sanmai/pipeline/tree/v6.9"
},
"funding": [
{
@@ -6127,7 +7100,7 @@
"type": "github"
}
],
- "time": "2021-11-01T10:09:55+00:00"
+ "time": "2023-10-08T11:56:54+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -6429,16 +7402,16 @@
},
{
"name": "sebastian/diff",
- "version": "4.0.4",
+ "version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
+ "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
+ "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
"shasum": ""
},
"require": {
@@ -6483,7 +7456,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/diff/issues",
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
+ "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
},
"funding": [
{
@@ -6491,20 +7464,20 @@
"type": "github"
}
],
- "time": "2020-10-26T13:10:38+00:00"
+ "time": "2023-05-07T05:35:17+00:00"
},
{
"name": "sebastian/environment",
- "version": "5.1.4",
+ "version": "5.1.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
+ "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
- "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
+ "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
"shasum": ""
},
"require": {
@@ -6546,7 +7519,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/environment/issues",
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
+ "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
},
"funding": [
{
@@ -6554,7 +7527,7 @@
"type": "github"
}
],
- "time": "2022-04-03T09:37:03+00:00"
+ "time": "2023-02-03T06:03:51+00:00"
},
{
"name": "sebastian/exporter",
@@ -6635,16 +7608,16 @@
},
{
"name": "sebastian/global-state",
- "version": "5.0.5",
+ "version": "5.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
+ "reference": "bde739e7565280bda77be70044ac1047bc007e34"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
+ "reference": "bde739e7565280bda77be70044ac1047bc007e34",
"shasum": ""
},
"require": {
@@ -6687,7 +7660,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
+ "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
},
"funding": [
{
@@ -6695,7 +7668,7 @@
"type": "github"
}
],
- "time": "2022-02-14T08:28:10+00:00"
+ "time": "2023-08-02T09:26:13+00:00"
},
{
"name": "sebastian/lines-of-code",
@@ -6868,16 +7841,16 @@
},
{
"name": "sebastian/recursion-context",
- "version": "4.0.4",
+ "version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
+ "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
+ "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
"shasum": ""
},
"require": {
@@ -6916,10 +7889,10 @@
}
],
"description": "Provides functionality to recursively process PHP variables",
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
"support": {
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
},
"funding": [
{
@@ -6927,7 +7900,7 @@
"type": "github"
}
],
- "time": "2020-10-26T13:17:30+00:00"
+ "time": "2023-02-03T06:07:39+00:00"
},
{
"name": "sebastian/resource-operations",
@@ -6986,16 +7959,16 @@
},
{
"name": "sebastian/type",
- "version": "3.2.0",
+ "version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
+ "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
- "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
+ "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
"shasum": ""
},
"require": {
@@ -7030,7 +8003,7 @@
"homepage": "https://github.com/sebastianbergmann/type",
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
+ "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
},
"funding": [
{
@@ -7038,7 +8011,7 @@
"type": "github"
}
],
- "time": "2022-09-12T14:47:03+00:00"
+ "time": "2023-02-03T06:13:03+00:00"
},
{
"name": "sebastian/version",
@@ -7095,16 +8068,16 @@
},
{
"name": "seld/jsonlint",
- "version": "1.9.0",
+ "version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/jsonlint.git",
- "reference": "4211420d25eba80712bff236a98960ef68b866b7"
+ "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
- "reference": "4211420d25eba80712bff236a98960ef68b866b7",
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1",
+ "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1",
"shasum": ""
},
"require": {
@@ -7143,7 +8116,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/jsonlint/issues",
- "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
+ "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0"
},
"funding": [
{
@@ -7155,7 +8128,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-01T13:37:23+00:00"
+ "time": "2023-05-11T13:16:46+00:00"
},
{
"name": "seld/phar-utils",
@@ -7206,53 +8179,118 @@
"time": "2022-08-31T10:31:18+00:00"
},
{
- "name": "slevomat/coding-standard",
- "version": "7.2.1",
+ "name": "seld/signal-handler",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/slevomat/coding-standard.git",
- "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90"
+ "url": "https://github.com/Seldaek/signal-handler.git",
+ "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/aff06ae7a84e4534bf6f821dc982a93a5d477c90",
- "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90",
+ "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
+ "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
- "php": "^7.2 || ^8.0",
- "phpstan/phpdoc-parser": "^1.5.1",
- "squizlabs/php_codesniffer": "^3.6.2"
+ "php": ">=7.2.0"
},
"require-dev": {
- "phing/phing": "2.17.3",
- "php-parallel-lint/php-parallel-lint": "1.3.2",
- "phpstan/phpstan": "1.4.10|1.7.1",
- "phpstan/phpstan-deprecation-rules": "1.0.0",
- "phpstan/phpstan-phpunit": "1.0.0|1.1.1",
- "phpstan/phpstan-strict-rules": "1.2.3",
- "phpunit/phpunit": "7.5.20|8.5.21|9.5.20"
+ "phpstan/phpstan": "^1",
+ "phpstan/phpstan-deprecation-rules": "^1.0",
+ "phpstan/phpstan-phpunit": "^1",
+ "phpstan/phpstan-strict-rules": "^1.3",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23",
+ "psr/log": "^1 || ^2 || ^3"
},
- "type": "phpcodesniffer-standard",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "7.x-dev"
+ "dev-main": "2.x-dev"
}
},
"autoload": {
"psr-4": {
- "SlevomatCodingStandard\\": "SlevomatCodingStandard"
+ "Seld\\Signal\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
+ "keywords": [
+ "posix",
+ "sigint",
+ "signal",
+ "sigterm",
+ "unix"
+ ],
"support": {
- "issues": "https://github.com/slevomat/coding-standard/issues",
- "source": "https://github.com/slevomat/coding-standard/tree/7.2.1"
+ "issues": "https://github.com/Seldaek/signal-handler/issues",
+ "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2"
+ },
+ "time": "2023-09-03T09:24:00+00:00"
+ },
+ {
+ "name": "slevomat/coding-standard",
+ "version": "8.14.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/slevomat/coding-standard.git",
+ "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
+ "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
+ "shasum": ""
+ },
+ "require": {
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpdoc-parser": "^1.23.1",
+ "squizlabs/php_codesniffer": "^3.7.1"
+ },
+ "require-dev": {
+ "phing/phing": "2.17.4",
+ "php-parallel-lint/php-parallel-lint": "1.3.2",
+ "phpstan/phpstan": "1.10.37",
+ "phpstan/phpstan-deprecation-rules": "1.1.4",
+ "phpstan/phpstan-phpunit": "1.3.14",
+ "phpstan/phpstan-strict-rules": "1.5.1",
+ "phpunit/phpunit": "8.5.21|9.6.8|10.3.5"
+ },
+ "type": "phpcodesniffer-standard",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
+ "keywords": [
+ "dev",
+ "phpcs"
+ ],
+ "support": {
+ "issues": "https://github.com/slevomat/coding-standard/issues",
+ "source": "https://github.com/slevomat/coding-standard/tree/8.14.1"
},
"funding": [
{
@@ -7264,20 +8302,83 @@
"type": "tidelift"
}
],
- "time": "2022-05-25T10:58:12+00:00"
+ "time": "2023-10-08T07:28:08+00:00"
+ },
+ {
+ "name": "spatie/array-to-xml",
+ "version": "3.2.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/array-to-xml.git",
+ "reference": "96be97e664c87613121d073ea39af4c74e57a7f8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/96be97e664c87613121d073ea39af4c74e57a7f8",
+ "reference": "96be97e664c87613121d073ea39af4c74e57a7f8",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.2",
+ "pestphp/pest": "^1.21",
+ "spatie/pest-plugin-snapshots": "^1.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\ArrayToXml\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://freek.dev",
+ "role": "Developer"
+ }
+ ],
+ "description": "Convert an array to xml",
+ "homepage": "https://github.com/spatie/array-to-xml",
+ "keywords": [
+ "array",
+ "convert",
+ "xml"
+ ],
+ "support": {
+ "source": "https://github.com/spatie/array-to-xml/tree/3.2.2"
+ },
+ "funding": [
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-14T14:08:51+00:00"
},
{
"name": "squizlabs/php_codesniffer",
- "version": "3.7.1",
+ "version": "3.8.0",
"source": {
"type": "git",
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
- "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
+ "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
- "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5805f7a4e4958dbb5e944ef1e6edae0a303765e7",
+ "reference": "5805f7a4e4958dbb5e944ef1e6edae0a303765e7",
"shasum": ""
},
"require": {
@@ -7287,7 +8388,7 @@
"php": ">=5.4.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"bin": [
"bin/phpcs",
@@ -7306,19 +8407,29 @@
"authors": [
{
"name": "Greg Sherwood",
- "role": "lead"
+ "role": "Former lead"
+ },
+ {
+ "name": "Juliette Reinders Folmer",
+ "role": "Current lead"
+ },
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
}
],
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
"keywords": [
"phpcs",
- "standards"
+ "standards",
+ "static analysis"
],
"support": {
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
+ "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
},
"funding": [
{
@@ -7334,42 +8445,38 @@
"type": "open_collective"
}
],
- "time": "2022-06-18T07:21:10+00:00"
+ "time": "2023-12-08T12:32:31+00:00"
},
{
"name": "symfony/config",
- "version": "v5.4.11",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
- "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
+ "reference": "8789646600f4e7e451dde9e1dc81cfa429f3857a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
- "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
+ "url": "https://api.github.com/repos/symfony/config/zipball/8789646600f4e7e451dde9e1dc81cfa429f3857a",
+ "reference": "8789646600f4e7e451dde9e1dc81cfa429f3857a",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/filesystem": "^4.4|^5.0|^6.0",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-php80": "^1.16",
- "symfony/polyfill-php81": "^1.22"
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/filesystem": "^6.4|^7.0",
+ "symfony/polyfill-ctype": "~1.8"
},
"conflict": {
- "symfony/finder": "<4.4"
+ "symfony/finder": "<6.4",
+ "symfony/service-contracts": "<2.5"
},
"require-dev": {
- "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
- "symfony/finder": "^4.4|^5.0|^6.0",
- "symfony/messenger": "^4.4|^5.0|^6.0",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/yaml": "^4.4|^5.0|^6.0"
- },
- "suggest": {
- "symfony/yaml": "To use the yaml reference dumper"
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^6.4|^7.0"
},
"type": "library",
"autoload": {
@@ -7397,7 +8504,7 @@
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/config/tree/v5.4.11"
+ "source": "https://github.com/symfony/config/tree/v7.0.0"
},
"funding": [
{
@@ -7413,56 +8520,51 @@
"type": "tidelift"
}
],
- "time": "2022-07-20T13:00:38+00:00"
+ "time": "2023-11-09T08:30:23+00:00"
},
{
"name": "symfony/console",
- "version": "v5.4.17",
+ "version": "v6.4.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f"
+ "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f",
- "reference": "58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f",
+ "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd",
+ "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php73": "^1.9",
- "symfony/polyfill-php80": "^1.16",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/string": "^5.1|^6.0"
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^5.4|^6.0|^7.0"
},
"conflict": {
- "psr/log": ">=3",
- "symfony/dependency-injection": "<4.4",
- "symfony/dotenv": "<5.1",
- "symfony/event-dispatcher": "<4.4",
- "symfony/lock": "<4.4",
- "symfony/process": "<4.4"
+ "symfony/dependency-injection": "<5.4",
+ "symfony/dotenv": "<5.4",
+ "symfony/event-dispatcher": "<5.4",
+ "symfony/lock": "<5.4",
+ "symfony/process": "<5.4"
},
"provide": {
- "psr/log-implementation": "1.0|2.0"
+ "psr/log-implementation": "1.0|2.0|3.0"
},
"require-dev": {
- "psr/log": "^1|^2",
- "symfony/config": "^4.4|^5.0|^6.0",
- "symfony/dependency-injection": "^4.4|^5.0|^6.0",
- "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
- "symfony/lock": "^4.4|^5.0|^6.0",
- "symfony/process": "^4.4|^5.0|^6.0",
- "symfony/var-dumper": "^4.4|^5.0|^6.0"
- },
- "suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/lock": "",
- "symfony/process": ""
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/lock": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
@@ -7491,12 +8593,92 @@
"homepage": "https://symfony.com",
"keywords": [
"cli",
- "command line",
+ "command-line",
"console",
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v5.4.17"
+ "source": "https://github.com/symfony/console/tree/v6.4.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-11-30T10:54:28+00:00"
+ },
+ {
+ "name": "symfony/dependency-injection",
+ "version": "v7.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "f6667642954bce638733f254c39e5b5700b47ba4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f6667642954bce638733f254c39e5b5700b47ba4",
+ "reference": "f6667642954bce638733f254c39e5b5700b47ba4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/service-contracts": "^3.3",
+ "symfony/var-exporter": "^6.4|^7.0"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2",
+ "symfony/config": "<6.4",
+ "symfony/finder": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1|2.0",
+ "symfony/service-implementation": "1.1|2.0|3.0"
+ },
+ "require-dev": {
+ "symfony/config": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\DependencyInjection\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows you to standardize and centralize the way objects are constructed in your application",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/dependency-injection/tree/v7.0.1"
},
"funding": [
{
@@ -7512,29 +8694,29 @@
"type": "tidelift"
}
],
- "time": "2022-12-28T14:15:31+00:00"
+ "time": "2023-12-01T15:10:06+00:00"
},
{
"name": "symfony/deprecation-contracts",
- "version": "v2.5.2",
+ "version": "v3.4.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
- "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.5-dev"
+ "dev-main": "3.4-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -7563,7 +8745,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
},
"funding": [
{
@@ -7579,27 +8761,26 @@
"type": "tidelift"
}
],
- "time": "2022-01-02T09:53:40+00:00"
+ "time": "2023-05-23T14:45:45+00:00"
},
{
"name": "symfony/filesystem",
- "version": "v5.4.13",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
+ "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
- "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7",
+ "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
+ "php": ">=8.2",
"symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8",
- "symfony/polyfill-php80": "^1.16"
+ "symfony/polyfill-mbstring": "~1.8"
},
"type": "library",
"autoload": {
@@ -7627,7 +8808,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
+ "source": "https://github.com/symfony/filesystem/tree/v7.0.0"
},
"funding": [
{
@@ -7643,26 +8824,27 @@
"type": "tidelift"
}
],
- "time": "2022-09-21T19:53:16+00:00"
+ "time": "2023-07-27T06:33:22+00:00"
},
{
"name": "symfony/finder",
- "version": "v5.4.17",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "40c08632019838dfb3350f18cf5563b8080055fc"
+ "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/40c08632019838dfb3350f18cf5563b8080055fc",
- "reference": "40c08632019838dfb3350f18cf5563b8080055fc",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
+ "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/polyfill-php80": "^1.16"
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "symfony/filesystem": "^6.4|^7.0"
},
"type": "library",
"autoload": {
@@ -7690,7 +8872,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/finder/tree/v5.4.17"
+ "source": "https://github.com/symfony/finder/tree/v7.0.0"
},
"funding": [
{
@@ -7706,20 +8888,20 @@
"type": "tidelift"
}
],
- "time": "2022-12-22T10:31:03+00:00"
+ "time": "2023-10-31T17:59:56+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.27.0",
+ "version": "v1.28.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
+ "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
+ "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
"shasum": ""
},
"require": {
@@ -7734,7 +8916,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "1.28-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -7772,7 +8954,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
},
"funding": [
{
@@ -7788,20 +8970,20 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.27.0",
+ "version": "v1.28.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
+ "reference": "875e90aeea2777b6f135677f618529449334a612"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
+ "reference": "875e90aeea2777b6f135677f618529449334a612",
"shasum": ""
},
"require": {
@@ -7813,7 +8995,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "1.28-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -7853,7 +9035,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
},
"funding": [
{
@@ -7869,20 +9051,20 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.27.0",
+ "version": "v1.28.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
+ "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
+ "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
"shasum": ""
},
"require": {
@@ -7894,7 +9076,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "1.28-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -7937,7 +9119,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
},
"funding": [
{
@@ -7953,20 +9135,20 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.27.0",
+ "version": "v1.28.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
+ "reference": "42292d99c55abe617799667f454222c54c60e229"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
+ "reference": "42292d99c55abe617799667f454222c54c60e229",
"shasum": ""
},
"require": {
@@ -7981,7 +9163,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "1.28-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -8002,25 +9184,566 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-07-28T09:04:16+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php73",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php73.git",
+ "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
+ "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.28-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php73\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-01-26T09:26:14+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
+ "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.28-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-01-26T09:26:14+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php81",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php81.git",
+ "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
+ "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.28-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php81\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-01-26T09:26:14+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php83",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
+ "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "symfony/polyfill-php80": "^1.14"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.28-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php83\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-08-16T06:22:46+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "13bdb1670c7f510494e04fcb2bfa29af63db9c0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/13bdb1670c7f510494e04fcb2bfa29af63db9c0d",
+ "reference": "13bdb1670c7f510494e04fcb2bfa29af63db9c0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v7.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-11-20T16:43:42+00:00"
+ },
+ {
+ "name": "symfony/property-access",
+ "version": "v7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/property-access.git",
+ "reference": "740e8cb8c54a4f16c82179e8558c29d9fc49901d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/740e8cb8c54a4f16c82179e8558c29d9fc49901d",
+ "reference": "740e8cb8c54a4f16c82179e8558c29d9fc49901d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/property-info": "^6.4|^7.0"
+ },
+ "require-dev": {
+ "symfony/cache": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\PropertyAccess\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides functions to read and write from/to an object or array using a simple string notation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "access",
+ "array",
+ "extraction",
+ "index",
+ "injection",
+ "object",
+ "property",
+ "property-path",
+ "reflection"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/property-access/tree/v7.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-09-27T14:05:33+00:00"
+ },
+ {
+ "name": "symfony/property-info",
+ "version": "v7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/property-info.git",
+ "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/property-info/zipball/ce627df05f5629ce4feec536ee827ad0a12689b6",
+ "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/string": "^6.4|^7.0"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<5.2",
+ "phpdocumentor/type-resolver": "<1.5.1",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/serializer": "<6.4"
+ },
+ "require-dev": {
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "phpstan/phpdoc-parser": "^1.0",
+ "symfony/cache": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\PropertyInfo\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
+ "description": "Extracts information about PHP class' properties using metadata of popular sources",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
+ "doctrine",
+ "phpdoc",
+ "property",
+ "symfony",
+ "type",
+ "validator"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
+ "source": "https://github.com/symfony/property-info/tree/v7.0.0"
},
"funding": [
{
@@ -8036,44 +9759,66 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-11-25T08:38:27+00:00"
},
{
- "name": "symfony/polyfill-php73",
- "version": "v1.27.0",
+ "name": "symfony/serializer",
+ "version": "v7.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "9c8f67c1444adf6dbcf90fb76da5b2f5c43af0ff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
- "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/9c8f67c1444adf6dbcf90fb76da5b2f5c43af0ff",
+ "reference": "9c8f67c1444adf6dbcf90fb76da5b2f5c43af0ff",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/property-access": "<6.4",
+ "symfony/property-info": "<6.4",
+ "symfony/uid": "<6.4",
+ "symfony/validator": "<6.4",
+ "symfony/yaml": "<6.4"
},
+ "require-dev": {
+ "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
+ "seld/jsonlint": "^1.10",
+ "symfony/cache": "^6.4|^7.0",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/filesystem": "^6.4|^7.0",
+ "symfony/form": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/property-info": "^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",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php73\\": ""
+ "Symfony\\Component\\Serializer\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8082,24 +9827,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
+ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
+ "source": "https://github.com/symfony/serializer/tree/v7.0.1"
},
"funding": [
{
@@ -8115,44 +9854,45 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-12-01T15:10:06+00:00"
},
{
- "name": "symfony/polyfill-php80",
- "version": "v1.27.0",
+ "name": "symfony/service-contracts",
+ "version": "v3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
+ "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "psr/container": "^2.0"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "3.4-dev"
},
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
+ "Symfony\\Contracts\\Service\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Test/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8160,10 +9900,6 @@
"MIT"
],
"authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
@@ -8173,16 +9909,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "description": "Generic abstractions related to writing services",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.4.0"
},
"funding": [
{
@@ -8198,44 +9936,33 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-07-30T20:28:31+00:00"
},
{
- "name": "symfony/polyfill-php81",
- "version": "v1.27.0",
+ "name": "symfony/stopwatch",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
+ "url": "https://github.com/symfony/stopwatch.git",
+ "reference": "7bbfa3dd564a0ce12eb4acaaa46823c740f9cb7a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
- "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/7bbfa3dd564a0ce12eb4acaaa46823c740f9cb7a",
+ "reference": "7bbfa3dd564a0ce12eb4acaaa46823c740f9cb7a",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/service-contracts": "^2.5|^3"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php81\\": ""
+ "Symfony\\Component\\Stopwatch\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8244,24 +9971,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "description": "Provides a way to profile code",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
+ "source": "https://github.com/symfony/stopwatch/tree/v7.0.0"
},
"funding": [
{
@@ -8277,30 +9998,46 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-07-05T13:06:06+00:00"
},
{
- "name": "symfony/process",
- "version": "v5.4.11",
+ "name": "symfony/string",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
- "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
+ "url": "https://api.github.com/repos/symfony/string/zipball/92bd2bfbba476d4a1838e5e12168bef2fd1e6620",
+ "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-php80": "^1.16"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^6.4|^7.0"
},
"type": "library",
"autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "Symfony\\Component\\String\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8312,18 +10049,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Executes commands in sub-processes",
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
"homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
"support": {
- "source": "https://github.com/symfony/process/tree/v5.4.11"
+ "source": "https://github.com/symfony/string/tree/v7.0.0"
},
"funding": [
{
@@ -8339,37 +10084,29 @@
"type": "tidelift"
}
],
- "time": "2022-06-27T16:58:25+00:00"
+ "time": "2023-11-29T08:40:23+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v2.5.2",
+ "name": "symfony/translation-contracts",
+ "version": "v3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
- "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
+ "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "psr/container": "^1.1",
- "symfony/deprecation-contracts": "^2.1|^3"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2"
- },
- "suggest": {
- "symfony/service-implementation": ""
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.5-dev"
+ "dev-main": "3.4-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -8378,8 +10115,11 @@
},
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Service\\": ""
- }
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8395,7 +10135,7 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to writing services",
+ "description": "Generic abstractions related to translation",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
@@ -8406,7 +10146,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0"
},
"funding": [
{
@@ -8422,30 +10162,62 @@
"type": "tidelift"
}
],
- "time": "2022-05-30T19:17:29+00:00"
+ "time": "2023-07-25T15:08:44+00:00"
},
{
- "name": "symfony/stopwatch",
- "version": "v5.4.13",
+ "name": "symfony/validator",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "616b39ffb22c1519f7fd2582b8052cde4c2d0b9f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
- "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/616b39ffb22c1519f7fd2582b8052cde4c2d0b9f",
+ "reference": "616b39ffb22c1519f7fd2582b8052cde4c2d0b9f",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/service-contracts": "^1|^2|^3"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php83": "^1.27",
+ "symfony/translation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "doctrine/lexer": "<1.1",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/doctrine-bridge": "<7.0",
+ "symfony/expression-language": "<6.4",
+ "symfony/http-kernel": "<6.4",
+ "symfony/intl": "<6.4",
+ "symfony/property-info": "<6.4",
+ "symfony/translation": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "symfony/cache": "^6.4|^7.0",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/property-info": "^6.4|^7.0",
+ "symfony/translation": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
+ "Symfony\\Component\\Validator\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8465,10 +10237,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a way to profile code",
+ "description": "Provides tools to validate values",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
+ "source": "https://github.com/symfony/validator/tree/v7.0.0"
},
"funding": [
{
@@ -8484,46 +10256,32 @@
"type": "tidelift"
}
],
- "time": "2022-09-28T13:19:49+00:00"
+ "time": "2023-11-29T08:40:23+00:00"
},
{
- "name": "symfony/string",
- "version": "v5.4.17",
+ "name": "symfony/var-exporter",
+ "version": "v7.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "55733a8664b8853b003e70251c58bc8cb2d82a6b"
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/55733a8664b8853b003e70251c58bc8cb2d82a6b",
- "reference": "55733a8664b8853b003e70251c58bc8cb2d82a6b",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3",
+ "reference": "a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
- "symfony/polyfill-intl-normalizer": "~1.0",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php80": "~1.15"
- },
- "conflict": {
- "symfony/translation-contracts": ">=3.0"
+ "php": ">=8.2"
},
"require-dev": {
- "symfony/error-handler": "^4.4|^5.0|^6.0",
- "symfony/http-client": "^4.4|^5.0|^6.0",
- "symfony/translation-contracts": "^1.1|^2",
- "symfony/var-exporter": "^4.4|^5.0|^6.0"
+ "symfony/var-dumper": "^6.4|^7.0"
},
"type": "library",
"autoload": {
- "files": [
- "Resources/functions.php"
- ],
"psr-4": {
- "Symfony\\Component\\String\\": ""
+ "Symfony\\Component\\VarExporter\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8543,18 +10301,20 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "description": "Allows exporting any serializable PHP data structure to plain PHP code",
"homepage": "https://symfony.com",
"keywords": [
- "grapheme",
- "i18n",
- "string",
- "unicode",
- "utf-8",
- "utf8"
+ "clone",
+ "construct",
+ "export",
+ "hydrate",
+ "instantiate",
+ "lazy-loading",
+ "proxy",
+ "serialize"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v5.4.17"
+ "source": "https://github.com/symfony/var-exporter/tree/v7.0.1"
},
"funding": [
{
@@ -8570,35 +10330,31 @@
"type": "tidelift"
}
],
- "time": "2022-12-12T15:54:21+00:00"
+ "time": "2023-11-30T11:38:21+00:00"
},
{
"name": "symfony/yaml",
- "version": "v5.4.17",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "edcdc11498108f8967fe95118a7ec8624b94760e"
+ "reference": "0055b230c408428b9b5cde7c55659555be5c0278"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/edcdc11498108f8967fe95118a7ec8624b94760e",
- "reference": "edcdc11498108f8967fe95118a7ec8624b94760e",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/0055b230c408428b9b5cde7c55659555be5c0278",
+ "reference": "0055b230c408428b9b5cde7c55659555be5c0278",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
+ "php": ">=8.2",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
- "symfony/console": "<5.3"
+ "symfony/console": "<6.4"
},
"require-dev": {
- "symfony/console": "^5.3|^6.0"
- },
- "suggest": {
- "symfony/console": "For validating YAML files using the lint command"
+ "symfony/console": "^6.4|^7.0"
},
"bin": [
"Resources/bin/yaml-lint"
@@ -8629,7 +10385,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v5.4.17"
+ "source": "https://github.com/symfony/yaml/tree/v7.0.0"
},
"funding": [
{
@@ -8645,36 +10401,36 @@
"type": "tidelift"
}
],
- "time": "2022-12-13T09:57:04+00:00"
+ "time": "2023-11-07T10:26:03+00:00"
},
{
"name": "thecodingmachine/phpstan-safe-rule",
- "version": "v1.0.1",
+ "version": "v1.2.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/phpstan-safe-rule.git",
- "reference": "1a1ae26c29011d2d48636353ecadf7fc40997401"
+ "reference": "8a7b88e0d54f209a488095085f183e9174c40e1e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/phpstan-safe-rule/zipball/1a1ae26c29011d2d48636353ecadf7fc40997401",
- "reference": "1a1ae26c29011d2d48636353ecadf7fc40997401",
+ "url": "https://api.github.com/repos/thecodingmachine/phpstan-safe-rule/zipball/8a7b88e0d54f209a488095085f183e9174c40e1e",
+ "reference": "8a7b88e0d54f209a488095085f183e9174c40e1e",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.10 | ^0.11 | ^0.12",
- "thecodingmachine/safe": "^1.0"
+ "phpstan/phpstan": "^1.0",
+ "thecodingmachine/safe": "^1.0 || ^2.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^7.5.2",
+ "phpunit/phpunit": "^7.5.2 || ^8.0",
"squizlabs/php_codesniffer": "^3.4"
},
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-master": "1.1-dev"
},
"phpstan": {
"includes": [
@@ -8700,27 +10456,27 @@
"description": "A PHPStan rule to detect safety issues. Must be used in conjunction with thecodingmachine/safe",
"support": {
"issues": "https://github.com/thecodingmachine/phpstan-safe-rule/issues",
- "source": "https://github.com/thecodingmachine/phpstan-safe-rule/tree/v1.0.1"
+ "source": "https://github.com/thecodingmachine/phpstan-safe-rule/tree/v1.2.0"
},
- "time": "2020-08-30T11:41:12+00:00"
+ "time": "2022-01-17T10:12:29+00:00"
},
{
"name": "thecodingmachine/phpstan-strict-rules",
- "version": "v0.12.2",
+ "version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/phpstan-strict-rules.git",
- "reference": "ed65c3cf33e3b668c5a072d49741965114c881b5"
+ "reference": "2ba8fa8b328c45f3b149c05def5bf96793c594b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/phpstan-strict-rules/zipball/ed65c3cf33e3b668c5a072d49741965114c881b5",
- "reference": "ed65c3cf33e3b668c5a072d49741965114c881b5",
+ "url": "https://api.github.com/repos/thecodingmachine/phpstan-strict-rules/zipball/2ba8fa8b328c45f3b149c05def5bf96793c594b6",
+ "reference": "2ba8fa8b328c45f3b149c05def5bf96793c594b6",
"shasum": ""
},
"require": {
"php": "^7.1|^8.0",
- "phpstan/phpstan": "^0.12"
+ "phpstan/phpstan": "^1.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
@@ -8729,7 +10485,7 @@
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.12-dev"
+ "dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
@@ -8755,22 +10511,22 @@
"description": "A set of additional rules for PHPStan based on best practices followed at TheCodingMachine",
"support": {
"issues": "https://github.com/thecodingmachine/phpstan-strict-rules/issues",
- "source": "https://github.com/thecodingmachine/phpstan-strict-rules/tree/v0.12.2"
+ "source": "https://github.com/thecodingmachine/phpstan-strict-rules/tree/v1.0.0"
},
- "time": "2021-11-08T09:01:22+00:00"
+ "time": "2021-11-08T09:10:49+00:00"
},
{
"name": "theseer/tokenizer",
- "version": "1.2.1",
+ "version": "1.2.2",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
+ "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
+ "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
"shasum": ""
},
"require": {
@@ -8799,7 +10555,7 @@
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
"support": {
"issues": "https://github.com/theseer/tokenizer/issues",
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
},
"funding": [
{
@@ -8807,28 +10563,28 @@
"type": "github"
}
],
- "time": "2021-07-28T10:34:58+00:00"
+ "time": "2023-11-20T00:12:19+00:00"
},
{
"name": "vimeo/psalm",
- "version": "4.30.0",
+ "version": "5.17.0",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
- "reference": "d0bc6e25d89f649e4f36a534f330f8bb4643dd69"
+ "reference": "c620f6e80d0abfca532b00bda366062aaedf6e5d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/d0bc6e25d89f649e4f36a534f330f8bb4643dd69",
- "reference": "d0bc6e25d89f649e4f36a534f330f8bb4643dd69",
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/c620f6e80d0abfca532b00bda366062aaedf6e5d",
+ "reference": "c620f6e80d0abfca532b00bda366062aaedf6e5d",
"shasum": ""
},
"require": {
"amphp/amp": "^2.4.2",
"amphp/byte-stream": "^1.5",
- "composer/package-versions-deprecated": "^1.8.0",
+ "composer-runtime-api": "^2",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
- "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0",
+ "composer/xdebug-handler": "^2.0 || ^3.0",
"dnoegel/php-xdg-base-dir": "^0.1.1",
"ext-ctype": "*",
"ext-dom": "*",
@@ -8837,35 +10593,38 @@
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
- "felixfbecker/advanced-json-rpc": "^3.0.3",
- "felixfbecker/language-server-protocol": "^1.5",
+ "felixfbecker/advanced-json-rpc": "^3.1",
+ "felixfbecker/language-server-protocol": "^1.5.2",
+ "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1",
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
- "nikic/php-parser": "^4.13",
- "openlss/lib-array2xml": "^1.0",
- "php": "^7.1|^8",
- "sebastian/diff": "^3.0 || ^4.0",
- "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
- "symfony/polyfill-php80": "^1.25",
- "webmozart/path-util": "^2.3"
+ "nikic/php-parser": "^4.16",
+ "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
+ "sebastian/diff": "^4.0 || ^5.0",
+ "spatie/array-to-xml": "^2.17.0 || ^3.0",
+ "symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7.0"
+ },
+ "conflict": {
+ "nikic/php-parser": "4.17.0"
},
"provide": {
"psalm/psalm": "self.version"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.2",
- "brianium/paratest": "^4.0||^6.0",
+ "amphp/phpunit-util": "^2.0",
+ "bamarni/composer-bin-plugin": "^1.4",
+ "brianium/paratest": "^6.9",
"ext-curl": "*",
+ "mockery/mockery": "^1.5",
+ "nunomaduro/mock-final-classes": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpdocumentor/reflection-docblock": "^5",
- "phpmyadmin/sql-parser": "5.1.0||dev-master",
- "phpspec/prophecy": ">=1.9.0",
- "phpstan/phpdoc-parser": "1.2.* || 1.6.4",
- "phpunit/phpunit": "^9.0",
- "psalm/plugin-phpunit": "^0.16",
- "slevomat/coding-standard": "^7.0",
- "squizlabs/php_codesniffer": "^3.5",
- "symfony/process": "^4.3 || ^5.0 || ^6.0",
- "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ "phpstan/phpdoc-parser": "^1.6",
+ "phpunit/phpunit": "^9.6",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.18",
+ "slevomat/coding-standard": "^8.4",
+ "squizlabs/php_codesniffer": "^3.6",
+ "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
"ext-curl": "In order to send data to shepherd",
@@ -8878,20 +10637,17 @@
"psalm-refactor",
"psalter"
],
- "type": "library",
+ "type": "project",
"extra": {
"branch-alias": {
- "dev-master": "4.x-dev",
+ "dev-master": "5.x-dev",
+ "dev-4.x": "4.x-dev",
"dev-3.x": "3.x-dev",
"dev-2.x": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php",
- "src/spl_object_id.php"
- ],
"psr-4": {
"Psalm\\": "src/Psalm/"
}
@@ -8909,13 +10665,15 @@
"keywords": [
"code",
"inspection",
- "php"
+ "php",
+ "static analysis"
],
"support": {
+ "docs": "https://psalm.dev/docs",
"issues": "https://github.com/vimeo/psalm/issues",
- "source": "https://github.com/vimeo/psalm/tree/4.30.0"
+ "source": "https://github.com/vimeo/psalm"
},
- "time": "2022-11-06T20:37:08+00:00"
+ "time": "2023-12-03T20:21:41+00:00"
},
{
"name": "webmozart/assert",
@@ -9024,80 +10782,33 @@
},
"time": "2022-05-24T19:45:58+00:00"
},
- {
- "name": "webmozart/path-util",
- "version": "2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/webmozart/path-util.git",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3",
- "webmozart/assert": "~1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Webmozart\\PathUtil\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
- ],
- "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
- "support": {
- "issues": "https://github.com/webmozart/path-util/issues",
- "source": "https://github.com/webmozart/path-util/tree/2.3.0"
- },
- "abandoned": "symfony/filesystem",
- "time": "2015-12-17T08:42:14+00:00"
- },
{
"name": "wyrihaximus/async-test-utilities",
- "version": "4.2.2",
+ "version": "7.2.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-async-test-utilities.git",
- "reference": "1813284920f7c26bf6d48a717a37603243585ea0"
+ "reference": "3cac9f58ec6674b4e30decd31958e4999cd22db7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-async-test-utilities/zipball/1813284920f7c26bf6d48a717a37603243585ea0",
- "reference": "1813284920f7c26bf6d48a717a37603243585ea0",
+ "url": "https://api.github.com/repos/WyriHaximus/php-async-test-utilities/zipball/3cac9f58ec6674b4e30decd31958e4999cd22db7",
+ "reference": "3cac9f58ec6674b4e30decd31958e4999cd22db7",
"shasum": ""
},
"require": {
- "clue/block-react": "^1.5",
- "php": "^8 || ^7.4",
- "phpunit/phpunit": "^9.5",
- "react/event-loop": "^1.2",
- "react/promise": "^2.9",
- "wyrihaximus/test-utilities": "^5 || ^4 || ^3.7.6"
+ "php": "^8.2",
+ "phpunit/phpunit": "^9.6.10",
+ "react/async": "^4.1.0",
+ "react/event-loop": "^1.4.0",
+ "react/promise": "^2.10 || ^3.0",
+ "wyrihaximus/test-utilities": "^5.5.4 || ^6"
+ },
+ "conflict": {
+ "composer/compoer": "<2.6.0"
},
"require-dev": {
+ "react/promise-timer": "^1.10.0",
"wyrihaximus/iterator-or-array-to-array": "^1.2"
},
"type": "library",
@@ -9119,7 +10830,7 @@
"description": "Test utilities for api-clients packages",
"support": {
"issues": "https://github.com/WyriHaximus/php-async-test-utilities/issues",
- "source": "https://github.com/WyriHaximus/php-async-test-utilities/tree/4.2.2"
+ "source": "https://github.com/WyriHaximus/php-async-test-utilities/tree/7.2.0"
},
"funding": [
{
@@ -9127,28 +10838,28 @@
"type": "github"
}
],
- "time": "2022-02-27T11:58:08+00:00"
+ "time": "2023-09-07T13:00:15+00:00"
},
{
"name": "wyrihaximus/coding-standard",
- "version": "2.8.0",
+ "version": "2.14.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-coding-standard.git",
- "reference": "c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f"
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f",
- "reference": "c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f",
+ "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/7530678d70ced4d41540df0e60e8811d14813058",
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
- "doctrine/coding-standard": "^9.0.0",
- "php": "^8 || ^7.4",
- "slevomat/coding-standard": "^7.0.14",
- "squizlabs/php_codesniffer": "^3.6.0"
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
+ "doctrine/coding-standard": "^12.0.0",
+ "php": "^8.1",
+ "slevomat/coding-standard": "^8.11.1",
+ "squizlabs/php_codesniffer": "^3.7.2"
},
"type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
@@ -9158,7 +10869,7 @@
"description": "WyriHaximus Coding Standard",
"support": {
"issues": "https://github.com/WyriHaximus/php-coding-standard/issues",
- "source": "https://github.com/WyriHaximus/php-coding-standard/tree/2.8.0"
+ "source": "https://github.com/WyriHaximus/php-coding-standard/tree/2.14.0"
},
"funding": [
{
@@ -9166,32 +10877,34 @@
"type": "github"
}
],
- "time": "2022-03-08T07:19:19+00:00"
+ "time": "2023-05-06T11:54:10+00:00"
},
{
"name": "wyrihaximus/phpstan-rules-wrapper",
- "version": "1.2.5",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper.git",
- "reference": "b15e2b272408ec3a0467361557b0b88089bd1d4d"
+ "reference": "8e65ee7749a3e10100f0abec58b7e53ee540c43d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/b15e2b272408ec3a0467361557b0b88089bd1d4d",
- "reference": "b15e2b272408ec3a0467361557b0b88089bd1d4d",
+ "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/8e65ee7749a3e10100f0abec58b7e53ee540c43d",
+ "reference": "8e65ee7749a3e10100f0abec58b7e53ee540c43d",
"shasum": ""
},
"require": {
- "ergebnis/phpstan-rules": "^0.15.3",
- "jangregor/phpstan-prophecy": "^0.8.1",
- "pepakriz/phpstan-exception-rules": "^0.11.7",
- "phpstan/phpstan-deprecation-rules": "^0.12.6",
- "phpstan/phpstan-php-parser": "^0.12.3",
- "phpstan/phpstan-phpunit": "^0.12.22",
- "phpstan/phpstan-strict-rules": "^0.12.11",
- "thecodingmachine/phpstan-safe-rule": "^1.0",
- "thecodingmachine/phpstan-strict-rules": "^0.12.1"
+ "ergebnis/phpstan-rules": "^2.1.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "pepakriz/phpstan-exception-rules": "^0.12.0",
+ "php": "^8.2",
+ "phpstan/phpstan-deprecation-rules": "^1.1.4",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-php-parser": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3.14",
+ "phpstan/phpstan-strict-rules": "^1.5.1",
+ "thecodingmachine/phpstan-safe-rule": "^1.2",
+ "thecodingmachine/phpstan-strict-rules": "^1.0"
},
"type": "library",
"notification-url": "https://packagist.org/downloads/",
@@ -9207,7 +10920,7 @@
"description": "🌯 PHPStan rules wrapper",
"support": {
"issues": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/issues",
- "source": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/tree/1.2.5"
+ "source": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/tree/3.3.0"
},
"funding": [
{
@@ -9215,73 +10928,72 @@
"type": "github"
}
],
- "time": "2021-09-30T14:46:42+00:00"
+ "time": "2023-09-26T09:07:47+00:00"
},
{
"name": "wyrihaximus/test-utilities",
- "version": "3.7.6",
+ "version": "5.6.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-test-utilities.git",
- "reference": "4a900a8f44207c3f0f6a4819676aca7612f4821f"
+ "reference": "5b6d2484119f72625307b096b8297c933cc765d6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/4a900a8f44207c3f0f6a4819676aca7612f4821f",
- "reference": "4a900a8f44207c3f0f6a4819676aca7612f4821f",
+ "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/5b6d2484119f72625307b096b8297c933cc765d6",
+ "reference": "5b6d2484119f72625307b096b8297c933cc765d6",
"shasum": ""
},
"require": {
- "dereuromark/composer-prefer-lowest": "^0.1.10",
- "ergebnis/composer-normalize": "^2.15.0",
- "icanhazstring/composer-unused": "^0.7.5",
- "infection/infection": "^0.20.2",
+ "ergebnis/composer-normalize": "^2.33.0",
+ "icanhazstring/composer-unused": "^0.8.10",
+ "infection/infection": "^0.27.0",
"jakobbuis/simple-slow-test-reporter": "^1.0",
- "maglnet/composer-require-checker": "^3.5.1",
- "nunomaduro/collision": "^5.10.0",
- "orklah/psalm-insane-comparison": "^1.0.3",
- "php": "^8 || ^7.4",
- "php-coveralls/php-coveralls": "^2.5.1",
- "php-parallel-lint/php-console-highlighter": "^0.5",
- "php-parallel-lint/php-parallel-lint": "^1.3.1",
- "phpspec/prophecy": "^1.14",
- "phpspec/prophecy-phpunit": "^2.0.1",
- "phpstan/phpstan": "^0.12.99",
- "phpunit/phpunit": "^9.5.10",
- "psalm/plugin-phpunit": "^0.16.1",
- "roave/backward-compatibility-check": "^5.0.0",
- "roave/infection-static-analysis-plugin": "^1.7.1",
- "squizlabs/php_codesniffer": "^3.6.1",
- "thecodingmachine/safe": "^1.3.3",
- "vimeo/psalm": "^4.12.0",
- "wyrihaximus/coding-standard": "^2.5.0",
- "wyrihaximus/phpstan-rules-wrapper": "^1.2.5"
+ "maglnet/composer-require-checker": "^4.6.0",
+ "nunomaduro/collision": "^7.1.0",
+ "orklah/psalm-insane-comparison": "^2.2.0",
+ "php": "^8.2",
+ "php-coveralls/php-coveralls": "^2.6.0",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.3.2",
+ "php-standard-library/psalm-plugin": "^1.1.5 || ^2.2.1",
+ "phpspec/prophecy": "^1.17",
+ "phpspec/prophecy-phpunit": "^2.0.2",
+ "phpstan/phpstan": "^1.10.26",
+ "phpunit/phpunit": "^9.6.10",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "roave/backward-compatibility-check": "^8.3.0",
+ "roave/infection-static-analysis-plugin": "^1.32.0",
+ "squizlabs/php_codesniffer": "^3.7.2",
+ "thecodingmachine/safe": "^2.5.0",
+ "vimeo/psalm": "^5.13.1",
+ "wyrihaximus/coding-standard": "^2.14.0",
+ "wyrihaximus/phpstan-rules-wrapper": "^3.0.0"
},
"conflict": {
- "beberlei/assert": ">= 3.3"
+ "symfony/dependency-injection": "<5.0.0"
},
"type": "library",
"extra": {
"unused": [
- "php",
- "dereuromark/composer-prefer-lowest",
- "friendsofphp/php-cs-fixer",
+ "ergebnis/composer-normalize",
"icanhazstring/composer-unused",
"infection/infection",
"jakobbuis/simple-slow-test-reporter",
- "php-coveralls/php-coveralls",
- "php-parallel-lint/php-console-highlighter",
- "php-parallel-lint/php-parallel-lint",
"maglnet/composer-require-checker",
"nunomaduro/collision",
"orklah/psalm-insane-comparison",
+ "php-coveralls/php-coveralls",
+ "php-parallel-lint/php-console-highlighter",
+ "php-parallel-lint/php-parallel-lint",
+ "php-standard-library/psalm-plugin",
"phpstan/phpstan",
- "phpunit/phpunit",
"psalm/plugin-phpunit",
"roave/backward-compatibility-check",
"roave/infection-static-analysis-plugin",
- "slevomat/coding-standard",
+ "squizlabs/php_codesniffer",
"vimeo/psalm",
+ "wyrihaximus/coding-standard",
"wyrihaximus/phpstan-rules-wrapper"
]
},
@@ -9303,7 +11015,7 @@
"description": "🛠️ Test utilities for api-clients packages",
"support": {
"issues": "https://github.com/WyriHaximus/php-test-utilities/issues",
- "source": "https://github.com/WyriHaximus/php-test-utilities/tree/3.7.6"
+ "source": "https://github.com/WyriHaximus/php-test-utilities/tree/5.6.0"
},
"funding": [
{
@@ -9311,7 +11023,7 @@
"type": "github"
}
],
- "time": "2021-11-15T22:30:45+00:00"
+ "time": "2023-07-26T21:51:43+00:00"
}
],
"aliases": [],
@@ -9320,11 +11032,11 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": "^8 || ^7.4"
+ "php": "^8.2"
},
"platform-dev": [],
"platform-overrides": {
- "php": "7.4.7"
+ "php": "8.2.13"
},
- "plugin-api-version": "2.1.0"
+ "plugin-api-version": "2.6.0"
}
diff --git a/etc/ci/markdown-link-checker.json b/etc/ci/markdown-link-checker.json
new file mode 100644
index 0000000..15fb56f
--- /dev/null
+++ b/etc/ci/markdown-link-checker.json
@@ -0,0 +1,10 @@
+{
+ "httpHeaders": [
+ {
+ "urls": ["https://docs.github.com/"],
+ "headers": {
+ "Accept-Encoding": "zstd, br, gzip, deflate"
+ }
+ }
+ ]
+}
diff --git a/etc/qa/.phpunit.result.cache b/etc/qa/.phpunit.result.cache
deleted file mode 100644
index ef08c2f..0000000
--- a/etc/qa/.phpunit.result.cache
+++ /dev/null
@@ -1 +0,0 @@
-C:37:"PHPUnit\Runner\DefaultTestResultCache":13347:{a:2:{s:7:"defects";a:26:{s:76:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testChildProcess";i:4;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #0";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #1";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #2";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #3";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #4";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #5";i:3;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #6";i:3;s:81:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testErrorWhileLogging";i:3;s:47:"WyriHaximus\Tests\React\Cache\JsonTest::testSet";i:4;s:50:"WyriHaximus\Tests\React\Cache\JsonTest::testDelete";i:4;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testGet";i:4;s:59:"WyriHaximus\Tests\React\Cache\RedisTest::testGetNonExistant";i:3;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testSet";i:4;s:57:"WyriHaximus\Tests\React\Cache\RedisTest::testSetGlobalTtl";i:4;s:51:"WyriHaximus\Tests\React\Cache\RedisTest::testSetTtl";i:4;s:60:"WyriHaximus\Tests\React\Cache\RedisTest::testSetTtlException";i:4;s:57:"WyriHaximus\Tests\React\Cache\RedisTest::testSetException";i:4;s:51:"WyriHaximus\Tests\React\Cache\RedisTest::testDelete";i:4;s:60:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteException";i:4;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testHas";i:4;s:59:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteMultiple";i:4;s:68:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteMultipleException";i:4;s:50:"WyriHaximus\Tests\React\Cache\RedisTest::testCLear";i:4;s:56:"WyriHaximus\Tests\React\Cache\RedisTest::testSetMultiple";i:4;s:56:"WyriHaximus\Tests\React\Cache\RedisTest::testGetMultiple";i:4;}s:5:"times";a:116:{s:84:"WyriHaximus\React\Tests\ChildProcess\Messenger\ChildProcess\ProcessTest::testProcess";d:0.043;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #0";d:0.001;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #1";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #2";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #3";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #4";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #5";d:0.001;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #6";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #7";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #8";d:0;s:110:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #9";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #10";d:0.001;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #11";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #12";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #13";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #14";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #15";d:0.001;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #16";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #17";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #18";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #19";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #20";d:0.001;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #21";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #22";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #23";d:0;s:111:"WyriHaximus\React\Tests\ChildProcess\Messenger\Examples\ExamplesChildProcessTest::testIsPrime with data set #24";d:0;s:88:"WyriHaximus\React\Tests\ChildProcess\Messenger\FactoryTest::testParentFromClassException";d:0.01;s:84:"WyriHaximus\React\Tests\ChildProcess\Messenger\FactoryTest::parentFromClassActualRun";d:0.126;s:76:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\ErrorTest::testBasic";d:0.006;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #0";d:0.004;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #1";d:0.005;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #2";d:0.004;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #3";d:0.004;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #4";d:0.009;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLine with data set #5";d:0.006;s:90:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\FactoryTest::testFromLineException";d:0.003;s:108:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineDecoderTest::testLines with data set "throwable"";d:0.001;s:105:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineDecoderTest::testLines with data set "simple"";d:0.004;s:106:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineDecoderTest::testLines with data set "complex"";d:0.002;s:108:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineEncoderTest::testLines with data set "throwable"";d:0.001;s:105:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineEncoderTest::testLines with data set "simple"";d:0.001;s:106:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineEncoderTest::testLines with data set "complex"";d:0.001;s:92:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineTest::testBasic with data set #0";d:0.001;s:92:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\LineTest::testBasic with data set #1";d:0.001;s:78:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\MessageTest::testBasic";d:0.001;s:78:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\PayloadTest::testBasic";d:0.002;s:79:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcErrorTest::testBasic";d:0.005;s:81:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcSuccessTest::testBasic";d:0.001;s:74:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcTest::testBasic";d:0.001;s:83:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcTest::testHasNoRpcTarget";d:0.003;s:76:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcTest::testSuccess";d:0.002;s:74:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\RpcTest::testError";d:0.002;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\SecureLineTest::testBasic with data set #0";d:0.004;s:98:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\SecureLineTest::testBasic with data set #1";d:0.004;s:93:"WyriHaximus\React\Tests\ChildProcess\Messenger\Messages\SecureLineTest::testSignatureMismatch";d:0.001;s:78:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testSetAndHasRpc";d:0.003;s:73:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testMessage";d:0.002;s:71:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testError";d:0.002;s:69:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testRpc";d:0.002;s:76:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testEmitOnData";d:0.001;s:73:"WyriHaximus\React\Tests\ChildProcess\Messenger\MessengerTest::testCrashed";d:0.001;s:77:"WyriHaximus\React\Tests\ChildProcess\Messenger\OutstandingCallTest::testBasic";d:0.001;s:78:"WyriHaximus\React\Tests\ChildProcess\Messenger\OutstandingCallsTest::testBasic";d:0.001;s:76:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testChildProcess";d:0.032;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #0";d:0.002;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #1";d:0.001;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #2";d:0.001;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #3";d:0.001;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #4";d:0.001;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #5";d:0.001;s:91:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testNotAlogger with data set #6";d:0.001;s:81:"WyriHaximus\React\Tests\ChildProcess\PSR3\ChildProcessTest::testErrorWhileLogging";d:0.003;s:47:"WyriHaximus\Tests\React\Cache\JsonTest::testGet";d:0.03;s:66:"WyriHaximus\Tests\React\Cache\JsonTest::testGetNullShouldBeIgnored";d:0.001;s:47:"WyriHaximus\Tests\React\Cache\JsonTest::testSet";d:0.001;s:50:"WyriHaximus\Tests\React\Cache\JsonTest::testDelete";d:0.001;s:55:"WyriHaximus\Tests\React\Cache\JsonTest::testGetMultiple";d:0.001;s:74:"WyriHaximus\Tests\React\Cache\JsonTest::testGetMultipleNullShouldBeIgnored";d:0.001;s:55:"WyriHaximus\Tests\React\Cache\JsonTest::testSetMultiple";d:0.001;s:58:"WyriHaximus\Tests\React\Cache\JsonTest::testDeleteMultiple";d:0.001;s:49:"WyriHaximus\Tests\React\Cache\JsonTest::testClear";d:0.001;s:47:"WyriHaximus\Tests\React\Cache\JsonTest::testHas";d:0.001;s:65:"WyriHaximus\Tests\React\Cache\FallbackTest::testGetPrimaryHasItem";d:0.032;s:89:"WyriHaximus\Tests\React\Cache\FallbackTest::testGetFallbackHasItemAndWIllBeAddedToPrimary";d:0.001;s:51:"WyriHaximus\Tests\React\Cache\FallbackTest::testSet";d:0.002;s:59:"WyriHaximus\Tests\React\Cache\FallbackTest::testSetOneFails";d:0.002;s:60:"WyriHaximus\Tests\React\Cache\FallbackTest::testSetException";d:0.002;s:54:"WyriHaximus\Tests\React\Cache\FallbackTest::testRemove";d:0.002;s:63:"WyriHaximus\Tests\React\Cache\FallbackTest::testRemoveException";d:0.001;s:51:"WyriHaximus\Tests\React\Cache\FallbackTest::testHas";d:0.001;s:60:"WyriHaximus\Tests\React\Cache\FallbackTest::testHasException";d:0.001;s:53:"WyriHaximus\Tests\React\Cache\FallbackTest::testClear";d:0.002;s:62:"WyriHaximus\Tests\React\Cache\FallbackTest::testClearException";d:0.002;s:59:"WyriHaximus\Tests\React\Cache\FallbackTest::testSetMultiple";d:0.002;s:67:"WyriHaximus\Tests\React\Cache\FallbackTest::testSetMultipleOneFails";d:0.001;s:68:"WyriHaximus\Tests\React\Cache\FallbackTest::testSetMultipleException";d:0.001;s:62:"WyriHaximus\Tests\React\Cache\FallbackTest::testDeleteMultiple";d:0.002;s:70:"WyriHaximus\Tests\React\Cache\FallbackTest::testDeleteMultipleOneFails";d:0.001;s:71:"WyriHaximus\Tests\React\Cache\FallbackTest::testDeleteMultipleException";d:0.002;s:59:"WyriHaximus\Tests\React\Cache\FallbackTest::testGetMultiple";d:0.001;s:67:"WyriHaximus\Tests\React\Cache\FallbackTest::testGetMultipleOneFails";d:0.001;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testGet";d:0.053;s:59:"WyriHaximus\Tests\React\Cache\RedisTest::testGetNonExistant";d:0.001;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testSet";d:0.001;s:57:"WyriHaximus\Tests\React\Cache\RedisTest::testSetGlobalTtl";d:0.001;s:51:"WyriHaximus\Tests\React\Cache\RedisTest::testSetTtl";d:0.001;s:60:"WyriHaximus\Tests\React\Cache\RedisTest::testSetTtlException";d:0.001;s:57:"WyriHaximus\Tests\React\Cache\RedisTest::testSetException";d:0.001;s:51:"WyriHaximus\Tests\React\Cache\RedisTest::testDelete";d:0.001;s:60:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteException";d:0.001;s:48:"WyriHaximus\Tests\React\Cache\RedisTest::testHas";d:0.001;s:59:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteMultiple";d:0.001;s:68:"WyriHaximus\Tests\React\Cache\RedisTest::testDeleteMultipleException";d:0.001;s:50:"WyriHaximus\Tests\React\Cache\RedisTest::testCLear";d:0.001;s:56:"WyriHaximus\Tests\React\Cache\RedisTest::testSetMultiple";d:0.001;s:56:"WyriHaximus\Tests\React\Cache\RedisTest::testGetMultiple";d:0.001;}}}
\ No newline at end of file
diff --git a/etc/qa/composer-require-checker.json b/etc/qa/composer-require-checker.json
index 073594b..040b1e2 100644
--- a/etc/qa/composer-require-checker.json
+++ b/etc/qa/composer-require-checker.json
@@ -2,9 +2,8 @@
"symbol-whitelist" : [
"null", "true", "false",
"static", "self", "parent",
- "array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
- "Safe\\date", "WyriHaximus\\Constants\\Boolean\\FALSE_", "WyriHaximus\\Constants\\Boolean\\TRUE_",
- "WyriHaximus\\Constants\\Numeric\\ONE_FLOAT"
+ "array", "string", "int", "float", "bool", "iterable", "callable", "void", "object", "mixed",
+ "Safe\\json_encode", "futurePromise", "WyriHaximus\\Constants\\ComposerAutoloader\\LOCATION"
],
"php-core-extensions" : [
"Core",
diff --git a/etc/qa/phpstan.neon b/etc/qa/phpstan.neon
index 28bac7c..bdc2171 100644
--- a/etc/qa/phpstan.neon
+++ b/etc/qa/phpstan.neon
@@ -1,7 +1,11 @@
parameters:
+ level: max
ergebnis:
- classesAllowedToBeExtended:
- - Exception
+ noExtends:
+ classesAllowedToBeExtended:
+ - ReactParallel\EventLoop\CancelledException
+ - ReactParallel\EventLoop\CanceledFuture
+ - ReactParallel\EventLoop\KilledRuntime
includes:
- ../../vendor/wyrihaximus/async-test-utilities/rules.neon
diff --git a/etc/qa/phpunit.xml b/etc/qa/phpunit.xml
index 426c660..5207296 100644
--- a/etc/qa/phpunit.xml
+++ b/etc/qa/phpunit.xml
@@ -10,4 +10,7 @@
../../src/
+
+
+
diff --git a/etc/qa/psalm.xml b/etc/qa/psalm.xml
index 13de275..82fe126 100644
--- a/etc/qa/psalm.xml
+++ b/etc/qa/psalm.xml
@@ -1,6 +1,6 @@
+
@@ -49,4 +50,8 @@
-
+
+
+
+
+
diff --git a/infection.json.dist b/infection.json.dist
index 0d87221..e31539a 100644
--- a/infection.json.dist
+++ b/infection.json.dist
@@ -12,9 +12,9 @@
"perMutator": "./var/infection-per-mutator.md"
},
"mutators": {
- "@default": false
+ "@default": true
},
"phpUnit": {
"configDir": "./etc/qa/"
}
-}
\ No newline at end of file
+}
diff --git a/src/Redis.php b/src/Redis.php
index ab8b47b..d5672f3 100644
--- a/src/Redis.php
+++ b/src/Redis.php
@@ -15,20 +15,9 @@
final class Redis implements CacheInterface
{
- private Client $client;
-
- private string $prefix;
-
- private int $ttl;
-
- /**
- * @phpstan-ignore-next-line
- */
- public function __construct(Client $client, string $prefix = 'react:cache:', int $ttl = 0)
+ /** @phpstan-ignore-next-line */
+ public function __construct(private Client $client, private string $prefix = 'react:cache:', private int $ttl = 0)
{
- $this->client = $client;
- $this->prefix = $prefix;
- $this->ttl = $ttl;
}
/**
@@ -46,9 +35,7 @@ public function get($key, $default = null): PromiseInterface
return resolve(null);
}
- /**
- * @phpstan-ignore-next-line
- */
+ /** @phpstan-ignore-next-line */
return $this->client->get($this->prefix . $key);
});
}
@@ -60,36 +47,28 @@ public function get($key, $default = null): PromiseInterface
public function set($key, $value, $ttl = null): PromiseInterface
{
if ($this->ttl === 0 && $ttl === null) {
- /**
- * @phpstan-ignore-next-line
- */
- return $this->client->set($this->prefix . $key, $value)->then(
+ /** @phpstan-ignore-next-line */
+ return $this->client->set($this->prefix . $key, (string) $value)->then(
static fn (): PromiseInterface => resolve(true),
static fn (): PromiseInterface => resolve(false),
);
}
- /**
- * @phpstan-ignore-next-line
- */
+ /** @phpstan-ignore-next-line */
return $this->client->psetex(
$this->prefix . $key,
- (float) ($this->ttl > 0 ? $this->ttl : $ttl) * 1000,
- $value
+ (string) ((float) ($this->ttl > 0 ? $this->ttl : $ttl) * 1000),
+ (string) $value, /** @phpstan-ignore-line */
)->then(
static fn (): PromiseInterface => resolve(true),
static fn (): PromiseInterface => resolve(false),
);
}
- /**
- * @inheritDoc
- */
+ /** @inheritDoc */
public function delete($key): PromiseInterface
{
- /**
- * @phpstan-ignore-next-line
- */
+ /** @phpstan-ignore-next-line */
return $this->client->del($this->prefix . $key)->then(
static fn (): PromiseInterface => resolve(true),
static fn (): PromiseInterface => resolve(false),
@@ -117,16 +96,15 @@ public function getMultiple(array $keys, $default = null)
public function setMultiple(array $values, $ttl = null)
{
$promises = [];
+ /** @psalm-suppress MixedAssignment */
foreach ($values as $key => $value) {
- $promises[$key] = $this->set($key, $value, $ttl);
+ $promises[$key] = $this->set((string) $key, $value, $ttl);
}
return all($promises);
}
- /**
- * @inheritDoc
- */
+ /** @inheritDoc */
public function deleteMultiple(array $keys)
{
foreach ($keys as $index => $key) {
@@ -143,9 +121,7 @@ public function deleteMultiple(array $keys)
);
}
- /**
- * @inheritDoc
- */
+ /** @inheritDoc */
public function clear()
{
/**
@@ -153,20 +129,17 @@ public function clear()
* @psalm-suppress TooManyTemplateParams
*/
return $this->client->keys($this->prefix . '*')->then(function (array $keys): PromiseInterface {
+ /** @var array $keys */
$keys = preg_replace('|^' . preg_quote($this->prefix) . '|', '', $keys);
return $this->deleteMultiple($keys);
});
}
- /**
- * @inheritDoc
- */
+ /** @inheritDoc */
public function has($key)
{
- /**
- * @phpstan-ignore-next-line
- */
+ /** @phpstan-ignore-next-line */
return $this->client->exists($this->prefix . $key);
}
}
diff --git a/tests/ClientStub.php b/tests/ClientStub.php
index 13bbe42..7d445aa 100644
--- a/tests/ClientStub.php
+++ b/tests/ClientStub.php
@@ -10,16 +10,12 @@
use function React\Promise\resolve;
-/**
- * @phpstan-ignore-next-line
- */
+/** @phpstan-ignore-next-line */
class ClientStub implements Client
{
use EventEmitterTrait;
- /**
- * @phpstan-ignore-next-line
- */
+ /** @phpstan-ignore-next-line */
public function __call($name, $args): void //phpcs:disabled
{
// TODO: Implement __call() method.
diff --git a/tests/RedisTest.php b/tests/RedisTest.php
index 17d86b0..ec862bd 100644
--- a/tests/RedisTest.php
+++ b/tests/RedisTest.php
@@ -8,12 +8,11 @@
use WyriHaximus\AsyncTestUtilities\AsyncTestCase;
use WyriHaximus\React\Cache\Redis;
+use function React\Async\await;
use function React\Promise\reject;
use function React\Promise\resolve;
-/**
- * @internal
- */
+/** @internal */
final class RedisTest extends AsyncTestCase
{
public function testGet(): void
@@ -26,8 +25,7 @@ public function testGet(): void
$client->get($prefix . $key)->shouldBeCalled()->willReturn(resolve($value));
$promise = (new Redis($client->reveal(), $prefix))->get($key);
- $result = $this->await($promise);
- self::assertSame($value, $result);
+ self::assertSame($value, await($promise)); /** @phpstan-ignore-line */
}
public function testGetNonExistant(): void
@@ -37,7 +35,7 @@ public function testGetNonExistant(): void
$key = 'key';
$client->exists($prefix . $key)->shouldBeCalled()->willReturn(resolve(0));
$client->get($prefix . $key)->shouldBeCalled()->willReturn(resolve(null));
- self::assertNull($this->await((new Redis($client->reveal(), $prefix))->get($key)));
+ self::assertNull(await((new Redis($client->reveal(), $prefix))->get($key))); /** @phpstan-ignore-line */
}
public function testSet(): void
@@ -58,7 +56,7 @@ public function testSetGlobalTtl(): void
$value = 'value';
$ttl = 123;
$client->psetex($prefix . $key, $ttl * 1000, $value)->shouldBeCalled()->willReturn(resolve(null));
- self::assertTrue($this->await((new Redis($client->reveal(), $prefix, $ttl))->set($key, $value)));
+ self::assertTrue(await((new Redis($client->reveal(), $prefix, $ttl))->set($key, $value))); /** @phpstan-ignore-line */
}
public function testSetTtl(): void
@@ -69,7 +67,7 @@ public function testSetTtl(): void
$value = 'value';
$ttl = 123;
$client->psetex($prefix . $key, $ttl * 1000, $value)->shouldBeCalled()->willReturn(resolve(null));
- self::assertTrue($this->await((new Redis($client->reveal(), $prefix))->set($key, $value, $ttl)));
+ self::assertTrue(await((new Redis($client->reveal(), $prefix))->set($key, $value, $ttl))); /** @phpstan-ignore-line */
}
public function testSetTtlException(): void
@@ -80,7 +78,7 @@ public function testSetTtlException(): void
$value = 'value';
$ttl = 123;
$client->psetex($prefix . $key, $ttl * 1000, $value)->shouldBeCalled()->willReturn(reject(new Exception('fail!')));
- self::assertFalse($this->await((new Redis($client->reveal(), $prefix))->set($key, $value, $ttl)));
+ self::assertFalse(await((new Redis($client->reveal(), $prefix))->set($key, $value, $ttl))); /** @phpstan-ignore-line */
}
public function testSetException(): void
@@ -90,7 +88,7 @@ public function testSetException(): void
$key = 'key';
$value = 'value';
$client->set($prefix . $key, $value)->shouldBeCalled()->willReturn(reject(new Exception('fail!')));
- self::assertFalse($this->await((new Redis($client->reveal(), $prefix))->set($key, $value)));
+ self::assertFalse(await((new Redis($client->reveal(), $prefix))->set($key, $value))); /** @phpstan-ignore-line */
}
public function testDelete(): void
@@ -156,7 +154,7 @@ public function testSetMultiple(): void
$value = 'value';
$ttl = 123;
$client->psetex($prefix . $key, $ttl * 1000, $value)->shouldBeCalled()->willReturn(resolve(true));
- self::assertSame([$key => true], $this->await((new Redis($client->reveal(), $prefix))->setMultiple([$key => $value], $ttl)));
+ self::assertSame([$key => true], await((new Redis($client->reveal(), $prefix))->setMultiple([$key => $value], $ttl))); /** @phpstan-ignore-line */
}
public function testGetMultiple(): void
@@ -167,6 +165,6 @@ public function testGetMultiple(): void
$value = 'value';
$client->exists($prefix . $key)->shouldBeCalled()->willReturn(resolve(true));
$client->get($prefix . $key)->shouldBeCalled()->willReturn(resolve($value));
- self::assertSame([$key => $value], $this->await((new Redis($client->reveal(), $prefix))->getMultiple([$key])));
+ self::assertSame([$key => $value], await((new Redis($client->reveal(), $prefix))->getMultiple([$key]))); /** @phpstan-ignore-line */
}
}