diff --git a/.dependabot/config.yml b/.dependabot/config.yml
deleted file mode 100644
index c9f37fa..0000000
--- a/.dependabot/config.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-version: 1
-update_configs:
- - package_manager: "php:composer"
- directory: "/"
- update_schedule: "live"
- default_labels:
- - "Dependencies ๐ฆ"
- - "PHP ๐"
- version_requirement_updates: "widen_ranges"
- automerged_updates:
- - match:
- dependency_type: "all"
- update_type: "semver:minor"
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..95b2348
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,23 @@
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 4
+insert_final_newline = true
+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 3a059e7..418a22e 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,6 +1,13 @@
-.travis.yml export-ignore
-.gitignore export-ignore
+# Ignoring files for distribution archieves
+.github/ export-ignore
+etc/ export-ignore
+tests/ 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/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 0000000..fbfd285
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1 @@
+* @WyriHaximus
diff --git a/.github/boring-cyborg.yml b/.github/boring-cyborg.yml
new file mode 100644
index 0000000..80bcb6b
--- /dev/null
+++ b/.github/boring-cyborg.yml
@@ -0,0 +1,60 @@
+labelPRBasedOnFilePath:
+ "Documentation ๐":
+ - README.md
+ - CONTRIBUTING.md
+ "Dependencies ๐ฆ":
+ - Dockerfile*
+ - composer.*
+ - package.json
+ - package-lock.json
+ - yarn.lock
+ "Docker ๐ณ":
+ - Dockerfile*
+ - .docker/**/*
+ "Image ๐ผ":
+ - "**/*.gif"
+ - "**/*.jpg"
+ - "**/*.jpeg"
+ - "**/*.png"
+ - "**/*.webp"
+ "CSS ๐ฉโ๐จ":
+ - "**/*.css"
+ "HTML ๐ทโโ๏ธ":
+ - "**/*.htm"
+ - "**/*.html"
+ "NEON ๐ฆนโโ๏ธ":
+ - "**/*.neon"
+ "MarkDown ๐":
+ - "**/*.md"
+ "YAML ๐":
+ - "**/*.yml"
+ - "**/*.yaml"
+ "JSON ๐จโ๐ผ":
+ - "**/*.json"
+ "Go ๐น":
+ - "**/*.go"
+ "JavaScript ๐ฆ":
+ - "**/*.js"
+ - package.json
+ - package-lock.json
+ - yarn.lock
+ "PHP ๐":
+ - "**/*.php"
+ - composer.*
+ "Configuration โ":
+ - .github/*
+ "CI ๐ง":
+ - .github/workflows/*
+ - .scrutinizer.yml
+ "Templates ๐ฒ":
+ - "**/*.twig"
+ - "**/*.tpl"
+ "Helm โธ":
+ - .helm/**/*
+ "Tests ๐งช":
+ - tests/**/*
+ "Source ๐ฎ":
+ - src/**/*
+
+labelerFlags:
+ labelOnPRUpdates: true
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/settings.yml b/.github/settings.yml
new file mode 100644
index 0000000..67ba9d3
--- /dev/null
+++ b/.github/settings.yml
@@ -0,0 +1,115 @@
+repository:
+ private: false
+ has_issues: true
+ has_wiki: false
+ has_downloads: true
+ default_branch: master
+ allow_squash_merge: false
+ allow_merge_commit: true
+ allow_rebase_merge: false
+
+# Labels: define labels for Issues and Pull Requests
+labels:
+ - name: "Dependencies ๐ฆ"
+ color: 0025ff
+ description: "Pull requests that update a dependency file"
+ - name: "Image ๐ผ"
+ color: 00ffff
+ - name: "HTML ๐ทโโ๏ธ"
+ color: ffffff
+ - name: "CSS ๐ฉโ๐จ"
+ color: b3b3b3
+ - name: "JavaScript ๐ฆ"
+ color: ffff00
+ - name: "Go ๐น"
+ color: 00ADD8
+ - name: "JSON ๐จโ๐ผ"
+ color: 00ADD8
+ - name: "NEON ๐ฆนโโ๏ธ"
+ color: CE3262
+ - name: "MarkDown ๐"
+ color: 000000
+ - name: "YAML ๐"
+ color: ff1aff
+ - name: "Templates ๐ฒ"
+ color: 009933
+ - name: "Helm โธ"
+ color: 091C84
+ - name: "Tests ๐งช"
+ color: ffe6e6
+ - name: "Source ๐ฎ"
+ color: e6ffe6
+ - name: "Configuration โ"
+ color: b3b3cc
+ - name: "PHP ๐"
+ color: 8892BF
+ description: "Hypertext Pre Processor"
+ - name: "Docker ๐ณ"
+ color: 0db7ed
+ description: "Pull requests that relate to Docker"
+ - name: "CI ๐ง"
+ color: ffff00
+ - name: "Feature ๐"
+ color: 66ff99
+ - name: "Documentation ๐"
+ color: 6666ff
+ - name: "Security ๐ต๏ธโโ๏ธ"
+ color: ff0000
+ - name: "Hacktoberfest ๐"
+ color: 152347
+ - name: "Bug ๐"
+ color: d73a4a
+ description: "Something isn't working"
+ oldname: bug
+ - name: "Duplicate โ"
+ color: cfd3d7
+ description: "This issue or pull request already exists"
+ oldname: duplicate
+ - name: "Enhancement โจ"
+ color: a2eeef
+ description: "New feature or request"
+ oldname: enhancement
+ - name: "Good First Issue"
+ color: 7057ff
+ description: "Good for newcomers"
+ oldname: "good first issue"
+ - name: "Help Wanted"
+ color: 008672
+ description: "Extra attention is needed"
+ oldname: "help wanted"
+ - name: Invalid
+ color: e4e669
+ description: "This doesn't seem right"
+ oldname: invalid
+ - name: "Question โ"
+ color: d876e3
+ description: "Further information is requested"
+ oldname: question
+ - name: "Will not be fixed ๐"
+ color: ffffff
+ description: "This will not be worked on"
+ oldname: wontfix
+ - name: "Sponsor Request โค๏ธ"
+ color: fedbf0
+ description: "Issue/PR opened by sponsor"
+
+branches:
+ - name: master
+ protection:
+ required_pull_request_reviews:
+ required_approving_review_count: 1
+ dismiss_stale_reviews: true
+ require_code_owner_reviews: true
+ # Required. Require status checks to pass before merging. Set to null to disable
+ required_status_checks:
+ # Required. Require branches to be up to date before merging.
+ strict: true
+ # Required. The list of status checks to require in order to merge into this branch
+ contexts: []
+ # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
+ enforce_admins: true
+ # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable.
+ restrictions:
+ apps: []
+ users: []
+ teams: []
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 978416c..cd15956 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,81 +1,17 @@
name: Continuous Integration
on:
push:
+ branches:
+ - 'main'
+ - '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:
- generate-checks-strategy:
- name: Generate Checks
- runs-on: ubuntu-latest
- outputs:
- check: ${{ steps.generate-checks-strategy.outputs.check }}
- steps:
- - uses: actions/checkout@v1
- - id: generate-checks-strategy
- name: Generate check
- run: |
- printf "Checks found: %s\r\n" $(make task-list-ci)
- printf "::set-output name=check::%s" $(make task-list-ci)
- lint:
- runs-on: ubuntu-latest
- steps:
- - name: Lint Code Base
- uses: docker://github/super-linter:v2.2.0
- composer-install:
- strategy:
- fail-fast: false
- matrix:
- php: [7.4]
- composer: [lowest, current, highest]
- needs: lint
- runs-on: ubuntu-latest
- container:
- image: wyrihaximusnet/php:${{ matrix.php }}-zts-alpine3.12-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:
- strategy:
- fail-fast: false
- matrix:
- php: [7.4]
- composer: [lowest, current, highest]
- check: ${{ fromJson(needs.generate-checks-strategy.outputs.check) }}
- needs:
- - composer-install
- - generate-checks-strategy
- runs-on: ubuntu-latest
- container:
- image: wyrihaximusnet/php:${{ matrix.php }}-zts-alpine3.12-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 }}
+ ci:
+ name: Continuous Integration
+ uses: WyriHaximus/github-workflows/.github/workflows/package.yaml@main
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/.gitignore b/.gitignore
index 92bceac..03ad991 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
-var
-vendor
+var/*
+!var/.gitkeep
+vendor/
+etc/qa/.phpunit.result.cache
diff --git a/.php_cs b/.php_cs
deleted file mode 100644
index 537211f..0000000
--- a/.php_cs
+++ /dev/null
@@ -1,24 +0,0 @@
-setFinder(
- PhpCsFixer\Finder::create()
- ->in($paths)
- ->append($paths)
- )
- ->setUsingCache(false)
- ->setRules([
- 'native_function_invocation' => false,
- ])
- ;
-})();
diff --git a/.scrutinizer.yml b/.scrutinizer.yml
deleted file mode 100644
index a7a8426..0000000
--- a/.scrutinizer.yml
+++ /dev/null
@@ -1,68 +0,0 @@
-filter:
- paths: [src/*]
- excluded_paths: [tests/* examples/*]
-tools:
- external_code_coverage: true
- php_analyzer: true
- php_hhvm: true
- php_sim: true
- php_pdepend: true
- sensiolabs_security_checker: true
- php_changetracking: true
- php_code_sniffer:
- enabled: true
- config:
- tab_width: 0
- encoding: utf8
- ruleset: ~
- standard: "PSR2"
- php_cs_fixer:
- enabled: true
- config:
- level: psr2
- php_mess_detector:
- enabled: true
- config:
- ruleset: ~
- code_size_rules:
- cyclomatic_complexity: true
- npath_complexity: true
- excessive_method_length: true
- excessive_class_length: true
- excessive_parameter_list: true
- excessive_public_count: true
- too_many_fields: true
- too_many_methods: true
- excessive_class_complexity: true
- design_rules:
- exit_expression: true
- eval_expression: true
- goto_statement: true
- number_of_class_children: true
- depth_of_inheritance: true
- coupling_between_objects: true
- unused_code_rules:
- unused_private_field: true
- unused_local_variable: true
- unused_private_method: true
- unused_formal_parameter: true
- naming_rules:
- short_variable:
- minimum: 3
- long_variable:
- maximum: 20
- short_method:
- minimum: 3
- constructor_conflict: true
- constant_naming: true
- boolean_method_name: true
- controversial_rules:
- superglobals: true
- camel_case_class_name: true
- camel_case_property_name: true
- camel_case_method_name: true
- camel_case_parameter_name: true
- camel_case_variable_name: true
-checks:
- php:
- code_rating: true
diff --git a/Makefile b/Makefile
index 2b23d89..94a99ff 100644
--- a/Makefile
+++ b/Makefile
@@ -3,64 +3,87 @@ SHELL=bash
.PHONY: *
-DOCKER_CGROUP:=$(shell cat /proc/1/cgroup | grep docker | wc -l)
+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 /.dockerenv)","")
+ifneq ("$(wildcard /.you-are-in-a-wyrihaximus.net-php-docker-image)","")
IN_DOCKER=TRUE
-else ifneq ("$(DOCKER_CGROUP)","0")
- IN_DOCKER=TRUE
else
- IN_DOCKER=FALSe
+ IN_DOCKER=FALSE
endif
ifeq ("$(IN_DOCKER)","TRUE")
- DOCKER_RUN=
+ DOCKER_RUN:=
else
- DOCKER_RUN=docker run --rm -it \
+ DOCKER_RUN:=docker run --rm -it \
-v "`pwd`:`pwd`" \
+ -v "${COMPOSER_CACHE_DIR}:${COMPOSER_CONTAINER_CACHE_DIR}" \
-w "`pwd`" \
- "wyrihaximusnet/php:7.4-zts-alpine3.12-dev"
+ "ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-zts-alpine${SLIM_DOCKER_IMAGE}-dev"
endif
-all: syntax-php cs-fix cs stan psalm unit infection composer-require-checker composer-unused backward-compatibility-check
+ifneq (,$(findstring icrosoft,$(shell cat /proc/version)))
+ THREADS=1
+else
+ THREADS=$(shell nproc)
+endif
+
+all: ## Runs everything ###
+ @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | grep -v "###" | awk 'BEGIN {FS = ":.*?## "}; {printf "%s\n", $$1}' | xargs --open-tty $(MAKE)
syntax-php: ## Lint PHP syntax
$(DOCKER_RUN) vendor/bin/parallel-lint --exclude vendor .
-cs: ## Check the code for code style issues
- $(DOCKER_RUN) vendor/bin/phpcs --parallel=$(shell nproc)
-
cs-fix: ## Fix any automatically fixable code style issues
- $(DOCKER_RUN) vendor/bin/phpcbf --parallel=$(shell nproc)
+ $(DOCKER_RUN) vendor/bin/phpcbf --parallel=$(THREADS) --cache=./var/.phpcs.cache.json --standard=./etc/qa/phpcs.xml || $(DOCKER_RUN) vendor/bin/phpcbf --parallel=$(THREADS) --cache=./var/.phpcs.cache.json --standard=./etc/qa/phpcs.xml || $(DOCKER_RUN) vendor/bin/phpcbf --parallel=$(THREADS) --cache=./var/.phpcs.cache.json --standard=./etc/qa/phpcs.xml -vvvv
+
+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 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=$(shell nproc) --shepherd --stats
+ $(DOCKER_RUN) vendor/bin/psalm --threads=$(THREADS) --shepherd --stats --config=./etc/qa/psalm.xml
+
+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: ## Run tests
- $(DOCKER_RUN) vendor/bin/phpunit --colors=always -c phpunit.xml.dist --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml
+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
-unit-ci: unit
- if [ -f ./build/logs/clover.xml ]; then wget https://scrutinizer-ci.com/ocular.phar && sleep 3 && php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
+mutation-testing: ## Run mutation testing
+ $(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)
-infection: ## Run mutation testing
- $(DOCKER_RUN) vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(shell nproc)
+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=composer-require-checker.json
+ $(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
backward-compatibility-check: ## Check code for backwards incompatible changes
- $(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check || true
+ $(MAKE) backward-compatibility-check-raw || true
+
+backward-compatibility-check-raw: ## Check code for backwards incompatible changes, doesn't ignore the failure ###
+ $(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check
+
+shell: ## Provides Shell access in the expected environment ###
+ $(DOCKER_RUN) ash
-task-list-ci:
- @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%s\n", $$1}' | jq --raw-input --slurp -c 'split("\n")| .[0:-1]'
+task-list-ci: ## CI: Generate a JSON array of jobs to run, matches the commands run when running `make (|all)` ###
+ @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | grep -v "###" | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%s\n", $$1}' | jq --raw-input --slurp -c 'split("\n")| .[0:-1]'
-help:
+help: ## Show this help ###
@printf "\033[33mUsage:\033[0m\n make [target]\n\n\033[33mTargets:\033[0m\n"
- @printf " \033[32m%-32s\033[0m %s\n" "all" "Runs everything"
- @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[32m%-32s\033[0m %s\n", $$1, $$2}'
+ @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[32m%-32s\033[0m %s\n", $$1, $$2}' | tr -d '#'
diff --git a/composer.json b/composer.json
index d749505..8f8f170 100644
--- a/composer.json
+++ b/composer.json
@@ -10,22 +10,17 @@
}
],
"require": {
- "php": "^7.4",
+ "php": "^8.2",
"ext-parallel": "*",
- "react-parallel/event-loop": "^1.0",
+ "react-parallel/event-loop": "dev-master as 2.0",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
- "wyrihaximus/constants": "^1.4.3"
+ "wyrihaximus/constants": "^1.6"
},
"require-dev": {
- "wyrihaximus/async-test-utilities": "^3.2",
- "wyrihaximus/ticking-promise": "^1.6"
- },
- "config": {
- "platform": {
- "php": "7.4.7"
- },
- "sort-packages": true
+ "the-orville/exceptions": "^1.0",
+ "wyrihaximus/async-test-utilities": "^7.2",
+ "wyrihaximus/ticking-promise": "^3"
},
"autoload": {
"psr-4": {
@@ -37,8 +32,18 @@
"ReactParallel\\Tests\\Runtime\\": "tests/"
}
},
- "minimum-stability": "dev",
- "prefer-stable": true,
+ "config": {
+ "allow-plugins": {
+ "dealerdirect/phpcodesniffer-composer-installer": true,
+ "ergebnis/composer-normalize": true,
+ "icanhazstring/composer-unused": true,
+ "infection/extension-installer": true
+ },
+ "platform": {
+ "php": "8.2.13"
+ },
+ "sort-packages": true
+ },
"scripts": {
"post-install-cmd": [
"composer normalize"
diff --git a/composer.lock b/composer.lock
index 257928e..2289ba8 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,35 +4,38 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "d1eed3298c77dabe2b5aee7f5996f5fe",
+ "content-hash": "d2ead3bcdffb03a5011820a9ccefb05a",
"packages": [
{
"name": "lcobucci/clock",
- "version": "2.0.0",
+ "version": "3.2.0",
"source": {
"type": "git",
"url": "https://github.com/lcobucci/clock.git",
- "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3"
+ "reference": "6f28b826ea01306b07980cb8320ab30b966cd715"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3",
- "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3",
+ "url": "https://api.github.com/repos/lcobucci/clock/zipball/6f28b826ea01306b07980cb8320ab30b966cd715",
+ "reference": "6f28b826ea01306b07980cb8320ab30b966cd715",
"shasum": ""
},
"require": {
- "php": "^7.4 || ^8.0"
+ "php": "~8.2.0 || ~8.3.0",
+ "psr/clock": "^1.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
},
"require-dev": {
- "infection/infection": "^0.17",
- "lcobucci/coding-standard": "^6.0",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^0.12",
- "phpstan/phpstan-deprecation-rules": "^0.12",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpstan/phpstan-strict-rules": "^0.12",
- "phpunit/php-code-coverage": "9.1.4",
- "phpunit/phpunit": "9.3.7"
+ "infection/infection": "^0.27",
+ "lcobucci/coding-standard": "^11.0.0",
+ "phpstan/extension-installer": "^1.3.1",
+ "phpstan/phpstan": "^1.10.25",
+ "phpstan/phpstan-deprecation-rules": "^1.1.3",
+ "phpstan/phpstan-phpunit": "^1.3.13",
+ "phpstan/phpstan-strict-rules": "^1.5.1",
+ "phpunit/phpunit": "^10.2.3"
},
"type": "library",
"autoload": {
@@ -53,7 +56,7 @@
"description": "Yet another clock abstraction",
"support": {
"issues": "https://github.com/lcobucci/clock/issues",
- "source": "https://github.com/lcobucci/clock/tree/2.0.x"
+ "source": "https://github.com/lcobucci/clock/tree/3.2.0"
},
"funding": [
{
@@ -65,40 +68,86 @@
"type": "patreon"
}
],
- "time": "2020-08-27T18:56:02+00:00"
+ "time": "2023-11-17T17:00:27+00:00"
+ },
+ {
+ "name": "psr/clock",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
+ },
+ "time": "2022-11-25T14:36:26+00:00"
},
{
"name": "react-parallel/event-loop",
- "version": "1.2.0",
+ "version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/reactphp-parallel/event-loop.git",
- "reference": "d50e8997d82de806fee022b6d8b1d8d075f9ca3e"
+ "reference": "6a409d00ec85eaa17a156690141376143130df91"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp-parallel/event-loop/zipball/d50e8997d82de806fee022b6d8b1d8d075f9ca3e",
- "reference": "d50e8997d82de806fee022b6d8b1d8d075f9ca3e",
+ "url": "https://api.github.com/repos/reactphp-parallel/event-loop/zipball/6a409d00ec85eaa17a156690141376143130df91",
+ "reference": "6a409d00ec85eaa17a156690141376143130df91",
"shasum": ""
},
"require": {
"ext-parallel": "*",
- "php": "^7.4",
- "react/event-loop": "^1.1",
- "react/promise": "^2.7",
- "reactivex/rxphp": "^2.0",
+ "php": "^8.2",
+ "react/async": "^4.2",
+ "react/event-loop": "^1.5",
+ "react/promise": "^2.11 || ^3.0",
+ "reactivex/rxphp": "^2.0.12",
"wyrihaximus/constants": "^1.6.0",
- "wyrihaximus/metrics": "^1.0"
+ "wyrihaximus/metrics": "^1.0 || ^2",
+ "wyrihaximus/react-awaitable-observable": "^1.1"
},
"require-dev": {
- "wyrihaximus/async-test-utilities": "^3.2"
+ "wyrihaximus/async-test-utilities": "^7.2"
},
+ "default-branch": true,
"type": "library",
- "extra": {
- "unused": [
- "ext-parallel"
- ]
- },
"autoload": {
"psr-4": {
"ReactParallel\\EventLoop\\": "src/"
@@ -118,7 +167,7 @@
"description": "๐๐๐ Event Loop bridge to ext-parallel Events",
"support": {
"issues": "https://github.com/reactphp-parallel/event-loop/issues",
- "source": "https://github.com/reactphp-parallel/event-loop/tree/1.2.0"
+ "source": "https://github.com/reactphp-parallel/event-loop/tree/master"
},
"funding": [
{
@@ -126,28 +175,28 @@
"type": "github"
}
],
- "time": "2020-12-19T16:47:19+00:00"
+ "time": "2023-12-07T14:53:16+00:00"
},
{
"name": "react-parallel/object-proxy-attributes",
- "version": "1.0.0",
+ "version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp-parallel/object-proxy-attributes.git",
- "reference": "dd73ba13b3f36fb2d7c2bd8eecee2d774d0109d0"
+ "reference": "2ee1cebc5f2a4dfd75f372ff77d144c631388859"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp-parallel/object-proxy-attributes/zipball/dd73ba13b3f36fb2d7c2bd8eecee2d774d0109d0",
- "reference": "dd73ba13b3f36fb2d7c2bd8eecee2d774d0109d0",
+ "url": "https://api.github.com/repos/reactphp-parallel/object-proxy-attributes/zipball/2ee1cebc5f2a4dfd75f372ff77d144c631388859",
+ "reference": "2ee1cebc5f2a4dfd75f372ff77d144c631388859",
"shasum": ""
},
"require": {
- "php": "^7.4"
+ "php": "^8 || ^7.4"
},
"require-dev": {
"doctrine/annotations": "^1.11",
- "wyrihaximus/test-utilities": "^2.9"
+ "wyrihaximus/test-utilities": "^2.9 || ^3.0"
},
"type": "library",
"extra": {
@@ -174,7 +223,7 @@
"description": "๐จโ๐๐ฐ๐ฉโ๐ Attributes for react-parallel/object-proxy",
"support": {
"issues": "https://github.com/reactphp-parallel/object-proxy-attributes/issues",
- "source": "https://github.com/reactphp-parallel/object-proxy-attributes/tree/1.0.0"
+ "source": "https://github.com/reactphp-parallel/object-proxy-attributes/tree/1.1.0"
},
"funding": [
{
@@ -182,43 +231,138 @@
"type": "github"
}
],
- "time": "2020-10-31T14:14:06+00:00"
+ "time": "2021-11-11T08:41:45+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": "react/event-loop",
- "version": "v1.1.1",
+ "version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/event-loop.git",
- "reference": "6d24de090cd59cfc830263cfba965be77b563c13"
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/event-loop/zipball/6d24de090cd59cfc830263cfba965be77b563c13",
- "reference": "6d24de090cd59cfc830263cfba965be77b563c13",
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^7.0 || ^6.4 || ^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/",
"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": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
"keywords": [
"asynchronous",
@@ -226,38 +370,44 @@
],
"support": {
"issues": "https://github.com/reactphp/event-loop/issues",
- "source": "https://github.com/reactphp/event-loop/tree/v1.1.1"
+ "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
},
- "time": "2020-01-01T18:39:52+00:00"
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-13T13:48:05+00:00"
},
{
"name": "react/promise",
- "version": "v2.8.0",
+ "version": "v2.11.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/promise.git",
- "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
+ "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
- "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
+ "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
"shasum": ""
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
- "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"type": "library",
"autoload": {
- "psr-4": {
- "React\\Promise\\": "src/"
- },
"files": [
"src/functions_include.php"
- ]
+ ],
+ "psr-4": {
+ "React\\Promise\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -266,7 +416,23 @@
"authors": [
{
"name": "Jan Sorgalla",
- "email": "jsorgalla@gmail.com"
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "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": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
"description": "A lightweight implementation of CommonJS Promises/A for PHP",
@@ -276,27 +442,33 @@
],
"support": {
"issues": "https://github.com/reactphp/promise/issues",
- "source": "https://github.com/reactphp/promise/tree/v2.8.0"
+ "source": "https://github.com/reactphp/promise/tree/v2.11.0"
},
- "time": "2020-05-12T15:16:56+00:00"
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-16T16:16:50+00:00"
},
{
"name": "reactivex/rxphp",
- "version": "2.0.8",
+ "version": "2.0.12",
"source": {
"type": "git",
"url": "https://github.com/ReactiveX/RxPHP.git",
- "reference": "851913a522b4955bd783d2193d7af6bda422e25d"
+ "reference": "eee8eb20ec310632d0356ff1bcaccf5c90094ba6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ReactiveX/RxPHP/zipball/851913a522b4955bd783d2193d7af6bda422e25d",
- "reference": "851913a522b4955bd783d2193d7af6bda422e25d",
+ "url": "https://api.github.com/repos/ReactiveX/RxPHP/zipball/eee8eb20ec310632d0356ff1bcaccf5c90094ba6",
+ "reference": "eee8eb20ec310632d0356ff1bcaccf5c90094ba6",
"shasum": ""
},
"require": {
"php": ">=7.0.0",
- "react/promise": "~2.2"
+ "react/promise": "^3 || ~2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9",
@@ -344,52 +516,52 @@
],
"support": {
"issues": "https://github.com/ReactiveX/RxPHP/issues",
- "source": "https://github.com/ReactiveX/RxPHP/tree/2.0.8"
+ "source": "https://github.com/ReactiveX/RxPHP/tree/2.0.12"
},
- "time": "2020-12-13T02:20:25+00:00"
+ "time": "2023-11-27T16:37:30+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": {
- "psr-4": {
- "Safe\\": [
- "lib/",
- "deprecated/",
- "generated/"
- ]
- },
"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",
@@ -410,6 +582,7 @@
"generated/fpm.php",
"generated/ftp.php",
"generated/funchand.php",
+ "generated/gettext.php",
"generated/gmp.php",
"generated/gnupg.php",
"generated/hash.php",
@@ -419,7 +592,6 @@
"generated/image.php",
"generated/imap.php",
"generated/info.php",
- "generated/ingres-ii.php",
"generated/inotify.php",
"generated/json.php",
"generated/ldap.php",
@@ -428,20 +600,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",
@@ -452,7 +618,6 @@
"generated/sem.php",
"generated/session.php",
"generated/shmop.php",
- "generated/simplexml.php",
"generated/sockets.php",
"generated/sodium.php",
"generated/solr.php",
@@ -474,6 +639,13 @@
"generated/yaz.php",
"generated/zip.php",
"generated/zlib.php"
+ ],
+ "classmap": [
+ "lib/DateTime.php",
+ "lib/DateTimeImmutable.php",
+ "lib/Exceptions/",
+ "deprecated/Exceptions/",
+ "generated/Exceptions/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -483,9 +655,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"
},
{
"name": "wyrihaximus/constants",
@@ -539,30 +711,35 @@
},
{
"name": "wyrihaximus/metrics",
- "version": "1.0.2",
+ "version": "2.1.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-metrics.git",
- "reference": "cdf8ee62b5fa6b253ec8823070ea112671757f9a"
+ "reference": "2edd4af12ddac00b29e676b4cfc3f8c310b1cb55"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-metrics/zipball/cdf8ee62b5fa6b253ec8823070ea112671757f9a",
- "reference": "cdf8ee62b5fa6b253ec8823070ea112671757f9a",
+ "url": "https://api.github.com/repos/WyriHaximus/php-metrics/zipball/2edd4af12ddac00b29e676b4cfc3f8c310b1cb55",
+ "reference": "2edd4af12ddac00b29e676b4cfc3f8c310b1cb55",
"shasum": ""
},
"require": {
- "lcobucci/clock": "^2.0",
- "php": "^7.4",
+ "lcobucci/clock": "^2.0 || ^3.0",
+ "php": "^8.1",
"react-parallel/object-proxy-attributes": "^1",
- "thecodingmachine/safe": "^1.1",
+ "thecodingmachine/safe": "^2.0",
"wyrihaximus/constants": "^1.5"
},
"require-dev": {
- "phpbench/phpbench": "^0.17.1",
- "wyrihaximus/test-utilities": "^2.5 || ^3.0"
+ "phpbench/phpbench": "^1.2.3",
+ "wyrihaximus/test-utilities": "^5.1"
},
"type": "library",
+ "extra": {
+ "unused": [
+ "thecodingmachine/safe"
+ ]
+ },
"autoload": {
"psr-4": {
"WyriHaximus\\Metrics\\": "src/"
@@ -581,7 +758,62 @@
"description": "๐ต๏ธโโ๏ธ Prometheus modelled metric VO's and registry",
"support": {
"issues": "https://github.com/WyriHaximus/php-metrics/issues",
- "source": "https://github.com/WyriHaximus/php-metrics/tree/1.0.2"
+ "source": "https://github.com/WyriHaximus/php-metrics/tree/2.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/WyriHaximus",
+ "type": "github"
+ }
+ ],
+ "time": "2023-01-13T23:11:41+00:00"
+ },
+ {
+ "name": "wyrihaximus/react-awaitable-observable",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/WyriHaximus/reactphp-awaitable-observable.git",
+ "reference": "b942237bef3ad20300cafd9ec1a80e8529fed77b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/WyriHaximus/reactphp-awaitable-observable/zipball/b942237bef3ad20300cafd9ec1a80e8529fed77b",
+ "reference": "b942237bef3ad20300cafd9ec1a80e8529fed77b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.2",
+ "react/async": "^4",
+ "react/promise": "^2.10 || ^3",
+ "reactivex/rxphp": "^2.0.12"
+ },
+ "require-dev": {
+ "wyrihaximus/async-test-utilities": "^7.2"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "WyriHaximus\\React\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "ceesjank@gmail.com"
+ }
+ ],
+ "description": "๐ ๏ธ Make observables foreachable using async & await",
+ "support": {
+ "issues": "https://github.com/WyriHaximus/reactphp-awaitable-observable/issues",
+ "source": "https://github.com/WyriHaximus/reactphp-awaitable-observable/tree/1.1.0"
},
"funding": [
{
@@ -589,33 +821,33 @@
"type": "github"
}
],
- "time": "2020-11-17T22:53:16+00:00"
+ "time": "2023-11-30T22:01:46+00:00"
}
],
"packages-dev": [
{
"name": "amphp/amp",
- "version": "v2.5.1",
+ "version": "v2.6.2",
"source": {
"type": "git",
"url": "https://github.com/amphp/amp.git",
- "reference": "ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c"
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/amp/zipball/ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c",
- "reference": "ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c",
+ "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
"shasum": ""
},
"require": {
- "php": ">=7"
+ "php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1",
"ext-json": "*",
"jetbrains/phpstorm-stubs": "^2019.3",
- "phpunit/phpunit": "^6.0.9 | ^7",
+ "phpunit/phpunit": "^7 | ^8 | ^9",
"psalm/phar": "^3.11@dev",
"react/promise": "^2"
},
@@ -626,13 +858,13 @@
}
},
"autoload": {
- "psr-4": {
- "Amp\\": "lib"
- },
"files": [
"lib/functions.php",
"lib/Internal/functions.php"
- ]
+ ],
+ "psr-4": {
+ "Amp\\": "lib"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -657,7 +889,7 @@
}
],
"description": "A non-blocking concurrency framework for PHP applications.",
- "homepage": "http://amphp.org/amp",
+ "homepage": "https://amphp.org/amp",
"keywords": [
"async",
"asynchronous",
@@ -672,7 +904,7 @@
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/amp/issues",
- "source": "https://github.com/amphp/amp/tree/v2.5.1"
+ "source": "https://github.com/amphp/amp/tree/v2.6.2"
},
"funding": [
{
@@ -680,20 +912,20 @@
"type": "github"
}
],
- "time": "2020-11-03T16:23:45+00:00"
+ "time": "2022-02-20T17:52:18+00:00"
},
{
"name": "amphp/byte-stream",
- "version": "v1.8.0",
+ "version": "v1.8.1",
"source": {
"type": "git",
"url": "https://github.com/amphp/byte-stream.git",
- "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088"
+ "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
- "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
+ "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
+ "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
"shasum": ""
},
"require": {
@@ -715,12 +947,12 @@
}
},
"autoload": {
- "psr-4": {
- "Amp\\ByteStream\\": "lib"
- },
"files": [
"lib/functions.php"
- ]
+ ],
+ "psr-4": {
+ "Amp\\ByteStream\\": "lib"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -749,22 +981,102 @@
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/byte-stream/issues",
- "source": "https://github.com/amphp/byte-stream/tree/master"
+ "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/amphp",
+ "type": "github"
+ }
+ ],
+ "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"
},
- "time": "2020-06-29T18:35:05+00:00"
+ "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": {
@@ -772,24 +1084,25 @@
"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"
},
"type": "library",
"autoload": {
- "psr-4": {
- "Assert\\": "lib/Assert"
- },
"files": [
"lib/Assert/functions.php"
- ]
+ ],
+ "psr-4": {
+ "Assert\\": "lib/Assert"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -815,39 +1128,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.4.0",
+ "name": "colinodell/json5",
+ "version": "v2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/clue/reactphp-block.git",
- "reference": "c8e7583ae55127b89d6915480ce295bac81c4f88"
+ "url": "https://github.com/colinodell/json5.git",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/clue/reactphp-block/zipball/c8e7583ae55127b89d6915480ce295bac81c4f88",
- "reference": "c8e7583ae55127b89d6915480ce295bac81c4f88",
+ "url": "https://api.github.com/repos/colinodell/json5/zipball/15b063f8cb5e6deb15f0cd39123264ec0d19c710",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710",
"shasum": ""
},
"require": {
- "php": ">=5.3",
- "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
- "react/promise": "^2.7 || ^1.2.1",
- "react/promise-timer": "^1.5"
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "php": "^7.1.3|^8.0"
},
- "require-dev": {
- "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
- "react/http": "^1.0"
+ "conflict": {
+ "scrutinizer/ocular": "1.7.*"
+ },
+ "require-dev": {
+ "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": [
@@ -855,50 +1185,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.4.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"
}
],
- "time": "2020-08-21T14:09:44+00:00"
+ "time": "2023-11-30T16:36:43+00:00"
},
{
"name": "composer/ca-bundle",
- "version": "1.2.8",
+ "version": "1.3.7",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
- "reference": "8a7ecad675253e4654ea05505233285377405215"
+ "reference": "76e46335014860eec1aa5a724799a00a2e47cc85"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
- "reference": "8a7ecad675253e4654ea05505233285377405215",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85",
+ "reference": "76e46335014860eec1aa5a724799a00a2e47cc85",
"shasum": ""
},
"require": {
@@ -907,14 +1360,15 @@
"php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
+ "phpstan/phpstan": "^0.12.55",
"psr/log": "^1.0",
- "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
+ "symfony/phpunit-bridge": "^4.2 || ^5",
+ "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-main": "1.x-dev"
}
},
"autoload": {
@@ -944,7 +1398,80 @@
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/ca-bundle/issues",
- "source": "https://github.com/composer/ca-bundle/tree/1.2.8"
+ "source": "https://github.com/composer/ca-bundle/tree/1.3.7"
+ },
+ "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-08-30T09:31:38+00:00"
+ },
+ {
+ "name": "composer/class-map-generator",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/class-map-generator.git",
+ "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9",
+ "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9",
+ "shasum": ""
+ },
+ "require": {
+ "composer/pcre": "^2.1 || ^3.1",
+ "php": "^7.2 || ^8.0",
+ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
+ },
+ "require-dev": {
+ "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"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\ClassMapGenerator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "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": [
{
@@ -960,43 +1487,52 @@
"type": "tidelift"
}
],
- "time": "2020-08-23T12:54:47+00:00"
+ "time": "2023-06-30T13:58:57+00:00"
},
{
"name": "composer/composer",
- "version": "1.10.17",
+ "version": "2.6.5",
"source": {
"type": "git",
"url": "https://github.com/composer/composer.git",
- "reference": "09d42e18394d8594be24e37923031c4b7442a1cb"
+ "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/composer/zipball/09d42e18394d8594be24e37923031c4b7442a1cb",
- "reference": "09d42e18394d8594be24e37923031c4b7442a1cb",
+ "url": "https://api.github.com/repos/composer/composer/zipball/4b0fe89db9e65b1e64df633a992e70a7a215ab33",
+ "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33",
"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",
- "psr/log": "^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.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"
+ "seld/phar-utils": "^1.2",
+ "seld/signal-handler": "^2.0",
+ "symfony/console": "^5.4.11 || ^6.0.11 || ^7",
+ "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": {
- "phpspec/prophecy": "^1.10",
- "symfony/phpunit-bridge": "^4.2"
+ "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",
@@ -1009,12 +1545,17 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.10-dev"
+ "dev-main": "2.6-dev"
+ },
+ "phpstan": {
+ "includes": [
+ "phpstan/rules.neon"
+ ]
}
},
"autoload": {
"psr-4": {
- "Composer\\": "src/Composer"
+ "Composer\\": "src/Composer/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1025,12 +1566,12 @@
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
- "homepage": "http://www.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.",
@@ -1041,9 +1582,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.17"
+ "security": "https://github.com/composer/composer/security/policy",
+ "source": "https://github.com/composer/composer/tree/2.6.5"
},
"funding": [
{
@@ -1059,44 +1601,39 @@
"type": "tidelift"
}
],
- "time": "2020-10-30T21:31:58+00:00"
+ "time": "2023-10-06T08:11:52+00:00"
},
{
- "name": "composer/package-versions-deprecated",
- "version": "1.11.99",
+ "name": "composer/metadata-minifier",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/package-versions-deprecated.git",
- "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855"
+ "url": "https://github.com/composer/metadata-minifier.git",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
- "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
+ "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/",
@@ -1105,18 +1642,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/master"
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.1.1"
},
"funding": [
{
@@ -1132,32 +1741,33 @@
"type": "tidelift"
}
],
- "time": "2020-08-25T05:50:16+00:00"
+ "time": "2023-10-11T07:11:09+00:00"
},
{
"name": "composer/semver",
- "version": "1.7.1",
+ "version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/composer/semver.git",
- "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
- "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
+ "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0"
+ "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": {
@@ -1194,9 +1804,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.1"
+ "source": "https://github.com/composer/semver/tree/3.4.0"
},
"funding": [
{
@@ -1212,32 +1822,33 @@
"type": "tidelift"
}
],
- "time": "2020-09-27T13:13:07+00:00"
+ "time": "2023-08-31T09:50:34+00:00"
},
{
"name": "composer/spdx-licenses",
- "version": "1.5.4",
+ "version": "1.5.8",
"source": {
"type": "git",
"url": "https://github.com/composer/spdx-licenses.git",
- "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
- "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
"shasum": ""
},
"require": {
"php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-main": "1.x-dev"
}
},
"autoload": {
@@ -1273,9 +1884,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.4"
+ "source": "https://github.com/composer/spdx-licenses/tree/1.5.8"
},
"funding": [
{
@@ -1291,28 +1902,31 @@
"type": "tidelift"
}
],
- "time": "2020-07-15T15:35:07+00:00"
+ "time": "2023-11-20T07:44:33+00:00"
},
{
"name": "composer/xdebug-handler",
- "version": "1.4.4",
+ "version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/composer/xdebug-handler.git",
- "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba"
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6e076a124f7ee146f2487554a94b6a19a74887ba",
- "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba",
+ "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": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^6.0"
},
"type": "library",
"autoload": {
@@ -1338,7 +1952,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.4"
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
},
"funding": [
{
@@ -1354,39 +1968,42 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:39:10+00:00"
+ "time": "2022-02-25T21:32:43+00:00"
},
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
- "version": "v0.7.0",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
- "reference": "e8d808670b8f882188368faaf1144448c169c0b7"
+ "url": "https://github.com/PHPCSStandards/composer-installer.git",
+ "reference": "4be43904336affa5c2f70744a348312336afd0da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/e8d808670b8f882188368faaf1144448c169c0b7",
- "reference": "e8d808670b8f882188368faaf1144448c169c0b7",
+ "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",
- "squizlabs/php_codesniffer": "^2 || ^3 || 4.0.x-dev"
+ "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",
- "sensiolabs/security-checker": "^4.1.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/",
@@ -1399,6 +2016,10 @@
"email": "franck.nijhof@dealerdirect.com",
"homepage": "http://www.frenck.nl",
"role": "Developer / IT Manager"
+ },
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
}
],
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
@@ -1410,6 +2031,7 @@
"codesniffer",
"composer",
"installer",
+ "phpcbf",
"phpcs",
"plugin",
"qa",
@@ -1421,10 +2043,10 @@
"tests"
],
"support": {
- "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
- "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
+ "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
+ "source": "https://github.com/PHPCSStandards/composer-installer"
},
- "time": "2020-06-25T14:57:39+00:00"
+ "time": "2023-01-05T11:28:13+00:00"
},
{
"name": "dnoegel/php-xdg-base-dir",
@@ -1465,23 +2087,23 @@
},
{
"name": "doctrine/coding-standard",
- "version": "8.2.0",
+ "version": "12.0.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/coding-standard.git",
- "reference": "529d385bb3790431080493c0fe7adaec39df368a"
+ "reference": "1b2b7dc58c68833af481fb9325c25abd40681c79"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/529d385bb3790431080493c0fe7adaec39df368a",
- "reference": "529d385bb3790431080493c0fe7adaec39df368a",
+ "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": "^6.3.9",
- "squizlabs/php_codesniffer": "^3.5.5"
+ "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/",
@@ -1505,6 +2127,7 @@
"code",
"coding",
"cs",
+ "dev",
"doctrine",
"rules",
"sniffer",
@@ -1514,42 +2137,85 @@
],
"support": {
"issues": "https://github.com/doctrine/coding-standard/issues",
- "source": "https://github.com/doctrine/coding-standard/tree/8.2.0"
+ "source": "https://github.com/doctrine/coding-standard/tree/12.0.0"
},
- "time": "2020-10-25T14:56:19+00:00"
+ "time": "2023-04-24T17:43:28+00:00"
},
{
- "name": "doctrine/instantiator",
- "version": "1.3.1",
+ "name": "doctrine/deprecations",
+ "version": "1.1.2",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
+ "url": "https://github.com/doctrine/deprecations.git",
+ "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
- "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
+ "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^6.0",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^0.13",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-shim": "^0.11",
- "phpunit/phpunit": "^7.0"
+ "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"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
+ "suggest": {
+ "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
},
+ "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": "2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/instantiator.git",
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^11",
+ "ext-pdo": "*",
+ "ext-phar": "*",
+ "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": {
"psr-4": {
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
@@ -1563,7 +2229,7 @@
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
- "homepage": "http://ocramius.github.com/"
+ "homepage": "https://ocramius.github.io/"
}
],
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
@@ -1574,7 +2240,7 @@
],
"support": {
"issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/1.3.x"
+ "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
},
"funding": [
{
@@ -1590,47 +2256,47 @@
"type": "tidelift"
}
],
- "time": "2020-05-29T17:27:14+00:00"
+ "time": "2022-12-30T00:23:10+00:00"
},
{
"name": "ergebnis/composer-normalize",
- "version": "2.11.0",
+ "version": "2.40.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "fbe3173c54af8227a0915094f7c63d3c09f7b28b"
+ "reference": "665de8e2bbe7c3e31b0a819b4dc0165289c0d230"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/fbe3173c54af8227a0915094f7c63d3c09f7b28b",
- "reference": "fbe3173c54af8227a0915094f7c63d3c09f7b28b",
+ "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/665de8e2bbe7c3e31b0a819b4dc0165289c0d230",
+ "reference": "665de8e2bbe7c3e31b0a819b4dc0165289c0d230",
"shasum": ""
},
"require": {
"composer-plugin-api": "^2.0.0",
- "ergebnis/json-normalizer": "~0.14.0",
- "ergebnis/json-printer": "^3.1.1",
- "justinrainbow/json-schema": "^5.2.10",
+ "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.2 || ^8.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "conflict": {
+ "symfony/console": "^7.0.0"
},
"require-dev": {
- "composer/composer": "^2.0.0",
- "composer/package-versions-deprecated": "^1.11.99",
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^2.5.1",
- "ergebnis/phpstan-rules": "~0.15.2",
- "ergebnis/test-util": "^1.3.0",
- "jangregor/phpstan-prophecy": "~0.8.1",
- "phpstan/extension-installer": "^1.0.5",
- "phpstan/phpstan": "~0.12.52",
- "phpstan/phpstan-deprecation-rules": "~0.12.5",
- "phpstan/phpstan-phpunit": "~0.12.16",
- "phpstan/phpstan-strict-rules": "~0.12.5",
- "phpunit/phpunit": "^8.5.8",
- "psalm/plugin-phpunit": "~0.12.2",
- "symfony/filesystem": "^5.1.8",
- "vimeo/psalm": "^3.18.2"
+ "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": {
@@ -1638,7 +2304,8 @@
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
- }
+ },
+ "plugin-optional": true
},
"autoload": {
"psr-4": {
@@ -1652,7 +2319,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.",
@@ -1665,51 +2333,116 @@
],
"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"
},
- "funding": [
+ "time": "2023-12-05T16:07:43+00:00"
+ },
+ {
+ "name": "ergebnis/json",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ergebnis/json.git",
+ "reference": "9f2b9086c43b189d7044a5b6215a931fb6e9125d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ergebnis/json/zipball/9f2b9086c43b189d7044a5b6215a931fb6e9125d",
+ "reference": "9f2b9086c43b189d7044a5b6215a931fb6e9125d",
+ "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.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\\": "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"
}
],
- "time": "2020-11-05T09:22:39+00:00"
+ "description": "Provides a Json value object for representing a valid JSON string.",
+ "homepage": "https://github.com/ergebnis/json",
+ "keywords": [
+ "json"
+ ],
+ "support": {
+ "issues": "https://github.com/ergebnis/json/issues",
+ "security": "https://github.com/ergebnis/json/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/json"
+ },
+ "time": "2023-10-10T07:57:48+00:00"
},
{
"name": "ergebnis/json-normalizer",
- "version": "0.14.0",
+ "version": "4.3.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/json-normalizer.git",
- "reference": "4aad3594810d7477b5ea67a16544ad94ae374fc7"
+ "reference": "716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/4aad3594810d7477b5ea67a16544ad94ae374fc7",
- "reference": "4aad3594810d7477b5ea67a16544ad94ae374fc7",
+ "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd",
+ "reference": "716fa0a5dcc75fbcb2c1c2e0542b2f56732460bd",
"shasum": ""
},
"require": {
- "ergebnis/json-printer": "^3.1.1",
+ "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.10",
- "php": "^7.2 || ^8.0"
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^2.5.1",
- "ergebnis/phpstan-rules": "~0.15.2",
- "ergebnis/test-util": "^1.3.0",
- "infection/infection": "~0.15.3",
- "jangregor/phpstan-prophecy": "~0.8.1",
- "phpstan/extension-installer": "^1.0.5",
- "phpstan/phpstan": "~0.12.52",
- "phpstan/phpstan-deprecation-rules": "~0.12.5",
- "phpstan/phpstan-phpunit": "~0.12.16",
- "phpstan/phpstan-strict-rules": "~0.12.5",
- "phpunit/phpunit": "^8.5.8",
- "psalm/plugin-phpunit": "~0.12.2",
- "vimeo/psalm": "^3.18"
+ "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": {
@@ -1724,7 +2457,8 @@
"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.",
@@ -1735,49 +2469,107 @@
],
"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"
},
- "funding": [
+ "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": [
{
- "url": "https://github.com/localheinz",
- "type": "github"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "time": "2020-10-31T15:46:10+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.1.1",
+ "version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/json-printer.git",
- "reference": "e4190dadd9937a77d8afcaf2b6c42a528ab367d6"
+ "reference": "05841593d72499de4f7ce4034a237c77e470558f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/e4190dadd9937a77d8afcaf2b6c42a528ab367d6",
- "reference": "e4190dadd9937a77d8afcaf2b6c42a528ab367d6",
+ "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/05841593d72499de4f7ce4034a237c77e470558f",
+ "reference": "05841593d72499de4f7ce4034a237c77e470558f",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
- "php": "^7.2 || ^8.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "ergebnis/license": "^1.0.0",
- "ergebnis/php-cs-fixer-config": "^2.2.1",
- "ergebnis/phpstan-rules": "~0.15.2",
- "ergebnis/test-util": "^1.1.0",
- "infection/infection": "~0.15.3",
- "phpstan/extension-installer": "^1.0.4",
- "phpstan/phpstan": "~0.12.40",
- "phpstan/phpstan-deprecation-rules": "~0.12.5",
- "phpstan/phpstan-phpunit": "~0.12.16",
- "phpstan/phpstan-strict-rules": "~0.12.4",
- "phpunit/phpunit": "^8.5.8",
- "psalm/plugin-phpunit": "~0.11.0",
- "vimeo/psalm": "^3.14.2"
+ "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": {
@@ -1792,7 +2584,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.",
@@ -1804,62 +2597,55 @@
],
"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": "2020-08-30T12:17:03+00:00"
+ "time": "2023-10-10T07:42:48+00:00"
},
{
- "name": "ergebnis/phpstan-rules",
- "version": "0.14.4",
+ "name": "ergebnis/json-schema-validator",
+ "version": "4.1.0",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/phpstan-rules.git",
- "reference": "72eeba43afe81837d67349b3794c2f4157a2640c"
+ "url": "https://github.com/ergebnis/json-schema-validator.git",
+ "reference": "d568ed85d1cdc2e49d650c2fc234dc2516f3f25b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/72eeba43afe81837d67349b3794c2f4157a2640c",
- "reference": "72eeba43afe81837d67349b3794c2f4157a2640c",
+ "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/d568ed85d1cdc2e49d650c2fc234dc2516f3f25b",
+ "reference": "d568ed85d1cdc2e49d650c2fc234dc2516f3f25b",
"shasum": ""
},
"require": {
- "ext-mbstring": "*",
- "nikic/php-parser": "^4.2.3",
- "php": "^7.1",
- "phpstan/phpstan": "~0.11.15 || ~0.12.0"
- },
- "require-dev": {
- "ergebnis/composer-normalize": "^2.3.0",
- "ergebnis/license": "~0.1.0",
- "ergebnis/php-cs-fixer-config": "^2.1.0",
- "ergebnis/test-util": "~1.0.0",
- "infection/infection": "~0.13.6",
- "nette/di": "^3.0.1",
- "phpstan/phpstan-deprecation-rules": "~0.11.2",
- "phpstan/phpstan-strict-rules": "~0.11.1",
- "phpunit/phpunit": "^7.5.20",
- "psalm/plugin-phpunit": "~0.9.0",
- "psr/container": "^1.0.0",
- "vimeo/psalm": "^3.9.5",
- "zendframework/zend-servicemanager": "^2.0.0"
+ "ergebnis/json": "^1.0.1",
+ "ergebnis/json-pointer": "^3.2.0",
+ "ext-json": "*",
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
- "type": "phpstan-extension",
+ "require-dev": {
+ "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": {
- "phpstan": {
- "includes": [
- "rules.neon"
- ]
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
}
},
"autoload": {
"psr-4": {
- "Ergebnis\\PHPStan\\Rules\\": "src/"
+ "Ergebnis\\Json\\SchemaValidator\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1869,66 +2655,71 @@
"authors": [
{
"name": "Andreas Mรถller",
- "email": "am@localheinz.com"
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "Provides additional rules for phpstan/phpstan.",
- "homepage": "https://github.com/ergebnis/phpstan-rules",
+ "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
+ "homepage": "https://github.com/ergebnis/json-schema-validator",
"keywords": [
- "PHPStan",
- "phpstan-extreme-rules",
- "phpstan-rules"
+ "json",
+ "schema",
+ "validator"
],
"support": {
- "issues": "https://github.com/ergebnis/phpstan-rules/issues",
- "source": "https://github.com/ergebnis/phpstan-rules"
+ "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://paypal.me/localheinz",
- "type": "custom"
- },
- {
- "url": "https://www.amazon.de/hz/wishlist/ls/2NCHMSJ4BC1OW",
- "type": "custom"
- },
- {
- "url": "https://www.buymeacoffee.com/localheinz",
- "type": "custom"
- },
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2020-03-13T20:00:07+00:00"
+ "time": "2023-10-10T14:16:57+00:00"
},
{
- "name": "facade/ignition-contracts",
- "version": "1.0.2",
+ "name": "ergebnis/phpstan-rules",
+ "version": "2.1.0",
"source": {
"type": "git",
- "url": "https://github.com/facade/ignition-contracts.git",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
+ "url": "https://github.com/ergebnis/phpstan-rules.git",
+ "reference": "119e229c48688946450ccca9f1c57c9ca4fb6f02"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+ "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/119e229c48688946450ccca9f1c57c9ca4fb6f02",
+ "reference": "119e229c48688946450ccca9f1c57c9ca4fb6f02",
"shasum": ""
},
"require": {
- "php": "^7.3|^8.0"
+ "ext-mbstring": "*",
+ "nikic/php-parser": "^4.2.3",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "phpstan/phpstan": "^1.10.21"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^v2.15.8",
- "phpunit/phpunit": "^9.3.11",
- "vimeo/psalm": "^3.17.1"
+ "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": {
+ "phpstan": {
+ "includes": [
+ "rules.neon"
+ ]
+ }
},
- "type": "library",
"autoload": {
"psr-4": {
- "Facade\\IgnitionContracts\\": "src"
+ "Ergebnis\\PHPStan\\Rules\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1937,46 +2728,44 @@
],
"authors": [
{
- "name": "Freek Van der Herten",
- "email": "freek@spatie.be",
- "homepage": "https://flareapp.io",
- "role": "Developer"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com"
}
],
- "description": "Solution contracts for Ignition",
- "homepage": "https://github.com/facade/ignition-contracts",
+ "description": "Provides additional rules for phpstan/phpstan.",
+ "homepage": "https://github.com/ergebnis/phpstan-rules",
"keywords": [
- "contracts",
- "flare",
- "ignition"
+ "PHPStan",
+ "phpstan-extreme-rules",
+ "phpstan-rules"
],
"support": {
- "issues": "https://github.com/facade/ignition-contracts/issues",
- "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
+ "issues": "https://github.com/ergebnis/phpstan-rules/issues",
+ "source": "https://github.com/ergebnis/phpstan-rules"
},
- "time": "2020-10-16T08:27:54+00:00"
+ "time": "2023-08-17T10:28:37+00:00"
},
{
"name": "felixfbecker/advanced-json-rpc",
- "version": "v3.1.1",
+ "version": "v3.2.1",
"source": {
"type": "git",
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
- "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40"
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/0ed363f8de17d284d479ec813c9ad3f6834b5c40",
- "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40",
+ "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
"shasum": ""
},
"require": {
- "netresearch/jsonmapper": "^1.0 || ^2.0",
- "php": ">=7.0",
- "phpdocumentor/reflection-docblock": "^4.0.0 || ^5.0.0"
+ "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
+ "php": "^7.1 || ^8.0",
+ "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
},
"require-dev": {
- "phpunit/phpunit": "^6.0.0"
+ "phpunit/phpunit": "^7.0 || ^8.0"
},
"type": "library",
"autoload": {
@@ -1997,22 +2786,22 @@
"description": "A more advanced JSONRPC implementation",
"support": {
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
- "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/master"
+ "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
},
- "time": "2020-03-11T15:21:41+00:00"
+ "time": "2021-06-11T22:34:44+00:00"
},
{
"name": "felixfbecker/language-server-protocol",
- "version": "v1.5.0",
+ "version": "v1.5.2",
"source": {
"type": "git",
"url": "https://github.com/felixfbecker/php-language-server-protocol.git",
- "reference": "85e83cacd2ed573238678c6875f8f0d7ec699541"
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/85e83cacd2ed573238678c6875f8f0d7ec699541",
- "reference": "85e83cacd2ed573238678c6875f8f0d7ec699541",
+ "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
"shasum": ""
},
"require": {
@@ -2053,27 +2842,88 @@
],
"support": {
"issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
- "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.0"
+ "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
+ },
+ "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"
},
- "time": "2020-10-23T13:55:30+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/theofidry",
+ "type": "github"
+ }
+ ],
+ "time": "2022-12-24T12:35:10+00:00"
},
{
"name": "filp/whoops",
- "version": "2.9.1",
+ "version": "2.15.4",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
- "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
"shasum": ""
},
"require": {
"php": "^5.5.9 || ^7.0 || ^8.0",
- "psr/log": "^1.0.1"
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"mockery/mockery": "^0.9 || ^1.0",
@@ -2118,39 +2968,48 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.9.1"
+ "source": "https://github.com/filp/whoops/tree/2.15.4"
},
- "time": "2020-11-01T12:00:00+00:00"
- },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-03T12:00:00+00:00"
+ },
{
"name": "guzzlehttp/guzzle",
- "version": "7.2.0",
+ "version": "7.8.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
- "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
"shasum": ""
},
"require": {
"ext-json": "*",
- "guzzlehttp/promises": "^1.4",
- "guzzlehttp/psr7": "^1.7",
+ "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"
+ "psr/http-client": "^1.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
"ext-curl": "*",
- "php-http/client-integration-tests": "^3.0",
- "phpunit/phpunit": "^8.5.5 || ^9.3.5",
- "psr/log": "^1.1"
+ "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": {
"ext-curl": "Required for CURL handler support",
@@ -2159,36 +3018,61 @@
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "7.1-dev"
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
}
},
"autoload": {
- "psr-4": {
- "GuzzleHttp\\": "src/"
- },
"files": [
"src/functions_include.php"
- ]
+ ],
+ "psr-4": {
+ "GuzzleHttp\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
},
+ {
+ "name": "Jeremy Lindblom",
+ "email": "jeremeamia@gmail.com",
+ "homepage": "https://github.com/jeremeamia"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
{
"name": "Mรกrk Sรกgi-Kazรกr",
"email": "mark.sagikazar@gmail.com",
- "homepage": "https://sagikazarmark.hu"
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
}
],
"description": "Guzzle is a PHP HTTP client library",
- "homepage": "http://guzzlephp.org/",
"keywords": [
"client",
"curl",
@@ -2202,7 +3086,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
+ "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
},
"funding": [
{
@@ -2214,59 +3098,69 @@
"type": "github"
},
{
- "url": "https://github.com/alexeyshockov",
- "type": "github"
- },
- {
- "url": "https://github.com/gmponos",
- "type": "github"
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
+ "type": "tidelift"
}
],
- "time": "2020-10-10T11:47:56+00:00"
+ "time": "2023-12-03T20:35:24+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "1.4.0",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "60d379c243457e073cff02bc323a2a86cb355631"
+ "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
- "reference": "60d379c243457e073cff02bc323a2a86cb355631",
+ "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.4-dev"
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
}
},
"autoload": {
"psr-4": {
"GuzzleHttp\\Promise\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
}
],
"description": "Guzzle promises library",
@@ -2275,66 +3169,107 @@
],
"support": {
"issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/1.4.0"
+ "source": "https://github.com/guzzle/promises/tree/2.0.2"
},
- "time": "2020-09-30T07:37:28+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-12-03T20:19:20+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "1.7.0",
+ "version": "2.6.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
- "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
"shasum": ""
},
"require": {
- "php": ">=5.4.0",
- "psr/http-message": "~1.0",
- "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.1 || ^2.0",
+ "ralouphie/getallheaders": "^3.0"
},
"provide": {
+ "psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"require-dev": {
- "ext-zlib": "*",
- "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "http-interop/http-factory-tests": "^0.9",
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15"
},
"suggest": {
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.7-dev"
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
}
},
"autoload": {
"psr-4": {
"GuzzleHttp\\Psr7\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
},
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Mรกrk Sรกgi-Kazรกr",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
{
"name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
"homepage": "https://github.com/Tobion"
+ },
+ {
+ "name": "Mรกrk Sรกgi-Kazรกr",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://sagikazarmark.hu"
}
],
"description": "PSR-7 message implementation that also provides common utility methods",
@@ -2350,54 +3285,87 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/1.7.0"
+ "source": "https://github.com/guzzle/psr7/tree/2.6.2"
},
- "time": "2020-09-30T07:37:11+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-12-03T20:05:35+00:00"
},
{
"name": "icanhazstring/composer-unused",
- "version": "0.7.5",
+ "version": "0.8.11",
"source": {
"type": "git",
"url": "https://github.com/composer-unused/composer-unused.git",
- "reference": "c38aca9d85410d24359adf64e6d519b79604d9ce"
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/c38aca9d85410d24359adf64e6d519b79604d9ce",
- "reference": "c38aca9d85410d24359adf64e6d519b79604d9ce",
+ "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/4720206edc29a7da1913ece0e508f6d82fbcd905",
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.1 || ^2.0",
- "composer/composer": "^1.1 || ^2.0@dev",
+ "composer-unused/contracts": "^0.3",
+ "composer-unused/symbol-parser": "^0.2.1",
"ext-json": "*",
- "nikic/php-parser": "^4.2",
- "php": ">=7.3",
- "psr/container": "^1.0",
- "psr/log": "^1.1",
- "symfony/finder": "^4.2 || ^5.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/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": {
+ "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.6.2",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/phpstan": "^0.12.14",
- "phpunit/phpunit": "^9.0.1",
+ "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.5"
+ "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/",
@@ -2407,7 +3375,7 @@
"authors": [
{
"name": "Andreas Frรถmer",
- "email": "blubb0r05+github@gmail.com"
+ "email": "composer-unused@icanhazstring.com"
}
],
"description": "Show unused packages by scanning your code",
@@ -2415,36 +3383,46 @@
"keywords": [
"composer",
"php-parser",
- "plugin",
+ "static analysis",
"unused"
],
"support": {
"issues": "https://github.com/composer-unused/composer-unused/issues",
"source": "https://github.com/composer-unused/composer-unused"
},
- "time": "2020-10-28T11:39:37+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/icanhazstring",
+ "type": "github"
+ },
+ {
+ "url": "https://paypal.me/icanhazstring",
+ "type": "other"
+ }
+ ],
+ "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": {
@@ -2465,39 +3443,49 @@
"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",
- "version": "0.1.1",
+ "version": "0.1.2",
"source": {
"type": "git",
"url": "https://github.com/infection/extension-installer.git",
- "reference": "ff30c0adffcdbc747c96adf92382ccbe271d0afd"
+ "reference": "9b351d2910b9a23ab4815542e93d541e0ca0cdcf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/extension-installer/zipball/ff30c0adffcdbc747c96adf92382ccbe271d0afd",
- "reference": "ff30c0adffcdbc747c96adf92382ccbe271d0afd",
+ "url": "https://api.github.com/repos/infection/extension-installer/zipball/9b351d2910b9a23ab4815542e93d541e0ca0cdcf",
+ "reference": "9b351d2910b9a23ab4815542e93d541e0ca0cdcf",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.1 || ^2.0"
},
"require-dev": {
- "composer/composer": "^1.9",
- "friendsofphp/php-cs-fixer": "^2.16",
+ "composer/composer": "^1.9 || ^2.0",
+ "friendsofphp/php-cs-fixer": "^2.18, <2.19",
"infection/infection": "^0.15.2",
- "php-coveralls/php-coveralls": "^2.2",
+ "php-coveralls/php-coveralls": "^2.4",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.10",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpstan/phpstan-webmozart-assert": "^0.12.2",
- "phpunit/phpunit": "^8.5",
- "vimeo/psalm": "^3.8"
+ "phpunit/phpunit": "^9.5",
+ "vimeo/psalm": "^4.8"
},
"type": "composer-plugin",
"extra": {
@@ -2521,22 +3509,32 @@
"description": "Infection Extension Installer",
"support": {
"issues": "https://github.com/infection/extension-installer/issues",
- "source": "https://github.com/infection/extension-installer/tree/0.1.1"
+ "source": "https://github.com/infection/extension-installer/tree/0.1.2"
},
- "time": "2020-04-25T22:40:05+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/infection",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/infection",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2021-10-20T22:08:34+00:00"
},
{
"name": "infection/include-interceptor",
- "version": "0.2.4",
+ "version": "0.2.5",
"source": {
"type": "git",
"url": "https://github.com/infection/include-interceptor.git",
- "reference": "e3cf9317a7fd554ab60a5587f028b16418cc4264"
+ "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/include-interceptor/zipball/e3cf9317a7fd554ab60a5587f028b16418cc4264",
- "reference": "e3cf9317a7fd554ab60a5587f028b16418cc4264",
+ "url": "https://api.github.com/repos/infection/include-interceptor/zipball/0cc76d95a79d9832d74e74492b0a30139904bdf7",
+ "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7",
"shasum": ""
},
"require-dev": {
@@ -2567,66 +3565,83 @@
"description": "Stream Wrapper: Include Interceptor. Allows to replace included (autoloaded) file with another one.",
"support": {
"issues": "https://github.com/infection/include-interceptor/issues",
- "source": "https://github.com/infection/include-interceptor/tree/0.2.4"
+ "source": "https://github.com/infection/include-interceptor/tree/0.2.5"
},
- "time": "2020-08-07T22:40:37+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/infection",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/infection",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2021-08-09T10:03:57+00:00"
},
{
"name": "infection/infection",
- "version": "0.20.1",
+ "version": "0.27.8",
"source": {
"type": "git",
"url": "https://github.com/infection/infection.git",
- "reference": "59a7a374e8020e362550b5223d7174ee7ccc184c"
+ "reference": "673ce762abf3355fcdc186ca17eb89edf86993bf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/infection/zipball/59a7a374e8020e362550b5223d7174ee7ccc184c",
- "reference": "59a7a374e8020e362550b5223d7174ee7ccc184c",
+ "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"
@@ -2682,50 +3697,95 @@
],
"support": {
"issues": "https://github.com/infection/infection/issues",
- "source": "https://github.com/infection/infection/tree/0.20.1"
+ "source": "https://github.com/infection/infection/tree/0.27.8"
+ },
+ "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",
+ "version": "v1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/jakobbuis/simple-slow-test-reporter.git",
+ "reference": "7111cb24f4670ca455f5578710022311f78ef1c4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/jakobbuis/simple-slow-test-reporter/zipball/7111cb24f4670ca455f5578710022311f78ef1c4",
+ "reference": "7111cb24f4670ca455f5578710022311f78ef1c4",
+ "shasum": ""
+ },
+ "require": {
+ "phpunit/phpunit": "^9.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "SSTR\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jakob Buis",
+ "email": "jakob@jakobbuis.nl"
+ }
+ ],
+ "description": "Reports slow tests in your PHPUnit testsuite",
+ "support": {
+ "issues": "https://github.com/jakobbuis/simple-slow-test-reporter/issues",
+ "source": "https://github.com/jakobbuis/simple-slow-test-reporter/tree/v1.0.0"
},
- "time": "2020-11-03T12:14:40+00:00"
+ "time": "2020-12-26T16:20:53+00:00"
},
{
"name": "jangregor/phpstan-prophecy",
- "version": "0.6.2",
+ "version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/Jan0707/phpstan-prophecy.git",
- "reference": "9f3422fa720d3dbd28ffba40f06aeba1edfecef9"
+ "reference": "2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Jan0707/phpstan-prophecy/zipball/9f3422fa720d3dbd28ffba40f06aeba1edfecef9",
- "reference": "9f3422fa720d3dbd28ffba40f06aeba1edfecef9",
+ "url": "https://api.github.com/repos/Jan0707/phpstan-prophecy/zipball/2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0",
+ "reference": "2bc7ca9460395690c6bf7332bdfb2f25d5cae8e0",
"shasum": ""
},
"require": {
- "php": "^7.1",
- "phpstan/phpstan": "^0.12.0"
+ "php": "^7.1 || ^8.0",
+ "phpstan/phpstan": "^1.0.0"
},
"conflict": {
- "phpspec/prophecy": "<1.7,>=2.0",
- "phpunit/phpunit": "<6.0,>=10.0"
+ "phpspec/prophecy": "<1.7.0,>=2.0.0",
+ "phpunit/phpunit": "<6.0.0,>=10.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.1.1",
- "ergebnis/license": "~0.1.0",
- "ergebnis/php-cs-fixer-config": "~1.1.2",
- "phpspec/prophecy": "^1.7",
- "phpunit/phpunit": "^6.0 || ^7.0"
+ "ergebnis/license": "^1.0.0",
+ "ergebnis/php-cs-fixer-config": "~2.2.0",
+ "phpspec/prophecy": "^1.7.0",
+ "phpunit/phpunit": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"type": "phpstan-extension",
"extra": {
"phpstan": {
"includes": [
- "src/extension.neon"
+ "extension.neon"
]
- },
- "violinist": {
- "allow_updates_beyond_constraint": 0,
- "one_pull_request_per_package": 1,
- "update_with_dependencies": 1
}
},
"autoload": {
@@ -2746,29 +3806,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.6.2"
+ "source": "https://github.com/Jan0707/phpstan-prophecy/tree/1.0.0"
},
- "time": "2020-02-17T16:55:34+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/localheinz",
+ "type": "github"
+ }
+ ],
+ "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": {
@@ -2793,22 +3860,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.10",
+ "version": "v5.2.13",
"source": {
"type": "git",
"url": "https://github.com/justinrainbow/json-schema.git",
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
"shasum": ""
},
"require": {
@@ -2863,9 +3930,9 @@
],
"support": {
"issues": "https://github.com/justinrainbow/json-schema/issues",
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
+ "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
},
- "time": "2020-05-27T16:41:55+00:00"
+ "time": "2023-09-26T02:20:38+00:00"
},
{
"name": "localheinz/diff",
@@ -2929,32 +3996,36 @@
},
{
"name": "maglnet/composer-require-checker",
- "version": "2.1.0",
+ "version": "4.8.0",
"source": {
"type": "git",
"url": "https://github.com/maglnet/ComposerRequireChecker.git",
- "reference": "0c66698d487fcb5c66cf07108e2180c818fb2e72"
+ "reference": "1c7498e4c31ff7e467ac1b5138d277736c838393"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/0c66698d487fcb5c66cf07108e2180c818fb2e72",
- "reference": "0c66698d487fcb5c66cf07108e2180c818fb2e72",
+ "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/1c7498e4c31ff7e467ac1b5138d277736c838393",
+ "reference": "1c7498e4c31ff7e467ac1b5138d277736c838393",
"shasum": ""
},
"require": {
- "ext-json": "*",
+ "composer-runtime-api": "^2.0.0",
"ext-phar": "*",
- "nikic/php-parser": "^4.3",
- "ocramius/package-versions": "^1.4.2",
- "php": "^7.2",
- "symfony/console": "^5.0",
- "webmozart/glob": "^4.1"
+ "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": "^12.0.0",
"ext-zend-opcache": "*",
- "mikey179/vfsstream": "^1.6",
- "phpstan/phpstan": "^0.12",
- "phpunit/phpunit": "^8.4.3"
+ "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"
@@ -2999,43 +4070,44 @@
],
"support": {
"issues": "https://github.com/maglnet/ComposerRequireChecker/issues",
- "source": "https://github.com/maglnet/ComposerRequireChecker/tree/2.1.0"
+ "source": "https://github.com/maglnet/ComposerRequireChecker/tree/4.8.0"
},
- "time": "2019-12-28T13:49:20+00:00"
+ "time": "2023-12-03T22:28:20+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.10.1",
+ "version": "1.11.1",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
- "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
- "replace": {
- "myclabs/deep-copy": "self.version"
+ "conflict": {
+ "doctrine/collections": "<1.6.8",
+ "doctrine/common": "<2.13.3 || >=3,<3.2.2"
},
"require-dev": {
- "doctrine/collections": "^1.0",
- "doctrine/common": "^2.6",
- "phpunit/phpunit": "^7.1"
+ "doctrine/collections": "^1.6.8",
+ "doctrine/common": "^2.13.3 || ^3.2.2",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
},
"type": "library",
"autoload": {
- "psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
- },
"files": [
"src/DeepCopy/deep_copy.php"
- ]
+ ],
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3051,7 +4123,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
},
"funding": [
{
@@ -3059,20 +4131,20 @@
"type": "tidelift"
}
],
- "time": "2020-06-29T13:22:24+00:00"
+ "time": "2023-03-08T13:26:56+00:00"
},
{
"name": "netresearch/jsonmapper",
- "version": "v2.1.0",
+ "version": "v4.2.0",
"source": {
"type": "git",
"url": "https://github.com/cweiske/jsonmapper.git",
- "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
+ "reference": "f60565f8c0566a31acf06884cdaa591867ecc956"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
- "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
+ "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/f60565f8c0566a31acf06884cdaa591867ecc956",
+ "reference": "f60565f8c0566a31acf06884cdaa591867ecc956",
"shasum": ""
},
"require": {
@@ -3080,10 +4152,10 @@
"ext-pcre": "*",
"ext-reflection": "*",
"ext-spl": "*",
- "php": ">=5.6"
+ "php": ">=7.1"
},
"require-dev": {
- "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
+ "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
"squizlabs/php_codesniffer": "~3.5"
},
"type": "library",
@@ -3108,22 +4180,22 @@
"support": {
"email": "cweiske@cweiske.de",
"issues": "https://github.com/cweiske/jsonmapper/issues",
- "source": "https://github.com/cweiske/jsonmapper/tree/master"
+ "source": "https://github.com/cweiske/jsonmapper/tree/v4.2.0"
},
- "time": "2020-04-16T18:48:43+00:00"
+ "time": "2023-04-09T17:37:40+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v4.10.2",
+ "version": "v4.17.1",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
+ "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
- "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
+ "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
"shasum": ""
},
"require": {
@@ -3164,36 +4236,39 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
},
- "time": "2020-09-26T10:30:38+00:00"
+ "time": "2023-08-13T19:53:39+00:00"
},
{
"name": "nikolaposa/version",
- "version": "4.0.0",
+ "version": "4.1.1",
"source": {
"type": "git",
"url": "https://github.com/nikolaposa/version.git",
- "reference": "ab1aede3f84403432fe6935f7d6bfc09639d60b2"
+ "reference": "f6bdd64be914940529b843a67335d6386d980cec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikolaposa/version/zipball/ab1aede3f84403432fe6935f7d6bfc09639d60b2",
- "reference": "ab1aede3f84403432fe6935f7d6bfc09639d60b2",
+ "url": "https://api.github.com/repos/nikolaposa/version/zipball/f6bdd64be914940529b843a67335d6386d980cec",
+ "reference": "f6bdd64be914940529b843a67335d6386d980cec",
"shasum": ""
},
"require": {
"beberlei/assert": "^3.2",
- "php": "^7.2"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^2.1",
+ "friendsofphp/php-cs-fixer": "^2.17",
+ "phpstan/phpstan": "^0.12.10",
+ "phpstan/phpstan-beberlei-assert": "^0.12.2",
+ "phpstan/phpstan-phpunit": "^0.12.6",
"phpunit/phpunit": "^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0.x-dev"
+ "dev-master": "4.1.x-dev"
}
},
"autoload": {
@@ -3222,41 +4297,46 @@
],
"support": {
"issues": "https://github.com/nikolaposa/version/issues",
- "source": "https://github.com/nikolaposa/version/tree/4.0.0"
+ "source": "https://github.com/nikolaposa/version/tree/4.1.1"
},
- "time": "2019-12-29T15:07:37+00:00"
+ "time": "2023-08-04T17:13:40+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v5.1.0",
+ "version": "v7.10.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa"
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
- "reference": "7c2b95589bf81e274e61e47f7672a1b2c3e06eaa",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
"shasum": ""
},
"require": {
- "facade/ignition-contracts": "^1.0",
- "filp/whoops": "^2.7.2",
- "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": {
- "fideloper/proxy": "^4.4.0",
- "friendsofphp/php-cs-fixer": "^2.16.4",
- "fruitcake/laravel-cors": "^2.0.1",
- "laravel/framework": "^8.0",
- "laravel/tinker": "^2.4.1",
- "nunomaduro/larastan": "^0.6.2",
- "nunomaduro/mock-final-classes": "^1.0",
- "orchestra/testbench": "^6.0",
- "phpstan/phpstan": "^0.12.36",
- "phpunit/phpunit": "^9.3.3"
+ "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": {
@@ -3267,6 +4347,9 @@
}
},
"autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
"psr-4": {
"NunoMaduro\\Collision\\": "src/"
}
@@ -3300,7 +4383,7 @@
},
"funding": [
{
- "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
"type": "custom"
},
{
@@ -3312,38 +4395,53 @@
"type": "patreon"
}
],
- "time": "2020-10-29T14:50:40+00:00"
+ "time": "2023-10-11T15:45:01+00:00"
},
{
- "name": "ondram/ci-detector",
- "version": "3.5.1",
+ "name": "nunomaduro/termwind",
+ "version": "v1.15.1",
"source": {
"type": "git",
- "url": "https://github.com/OndraM/ci-detector.git",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd"
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/594e61252843b68998bddd48078c5058fe9028bd",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "ext-mbstring": "*",
+ "php": "^8.0",
+ "symfony/console": "^5.3.0|^6.0.0"
},
"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",
- "phpunit/phpunit": "^7.1 || ^8.0 || ^9.0"
+ "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": {
- "OndraM\\CiDetector\\": "src/"
+ "Termwind\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3352,128 +4450,267 @@
],
"authors": [
{
- "name": "Ondลej Machulda",
- "email": "ondrej.machulda@gmail.com"
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
}
],
- "description": "Detect continuous integration environment and provide unified access to properties of current build",
+ "description": "Its like Tailwind CSS, but for the console.",
"keywords": [
- "CircleCI",
- "Codeship",
- "Wercker",
- "adapter",
- "appveyor",
- "aws",
- "aws codebuild",
- "bamboo",
- "bitbucket",
- "buddy",
- "ci-info",
- "codebuild",
- "continuous integration",
- "continuousphp",
- "drone",
- "github",
- "gitlab",
- "interface",
- "jenkins",
- "teamcity",
- "travis"
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
],
"support": {
- "issues": "https://github.com/OndraM/ci-detector/issues",
- "source": "https://github.com/OndraM/ci-detector/tree/main"
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
},
- "time": "2020-09-04T11:21:14+00:00"
+ "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": "openlss/lib-array2xml",
- "version": "1.0.0",
+ "name": "ocramius/package-versions",
+ "version": "2.8.0",
"source": {
"type": "git",
- "url": "https://github.com/nullivex/lib-array2xml.git",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
+ "url": "https://github.com/Ocramius/PackageVersions.git",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
+ "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "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-0": {
- "LSS": ""
+ "psr-4": {
+ "PackageVersions\\": "src/PackageVersions"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
+ "MIT"
],
"authors": [
{
- "name": "Bryan Tong",
- "email": "bryan@nullivex.com",
- "homepage": "https://www.nullivex.com"
+ "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"
},
{
- "name": "Tony Butler",
- "email": "spudz76@gmail.com",
- "homepage": "https://www.nullivex.com"
+ "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": "4.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/OndraM/ci-detector.git",
+ "reference": "8a4b664e916df82ff26a44709942dfd593fa6f30"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8a4b664e916df82ff26a44709942dfd593fa6f30",
+ "reference": "8a4b664e916df82ff26a44709942dfd593fa6f30",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.2",
+ "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",
+ "autoload": {
+ "psr-4": {
+ "OndraM\\CiDetector\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ondลej Machulda",
+ "email": "ondrej.machulda@gmail.com"
}
],
- "description": "Array2XML conversion library credit to lalit.org",
- "homepage": "https://www.nullivex.com",
+ "description": "Detect continuous integration environment and provide unified access to properties of current build",
"keywords": [
- "array",
- "array conversion",
- "xml",
- "xml conversion"
+ "CircleCI",
+ "Codeship",
+ "Wercker",
+ "adapter",
+ "appveyor",
+ "aws",
+ "aws codebuild",
+ "azure",
+ "azure devops",
+ "azure pipelines",
+ "bamboo",
+ "bitbucket",
+ "buddy",
+ "ci-info",
+ "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/4.1.0"
+ },
+ "time": "2021-04-14T09:16:52+00:00"
+ },
+ {
+ "name": "orklah/psalm-insane-comparison",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/orklah/psalm-insane-comparison.git",
+ "reference": "f0e44bf31678d189c8ee4556598d0ad6e3f853c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/orklah/psalm-insane-comparison/zipball/f0e44bf31678d189c8ee4556598d0ad6e3f853c9",
+ "reference": "f0e44bf31678d189c8ee4556598d0ad6e3f853c9",
+ "shasum": ""
+ },
+ "require": {
+ "ext-simplexml": "*",
+ "php": "^7.3|^8.0"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^4.0",
+ "vimeo/psalm": "^4.0|^5"
+ },
+ "type": "psalm-plugin",
+ "extra": {
+ "psalm": {
+ "pluginClass": "Orklah\\PsalmInsaneComparison\\Plugin"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Orklah\\PsalmInsaneComparison\\": [
+ "."
+ ],
+ "Orklah\\PsalmInsaneComparison\\Hooks\\": [
+ "hooks"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "orklah"
+ }
],
+ "description": "Detects possible insane comparison (\"string\" == 0) to help migrate to PHP8",
"support": {
- "issues": "https://github.com/nullivex/lib-array2xml/issues",
- "source": "https://github.com/nullivex/lib-array2xml/tree/master"
+ "issues": "https://github.com/orklah/psalm-insane-comparison/issues",
+ "source": "https://github.com/orklah/psalm-insane-comparison/tree/v2.2.0"
},
- "time": "2019-03-29T20:06:56+00:00"
+ "time": "2023-01-06T09:06:11+00:00"
},
{
"name": "pepakriz/phpstan-exception-rules",
- "version": "v0.10.1",
+ "version": "v0.12.0",
"source": {
"type": "git",
"url": "https://github.com/pepakriz/phpstan-exception-rules.git",
- "reference": "7073711906e22509cbfacbca0a914e0f8ff2e6c8"
+ "reference": "c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pepakriz/phpstan-exception-rules/zipball/7073711906e22509cbfacbca0a914e0f8ff2e6c8",
- "reference": "7073711906e22509cbfacbca0a914e0f8ff2e6c8",
+ "url": "https://api.github.com/repos/pepakriz/phpstan-exception-rules/zipball/c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd",
+ "reference": "c5f3fe501e5a6c57c33fb678ad9278131bc1b9bd",
"shasum": ""
},
"require": {
- "php": "^7.1",
- "phpstan/phpstan": "^0.12.0"
+ "nikic/php-parser": "^4.13",
+ "php": ">=7.1",
+ "phpstan/phpstan": "^1.0"
},
"require-dev": {
- "jakub-onderka/php-console-highlighter": "0.4.0",
- "jakub-onderka/php-parallel-lint": "1.0.0",
"nette/utils": "^3.0",
- "php-coveralls/php-coveralls": "^2.1",
- "phpstan/phpstan": "^0.12.0",
- "phpstan/phpstan-nette": "^0.12.0",
- "phpstan/phpstan-phpunit": "^0.12.0",
- "phpstan/phpstan-strict-rules": "^0.12.0",
- "phpunit/phpunit": "^7.5.6",
- "slevomat/coding-standard": "^5.0.4",
+ "php-parallel-lint/php-console-highlighter": "^0.4.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2.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"
},
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.10-dev"
+ "dev-master": "0.12-dev"
},
"phpstan": {
"includes": [
@@ -3493,22 +4730,22 @@
"description": "Exception rules for PHPStan",
"support": {
"issues": "https://github.com/pepakriz/phpstan-exception-rules/issues",
- "source": "https://github.com/pepakriz/phpstan-exception-rules/tree/master"
+ "source": "https://github.com/pepakriz/phpstan-exception-rules/tree/v0.12.0"
},
- "time": "2019-12-09T06:14:56+00:00"
+ "time": "2021-11-07T19:03:56+00:00"
},
{
"name": "phar-io/manifest",
- "version": "2.0.1",
+ "version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/phar-io/manifest.git",
- "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
- "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
"shasum": ""
},
"require": {
@@ -3553,22 +4790,22 @@
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
"support": {
"issues": "https://github.com/phar-io/manifest/issues",
- "source": "https://github.com/phar-io/manifest/tree/master"
+ "source": "https://github.com/phar-io/manifest/tree/2.0.3"
},
- "time": "2020-06-27T14:33:11+00:00"
+ "time": "2021-07-20T11:28:43+00:00"
},
{
"name": "phar-io/version",
- "version": "3.0.2",
+ "version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/phar-io/version.git",
- "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0"
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/c6bb6825def89e0a32220f88337f8ceaf1975fa0",
- "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
"shasum": ""
},
"require": {
@@ -3604,37 +4841,37 @@
"description": "Library for handling version information and constraints",
"support": {
"issues": "https://github.com/phar-io/version/issues",
- "source": "https://github.com/phar-io/version/tree/master"
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
},
- "time": "2020-06-27T14:39:04+00:00"
+ "time": "2022-02-21T01:04:05+00:00"
},
{
"name": "php-coveralls/php-coveralls",
- "version": "v2.4.2",
+ "version": "v2.7.0",
"source": {
"type": "git",
"url": "https://github.com/php-coveralls/php-coveralls.git",
- "reference": "8a33ae229da63a0bd22dadae1512af663ce5e559"
+ "reference": "b36fa4394e519dafaddc04ae03976bc65a25ba15"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/8a33ae229da63a0bd22dadae1512af663ce5e559",
- "reference": "8a33ae229da63a0bd22dadae1512af663ce5e559",
+ "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",
- "psr/log": "^1.0",
- "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0",
- "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
- "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0",
- "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0"
+ "php": "^7.0 || ^8.0",
+ "psr/log": "^1.0 || ^2.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 || ^9.0",
+ "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0 || >=8.0 <8.5.29 || >=9.0 <9.5.23",
"sanmai/phpunit-legacy-adapter": "^6.1 || ^8.0"
},
"suggest": {
@@ -3687,41 +4924,40 @@
],
"support": {
"issues": "https://github.com/php-coveralls/php-coveralls/issues",
- "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.4.2"
+ "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.7.0"
},
- "time": "2020-10-23T16:34:35+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/",
@@ -3734,45 +4970,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/",
@@ -3789,27 +5025,27 @@
"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",
- "version": "v1.2.0",
+ "version": "v1.3.2",
"source": {
"type": "git",
"url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
- "reference": "474f18bc6cc6aca61ca40bfab55139de614e51ca"
+ "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/474f18bc6cc6aca61ca40bfab55139de614e51ca",
- "reference": "474f18bc6cc6aca61ca40bfab55139de614e51ca",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
+ "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
"shasum": ""
},
"require": {
"ext-json": "*",
- "php": ">=5.4.0"
+ "php": ">=5.3.0"
},
"replace": {
"grogy/php-parallel-lint": "*",
@@ -3817,8 +5053,8 @@
},
"require-dev": {
"nette/tester": "^1.3 || ^2.0",
- "php-parallel-lint/php-console-highlighter": "~0.3",
- "squizlabs/php_codesniffer": "~3.0"
+ "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
+ "squizlabs/php_codesniffer": "^3.6"
},
"suggest": {
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
@@ -3829,7 +5065,7 @@
"type": "library",
"autoload": {
"classmap": [
- "./"
+ "./src/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3846,9 +5082,63 @@
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
"support": {
"issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/master"
+ "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
+ },
+ "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": "2020-04-04T12:18:32+00:00"
+ "time": "2023-11-28T12:22:48+00:00"
},
{
"name": "phpdocumentor/reflection-common",
@@ -3905,16 +5195,16 @@
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "5.2.2",
+ "version": "5.3.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
- "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
"shasum": ""
},
"require": {
@@ -3925,7 +5215,8 @@
"webmozart/assert": "^1.9.1"
},
"require-dev": {
- "mockery/mockery": "~1.3.2"
+ "mockery/mockery": "~1.3.2",
+ "psalm/phar": "^4.8"
},
"type": "library",
"extra": {
@@ -3955,30 +5246,39 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
},
- "time": "2020-09-03T19:13:55+00:00"
+ "time": "2021-10-19T17:43:47+00:00"
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.4.0",
+ "version": "1.7.3",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
+ "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
+ "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0",
- "phpdocumentor/reflection-common": "^2.0"
+ "doctrine/deprecations": "^1.0",
+ "php": "^7.4 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0",
+ "phpstan/phpdoc-parser": "^1.13"
},
"require-dev": {
- "ext-tokenizer": "*"
+ "ext-tokenizer": "*",
+ "phpbench/phpbench": "^1.2",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^9.5",
+ "rector/rector": "^0.13.9",
+ "vimeo/psalm": "^4.25"
},
"type": "library",
"extra": {
@@ -4004,39 +5304,40 @@
"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.4.0"
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
},
- "time": "2020-09-17T18:55:26+00:00"
+ "time": "2023-08-12T11:01:26+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "1.12.1",
+ "version": "v1.18.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
+ "reference": "d4f454f7e1193933f04e6500de3e79191648ed0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
- "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
+ "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",
+ "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",
- "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
+ "phpspec/phpspec": "^6.0 || ^7.0",
+ "phpstan/phpstan": "^1.9",
+ "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.11.x-dev"
+ "dev-master": "1.x-dev"
}
},
"autoload": {
@@ -4064,6 +5365,7 @@
"keywords": [
"Double",
"Dummy",
+ "dev",
"fake",
"mock",
"spy",
@@ -4071,22 +5373,22 @@
],
"support": {
"issues": "https://github.com/phpspec/prophecy/issues",
- "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
+ "source": "https://github.com/phpspec/prophecy/tree/v1.18.0"
},
- "time": "2020-09-29T09:10:42+00:00"
+ "time": "2023-12-07T16:22:33+00:00"
},
{
"name": "phpspec/prophecy-phpunit",
- "version": "v2.0.1",
+ "version": "v2.0.2",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy-phpunit.git",
- "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177"
+ "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87"
},
"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/9f26c224a2fa335f33e6666cc078fbf388255e87",
+ "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87",
"shasum": ""
},
"require": {
@@ -4123,45 +5425,39 @@
],
"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.0.2"
},
- "time": "2020-07-09T08:33:42+00:00"
+ "time": "2023-04-18T11:58:05+00:00"
},
{
"name": "phpstan/phpdoc-parser",
- "version": "0.4.9",
+ "version": "1.24.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531"
+ "reference": "6bd0c26f3786cd9b7c359675cb789e35a8e07496"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/98a088b17966bdf6ee25c8a4b634df313d8aa531",
- "reference": "98a088b17966bdf6ee25c8a4b634df313d8aa531",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6bd0c26f3786cd9b7c359675cb789e35a8e07496",
+ "reference": "6bd0c26f3786cd9b7c359675cb789e35a8e07496",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "consistence/coding-standard": "^3.5",
- "ergebnis/composer-normalize": "^2.0.2",
- "jakub-onderka/php-parallel-lint": "^0.9.2",
- "phing/phing": "^2.16.0",
+ "doctrine/annotations": "^2.0",
+ "nikic/php-parser": "^4.15",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^0.12.26",
- "phpstan/phpstan-strict-rules": "^0.12",
- "phpunit/phpunit": "^6.3",
- "slevomat/coding-standard": "^4.7.2",
- "symfony/process": "^4.0"
+ "phpstan/phpstan": "^1.5",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5",
+ "symfony/process": "^5.2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "0.4-dev"
- }
- },
"autoload": {
"psr-4": {
"PHPStan\\PhpDocParser\\": [
@@ -4176,26 +5472,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/master"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.4"
},
- "time": "2020-08-03T20:32:43+00:00"
+ "time": "2023-11-26T18:29:22+00:00"
},
{
"name": "phpstan/phpstan",
- "version": "0.12.54",
+ "version": "1.10.47",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223"
+ "reference": "84dbb33b520ea28b6cf5676a3941f4bae1c1ff39"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
- "reference": "45c7b999a4b7dd9ac5558bdaaf23dcebbef88223",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/84dbb33b520ea28b6cf5676a3941f4bae1c1ff39",
+ "reference": "84dbb33b520ea28b6cf5676a3941f4bae1c1ff39",
"shasum": ""
},
"require": {
- "php": "^7.1|^8.0"
+ "php": "^7.2|^8.0"
},
"conflict": {
"phpstan/phpstan-shim": "*"
@@ -4205,11 +5501,6 @@
"phpstan.phar"
],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- }
- },
"autoload": {
"files": [
"bootstrap.php"
@@ -4220,9 +5511,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.54"
+ "security": "https://github.com/phpstan/phpstan/security/policy",
+ "source": "https://github.com/phpstan/phpstan-src"
},
"funding": [
{
@@ -4230,49 +5528,42 @@
"type": "github"
},
{
- "url": "https://www.patreon.com/phpstan",
- "type": "patreon"
+ "url": "https://github.com/phpstan",
+ "type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
"type": "tidelift"
}
],
- "time": "2020-11-05T13:36:26+00:00"
+ "time": "2023-12-01T15:19:17+00:00"
},
{
"name": "phpstan/phpstan-deprecation-rules",
- "version": "0.12.5",
+ "version": "1.1.4",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
- "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21"
+ "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/bfabc6a1b4617fbcbff43f03a4c04eae9bafae21",
- "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21",
+ "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.26"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10.3"
},
"require-dev": {
- "consistence/coding-standard": "^3.0.1",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "ergebnis/composer-normalize": "^2.0.2",
- "jakub-onderka/php-parallel-lint": "^1.0",
- "phing/phing": "^2.16.0",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpunit/phpunit": "^7.0",
- "slevomat/coding-standard": "^4.5.2"
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "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"
@@ -4291,44 +5582,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.5"
+ "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4"
},
- "time": "2020-07-21T14:52:30+00:00"
+ "time": "2023-08-05T09:02:04+00:00"
},
{
- "name": "phpstan/phpstan-php-parser",
- "version": "0.12.2",
+ "name": "phpstan/phpstan-mockery",
+ "version": "1.1.1",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-php-parser.git",
- "reference": "0b27eec1e92d48fa82199844dec119b1b22baba0"
+ "url": "https://github.com/phpstan/phpstan-mockery.git",
+ "reference": "6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-php-parser/zipball/0b27eec1e92d48fa82199844dec119b1b22baba0",
- "reference": "0b27eec1e92d48fa82199844dec119b1b22baba0",
+ "url": "https://api.github.com/repos/phpstan/phpstan-mockery/zipball/6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6",
+ "reference": "6aa86bd8e9c9a1be97baf0558d4a2ed1374736a6",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10"
},
"require-dev": {
- "consistence/coding-standard": "^3.0.1",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "ergebnis/composer-normalize": "^2.0.2",
- "jakub-onderka/php-parallel-lint": "^1.0",
- "phing/phing": "^2.16.0",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpstan/phpstan-strict-rules": "^0.12",
- "phpunit/phpunit": "^7.0",
- "slevomat/coding-standard": "^4.5.2"
+ "mockery/mockery": "^1.2.4",
+ "nikic/php-parser": "^4.13.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "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"
@@ -4344,54 +5629,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.2"
+ "issues": "https://github.com/phpstan/phpstan-mockery/issues",
+ "source": "https://github.com/phpstan/phpstan-mockery/tree/1.1.1"
},
- "time": "2020-07-21T14:50:29+00:00"
+ "time": "2023-02-18T13:54:03+00:00"
},
{
- "name": "phpstan/phpstan-phpunit",
- "version": "0.12.16",
+ "name": "phpstan/phpstan-php-parser",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-phpunit.git",
- "reference": "1dd916d181b0539dea5cd37e91546afb8b107e17"
+ "url": "https://github.com/phpstan/phpstan-php-parser.git",
+ "reference": "1c7670dd92da864b5d019f22d9f512a6ae18b78e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/1dd916d181b0539dea5cd37e91546afb8b107e17",
- "reference": "1dd916d181b0539dea5cd37e91546afb8b107e17",
+ "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.33"
- },
- "conflict": {
- "phpunit/phpunit": "<7.0"
+ "phpstan/phpstan": "^1.3"
},
"require-dev": {
- "consistence/coding-standard": "^3.5",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "ergebnis/composer-normalize": "^2.0.2",
- "jakub-onderka/php-parallel-lint": "^1.0",
- "phing/phing": "^2.16.0",
- "phpstan/phpstan-strict-rules": "^0.12",
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
- "satooshi/php-coveralls": "^1.0",
- "slevomat/coding-standard": "^4.7.2"
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "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"
]
}
},
@@ -4404,46 +5680,93 @@
"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.16"
+ "issues": "https://github.com/phpstan/phpstan-php-parser/issues",
+ "source": "https://github.com/phpstan/phpstan-php-parser/tree/1.1.0"
},
- "time": "2020-08-05T13:28:50+00:00"
+ "abandoned": true,
+ "time": "2021-12-16T19:43:32+00:00"
},
{
- "name": "phpstan/phpstan-strict-rules",
- "version": "0.12.5",
+ "name": "phpstan/phpstan-phpunit",
+ "version": "1.3.15",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-strict-rules.git",
- "reference": "334898a32217e4605e0f9cfa3d3fc3101bda26be"
+ "url": "https://github.com/phpstan/phpstan-phpunit.git",
+ "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/334898a32217e4605e0f9cfa3d3fc3101bda26be",
- "reference": "334898a32217e4605e0f9cfa3d3fc3101bda26be",
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/70ecacc64fe8090d8d2a33db5a51fe8e88acd93a",
+ "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.33"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.0"
},
"require-dev": {
- "consistence/coding-standard": "^3.0.1",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "ergebnis/composer-normalize": "^2.0.2",
- "jakub-onderka/php-parallel-lint": "^1.0",
- "phing/phing": "^2.16.0",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpunit/phpunit": "^7.0",
- "slevomat/coding-standard": "^4.5.2"
+ "nikic/php-parser": "^4.13.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/phpstan-strict-rules": "^1.5.1",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "phpstan-extension",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "extension.neon",
+ "rules.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPUnit extensions and rules for PHPStan",
+ "support": {
+ "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.15"
+ },
+ "time": "2023-10-09T18:58:39+00:00"
+ },
+ {
+ "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": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
"phpstan": {
"includes": [
"rules.neon"
@@ -4462,36 +5785,36 @@
"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/master"
+ "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.5.2"
},
- "time": "2020-08-30T15:42:06+00:00"
+ "time": "2023-10-30T14:35:06+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "9.2.3",
+ "version": "9.2.29",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "6b20e2055f7c29b56cb3870b3de7cc463d7add41"
+ "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6b20e2055f7c29b56cb3870b3de7cc463d7add41",
- "reference": "6b20e2055f7c29b56cb3870b3de7cc463d7add41",
+ "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.10.2",
+ "nikic/php-parser": "^4.15",
"php": ">=7.3",
"phpunit/php-file-iterator": "^3.0.3",
"phpunit/php-text-template": "^2.0.2",
"sebastian/code-unit-reverse-lookup": "^2.0.2",
"sebastian/complexity": "^2.0",
"sebastian/environment": "^5.1.2",
- "sebastian/lines-of-code": "^1.0",
+ "sebastian/lines-of-code": "^1.0.3",
"sebastian/version": "^3.0.1",
"theseer/tokenizer": "^1.2.0"
},
@@ -4499,8 +5822,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": {
@@ -4533,7 +5856,8 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.3"
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
},
"funding": [
{
@@ -4541,20 +5865,20 @@
"type": "github"
}
],
- "time": "2020-10-30T10:46:41+00:00"
+ "time": "2023-09-19T04:57:46+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "3.0.5",
+ "version": "3.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
+ "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
- "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
+ "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
"shasum": ""
},
"require": {
@@ -4593,7 +5917,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
},
"funding": [
{
@@ -4601,7 +5925,7 @@
"type": "github"
}
],
- "time": "2020-09-28T05:57:25+00:00"
+ "time": "2021-12-02T12:48:52+00:00"
},
{
"name": "phpunit/php-invoker",
@@ -4786,20 +6110,20 @@
},
{
"name": "phpunit/phpunit",
- "version": "9.4.2",
+ "version": "9.6.15",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "3866b2eeeed21b1b099c4bc0b7a1690ac6fd5baa"
+ "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3866b2eeeed21b1b099c4bc0b7a1690ac6fd5baa",
- "reference": "3866b2eeeed21b1b099c4bc0b7a1690ac6fd5baa",
+ "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": "*",
@@ -4807,34 +6131,29 @@
"ext-xml": "*",
"ext-xmlwriter": "*",
"myclabs/deep-copy": "^1.10.1",
- "phar-io/manifest": "^2.0.1",
+ "phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2",
"php": ">=7.3",
- "phpspec/prophecy": "^1.12.1",
- "phpunit/php-code-coverage": "^9.2",
+ "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",
"phpunit/php-timer": "^5.0.2",
"sebastian/cli-parser": "^1.0.1",
"sebastian/code-unit": "^1.0.6",
- "sebastian/comparator": "^4.0.5",
+ "sebastian/comparator": "^4.0.8",
"sebastian/diff": "^4.0.3",
"sebastian/environment": "^5.1.3",
- "sebastian/exporter": "^4.0.3",
+ "sebastian/exporter": "^4.0.5",
"sebastian/global-state": "^5.0.1",
"sebastian/object-enumerator": "^4.0.3",
"sebastian/resource-operations": "^3.0.3",
- "sebastian/type": "^2.3",
+ "sebastian/type": "^3.2",
"sebastian/version": "^3.0.2"
},
- "require-dev": {
- "ext-pdo": "*",
- "phpspec/prophecy-phpunit": "^2.0.1"
- },
"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"
@@ -4842,15 +6161,15 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "9.4-dev"
+ "dev-master": "9.6-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ],
"files": [
"src/Framework/Assert/Functions.php"
+ ],
+ "classmap": [
+ "src/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4873,46 +6192,55 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.4.2"
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
},
"funding": [
{
- "url": "https://phpunit.de/donate.html",
+ "url": "https://phpunit.de/sponsors.html",
"type": "custom"
},
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
+ "type": "tidelift"
}
],
- "time": "2020-10-19T09:23:29+00:00"
+ "time": "2023-12-01T16:55:19+00:00"
},
{
"name": "psalm/plugin-phpunit",
- "version": "0.13.0",
+ "version": "0.18.4",
"source": {
"type": "git",
"url": "https://github.com/psalm/psalm-plugin-phpunit.git",
- "reference": "e006914489f3e445f5cb786ea6f3df89ea30129b"
+ "reference": "e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/e006914489f3e445f5cb786ea6f3df89ea30129b",
- "reference": "e006914489f3e445f5cb786ea6f3df89ea30129b",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc",
+ "reference": "e4ab3096653d9eb6f6d0ea5f4461898d59ae4dbc",
"shasum": ""
},
"require": {
"composer/package-versions-deprecated": "^1.10",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"ext-simplexml": "*",
- "php": "^7.3 || ^8.0",
- "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
- "vimeo/psalm": "dev-master || dev-4.x || ^4.0"
+ "php": "^7.1 || ^8.0",
+ "vimeo/psalm": "dev-master || dev-4.x || ^4.7.1 || ^5@beta || ^5.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.5"
},
"require-dev": {
"codeception/codeception": "^4.0.3",
+ "php": "^7.3 || ^8.0",
+ "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.3.1",
- "weirdan/codeception-psalm-module": "^0.7.1",
+ "weirdan/codeception-psalm-module": "^0.11.0",
"weirdan/prophecy-shim": "^1.0 || ^2.0"
},
"type": "psalm-plugin",
@@ -4939,31 +6267,31 @@
"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.13.0"
+ "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.18.4"
},
- "time": "2020-10-19T12:43:17+00:00"
+ "time": "2022-12-03T07:47:07+00:00"
},
{
"name": "psr/container",
- "version": "1.0.0",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": ">=7.4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -4978,7 +6306,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common Container Interface (PHP FIG PSR-11)",
@@ -4992,27 +6320,27 @@
],
"support": {
"issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/master"
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
},
- "time": "2017-02-14T16:28:37+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": {
@@ -5032,7 +6360,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP clients",
@@ -5044,31 +6372,86 @@
"psr-18"
],
"support": {
- "source": "https://github.com/php-fig/http-client/tree/master"
+ "source": "https://github.com/php-fig/http-client"
+ },
+ "time": "2023-09-23T14:17:50+00:00"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "e616d01114759c4c489f93b099585439f795fe35"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
+ "reference": "e616d01114759c4c489f93b099585439f795fe35",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0.0",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
},
- "time": "2020-06-29T06:28:15+00:00"
+ "time": "2023-04-10T20:10:41+00:00"
},
{
"name": "psr/http-message",
- "version": "1.0.1",
+ "version": "2.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -5083,7 +6466,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP messages",
@@ -5097,36 +6480,36 @@
"response"
],
"support": {
- "source": "https://github.com/php-fig/http-message/tree/master"
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
},
- "time": "2016-08-06T14:39:51+00:00"
+ "time": "2023-04-04T09:54:51+00:00"
},
{
"name": "psr/log",
- "version": "1.1.3",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
+ "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "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/",
@@ -5136,7 +6519,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for logging libraries",
@@ -5147,9 +6530,9 @@
"psr-3"
],
"support": {
- "source": "https://github.com/php-fig/log/tree/1.1.3"
+ "source": "https://github.com/php-fig/log/tree/2.0.0"
},
- "time": "2020-03-23T09:12:05+00:00"
+ "time": "2021-07-14T16:41:46+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -5196,95 +6579,115 @@
"time": "2019-03-08T08:55:37+00:00"
},
{
- "name": "react/promise-timer",
- "version": "v1.6.0",
+ "name": "revolt/event-loop",
+ "version": "v1.0.6",
"source": {
"type": "git",
- "url": "https://github.com/reactphp/promise-timer.git",
- "reference": "daee9baf6ef30c43ea4c86399f828bb5f558f6e6"
+ "url": "https://github.com/revoltphp/event-loop.git",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/daee9baf6ef30c43ea4c86399f828bb5f558f6e6",
- "reference": "daee9baf6ef30c43ea4c86399f828bb5f558f6e6",
+ "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/25de49af7223ba039f64da4ae9a28ec2d10d0254",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254",
"shasum": ""
},
"require": {
- "php": ">=5.3",
- "react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
- "react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
+ "php": ">=8.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.0 || ^5.7 || ^4.8.35"
+ "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": {
- "React\\Promise\\Timer\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
+ "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@lueck.tv"
+ "email": "christian@clue.engineering"
+ },
+ {
+ "name": "Niklas Keller",
+ "email": "me@kelunik.com"
}
],
- "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
- "homepage": "https://github.com/reactphp/promise-timer",
+ "description": "Rock-solid event loop for concurrent PHP applications.",
"keywords": [
"async",
+ "asynchronous",
+ "concurrency",
+ "event",
"event-loop",
- "promise",
- "reactphp",
- "timeout",
- "timer"
+ "non-blocking",
+ "scheduler"
],
"support": {
- "issues": "https://github.com/reactphp/promise-timer/issues",
- "source": "https://github.com/reactphp/promise-timer/tree/v1.6.0"
+ "issues": "https://github.com/revoltphp/event-loop/issues",
+ "source": "https://github.com/revoltphp/event-loop/tree/v1.0.6"
},
- "time": "2020-07-10T12:18:06+00:00"
+ "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"
@@ -5312,49 +6715,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.11.0",
+ "version": "6.19.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/BetterReflection.git",
- "reference": "7246619ac9c2992a37b4f5c0042fb35abacc7252"
+ "reference": "92e9cbd9ccfea0924135a29f4be3959cd59cf54c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/7246619ac9c2992a37b4f5c0042fb35abacc7252",
- "reference": "7246619ac9c2992a37b4f5c0042fb35abacc7252",
+ "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.1.0",
- "infection/infection": "^0.16.4",
- "phpstan/phpstan": "^0.12.25",
- "phpunit/phpunit": "^9.2.6",
- "vimeo/psalm": "3.13.1"
+ "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"
@@ -5389,33 +6789,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.11.0"
+ "source": "https://github.com/Roave/BetterReflection/tree/6.19.0"
},
- "time": "2020-10-24T23:11:06+00:00"
+ "time": "2023-12-07T10:58:42+00:00"
},
{
"name": "roave/infection-static-analysis-plugin",
- "version": "1.3.0",
+ "version": "1.34.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/infection-static-analysis-plugin.git",
- "reference": "371ad8c946b770c5e2c5a184add91e105fece693"
+ "reference": "7b045a2e342ef86d8fc8f2b08f364cb99677a59d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/371ad8c946b770c5e2c5a184add91e105fece693",
- "reference": "371ad8c946b770c5e2c5a184add91e105fece693",
+ "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/7b045a2e342ef86d8fc8f2b08f364cb99677a59d",
+ "reference": "7b045a2e342ef86d8fc8f2b08f364cb99677a59d",
"shasum": ""
},
"require": {
- "infection/infection": "0.20.1",
- "ocramius/package-versions": "^1.9.0 || ^2.0.0",
- "php": "^7.4.7",
- "vimeo/psalm": "^4.1"
+ "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.2.6"
+ "doctrine/coding-standard": "^12.0.0",
+ "phpunit/phpunit": "^10.5.0"
},
"bin": [
"bin/roave-infection-static-analysis-plugin"
@@ -5439,32 +6840,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.3.0"
+ "source": "https://github.com/Roave/infection-static-analysis-plugin/tree/1.34.0"
},
- "time": "2020-11-03T14:13:14+00:00"
+ "time": "2023-12-01T11:52:19+00:00"
},
{
"name": "roave/signature",
- "version": "1.3.0",
+ "version": "1.8.0",
"source": {
"type": "git",
"url": "https://github.com/Roave/Signature.git",
- "reference": "bbbcc317dfe3a750e27231c5d2130153aa4c41b3"
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/Signature/zipball/bbbcc317dfe3a750e27231c5d2130153aa4c41b3",
- "reference": "bbbcc317dfe3a750e27231c5d2130153aa4c41b3",
+ "url": "https://api.github.com/repos/Roave/Signature/zipball/f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
"shasum": ""
},
"require": {
- "php": "7.4.*"
+ "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "doctrine/coding-standard": "^8.1",
- "infection/infection": "^0.17.5",
- "phpunit/phpunit": "^9.3",
- "vimeo/psalm": "^3.16"
+ "doctrine/coding-standard": "^12.0.0",
+ "infection/infection": "^0.26.19",
+ "phpunit/phpunit": "^9.6.7",
+ "vimeo/psalm": "^5.9.0"
},
"type": "library",
"autoload": {
@@ -5479,51 +6880,115 @@
"description": "Sign and verify stuff",
"support": {
"issues": "https://github.com/Roave/Signature/issues",
- "source": "https://github.com/Roave/Signature/tree/1.3.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": "2020-10-01T08:35:57+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sanmai",
+ "type": "github"
+ }
+ ],
+ "time": "2023-10-24T00:25:28+00:00"
},
{
"name": "sanmai/pipeline",
- "version": "v5.1.0",
+ "version": "v6.9",
"source": {
"type": "git",
"url": "https://github.com/sanmai/pipeline.git",
- "reference": "f935e10ddcb758c89829e7b69cfb1dc2b2638518"
+ "reference": "c48f45c22c3ce4140d071f7658fb151df1cc08ea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sanmai/pipeline/zipball/f935e10ddcb758c89829e7b69cfb1dc2b2638518",
- "reference": "f935e10ddcb758c89829e7b69cfb1dc2b2638518",
+ "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": "^2.16",
+ "friendsofphp/php-cs-fixer": "^3.17",
"infection/infection": ">=0.10.5",
- "league/pipeline": "^1.0 || ^0.3",
- "phan/phan": "^1.1 || ^2.0 || ^3.0",
+ "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",
- "vimeo/psalm": "^2.0 || ^3.0 || ^4.0"
+ "phpunit/phpunit": ">=9.4",
+ "vimeo/psalm": ">=2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "v5.x-dev"
+ "dev-main": "v6.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Pipeline\\": "src/"
- },
"files": [
"src/functions.php"
- ]
+ ],
+ "psr-4": {
+ "Pipeline\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5538,7 +7003,7 @@
"description": "General-purpose collections pipeline",
"support": {
"issues": "https://github.com/sanmai/pipeline/issues",
- "source": "https://github.com/sanmai/pipeline/tree/v5.1.0"
+ "source": "https://github.com/sanmai/pipeline/tree/v6.9"
},
"funding": [
{
@@ -5546,7 +7011,7 @@
"type": "github"
}
],
- "time": "2020-10-25T15:20:56+00:00"
+ "time": "2023-10-08T11:56:54+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -5717,16 +7182,16 @@
},
{
"name": "sebastian/comparator",
- "version": "4.0.6",
+ "version": "4.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
+ "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
+ "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
"shasum": ""
},
"require": {
@@ -5779,7 +7244,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
+ "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
},
"funding": [
{
@@ -5787,7 +7252,7 @@
"type": "github"
}
],
- "time": "2020-10-26T15:49:45+00:00"
+ "time": "2022-09-14T12:41:17+00:00"
},
{
"name": "sebastian/complexity",
@@ -5848,16 +7313,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": {
@@ -5902,7 +7367,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": [
{
@@ -5910,20 +7375,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.3",
+ "version": "5.1.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
+ "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
+ "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
"shasum": ""
},
"require": {
@@ -5965,7 +7430,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/environment/issues",
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
+ "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
},
"funding": [
{
@@ -5973,20 +7438,20 @@
"type": "github"
}
],
- "time": "2020-09-28T05:52:38+00:00"
+ "time": "2023-02-03T06:03:51+00:00"
},
{
"name": "sebastian/exporter",
- "version": "4.0.3",
+ "version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
+ "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
- "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
+ "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
"shasum": ""
},
"require": {
@@ -6035,14 +7500,14 @@
}
],
"description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
"keywords": [
"export",
"exporter"
],
"support": {
"issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
+ "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
},
"funding": [
{
@@ -6050,20 +7515,20 @@
"type": "github"
}
],
- "time": "2020-09-28T05:24:23+00:00"
+ "time": "2022-09-14T06:03:37+00:00"
},
{
"name": "sebastian/global-state",
- "version": "5.0.2",
+ "version": "5.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
+ "reference": "bde739e7565280bda77be70044ac1047bc007e34"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
- "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
+ "reference": "bde739e7565280bda77be70044ac1047bc007e34",
"shasum": ""
},
"require": {
@@ -6106,7 +7571,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
+ "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
},
"funding": [
{
@@ -6114,20 +7579,20 @@
"type": "github"
}
],
- "time": "2020-10-26T15:55:19+00:00"
+ "time": "2023-08-02T09:26:13+00:00"
},
{
"name": "sebastian/lines-of-code",
- "version": "1.0.2",
+ "version": "1.0.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "acf76492a65401babcf5283296fa510782783a7a"
+ "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/acf76492a65401babcf5283296fa510782783a7a",
- "reference": "acf76492a65401babcf5283296fa510782783a7a",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+ "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
"shasum": ""
},
"require": {
@@ -6163,7 +7628,7 @@
"homepage": "https://github.com/sebastianbergmann/lines-of-code",
"support": {
"issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.2"
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
},
"funding": [
{
@@ -6171,7 +7636,7 @@
"type": "github"
}
],
- "time": "2020-10-26T17:03:56+00:00"
+ "time": "2020-11-28T06:42:11+00:00"
},
{
"name": "sebastian/object-enumerator",
@@ -6287,16 +7752,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": {
@@ -6335,10 +7800,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": [
{
@@ -6346,7 +7811,7 @@
"type": "github"
}
],
- "time": "2020-10-26T13:17:30+00:00"
+ "time": "2023-02-03T06:07:39+00:00"
},
{
"name": "sebastian/resource-operations",
@@ -6405,28 +7870,28 @@
},
{
"name": "sebastian/type",
- "version": "2.3.1",
+ "version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
+ "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
- "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
+ "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
"shasum": ""
},
"require": {
"php": ">=7.3"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^9.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.3-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -6449,7 +7914,7 @@
"homepage": "https://github.com/sebastianbergmann/type",
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
+ "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
},
"funding": [
{
@@ -6457,7 +7922,7 @@
"type": "github"
}
],
- "time": "2020-10-26T13:18:59+00:00"
+ "time": "2023-02-03T06:13:03+00:00"
},
{
"name": "sebastian/version",
@@ -6514,23 +7979,24 @@
},
{
"name": "seld/jsonlint",
- "version": "1.8.2",
+ "version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/jsonlint.git",
- "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
+ "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
- "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1",
+ "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1",
"shasum": ""
},
"require": {
"php": "^5.3 || ^7.0 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+ "phpstan/phpstan": "^1.5",
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
},
"bin": [
"bin/jsonlint"
@@ -6561,7 +8027,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/jsonlint/issues",
- "source": "https://github.com/Seldaek/jsonlint/tree/master"
+ "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0"
},
"funding": [
{
@@ -6573,20 +8039,20 @@
"type": "tidelift"
}
],
- "time": "2020-08-25T06:56:57+00:00"
+ "time": "2023-05-11T13:16:46+00:00"
},
{
"name": "seld/phar-utils",
- "version": "1.1.1",
+ "version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/phar-utils.git",
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
+ "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
+ "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
"shasum": ""
},
"require": {
@@ -6619,99 +8085,227 @@
],
"support": {
"issues": "https://github.com/Seldaek/phar-utils/issues",
- "source": "https://github.com/Seldaek/phar-utils/tree/master"
+ "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
},
- "time": "2020-07-07T18:42:57+00:00"
+ "time": "2022-08-31T10:31:18+00:00"
},
{
- "name": "slevomat/coding-standard",
- "version": "6.4.1",
+ "name": "seld/signal-handler",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/slevomat/coding-standard.git",
- "reference": "696dcca217d0c9da2c40d02731526c1e25b65346"
+ "url": "https://github.com/Seldaek/signal-handler.git",
+ "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/696dcca217d0c9da2c40d02731526c1e25b65346",
- "reference": "696dcca217d0c9da2c40d02731526c1e25b65346",
+ "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.1 || ^8.0",
- "phpstan/phpdoc-parser": "0.4.5 - 0.4.9",
- "squizlabs/php_codesniffer": "^3.5.6"
+ "php": ">=7.2.0"
},
"require-dev": {
- "phing/phing": "2.16.3",
- "php-parallel-lint/php-parallel-lint": "1.2.0",
- "phpstan/phpstan": "0.12.48",
- "phpstan/phpstan-deprecation-rules": "0.12.5",
- "phpstan/phpstan-phpunit": "0.12.16",
- "phpstan/phpstan-strict-rules": "0.12.5",
- "phpunit/phpunit": "7.5.20|8.5.5|9.4.0"
+ "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": "6.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.",
- "support": {
- "issues": "https://github.com/slevomat/coding-standard/issues",
- "source": "https://github.com/slevomat/coding-standard/tree/6.4.1"
- },
- "funding": [
- {
- "url": "https://github.com/kukulich",
- "type": "github"
- },
+ "authors": [
{
- "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
- "type": "tidelift"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
}
],
- "time": "2020-10-05T12:39:37+00:00"
+ "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/Seldaek/signal-handler/issues",
+ "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2"
+ },
+ "time": "2023-09-03T09:24:00+00:00"
},
{
- "name": "squizlabs/php_codesniffer",
- "version": "3.5.8",
+ "name": "slevomat/coding-standard",
+ "version": "8.14.1",
"source": {
"type": "git",
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
- "reference": "9d583721a7157ee997f235f327de038e7ea6dac4"
+ "url": "https://github.com/slevomat/coding-standard.git",
+ "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/9d583721a7157ee997f235f327de038e7ea6dac4",
- "reference": "9d583721a7157ee997f235f327de038e7ea6dac4",
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
+ "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926",
"shasum": ""
},
"require": {
- "ext-simplexml": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": ">=5.4.0"
+ "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": {
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ "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"
},
- "bin": [
- "bin/phpcs",
- "bin/phpcbf"
- ],
- "type": "library",
+ "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": [
+ {
+ "url": "https://github.com/kukulich",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
+ "type": "tidelift"
+ }
+ ],
+ "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.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
+ "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879",
+ "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879",
+ "shasum": ""
+ },
+ "require": {
+ "ext-simplexml": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ },
+ "bin": [
+ "bin/phpcs",
+ "bin/phpcbf"
+ ],
+ "type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
@@ -6731,48 +8325,60 @@
"homepage": "https://github.com/squizlabs/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"
},
- "time": "2020-10-23T02:01:07+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/PHPCSStandards",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/jrfnl",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/php_codesniffer",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-02-22T23:07:41+00:00"
},
{
"name": "symfony/config",
- "version": "v5.1.8",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
- "reference": "11baeefa4c179d6908655a7b6be728f62367c193"
+ "reference": "8789646600f4e7e451dde9e1dc81cfa429f3857a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/11baeefa4c179d6908655a7b6be728f62367c193",
- "reference": "11baeefa4c179d6908655a7b6be728f62367c193",
+ "url": "https://api.github.com/repos/symfony/config/zipball/8789646600f4e7e451dde9e1dc81cfa429f3857a",
+ "reference": "8789646600f4e7e451dde9e1dc81cfa429f3857a",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1",
- "symfony/filesystem": "^4.4|^5.0",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-php80": "^1.15"
+ "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",
- "symfony/finder": "^4.4|^5.0",
- "symfony/messenger": "^4.4|^5.0",
- "symfony/service-contracts": "^1.1|^2",
- "symfony/yaml": "^4.4|^5.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": {
@@ -6797,10 +8403,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Config Component",
+ "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.1.8"
+ "source": "https://github.com/symfony/config/tree/v7.0.0"
},
"funding": [
{
@@ -6816,54 +8422,51 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-11-09T08:30:23+00:00"
},
{
"name": "symfony/console",
- "version": "v5.1.8",
+ "version": "v6.4.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
+ "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
- "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd",
+ "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
"symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php73": "^1.8",
- "symfony/polyfill-php80": "^1.15",
- "symfony/service-contracts": "^1.1|^2",
- "symfony/string": "^5.1"
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^5.4|^6.0|^7.0"
},
"conflict": {
- "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"
+ "psr/log-implementation": "1.0|2.0|3.0"
},
"require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "^4.4|^5.0",
- "symfony/dependency-injection": "^4.4|^5.0",
- "symfony/event-dispatcher": "^4.4|^5.0",
- "symfony/lock": "^4.4|^5.0",
- "symfony/process": "^4.4|^5.0",
- "symfony/var-dumper": "^4.4|^5.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": {
@@ -6888,10 +8491,699 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Console Component",
- "homepage": "https://symfony.com",
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "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": [
+ {
+ "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-12-01T15:10:06+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.4-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "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": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.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-05-23T14:45:45+00:00"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7",
+ "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "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 basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/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-07-27T06:33:22+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v7.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
+ "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "symfony/filesystem": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "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": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/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-10-31T17:59:56+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
+ "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "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\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/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-intl-grapheme",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "875e90aeea2777b6f135677f618529449334a612"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
+ "reference": "875e90aeea2777b6f135677f618529449334a612",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "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\\Intl\\Grapheme\\": ""
+ }
+ },
+ "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 for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/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-intl-normalizer",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
+ "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "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\\Intl\\Normalizer\\": ""
+ },
+ "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 for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/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-mbstring",
+ "version": "v1.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "42292d99c55abe617799667f454222c54c60e229"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
+ "reference": "42292d99c55abe617799667f454222c54c60e229",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "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\\Mbstring\\": ""
+ }
+ },
+ "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 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/console/tree/v5.1.8"
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
},
"funding": [
{
@@ -6907,20 +9199,20 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
- "name": "symfony/deprecation-contracts",
- "version": "v2.2.0",
+ "name": "symfony/polyfill-php80",
+ "version": "v1.28.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
- "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
+ "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
"shasum": ""
},
"require": {
@@ -6929,16 +9221,22 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.2-dev"
+ "dev-main": "1.28-dev"
},
"thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
- "function.php"
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -6946,6 +9244,10 @@
"MIT"
],
"authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
@@ -6955,10 +9257,16 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "A generic function and convention to trigger deprecation notices",
+ "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/deprecation-contracts/tree/master"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
},
"funding": [
{
@@ -6974,33 +9282,44 @@
"type": "tidelift"
}
],
- "time": "2020-09-07T11:33:47+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
- "name": "symfony/filesystem",
- "version": "v5.1.8",
+ "name": "symfony/polyfill-php81",
+ "version": "v1.28.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "df08650ea7aee2d925380069c131a66124d79177"
+ "url": "https://github.com/symfony/polyfill-php81.git",
+ "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/df08650ea7aee2d925380069c131a66124d79177",
- "reference": "df08650ea7aee2d925380069c131a66124d79177",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
+ "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "~1.8"
+ "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\\Component\\Filesystem\\": ""
+ "Symfony\\Polyfill\\Php81\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7009,18 +9328,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Filesystem Component",
+ "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/filesystem/tree/v5.1.8"
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
},
"funding": [
{
@@ -7036,32 +9361,45 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-01-26T09:26:14+00:00"
},
{
- "name": "symfony/finder",
- "version": "v5.1.8",
+ "name": "symfony/polyfill-php83",
+ "version": "v1.28.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
- "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
+ "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
"shasum": ""
},
"require": {
- "php": ">=7.2.5"
+ "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\\Component\\Finder\\": ""
+ "Symfony\\Polyfill\\Php83\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7070,18 +9408,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Finder Component",
+ "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/finder/tree/v5.1.8"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
},
"funding": [
{
@@ -7097,44 +9441,32 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-08-16T06:22:46+00:00"
},
{
- "name": "symfony/polyfill-ctype",
- "version": "v1.20.0",
+ "name": "symfony/process",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "13bdb1670c7f510494e04fcb2bfa29af63db9c0d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
- "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
+ "url": "https://api.github.com/repos/symfony/process/zipball/13bdb1670c7f510494e04fcb2bfa29af63db9c0d",
+ "reference": "13bdb1670c7f510494e04fcb2bfa29af63db9c0d",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-ctype": "For best performance"
+ "php": ">=8.2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.20-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
+ "Symfony\\Component\\Process\\": ""
},
- "files": [
- "bootstrap.php"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7143,24 +9475,18 @@
],
"authors": [
{
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for ctype functions",
+ "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "ctype",
- "polyfill",
- "portable"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
+ "source": "https://github.com/symfony/process/tree/v7.0.0"
},
"funding": [
{
@@ -7176,44 +9502,36 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-11-20T16:43:42+00:00"
},
{
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.20.0",
+ "name": "symfony/property-access",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
+ "url": "https://github.com/symfony/property-access.git",
+ "reference": "740e8cb8c54a4f16c82179e8558c29d9fc49901d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
- "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/740e8cb8c54a4f16c82179e8558c29d9fc49901d",
+ "reference": "740e8cb8c54a4f16c82179e8558c29d9fc49901d",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/property-info": "^6.4|^7.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "require-dev": {
+ "symfony/cache": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.20-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ "Symfony\\Component\\PropertyAccess\\": ""
},
- "files": [
- "bootstrap.php"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7222,26 +9540,29 @@
],
"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 for intl's grapheme_* functions",
+ "description": "Provides functions to read and write from/to an object or array using a simple string notation",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "grapheme",
- "intl",
- "polyfill",
- "portable",
- "shim"
+ "access",
+ "array",
+ "extraction",
+ "index",
+ "injection",
+ "object",
+ "property",
+ "property-path",
+ "reflection"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
+ "source": "https://github.com/symfony/property-access/tree/v7.0.0"
},
"funding": [
{
@@ -7257,47 +9578,46 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-09-27T14:05:33+00:00"
},
{
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.20.0",
+ "name": "symfony/property-info",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "727d1096295d807c309fb01a851577302394c897"
+ "url": "https://github.com/symfony/property-info.git",
+ "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
- "reference": "727d1096295d807c309fb01a851577302394c897",
+ "url": "https://api.github.com/repos/symfony/property-info/zipball/ce627df05f5629ce4feec536ee827ad0a12689b6",
+ "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/string": "^6.4|^7.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<5.2",
+ "phpdocumentor/type-resolver": "<1.5.1",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/serializer": "<6.4"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.20-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "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\\Polyfill\\Intl\\Normalizer\\": ""
+ "Symfony\\Component\\PropertyInfo\\": ""
},
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7306,26 +9626,26 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Kรฉvin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "description": "Extracts information about PHP class' properties using metadata of popular sources",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "intl",
- "normalizer",
- "polyfill",
- "portable",
- "shim"
+ "doctrine",
+ "phpdoc",
+ "property",
+ "symfony",
+ "type",
+ "validator"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
+ "source": "https://github.com/symfony/property-info/tree/v7.0.0"
},
"funding": [
{
@@ -7341,44 +9661,66 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-11-25T08:38:27+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.20.0",
+ "name": "symfony/serializer",
+ "version": "v7.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "9c8f67c1444adf6dbcf90fb76da5b2f5c43af0ff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
- "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
+ "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"
},
- "suggest": {
- "ext-mbstring": "For best performance"
+ "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"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.20-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "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": {
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
+ "Symfony\\Component\\Serializer\\": ""
},
- "files": [
- "bootstrap.php"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7387,25 +9729,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 for the Mbstring extension",
+ "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",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
+ "source": "https://github.com/symfony/serializer/tree/v7.0.1"
},
"funding": [
{
@@ -7421,44 +9756,45 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-12-01T15:10:06+00:00"
},
{
- "name": "symfony/polyfill-php73",
- "version": "v1.20.0",
+ "name": "symfony/service-contracts",
+ "version": "v3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
- "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
+ "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.20-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": {
"psr-4": {
- "Symfony\\Polyfill\\Php73\\": ""
+ "Symfony\\Contracts\\Service\\": ""
},
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Test/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7475,16 +9811,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 7.3+ 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-php73/tree/v1.20.0"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.4.0"
},
"funding": [
{
@@ -7500,44 +9838,33 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-07-30T20:28:31+00:00"
},
{
- "name": "symfony/polyfill-php80",
- "version": "v1.20.0",
+ "name": "symfony/stopwatch",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
+ "url": "https://github.com/symfony/stopwatch.git",
+ "reference": "7bbfa3dd564a0ce12eb4acaaa46823c740f9cb7a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
- "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
+ "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.20-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
+ "Symfony\\Component\\Stopwatch\\": ""
},
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7546,28 +9873,18 @@
],
"authors": [
{
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "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.0+ 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-php80/tree/v1.20.0"
+ "source": "https://github.com/symfony/stopwatch/tree/v7.0.0"
},
"funding": [
{
@@ -7583,30 +9900,46 @@
"type": "tidelift"
}
],
- "time": "2020-10-23T14:02:19+00:00"
+ "time": "2023-07-05T13:06:06+00:00"
},
{
- "name": "symfony/process",
- "version": "v5.1.8",
+ "name": "symfony/string",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
- "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
+ "url": "https://api.github.com/repos/symfony/string/zipball/92bd2bfbba476d4a1838e5e12168bef2fd1e6620",
+ "reference": "92bd2bfbba476d4a1838e5e12168bef2fd1e6620",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-php80": "^1.15"
+ "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/"
@@ -7618,18 +9951,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": "Symfony Process Component",
+ "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.1.8"
+ "source": "https://github.com/symfony/string/tree/v7.0.0"
},
"funding": [
{
@@ -7645,33 +9986,29 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-11-29T08:40:23+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v2.2.0",
+ "name": "symfony/translation-contracts",
+ "version": "v3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
- "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
+ "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "psr/container": "^1.0"
- },
- "suggest": {
- "symfony/service-implementation": ""
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.2-dev"
+ "dev-main": "3.4-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -7680,8 +10017,11 @@
},
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Service\\": ""
- }
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7697,7 +10037,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",
@@ -7708,7 +10048,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/master"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0"
},
"funding": [
{
@@ -7724,30 +10064,62 @@
"type": "tidelift"
}
],
- "time": "2020-09-07T11:33:47+00:00"
+ "time": "2023-07-25T15:08:44+00:00"
},
{
- "name": "symfony/stopwatch",
- "version": "v5.1.8",
+ "name": "symfony/validator",
+ "version": "v7.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5"
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "616b39ffb22c1519f7fd2582b8052cde4c2d0b9f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/3d9f57c89011f0266e6b1d469e5c0110513859d5",
- "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/616b39ffb22c1519f7fd2582b8052cde4c2d0b9f",
+ "reference": "616b39ffb22c1519f7fd2582b8052cde4c2d0b9f",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/service-contracts": "^1.0|^2"
+ "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/"
@@ -7767,10 +10139,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Stopwatch Component",
+ "description": "Provides tools to validate values",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/stopwatch/tree/v5.1.8"
+ "source": "https://github.com/symfony/validator/tree/v7.0.0"
},
"funding": [
{
@@ -7786,44 +10158,33 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-11-29T08:40:23+00:00"
},
{
- "name": "symfony/string",
- "version": "v5.1.8",
+ "name": "symfony/var-exporter",
+ "version": "v7.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
- "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
+ "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"
+ "php": ">=8.2"
},
"require-dev": {
- "symfony/error-handler": "^4.4|^5.0",
- "symfony/http-client": "^4.4|^5.0",
- "symfony/translation-contracts": "^1.1|^2",
- "symfony/var-exporter": "^4.4|^5.0"
+ "symfony/var-dumper": "^6.4|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\String\\": ""
+ "Symfony\\Component\\VarExporter\\": ""
},
- "files": [
- "Resources/functions.php"
- ],
"exclude-from-classmap": [
"/Tests/"
]
@@ -7842,18 +10203,20 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony String component",
+ "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.1.8"
+ "source": "https://github.com/symfony/var-exporter/tree/v7.0.1"
},
"funding": [
{
@@ -7869,35 +10232,31 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:01:57+00:00"
+ "time": "2023-11-30T11:38:21+00:00"
},
{
"name": "symfony/yaml",
- "version": "v5.1.8",
+ "version": "v7.0.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "f284e032c3cefefb9943792132251b79a6127ca6"
+ "reference": "0055b230c408428b9b5cde7c55659555be5c0278"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/f284e032c3cefefb9943792132251b79a6127ca6",
- "reference": "f284e032c3cefefb9943792132251b79a6127ca6",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/0055b230c408428b9b5cde7c55659555be5c0278",
+ "reference": "0055b230c408428b9b5cde7c55659555be5c0278",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1",
- "symfony/polyfill-ctype": "~1.8"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "^1.8"
},
"conflict": {
- "symfony/console": "<4.4"
+ "symfony/console": "<6.4"
},
"require-dev": {
- "symfony/console": "^4.4|^5.0"
- },
- "suggest": {
- "symfony/console": "For validating YAML files using the lint command"
+ "symfony/console": "^6.4|^7.0"
},
"bin": [
"Resources/bin/yaml-lint"
@@ -7925,10 +10284,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Yaml Component",
+ "description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v5.1.8"
+ "source": "https://github.com/symfony/yaml/tree/v7.0.0"
},
"funding": [
{
@@ -7944,36 +10303,85 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T12:03:25+00:00"
+ "time": "2023-11-07T10:26:03+00:00"
+ },
+ {
+ "name": "the-orville/exceptions",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/the-orville/php-exceptions.git",
+ "reference": "13b6e6ae7acc72b215db84200f93a2df04ff3b74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/the-orville/php-exceptions/zipball/13b6e6ae7acc72b215db84200f93a2df04ff3b74",
+ "reference": "13b6e6ae7acc72b215db84200f93a2df04ff3b74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.2"
+ },
+ "require-dev": {
+ "wyrihaximus/test-utilities": "^5.6"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "TheOrville\\Exceptions\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "ceesjank@gmail.com"
+ }
+ ],
+ "description": "The Orville theme Exceptions",
+ "support": {
+ "issues": "https://github.com/the-orville/php-exceptions/issues",
+ "source": "https://github.com/the-orville/php-exceptions/tree/1.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/WyriHaximus",
+ "type": "github"
+ }
+ ],
+ "time": "2023-12-08T07:26:19+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": [
@@ -7999,27 +10407,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.1",
+ "version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/phpstan-strict-rules.git",
- "reference": "4bb334f6f637ebfba83cfdc7392d549a8a3fbba7"
+ "reference": "2ba8fa8b328c45f3b149c05def5bf96793c594b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/phpstan-strict-rules/zipball/4bb334f6f637ebfba83cfdc7392d549a8a3fbba7",
- "reference": "4bb334f6f637ebfba83cfdc7392d549a8a3fbba7",
+ "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",
@@ -8028,7 +10436,7 @@
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.12-dev"
+ "dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
@@ -8054,22 +10462,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/master"
+ "source": "https://github.com/thecodingmachine/phpstan-strict-rules/tree/v1.0.0"
},
- "time": "2020-09-08T09:14:10+00:00"
+ "time": "2021-11-08T09:10:49+00:00"
},
{
"name": "theseer/tokenizer",
- "version": "1.2.0",
+ "version": "1.2.2",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
- "reference": "75a63c33a8577608444246075ea0af0d052e452a"
+ "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
- "reference": "75a63c33a8577608444246075ea0af0d052e452a",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
+ "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
"shasum": ""
},
"require": {
@@ -8098,7 +10506,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/master"
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
},
"funding": [
{
@@ -8106,66 +10514,72 @@
"type": "github"
}
],
- "time": "2020-07-12T23:59:07+00:00"
+ "time": "2023-11-20T00:12:19+00:00"
},
{
"name": "vimeo/psalm",
- "version": "4.1.1",
+ "version": "5.17.0",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
- "reference": "16bfbd9224698bd738c665f33039fade2a1a3977"
+ "reference": "c620f6e80d0abfca532b00bda366062aaedf6e5d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/16bfbd9224698bd738c665f33039fade2a1a3977",
- "reference": "16bfbd9224698bd738c665f33039fade2a1a3977",
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/c620f6e80d0abfca532b00bda366062aaedf6e5d",
+ "reference": "c620f6e80d0abfca532b00bda366062aaedf6e5d",
"shasum": ""
},
"require": {
- "amphp/amp": "^2.1",
+ "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",
+ "composer/xdebug-handler": "^2.0 || ^3.0",
"dnoegel/php-xdg-base-dir": "^0.1.1",
+ "ext-ctype": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
- "felixfbecker/advanced-json-rpc": "^3.0.3",
- "felixfbecker/language-server-protocol": "^1.4",
- "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0",
- "nikic/php-parser": "^4.10.1",
- "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",
- "webmozart/path-util": "^2.3"
+ "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.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": {
- "amphp/amp": "^2.4.2",
- "bamarni/composer-bin-plugin": "^1.2",
- "brianium/paratest": "^4.0.0",
+ "amphp/phpunit-util": "^2.0",
+ "bamarni/composer-bin-plugin": "^1.4",
+ "brianium/paratest": "^6.9",
"ext-curl": "*",
- "php": "^7.3|^8",
- "phpdocumentor/reflection-docblock": "^5",
- "phpmyadmin/sql-parser": "5.1.0",
- "phpspec/prophecy": ">=1.9.0",
- "phpunit/phpunit": "^9.0",
- "psalm/plugin-phpunit": "^0.13",
- "slevomat/coding-standard": "^5.0",
- "squizlabs/php_codesniffer": "^3.5",
- "symfony/process": "^4.3",
- "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ "mockery/mockery": "^1.5",
+ "nunomaduro/mock-final-classes": "^1.1",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "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-igbinary": "^2.0.5"
+ "ext-curl": "In order to send data to shepherd",
+ "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
},
"bin": [
"psalm",
@@ -8174,10 +10588,11 @@
"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"
@@ -8186,11 +10601,7 @@
"autoload": {
"psr-4": {
"Psalm\\": "src/Psalm/"
- },
- "files": [
- "src/functions.php",
- "src/spl_object_id.php"
- ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8205,40 +10616,47 @@
"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.1.1"
+ "source": "https://github.com/vimeo/psalm"
},
- "time": "2020-11-02T05:54:12+00:00"
+ "time": "2023-12-03T20:21:41+00:00"
},
{
"name": "webmozart/assert",
- "version": "1.9.1",
+ "version": "1.11.0",
"source": {
"type": "git",
- "url": "https://github.com/webmozart/assert.git",
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ "url": "https://github.com/webmozarts/assert.git",
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0 || ^8.0",
- "symfony/polyfill-ctype": "^1.8"
+ "ext-ctype": "*",
+ "php": "^7.2 || ^8.0"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
- "vimeo/psalm": "<3.9.1"
+ "vimeo/psalm": "<4.6.1 || 4.6.2"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ "phpunit/phpunit": "^8.5.13"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.10-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
@@ -8261,33 +10679,31 @@
"validate"
],
"support": {
- "issues": "https://github.com/webmozart/assert/issues",
- "source": "https://github.com/webmozart/assert/tree/master"
+ "issues": "https://github.com/webmozarts/assert/issues",
+ "source": "https://github.com/webmozarts/assert/tree/1.11.0"
},
- "time": "2020-07-08T17:02:28+00:00"
+ "time": "2022-06-03T18:03:27+00:00"
},
{
"name": "webmozart/glob",
- "version": "4.1.0",
+ "version": "4.6.0",
"source": {
"type": "git",
- "url": "https://github.com/webmozart/glob.git",
- "reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe"
+ "url": "https://github.com/webmozarts/glob.git",
+ "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozart/glob/zipball/3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
- "reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
+ "url": "https://api.github.com/repos/webmozarts/glob/zipball/3c17f7dec3d9d0e87b575026011f2e75a56ed655",
+ "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655",
"shasum": ""
},
"require": {
- "php": "^5.3.3|^7.0",
- "webmozart/path-util": "^2.2"
+ "php": "^7.3 || ^8.0.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1",
- "symfony/filesystem": "^2.5"
+ "phpunit/phpunit": "^9.5",
+ "symfony/filesystem": "^5.3"
},
"type": "library",
"extra": {
@@ -8312,85 +10728,39 @@
],
"description": "A PHP implementation of Ant's glob.",
"support": {
- "issues": "https://github.com/webmozart/glob/issues",
- "source": "https://github.com/webmozart/glob/tree/master"
- },
- "time": "2015-12-29T11:14:33+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"
+ "issues": "https://github.com/webmozarts/glob/issues",
+ "source": "https://github.com/webmozarts/glob/tree/4.6.0"
},
- "time": "2015-12-17T08:42:14+00:00"
+ "time": "2022-05-24T19:45:58+00:00"
},
{
"name": "wyrihaximus/async-test-utilities",
- "version": "3.2.0",
+ "version": "7.2.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-async-test-utilities.git",
- "reference": "a519b6dd2fc5a741c6f56c248f0d4a33b2489ce0"
+ "reference": "3cac9f58ec6674b4e30decd31958e4999cd22db7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-async-test-utilities/zipball/a519b6dd2fc5a741c6f56c248f0d4a33b2489ce0",
- "reference": "a519b6dd2fc5a741c6f56c248f0d4a33b2489ce0",
+ "url": "https://api.github.com/repos/WyriHaximus/php-async-test-utilities/zipball/3cac9f58ec6674b4e30decd31958e4999cd22db7",
+ "reference": "3cac9f58ec6674b4e30decd31958e4999cd22db7",
"shasum": ""
},
"require": {
- "clue/block-react": "^1.4",
- "php": "^7.4",
- "phpunit/phpunit": "^9.4",
- "react/event-loop": "^1.1",
- "react/promise": "^2.8",
- "wyrihaximus/test-utilities": "^3.1"
+ "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": {
- "wyrihaximus/iterator-or-array-to-array": "^1.1"
+ "react/promise-timer": "^1.10.0",
+ "wyrihaximus/iterator-or-array-to-array": "^1.2"
},
"type": "library",
"autoload": {
@@ -8411,7 +10781,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/3.2.0"
+ "source": "https://github.com/WyriHaximus/php-async-test-utilities/tree/7.2.0"
},
"funding": [
{
@@ -8419,28 +10789,28 @@
"type": "github"
}
],
- "time": "2020-11-09T17:49:40+00:00"
+ "time": "2023-09-07T13:00:15+00:00"
},
{
"name": "wyrihaximus/coding-standard",
- "version": "2.1.0",
+ "version": "2.14.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-coding-standard.git",
- "reference": "af85c0c4c82b97a42756eaf880d26a19625c431a"
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/af85c0c4c82b97a42756eaf880d26a19625c431a",
- "reference": "af85c0c4c82b97a42756eaf880d26a19625c431a",
+ "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/7530678d70ced4d41540df0e60e8811d14813058",
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
- "doctrine/coding-standard": "^8.0",
- "php": "^7.4",
- "slevomat/coding-standard": "^6.3",
- "squizlabs/php_codesniffer": "^3.5"
+ "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/",
@@ -8450,7 +10820,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.1.0"
+ "source": "https://github.com/WyriHaximus/php-coding-standard/tree/2.14.0"
},
"funding": [
{
@@ -8458,32 +10828,34 @@
"type": "github"
}
],
- "time": "2020-10-13T19:22:48+00:00"
+ "time": "2023-05-06T11:54:10+00:00"
},
{
"name": "wyrihaximus/phpstan-rules-wrapper",
- "version": "1.2.2",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper.git",
- "reference": "1d59dbe529c1b61eb1b4ebff190c019af1a57fd4"
+ "reference": "8e65ee7749a3e10100f0abec58b7e53ee540c43d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/1d59dbe529c1b61eb1b4ebff190c019af1a57fd4",
- "reference": "1d59dbe529c1b61eb1b4ebff190c019af1a57fd4",
+ "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/8e65ee7749a3e10100f0abec58b7e53ee540c43d",
+ "reference": "8e65ee7749a3e10100f0abec58b7e53ee540c43d",
"shasum": ""
},
"require": {
- "ergebnis/phpstan-rules": "^0.14.2",
- "jangregor/phpstan-prophecy": "^0.5.1 || ^0.6.0",
- "pepakriz/phpstan-exception-rules": "^0.10.1",
- "phpstan/phpstan-deprecation-rules": "^0.12.0",
- "phpstan/phpstan-php-parser": "^0.12.0",
- "phpstan/phpstan-phpunit": "^0.12.3",
- "phpstan/phpstan-strict-rules": "^0.12.0",
- "thecodingmachine/phpstan-safe-rule": "^1.0",
- "thecodingmachine/phpstan-strict-rules": "^0.12.0"
+ "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/",
@@ -8499,68 +10871,80 @@
"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.2"
+ "source": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/tree/3.3.0"
},
- "time": "2020-01-22T16:22:33+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/WyriHaximus",
+ "type": "github"
+ }
+ ],
+ "time": "2023-09-26T09:07:47+00:00"
},
{
"name": "wyrihaximus/test-utilities",
- "version": "3.1.0",
+ "version": "5.6.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-test-utilities.git",
- "reference": "ee56cdb9135913dd47bc1bddd0449666a3a7d0d9"
+ "reference": "5b6d2484119f72625307b096b8297c933cc765d6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/5b6d2484119f72625307b096b8297c933cc765d6",
+ "reference": "5b6d2484119f72625307b096b8297c933cc765d6",
+ "shasum": ""
+ },
+ "require": {
+ "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": "^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"
},
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/ee56cdb9135913dd47bc1bddd0449666a3a7d0d9",
- "reference": "ee56cdb9135913dd47bc1bddd0449666a3a7d0d9",
- "shasum": ""
- },
- "require": {
- "composer/composer": "^1.10",
- "ergebnis/composer-normalize": "^2.11",
- "icanhazstring/composer-unused": "^0.7",
- "infection/infection": "^0.20",
- "maglnet/composer-require-checker": "^2.1",
- "nunomaduro/collision": "^5.1",
- "php": "^7.4",
- "php-coveralls/php-coveralls": "^2.4",
- "php-parallel-lint/php-console-highlighter": "^0.5",
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpspec/prophecy": "^1.12",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/phpstan": "^0.12.54",
- "phpunit/phpunit": "^9.4",
- "psalm/plugin-phpunit": "^0.13",
- "roave/backward-compatibility-check": "^5.0",
- "roave/infection-static-analysis-plugin": "^1.3",
- "squizlabs/php_codesniffer": "^3.5",
- "thecodingmachine/safe": "^1.3",
- "vimeo/psalm": "^4.1",
- "wyrihaximus/coding-standard": "^2.1",
- "wyrihaximus/phpstan-rules-wrapper": "^1.2"
+ "conflict": {
+ "symfony/dependency-injection": "<5.0.0"
},
"type": "library",
"extra": {
"unused": [
- "php",
- "composer/composer",
- "friendsofphp/php-cs-fixer",
+ "ergebnis/composer-normalize",
"icanhazstring/composer-unused",
"infection/infection",
+ "jakobbuis/simple-slow-test-reporter",
+ "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",
- "maglnet/composer-require-checker",
- "nunomaduro/collision",
+ "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"
]
},
@@ -8582,7 +10966,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.1.0"
+ "source": "https://github.com/WyriHaximus/php-test-utilities/tree/5.6.0"
},
"funding": [
{
@@ -8590,40 +10974,38 @@
"type": "github"
}
],
- "time": "2020-11-08T23:10:13+00:00"
+ "time": "2023-07-26T21:51:43+00:00"
},
{
"name": "wyrihaximus/ticking-promise",
- "version": "1.6.3",
+ "version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/TickingPromise.git",
- "reference": "4bb99024402bb7526de8880f3dab0c1f0858def5"
+ "reference": "4dbeb4873718f0427742da05108de647025333c6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/TickingPromise/zipball/4bb99024402bb7526de8880f3dab0c1f0858def5",
- "reference": "4bb99024402bb7526de8880f3dab0c1f0858def5",
+ "url": "https://api.github.com/repos/WyriHaximus/TickingPromise/zipball/4dbeb4873718f0427742da05108de647025333c6",
+ "reference": "4dbeb4873718f0427742da05108de647025333c6",
"shasum": ""
},
"require": {
- "php": "^7.0 || ^5.4",
- "react/event-loop": "^1.0 || ^0.5 || ^0.4",
- "react/promise": "~2.1"
+ "php": "^8.2",
+ "react/event-loop": "^1.4",
+ "react/promise": "^2.10 || ^3.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4",
- "squizlabs/php_codesniffer": "^1.5.6",
- "vectorface/dunit": "~1.4"
+ "wyrihaximus/async-test-utilities": "^7.2.0"
},
"type": "library",
"autoload": {
- "psr-4": {
- "WyriHaximus\\React\\": "src/"
- },
"files": [
"src/functions_include.php"
- ]
+ ],
+ "psr-4": {
+ "WyriHaximus\\React\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8636,26 +11018,41 @@
"homepage": "http://wyrihaximus.net/"
}
],
- "description": "Wrapping ticks into a promise",
+ "description": "โฒ๏ธ Wrapping ticks into a promise",
"support": {
"issues": "https://github.com/WyriHaximus/TickingPromise/issues",
- "source": "https://github.com/WyriHaximus/TickingPromise/tree/master"
+ "source": "https://github.com/WyriHaximus/TickingPromise/tree/3.1.0"
},
- "time": "2018-04-05T12:36:50+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/WyriHaximus",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-03T06:34:56+00:00"
}
],
- "aliases": [],
- "minimum-stability": "dev",
- "stability-flags": [],
- "prefer-stable": true,
+ "aliases": [
+ {
+ "package": "react-parallel/event-loop",
+ "version": "9999999-dev",
+ "alias": "2.0",
+ "alias_normalized": "2.0.0.0"
+ }
+ ],
+ "minimum-stability": "stable",
+ "stability-flags": {
+ "react-parallel/event-loop": 20
+ },
+ "prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": "^7.4",
+ "php": "^8.2",
"ext-parallel": "*"
},
"platform-dev": [],
"platform-overrides": {
- "php": "7.4.7"
+ "php": "8.2.13"
},
- "plugin-api-version": "2.0.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/composer-require-checker.json b/etc/qa/composer-require-checker.json
similarity index 69%
rename from composer-require-checker.json
rename to etc/qa/composer-require-checker.json
index 1531de8..040b1e2 100644
--- a/composer-require-checker.json
+++ b/etc/qa/composer-require-checker.json
@@ -2,8 +2,8 @@
"symbol-whitelist" : [
"null", "true", "false",
"static", "self", "parent",
- "array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
- "WyriHaximus\\Constants\\ComposerAutoloader\\LOCATION"
+ "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/phpcs.xml.dist b/etc/qa/phpcs.xml
similarity index 78%
rename from phpcs.xml.dist
rename to etc/qa/phpcs.xml
index f35023e..f6c11d9 100644
--- a/phpcs.xml.dist
+++ b/etc/qa/phpcs.xml
@@ -1,12 +1,13 @@
-
+
- src
+ ../../src
+ ../../tests
diff --git a/etc/qa/phpstan.neon b/etc/qa/phpstan.neon
new file mode 100644
index 0000000..3e292cf
--- /dev/null
+++ b/etc/qa/phpstan.neon
@@ -0,0 +1,15 @@
+parameters:
+ level: max
+ ergebnis:
+ noExtends:
+ classesAllowedToBeExtended:
+ - ReactParallel\EventLoop\CancelledException
+ - ReactParallel\EventLoop\CanceledFuture
+ - ReactParallel\EventLoop\KilledRuntime
+# stubFiles:
+# - ../../stubs/Event.stub
+# - ../../stubs/Future.stub
+# - ../../stubs/Channel.stub
+
+includes:
+ - ../../vendor/wyrihaximus/async-test-utilities/rules.neon
diff --git a/etc/qa/phpunit.xml b/etc/qa/phpunit.xml
new file mode 100644
index 0000000..5207296
--- /dev/null
+++ b/etc/qa/phpunit.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ ../../tests/
+
+
+
+
+ ../../src/
+
+
+
+
+
+
diff --git a/psalm.xml b/etc/qa/psalm.xml
similarity index 81%
rename from psalm.xml
rename to etc/qa/psalm.xml
index 4e1ab74..82fe126 100644
--- a/psalm.xml
+++ b/etc/qa/psalm.xml
@@ -1,18 +1,19 @@
-
+
-
+
+
@@ -49,4 +50,8 @@
-
+
+
+
+
+
diff --git a/infection.json.dist b/infection.json.dist
index 4ba2d0a..e31539a 100644
--- a/infection.json.dist
+++ b/infection.json.dist
@@ -6,14 +6,15 @@
]
},
"logs": {
- "text": "infection.log"
+ "text": "./var/infection.log",
+ "summary": "./var/infection-summary.log",
+ "json": "./var/infection.json",
+ "perMutator": "./var/infection-per-mutator.md"
},
"mutators": {
- "@default": true,
- "InstanceOf_": {
- "ignore": [
- "ReactParallel\\Runtime\\Runtime::run"
- ]
- }
+ "@default": true
+ },
+ "phpUnit": {
+ "configDir": "./etc/qa/"
}
-}
\ No newline at end of file
+}
diff --git a/phpstan.neon b/phpstan.neon
deleted file mode 100644
index f80292f..0000000
--- a/phpstan.neon
+++ /dev/null
@@ -1,9 +0,0 @@
-parameters:
- ignoreErrors:
- - '#Do not throw the \\Exception base class. Instead, extend the \\Exception base class. More info: http:\/\/bit.ly\/subtypeexception#'
- - '#Invalid type Throwable\|null to throw.#'
- - '#Thrown exceptions in a catch block must bundle the previous exception \(see throw statement line 95\). More info: http:\/\/bit.ly\/bundleexception#'
- - '#Thrown exceptions in a catch block must bundle the previous exception \(see throw statement line 124\). More info: http:\/\/bit.ly\/bundleexception#'
-
-includes:
- - vendor/wyrihaximus/async-test-utilities/rules.neon
\ No newline at end of file
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
deleted file mode 100644
index b487668..0000000
--- a/phpunit.xml.dist
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- tests/
-
-
-
-
- src/
-
-
-
diff --git a/src/Runtime.php b/src/Runtime.php
index 143426f..966e555 100644
--- a/src/Runtime.php
+++ b/src/Runtime.php
@@ -18,28 +18,23 @@ final class Runtime
{
private ParallelRuntime $runtime;
- private EventLoopBridge $eventLoopBridge;
-
public static function create(EventLoopBridge $eventLoopBridge): self
{
return new self($eventLoopBridge, LOCATION);
}
- public function __construct(EventLoopBridge $eventLoopBridge, string $autoload)
+ public function __construct(private EventLoopBridge $eventLoopBridge, string $autoload)
{
- $this->eventLoopBridge = $eventLoopBridge;
- $this->runtime = new ParallelRuntime($autoload);
+ $this->runtime = new ParallelRuntime($autoload);
}
- /**
- * @param array $args
- */
+ /** @param array $args */
public function run(Closure $callable, array $args = []): PromiseInterface
{
- $future = $this->runtime->run($callable, $args); /** @phpstan-ignore-line */
+ $future = $this->runtime->run($callable, $args);
if ($future instanceof Future) {
- return $this->eventLoopBridge->await($future);
+ return resolve($this->eventLoopBridge->await($future));
}
return resolve($future);
diff --git a/tests/RuntimeTest.php b/tests/RuntimeTest.php
index e73e801..e9c06e3 100644
--- a/tests/RuntimeTest.php
+++ b/tests/RuntimeTest.php
@@ -1,127 +1,111 @@
-run(function (): int {
+ $promise = $runtime->run(static function (): int {
sleep(3);
return 3;
});
+ assert($promise instanceof ExtendedPromiseInterface);
- $promise->always(function () use ($runtime): void {
+ $promise->always(static function () use ($runtime): void {
$runtime->kill();
});
- $three = $this->await($promise, $loop, 3.3);
+ $three = await($promise); /** @phpstan-ignore-line */
self::assertSame(3, $three);
}
- /**
- * @test
- */
+ /** @test */
public function convertFailure(): void
{
- self::expectException(\Exception::class);
+ self::expectException(LatchcombException::class);
self::expectExceptionMessage('Rethrow exception');
- $loop = Factory::create();
- $runtime = Runtime::create(new EventLoopBridge($loop));
+ $runtime = Runtime::create(new EventLoopBridge());
- /** @var ExtendedPromiseInterface $promise */
- $promise = $runtime->run(function (): void {
+ $promise = $runtime->run(static function (): void {
sleep(3);
- throw new \Exception('Rethrow exception');
+ throw new LatchcombException('Rethrow exception');
});
+ assert($promise instanceof ExtendedPromiseInterface);
- $promise->always(function () use ($runtime): void {
+ $promise->always(static function () use ($runtime): void {
$runtime->close();
});
- $three = $this->await($promise, $loop, 3.3);
+ $three = await($promise); /** @phpstan-ignore-line */
self::assertSame(3, $three);
}
- /**
- * @test
- */
+ /** @test */
public function weClosedTheThread(): void
{
self::expectException(Closed::class);
self::expectExceptionMessage('Runtime closed');
- $loop = Factory::create();
- $runtime = Runtime::create(new EventLoopBridge($loop));
+ $runtime = Runtime::create(new EventLoopBridge());
- /** @var ExtendedPromiseInterface $promise */
- $promise = timedPromise($loop, 1, $runtime)->then(function (Runtime $runtime) {
- return $runtime->run(function (): int {
+ $promise = timedPromise(1, $runtime)->then(static function (Runtime $runtime) {
+ return $runtime->run(static function (): int {
return 3;
});
});
+ assert($promise instanceof ExtendedPromiseInterface);
- $loop->futureTick(function () use ($runtime): void {
+ Loop::futureTick(static function () use ($runtime): void {
$runtime->close();
});
- try {
- $this->await($promise, $loop, 3.3);
- } catch (\Exception $exception) {
- throw $exception->getPrevious();
- }
+ await($promise); /** @phpstan-ignore-line */
}
- /**
- * @test
- */
+ /** @test */
public function weKilledTheThread(): void
{
self::expectException(Closed::class);
self::expectExceptionMessage('Runtime closed');
- $loop = Factory::create();
- $runtime = Runtime::create(new EventLoopBridge($loop));
+ $runtime = Runtime::create(new EventLoopBridge());
- /** @var ExtendedPromiseInterface $promise */
- $promise = timedPromise($loop, 1, $runtime)->then(function (Runtime $runtime) {
- return $runtime->run(function (): int {
+ $promise = timedPromise(1, $runtime)->then(static function (Runtime $runtime) {
+ return $runtime->run(static function (): int {
return 3;
});
});
+ assert($promise instanceof ExtendedPromiseInterface);
- $loop->futureTick(function () use ($runtime): void {
+ Loop::futureTick(static function () use ($runtime): void {
$runtime->kill();
});
- try {
- $this->await($promise, $loop, 3.3);
- } catch (\Exception $exception) {
- throw $exception->getPrevious();
- }
+ await($promise); /** @phpstan-ignore-line */
}
}