diff --git a/.coveralls.yml b/.coveralls.yml
deleted file mode 100644
index 1dd8fc1..0000000
--- a/.coveralls.yml
+++ /dev/null
@@ -1 +0,0 @@
-src_dir: src/
diff --git a/.dunitconfig b/.dunitconfig
deleted file mode 100644
index a209a65..0000000
--- a/.dunitconfig
+++ /dev/null
@@ -1,17 +0,0 @@
-// the list of docker images to run against
-images="
- vectorface/php5.4
- vectorface/php5.5
- vectorface/php5.6
- vectorface/hhvm";
-
-
-// a flag indicating whether to run the syntax check
-checkSyntax="true";
-// the syntax command to execute
-syntaxCommand="find /opt/source -type f -name \"*.php\" ! -path \"*/vendor/*\" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v 'No syntax errors'"
-
-// a flag indicating whether to run the phpunit test suite
-runTests="true";
-// the phpunit command to execute
-unitTestsCommand="/opt/source/vendor/bin/phpunit"
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 f98e0e6..2eee706 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,10 +1,17 @@
-# Ignoring files for distribution archives
-examples/ export-ignore
+# Ignoring files for distribution archieves
+.github/ export-ignore
+etc/ export-ignore
tests/ export-ignore
-.travis.yml export-ignore
-.gitignore export-ignore
+var/ export-ignore
+.devcontainer.json export-ignore
+.editorconfig export-ignore
.gitattributes export-ignore
-.coveralls.yml export-ignore
-.php_cs export-ignore
-.scrutinizer.yml export-ignore
-phpunit.xml.dist export-ignore
+.gitignore export-ignore
+CONTRIBUTING.md export-ignore
+composer.lock export-ignore
+infection.json.dist export-ignore
+Makefile export-ignore
+README.md export-ignore
+
+# Diffing
+*.php diff=php
diff --git a/.github/settings.yml b/.github/settings.yml
index 67ba9d3..f1701a8 100644
--- a/.github/settings.yml
+++ b/.github/settings.yml
@@ -1,115 +1,122 @@
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
+ 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"
+ - name: "Deprecations ๐"
+ color: ff7700
+ - name: "Dependabot ๐ค"
+ color: 0366d6
+ - 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: []
+ - 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: [
+ "Milestone Check",
+ "โ๏ธ"
+ ]
+ # 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 c44e273..cd15956 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,71 +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-versions-strategy:
- name: Generate Versions
- runs-on: ubuntu-latest
- outputs:
- version: ${{ steps.generate-versions-strategy.outputs.version }}
- steps:
- - uses: actions/checkout@v1
- - id: generate-versions-strategy
- uses: WyriHaximus/github-action-composer-php-versions-in-range@v1
- composer-install:
- needs:
- - generate-versions-strategy
- strategy:
- matrix:
- php: ${{ fromJson(needs.generate-versions-strategy.outputs.version) }}
- composer: [lowest, current, highest]
- runs-on: ubuntu-latest
- container:
- image: wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root
- steps:
- - uses: actions/checkout@v1
- - name: Cache composer packages
- uses: actions/cache@v1
- with:
- path: ./vendor/
- key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
- - name: Install Dependencies
- run: composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist
- if: matrix.composer == 'lowest'
- - name: Install Dependencies
- run: composer install --ansi --no-progress --no-interaction --prefer-dist
- if: matrix.composer == 'current'
- - name: Install Dependencies
- run: composer update --ansi --no-progress --no-interaction --prefer-dist
- if: matrix.composer == 'highest'
- qa:
- needs:
- - composer-install
- - generate-versions-strategy
- strategy:
- fail-fast: false
- matrix:
- php: ${{ fromJson(needs.generate-versions-strategy.outputs.version) }}
- composer: [lowest, current, highest]
- qa: [lint, cs, stan, psalm, unit, infection, composer-require-checker, composer-unused]
- runs-on: ubuntu-latest
- container:
- image: wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root
- steps:
- - uses: actions/checkout@v1
- - name: Cache composer packages
- uses: actions/cache@v1
- with:
- path: ./vendor/
- key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
-
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist
- if: matrix.composer == 'lowest'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer install --ansi --no-progress --no-interaction --prefer-dist
- if: matrix.composer == 'current'
- - name: Install Dependencies
- run: (test -f vendor && true ) || composer update --ansi --no-progress --no-interaction --prefer-dist
- if: matrix.composer == 'highest'
- - run: make ${{ matrix.qa }}
+ ci:
+ name: Continuous Integration
+ uses: WyriHaximus/github-workflows/.github/workflows/package.yaml@main
diff --git a/.github/workflows/craft-release.yaml b/.github/workflows/craft-release.yaml
deleted file mode 100644
index 9b14210..0000000
--- a/.github/workflows/craft-release.yaml
+++ /dev/null
@@ -1,56 +0,0 @@
-name: Create Release
-env:
- MILESTONE: ${{ github.event.milestone.title }}
-on:
- milestone:
- types:
- - closed
-jobs:
- generate-changelog:
- name: Generate Changelog
- runs-on: ubuntu-latest
- outputs:
- changelog: ${{ steps.changelog.outputs.changelog }}
- steps:
- - name: Generate changelog
- uses: WyriHaximus/github-action-jwage-changelog-generator@v1
- id: changelog
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- milestone: ${{ env.MILESTONE }}
- - name: Show changelog
- run: echo "${CHANGELOG}"
- env:
- CHANGELOG: ${{ steps.changelog.outputs.changelog }}
- create-release:
- name: Create Release
- needs:
- - generate-changelog
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- env:
- CHANGELOG: ${{ needs.generate-changelog.outputs.changelog }}
- - run: |
- echo -e "${MILESTONE_DESCRIPTION}\r\n\r\n${CHANGELOG}" > release-${{ env.MILESTONE }}-release-message.md
- cat release-${{ env.MILESTONE }}-release-message.md
- release_message=$(cat release-${{ env.MILESTONE }}-release-message.md)
- release_message="${release_message//'%'/'%25'}"
- release_message="${release_message//$'\n'/'%0A'}"
- release_message="${release_message//$'\r'/'%0D'}"
- echo "::set-output name=release_message::$release_message"
- id: releasemessage
- env:
- MILESTONE_DESCRIPTION: ${{ github.event.milestone.description }}
- CHANGELOG: ${{ needs.generate-changelog.outputs.changelog }}
- - name: Create Reference Release with Changelog
- uses: fleskesvor/create-release@feature/support-target-commitish
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- tag_name: ${{ env.MILESTONE }}
- release_name: ${{ env.MILESTONE }}
- body: ${{ steps.releasemessage.outputs.release_message }}
- draft: false
- prerelease: false
diff --git a/.github/workflows/release-managment.yaml b/.github/workflows/release-managment.yaml
new file mode 100644
index 0000000..d125036
--- /dev/null
+++ b/.github/workflows/release-managment.yaml
@@ -0,0 +1,26 @@
+name: Release Management
+on:
+ pull_request:
+ types:
+ - opened
+ - labeled
+ - unlabeled
+ - synchronize
+ - reopened
+ - milestoned
+ - demilestoned
+ - ready_for_review
+ milestone:
+ types:
+ - closed
+permissions:
+ contents: write
+ issues: write
+ pull-requests: write
+jobs:
+ release-managment:
+ name: Create Release
+ uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main
+ with:
+ milestone: ${{ github.event.milestone.title }}
+ description: ${{ github.event.milestone.title }}
diff --git a/.github/workflows/set-milestone-on-pr.yaml b/.github/workflows/set-milestone-on-pr.yaml
deleted file mode 100644
index 571f5ce..0000000
--- a/.github/workflows/set-milestone-on-pr.yaml
+++ /dev/null
@@ -1,70 +0,0 @@
-name: Set Milestone
-on:
- pull_request:
- types:
- - assigned
- - opened
- - synchronize
- - reopened
- - edited
- - ready_for_review
- - review_requested
-jobs:
- set-milestone:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- if: github.event.pull_request.milestone == null
- - name: 'Get Previous tag'
- if: github.event.pull_request.milestone == null
- id: previoustag
- uses: "WyriHaximus/github-action-get-previous-tag@master"
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - name: 'Get next minor version'
- if: github.event.pull_request.milestone == null
- id: semvers
- uses: "WyriHaximus/github-action-next-semvers@master"
- with:
- version: ${{ steps.previoustag.outputs.tag }}
- - name: 'Get Milestones'
- if: github.event.pull_request.milestone == null
- uses: "WyriHaximus/github-action-get-milestones@master"
- id: milestones
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - run: printf "::set-output name=number::%s" $(printenv MILESTONES | jq --arg MILESTONE $(printenv MILESTONE) '.[] | select(.title == $MILESTONE) | .number')
- if: github.event.pull_request.milestone == null
- id: querymilestone
- env:
- MILESTONES: ${{ steps.milestones.outputs.milestones }}
- MILESTONE: ${{ steps.semvers.outputs.minor }}
- - name: 'Create Milestone'
- if: github.event.pull_request.milestone == null && steps.querymilestone.outputs.number == ''
- id: createmilestone
- uses: "WyriHaximus/github-action-create-milestone@master"
- with:
- title: ${{ steps.semvers.outputs.minor }}
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- - name: 'Select found or created Milestone'
- if: github.event.pull_request.milestone == null
- id: selectmilestone
- run: |
- if [ $(echo ${QUERY_NUMBER} | wc -c) -eq 1 ] ; then
- printf "::set-output name=number::%s" "${CREATED_NUMBER}"
- exit 0
- fi
-
- printf "::set-output name=number::%s" "${QUERY_NUMBER}"
- env:
- CREATED_NUMBER: ${{ steps.createmilestone.outputs.number }}
- QUERY_NUMBER: ${{ steps.querymilestone.outputs.number }}
- - name: 'Set Milestone'
- if: github.event.pull_request.milestone == null
- uses: "WyriHaximus/github-action-set-milestone@master"
- with:
- issue_number: ${{ github.event.pull_request.number }}
- milestone_number: ${{ steps.selectmilestone.outputs.number }}
- env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.gitignore b/.gitignore
index e84d1d8..03ad991 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,18 +1,4 @@
-# php (composer)
+var/*
+!var/.gitkeep
vendor/
-
-# php (phpunit)
-.phpunit.result.cache
-
-# php (phpcs fixer)
-.php_cs.cache
-
-# php (infection)
-infection-log.txt
-
-# ide
-.idea/
-
-# ci
-covHtml/
-build/logs/
\ No newline at end of file
+etc/qa/.phpunit.result.cache
diff --git a/.scrutinizer.yml b/.scrutinizer.yml
deleted file mode 100644
index e421c28..0000000
--- a/.scrutinizer.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-filter:
- paths: [src/*]
- excluded_paths: [tests/*]
-build:
- nodes:
- analysis:
- environment:
- php:
- version: 7.4
- tests:
- override:
- - php-scrutinizer-run --enable-security-analysis
diff --git a/Makefile b/Makefile
index c464cf3..e230906 100644
--- a/Makefile
+++ b/Makefile
@@ -3,43 +3,98 @@ SHELL=bash
.PHONY: *
-ifneq ("$(wildcard /.dockerenv)","")
- DOCKER_RUN=
+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";')
+SLIM_DOCKER_IMAGE=""
+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]);")
+CONTAINER_NAME=$(shell echo "ghcr.io/wyrihaximusnet/php:${PHP_VERSION}-nts-alpine${SLIM_DOCKER_IMAGE}-dev")
+COMPOSER_CACHE_DIR=$(shell composer config --global cache-dir -q || echo ${HOME}/.composer-php/cache)
+COMPOSER_CONTAINER_CACHE_DIR=$(shell docker run --rm -it ${CONTAINER_NAME} composer config --global cache-dir -q || echo ${HOME}/.composer-php/cache)
+
+ifneq ("$(wildcard /.you-are-in-a-wyrihaximus.net-php-docker-image)","")
+ IN_DOCKER=TRUE
else
- DOCKER_RUN=docker run --rm -it \
- -v `pwd`:`pwd` \
- -w `pwd` \
- "wyrihaximusnet/php:7.4-zts-alpine3.11-dev"
+ IN_DOCKER=FALSE
endif
-all: lint cs-fix cs stan psalm unit infection composer-require-checker composer-unused
+ifeq ("$(IN_DOCKER)","TRUE")
+ DOCKER_RUN:=
+else
+ DOCKER_RUN:=docker run --rm -it \
+ -v "`pwd`:`pwd`" \
+ -v "${COMPOSER_CACHE_DIR}:${COMPOSER_CONTAINER_CACHE_DIR}" \
+ -w "`pwd`" \
+ ${CONTAINER_NAME}
+endif
-lint:
+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:
- $(DOCKER_RUN) vendor/bin/phpcs --parallel=$(nproc)
+cs-fix: ## Fix any automatically fixable code style issues ###
+ $(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 ./etc/qa/phpstan.neon
+
+psalm: ## Run static analysis (Psalm)
+ $(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-testing-raw: ## Run tests ####
+ php vendor/phpunit/phpunit/phpunit --colors=always -c ./etc/qa/phpunit.xml --coverage-text --coverage-html ./var/tests-unit-coverage-html --coverage-clover ./var/tests-unit-clover-coverage.xml
+ test -n "$(COVERALLS_REPO_TOKEN)" && test -n "$(COVERALLS_RUN_LOCALLY)" && test -f ./var/tests-unit-clover-coverage.xml && ./vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true
+
+mutation-testing: ## Run mutation testing
+ $(DOCKER_RUN) vendor/bin/roave-infection-static-analysis-plugin --ansi --log-verbosity=all --threads=$(THREADS) --psalm-config etc/qa/psalm.xml || (cat ./var/infection.log && false)
+
+mutation-testing-raw: ## Run mutation testing ####
+ php vendor/roave/infection-static-analysis-plugin/bin/roave-infection-static-analysis-plugin --ansi --log-verbosity=all --threads=$(THREADS) --psalm-config etc/qa/psalm.xml || (cat ./var/infection.log && false)
+
+composer-require-checker: ## Ensure we require every package used in this package directly
+ $(DOCKER_RUN) vendor/bin/composer-require-checker --ignore-parse-errors --ansi -vvv --config-file=./etc/qa/composer-require-checker.json
+
+composer-unused: ## Ensure we don't require any package we don't use in this package directly
+ $(DOCKER_RUN) vendor/bin/composer-unused --ansi --configuration=./etc/qa/composer-unused.php
+
+composer-install: ## Install dependencies
+ $(DOCKER_RUN) composer install --no-progress --ansi --no-interaction --prefer-dist -o
-cs-fix:
- $(DOCKER_RUN) vendor/bin/phpcbf --parallel=$(nproc)
+backward-compatibility-check: ## Check code for backwards incompatible changes
+ $(MAKE) backward-compatibility-check-raw || true
-stan:
- $(DOCKER_RUN) vendor/bin/phpstan analyse src tests --level max --ansi -c phpstan.neon
+backward-compatibility-check-raw: ## Check code for backwards incompatible changes, doesn't ignore the failure ###
+ $(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check
-psalm:
- $(DOCKER_RUN) vendor/bin/psalm --threads=$(nproc) --shepherd --stats
+shell: ## Provides Shell access in the expected environment ####
+ $(DOCKER_RUN) bash
-unit:
- $(DOCKER_RUN) vendor/bin/phpunit --colors=always -c phpunit.xml.dist --coverage-text --coverage-html covHtml --coverage-clover ./build/logs/clover.xml
+install: ## Install dependencies ####
+ $(DOCKER_RUN) composer install
-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
+update: ## Update dependencies ####
+ $(DOCKER_RUN) composer update -W
-infection:
- $(DOCKER_RUN) vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(nproc)
+outdated: ## Show outdated dependencies ####
+ $(DOCKER_RUN) composer outdated
-composer-require-checker:
- $(DOCKER_RUN) vendor/bin/composer-require-checker --ignore-parse-errors --ansi -vvv --config-file=composer-require-checker.json
+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]'
-composer-unused:
- $(DOCKER_RUN) composer unused --ansi
+help: ## Show this help ####
+ @printf "\033[33mUsage:\033[0m\n make [target]\n\n\033[33mTargets:\033[0m\n"
+ @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 487807e..575b82c 100644
--- a/composer.json
+++ b/composer.json
@@ -14,18 +14,17 @@
}
],
"require": {
- "php": "^7.4 || ^8.0",
- "thecodingmachine/safe": "^1.1 || ^2.2",
- "voku/html-min": "^4.4.8",
- "voku/simple_html_dom": "^4.7.17",
- "wyrihaximus/compress": "^1.1 || ^2.0",
+ "php": "^8.2",
+ "thecodingmachine/safe": "^2.2",
+ "voku/html-min": "^4.5.0",
+ "voku/simple_html_dom": "^4.8.8",
+ "wyrihaximus/compress": "^2.0",
"wyrihaximus/compress-contracts": "^1",
- "wyrihaximus/constants": "^1.5",
"wyrihaximus/css-compress": "^2",
"wyrihaximus/js-compress": "^5"
},
"require-dev": {
- "wyrihaximus/test-utilities": "^3.7.6"
+ "wyrihaximus/test-utilities": "^6.0.7"
},
"conflict": {
"voku/simple_html_dom": "<4.7.28"
@@ -49,21 +48,18 @@
"infection/extension-installer": true
},
"platform": {
- "php": "7.4.7"
+ "php": "8.2.13"
},
"sort-packages": true
},
- "extra": {
- "unused": [
- "slevomat/coding-standard"
- ]
- },
"scripts": {
"post-install-cmd": [
- "composer normalize"
+ "composer normalize",
+ "composer update --lock --no-scripts"
],
"post-update-cmd": [
- "composer normalize"
+ "composer normalize",
+ "composer update --lock --no-scripts"
]
}
}
diff --git a/composer.lock b/composer.lock
index b1fab16..ce0ed13 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,81 +4,20 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "ae3a72bd21b00f0308701be2c5cb9f78",
+ "content-hash": "16ecccd3193decb2090e78d2fde5d622",
"packages": [
- {
- "name": "linkorb/jsmin-php",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/linkorb/jsmin-php.git",
- "reference": "be85d87fc9c27730e7e9ced742b13010dafc1026"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/linkorb/jsmin-php/zipball/be85d87fc9c27730e7e9ced742b13010dafc1026",
- "reference": "be85d87fc9c27730e7e9ced742b13010dafc1026",
- "shasum": ""
- },
- "require": {
- "php": ">=5.0.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Joost Faassen",
- "email": "j.faassen@linkorb.com",
- "role": "Packaging for Composer"
- },
- {
- "name": "Ryan Grove",
- "email": "ryan@wonko.com",
- "role": "PHP port"
- },
- {
- "name": "Adam Gofort",
- "email": "aag@adamgoforth.com",
- "role": "Updates to the PHP port"
- },
- {
- "name": "Douglas Crockford",
- "email": "douglas@crockford.com"
- }
- ],
- "description": "Unofficial package of jsmin-php",
- "homepage": "http://www.github.com/linkorb/jsmin-php",
- "keywords": [
- "javascript",
- "jsmin",
- "minify"
- ],
- "support": {
- "issues": "https://github.com/linkorb/jsmin-php/issues",
- "source": "https://github.com/linkorb/jsmin-php/tree/1.0.0"
- },
- "time": "2013-03-15T13:16:35+00:00"
- },
{
"name": "matthiasmullie/minify",
- "version": "1.3.68",
+ "version": "1.3.73",
"source": {
"type": "git",
"url": "https://github.com/matthiasmullie/minify.git",
- "reference": "c00fb02f71b2ef0a5f53fe18c5a8b9aa30f48297"
+ "reference": "cb7a9297b4ab070909cefade30ee95054d4ae87a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/c00fb02f71b2ef0a5f53fe18c5a8b9aa30f48297",
- "reference": "c00fb02f71b2ef0a5f53fe18c5a8b9aa30f48297",
+ "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/cb7a9297b4ab070909cefade30ee95054d4ae87a",
+ "reference": "cb7a9297b4ab070909cefade30ee95054d4ae87a",
"shasum": ""
},
"require": {
@@ -87,9 +26,10 @@
"php": ">=5.3.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2.0",
- "matthiasmullie/scrapbook": "dev-master",
- "phpunit/phpunit": ">=4.8"
+ "friendsofphp/php-cs-fixer": ">=2.0",
+ "matthiasmullie/scrapbook": ">=1.3",
+ "phpunit/phpunit": ">=4.8",
+ "squizlabs/php_codesniffer": ">=3.0"
},
"suggest": {
"psr/cache-implementation": "Cache implementation to use with Minify::cache"
@@ -112,12 +52,12 @@
{
"name": "Matthias Mullie",
"email": "minify@mullie.eu",
- "homepage": "http://www.mullie.eu",
+ "homepage": "https://www.mullie.eu",
"role": "Developer"
}
],
"description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
- "homepage": "http://www.minifier.org",
+ "homepage": "https://github.com/matthiasmullie/minify",
"keywords": [
"JS",
"css",
@@ -127,7 +67,7 @@
],
"support": {
"issues": "https://github.com/matthiasmullie/minify/issues",
- "source": "https://github.com/matthiasmullie/minify/tree/1.3.68"
+ "source": "https://github.com/matthiasmullie/minify/tree/1.3.73"
},
"funding": [
{
@@ -135,7 +75,7 @@
"type": "github"
}
],
- "time": "2022-04-19T08:28:56+00:00"
+ "time": "2024-03-15T10:27:10+00:00"
},
{
"name": "matthiasmullie/path-converter",
@@ -229,25 +169,25 @@
"issues": "https://github.com/meenie/javascript-packer/issues",
"source": "https://github.com/meenie/javascript-packer/tree/1.1"
},
+ "abandoned": true,
"time": "2013-03-25T21:54:33+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v5.4.11",
+ "version": "v6.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "c1681789f059ab756001052164726ae88512ae3d"
+ "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
- "reference": "c1681789f059ab756001052164726ae88512ae3d",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c5d5c2103c3762aff27a27e1e2409e30a79083b",
+ "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-php80": "^1.16"
+ "php": ">=8.1"
},
"type": "library",
"autoload": {
@@ -279,87 +219,7 @@
"description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
- },
- "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": "2022-06-27T16:58:25+00:00"
- },
- {
- "name": "symfony/polyfill-php80",
- "version": "v1.29.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
+ "source": "https://github.com/symfony/css-selector/tree/v6.4.7"
},
"funding": [
{
@@ -375,29 +235,29 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-18T09:22:46+00:00"
},
{
"name": "tedivm/jshrink",
- "version": "v1.4.0",
+ "version": "v1.7.0",
"source": {
"type": "git",
"url": "https://github.com/tedious/JShrink.git",
- "reference": "0513ba1407b1f235518a939455855e6952a48bbc"
+ "reference": "7a35f5a4651ca2ce77295eb8a3b4e133ba47e19e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tedious/JShrink/zipball/0513ba1407b1f235518a939455855e6952a48bbc",
- "reference": "0513ba1407b1f235518a939455855e6952a48bbc",
+ "url": "https://api.github.com/repos/tedious/JShrink/zipball/7a35f5a4651ca2ce77295eb8a3b4e133ba47e19e",
+ "reference": "7a35f5a4651ca2ce77295eb8a3b4e133ba47e19e",
"shasum": ""
},
"require": {
- "php": "^5.6|^7.0|^8.0"
+ "php": "^7.0|^8.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^2.8",
- "php-coveralls/php-coveralls": "^1.1.0",
- "phpunit/phpunit": "^6"
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "php-coveralls/php-coveralls": "^2.5.0",
+ "phpunit/phpunit": "^9|^10"
},
"type": "library",
"autoload": {
@@ -423,51 +283,62 @@
],
"support": {
"issues": "https://github.com/tedious/JShrink/issues",
- "source": "https://github.com/tedious/JShrink/tree/v1.4.0"
+ "source": "https://github.com/tedious/JShrink/tree/v1.7.0"
},
"funding": [
+ {
+ "url": "https://github.com/tedivm",
+ "type": "github"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/tedivm/jshrink",
"type": "tidelift"
}
],
- "time": "2020-11-30T18:10:21+00:00"
+ "time": "2023-10-04T17:23:23+00:00"
},
{
"name": "thecodingmachine/safe",
- "version": "v1.3.3",
+ "version": "v2.5.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/safe.git",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc"
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
- "reference": "a8ab0876305a4cdaef31b2350fcb9811b5608dbc",
+ "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
+ "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
"shasum": ""
},
"require": {
- "php": ">=7.2"
+ "php": "^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan": "^1.5",
+ "phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.2",
- "thecodingmachine/phpstan-strict-rules": "^0.12"
+ "thecodingmachine/phpstan-strict-rules": "^1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.1-dev"
+ "dev-master": "2.2.x-dev"
}
},
"autoload": {
"files": [
"deprecated/apc.php",
+ "deprecated/array.php",
+ "deprecated/datetime.php",
"deprecated/libevent.php",
+ "deprecated/misc.php",
+ "deprecated/password.php",
"deprecated/mssql.php",
"deprecated/stats.php",
+ "deprecated/strings.php",
"lib/special_cases.php",
+ "deprecated/mysqli.php",
"generated/apache.php",
"generated/apcu.php",
"generated/array.php",
@@ -488,6 +359,7 @@
"generated/fpm.php",
"generated/ftp.php",
"generated/funchand.php",
+ "generated/gettext.php",
"generated/gmp.php",
"generated/gnupg.php",
"generated/hash.php",
@@ -497,7 +369,6 @@
"generated/image.php",
"generated/imap.php",
"generated/info.php",
- "generated/ingres-ii.php",
"generated/inotify.php",
"generated/json.php",
"generated/ldap.php",
@@ -506,20 +377,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",
@@ -530,7 +395,6 @@
"generated/sem.php",
"generated/session.php",
"generated/shmop.php",
- "generated/simplexml.php",
"generated/sockets.php",
"generated/sodium.php",
"generated/solr.php",
@@ -553,13 +417,13 @@
"generated/zip.php",
"generated/zlib.php"
],
- "psr-4": {
- "Safe\\": [
- "lib/",
- "deprecated/",
- "generated/"
- ]
- }
+ "classmap": [
+ "lib/DateTime.php",
+ "lib/DateTimeImmutable.php",
+ "lib/Exceptions/",
+ "deprecated/Exceptions/",
+ "generated/Exceptions/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -568,9 +432,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": "tubalmartin/cssmin",
@@ -698,16 +562,16 @@
},
{
"name": "voku/simple_html_dom",
- "version": "4.8.6",
+ "version": "4.8.8",
"source": {
"type": "git",
"url": "https://github.com/voku/simple_html_dom.git",
- "reference": "1df7e9844eddbe190450c87f281e87bbd8d7f645"
+ "reference": "9ef90f0280fe16054c117e04ea86617ce0fcdd35"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/simple_html_dom/zipball/1df7e9844eddbe190450c87f281e87bbd8d7f645",
- "reference": "1df7e9844eddbe190450c87f281e87bbd8d7f645",
+ "url": "https://api.github.com/repos/voku/simple_html_dom/zipball/9ef90f0280fe16054c117e04ea86617ce0fcdd35",
+ "reference": "9ef90f0280fe16054c117e04ea86617ce0fcdd35",
"shasum": ""
},
"require": {
@@ -737,17 +601,17 @@
{
"name": "dimabdc",
"email": "support@titor.ru",
- "homepage": "http://github.com/dimabdc",
+ "homepage": "https://github.com/dimabdc",
"role": "Developer"
},
{
"name": "Lars Moelleken",
- "homepage": "http://www.moelleken.org/",
- "role": "Developer"
+ "homepage": "https://www.moelleken.org/",
+ "role": "Fork-Maintainer"
}
],
"description": "Simple HTML DOM package.",
- "homepage": "http://simplehtmldom.sourceforge.net/",
+ "homepage": "https://github.com/voku/simple_html_dom",
"keywords": [
"HTML Parser",
"dom",
@@ -755,7 +619,7 @@
],
"support": {
"issues": "https://github.com/voku/simple_html_dom/issues",
- "source": "https://github.com/voku/simple_html_dom/tree/4.8.6"
+ "source": "https://github.com/voku/simple_html_dom/tree/4.8.8"
},
"funding": [
{
@@ -775,7 +639,7 @@
"type": "tidelift"
}
],
- "time": "2022-06-09T05:48:45+00:00"
+ "time": "2023-02-12T16:15:15+00:00"
},
{
"name": "websharks/css-minifier",
@@ -837,26 +701,24 @@
},
{
"name": "wyrihaximus/compress",
- "version": "2.0.0",
+ "version": "2.1.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-compress.git",
- "reference": "bc1402dbacfb98d33d55d8f18630075d70ede383"
+ "reference": "08f4febb38819814a069266aeb9c3d1a99d73011"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-compress/zipball/bc1402dbacfb98d33d55d8f18630075d70ede383",
- "reference": "bc1402dbacfb98d33d55d8f18630075d70ede383",
+ "url": "https://api.github.com/repos/WyriHaximus/php-compress/zipball/08f4febb38819814a069266aeb9c3d1a99d73011",
+ "reference": "08f4febb38819814a069266aeb9c3d1a99d73011",
"shasum": ""
},
"require": {
- "php": "^8 || ^7.4",
+ "php": "^8.2",
"wyrihaximus/compress-contracts": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.4",
- "wyrihaximus/compress-test-utilities": "^1.0",
- "wyrihaximus/test-utilities": "^3.3.1"
+ "wyrihaximus/compress-test-utilities": "^1 || ^2.1"
},
"type": "library",
"autoload": {
@@ -881,7 +743,7 @@
],
"support": {
"issues": "https://github.com/WyriHaximus/php-compress/issues",
- "source": "https://github.com/WyriHaximus/php-compress/tree/2.0.0"
+ "source": "https://github.com/WyriHaximus/php-compress/tree/2.1.0"
},
"funding": [
{
@@ -889,7 +751,7 @@
"type": "github"
}
],
- "time": "2020-12-24T18:16:54+00:00"
+ "time": "2023-09-13T08:20:23+00:00"
},
{
"name": "wyrihaximus/compress-contracts",
@@ -941,86 +803,35 @@
],
"time": "2020-12-24T16:04:52+00:00"
},
- {
- "name": "wyrihaximus/constants",
- "version": "1.6.0",
- "source": {
- "type": "git",
- "url": "https://github.com/WyriHaximus/php-constants.git",
- "reference": "32ceffdd881593c7fa24d8fcbf9deb58687484cb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-constants/zipball/32ceffdd881593c7fa24d8fcbf9deb58687484cb",
- "reference": "32ceffdd881593c7fa24d8fcbf9deb58687484cb",
- "shasum": ""
- },
- "require": {
- "php": "^8 || ^7 || ^5.3"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/Boolean/constants_include.php",
- "src/ComposerAutoloader/constants_include.php",
- "src/HTTPStatusCodes/constants_include.php",
- "src/Numeric/constants_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Cees-Jan Kiewiet",
- "email": "ceesjank@gmail.com",
- "homepage": "https://www.wyrihaximus.net/"
- }
- ],
- "description": "Collection of constants for PHP",
- "support": {
- "issues": "https://github.com/WyriHaximus/php-constants/issues",
- "source": "https://github.com/WyriHaximus/php-constants/tree/1.6.0"
- },
- "funding": [
- {
- "url": "https://github.com/WyriHaximus",
- "type": "github"
- }
- ],
- "time": "2020-11-28T12:04:43+00:00"
- },
{
"name": "wyrihaximus/css-compress",
- "version": "2.0.0",
+ "version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-css-compress.git",
- "reference": "a2c8b14f61b53cf057a218d56acfb90a8bed7bd9"
+ "reference": "3b6e863c6fbcc01b5794d0717f25c8ac5a0f5998"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-css-compress/zipball/a2c8b14f61b53cf057a218d56acfb90a8bed7bd9",
- "reference": "a2c8b14f61b53cf057a218d56acfb90a8bed7bd9",
+ "url": "https://api.github.com/repos/WyriHaximus/php-css-compress/zipball/3b6e863c6fbcc01b5794d0717f25c8ac5a0f5998",
+ "reference": "3b6e863c6fbcc01b5794d0717f25c8ac5a0f5998",
"shasum": ""
},
"require": {
"matthiasmullie/minify": "^1.3",
- "php": "^8 || ^7.4",
- "thecodingmachine/safe": "^1.0 || ^0.1",
+ "php": "^8",
+ "thecodingmachine/safe": "^1.0 || ^0.1 || ^2.2",
"tubalmartin/cssmin": "^4.1",
"websharks/css-minifier": "150820",
"wyrihaximus/compress": "^1.1 || ^2.0",
- "wyrihaximus/compress-contracts": "^1.0",
- "wyrihaximus/constants": "^1.6"
+ "wyrihaximus/compress-contracts": "^1.0"
},
"conflict": {
"matthiasmullie/minify": "1.3.64"
},
"require-dev": {
- "wyrihaximus/compress-test-utilities": "^1.0",
- "wyrihaximus/test-utilities": "^3.3.1"
+ "wyrihaximus/compress-test-utilities": "^2.0",
+ "wyrihaximus/test-utilities": "^5.0.4"
},
"type": "library",
"autoload": {
@@ -1046,7 +857,7 @@
],
"support": {
"issues": "https://github.com/WyriHaximus/php-css-compress/issues",
- "source": "https://github.com/WyriHaximus/php-css-compress/tree/2.0.0"
+ "source": "https://github.com/WyriHaximus/php-css-compress/tree/2.1.1"
},
"funding": [
{
@@ -1054,35 +865,33 @@
"type": "github"
}
],
- "time": "2021-11-30T20:37:08+00:00"
+ "time": "2022-08-12T14:21:28+00:00"
},
{
"name": "wyrihaximus/js-compress",
- "version": "5.0.0",
+ "version": "5.1.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-js-compress.git",
- "reference": "1cd2a1dae9ab8eebcbb151215ba124b4a05f28e1"
+ "reference": "9a7e59b8b8fa203e0dd9d419c18dd80d952f3256"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-js-compress/zipball/1cd2a1dae9ab8eebcbb151215ba124b4a05f28e1",
- "reference": "1cd2a1dae9ab8eebcbb151215ba124b4a05f28e1",
+ "url": "https://api.github.com/repos/WyriHaximus/php-js-compress/zipball/9a7e59b8b8fa203e0dd9d419c18dd80d952f3256",
+ "reference": "9a7e59b8b8fa203e0dd9d419c18dd80d952f3256",
"shasum": ""
},
"require": {
- "linkorb/jsmin-php": "1.0.0",
"matthiasmullie/minify": "^1.3",
"meenie/javascript-packer": "1.1",
- "php": "^7.4 || ^8.0",
+ "php": "^8",
"tedivm/jshrink": "^1.3",
"wyrihaximus/compress": "^1.2 || ^2.0",
- "wyrihaximus/compress-contracts": "^1.0",
- "wyrihaximus/constants": "^1.6"
+ "wyrihaximus/compress-contracts": "^1.0"
},
"require-dev": {
- "wyrihaximus/compress-test-utilities": "^1.0",
- "wyrihaximus/test-utilities": "^3.3.1"
+ "wyrihaximus/compress-test-utilities": "^2",
+ "wyrihaximus/test-utilities": "^5.0.4"
},
"type": "library",
"autoload": {
@@ -1108,7 +917,7 @@
],
"support": {
"issues": "https://github.com/WyriHaximus/php-js-compress/issues",
- "source": "https://github.com/WyriHaximus/php-js-compress/tree/5.0.0"
+ "source": "https://github.com/WyriHaximus/php-js-compress/tree/5.1.0"
},
"funding": [
{
@@ -1116,22 +925,22 @@
"type": "github"
}
],
- "time": "2021-11-30T20:37:18+00:00"
+ "time": "2022-03-19T21:09:52+00:00"
}
],
"packages-dev": [
{
"name": "amphp/amp",
- "version": "v2.6.2",
+ "version": "v2.6.4",
"source": {
"type": "git",
"url": "https://github.com/amphp/amp.git",
- "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
+ "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
- "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
+ "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
+ "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
"shasum": ""
},
"require": {
@@ -1143,8 +952,8 @@
"ext-json": "*",
"jetbrains/phpstorm-stubs": "^2019.3",
"phpunit/phpunit": "^7 | ^8 | ^9",
- "psalm/phar": "^3.11@dev",
- "react/promise": "^2"
+ "react/promise": "^2",
+ "vimeo/psalm": "^3.12"
},
"type": "library",
"extra": {
@@ -1199,7 +1008,7 @@
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/amp/issues",
- "source": "https://github.com/amphp/amp/tree/v2.6.2"
+ "source": "https://github.com/amphp/amp/tree/v2.6.4"
},
"funding": [
{
@@ -1207,20 +1016,20 @@
"type": "github"
}
],
- "time": "2022-02-20T17:52:18+00:00"
+ "time": "2024-03-21T18:52:26+00:00"
},
{
"name": "amphp/byte-stream",
- "version": "v1.8.1",
+ "version": "v1.8.2",
"source": {
"type": "git",
"url": "https://github.com/amphp/byte-stream.git",
- "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
+ "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
- "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
+ "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc",
+ "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc",
"shasum": ""
},
"require": {
@@ -1236,11 +1045,6 @@
"psalm/phar": "^3.11.4"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
"autoload": {
"files": [
"lib/functions.php"
@@ -1264,7 +1068,7 @@
}
],
"description": "A stream abstraction to make working with non-blocking I/O simple.",
- "homepage": "http://amphp.org/byte-stream",
+ "homepage": "https://amphp.org/byte-stream",
"keywords": [
"amp",
"amphp",
@@ -1274,9 +1078,8 @@
"stream"
],
"support": {
- "irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/byte-stream/issues",
- "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
+ "source": "https://github.com/amphp/byte-stream/tree/v1.8.2"
},
"funding": [
{
@@ -1284,20 +1087,94 @@
"type": "github"
}
],
- "time": "2021-03-30T17:13:30+00:00"
+ "time": "2024-04-13T18:00:56+00:00"
+ },
+ {
+ "name": "azjezz/psl",
+ "version": "2.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/azjezz/psl.git",
+ "reference": "1ade4f1a99fe07a8e06f8dee596609aa07585422"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/azjezz/psl/zipball/1ade4f1a99fe07a8e06f8dee596609aa07585422",
+ "reference": "1ade4f1a99fe07a8e06f8dee596609aa07585422",
+ "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.9.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/azjezz",
+ "type": "github"
+ }
+ ],
+ "time": "2024-04-05T05:18:37+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": {
@@ -1305,12 +1182,13 @@
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
- "php": "^7"
+ "php": "^7.0 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
- "phpstan/phpstan-shim": "*",
- "phpunit/phpunit": ">=6.0.0 <8"
+ "phpstan/phpstan": "*",
+ "phpunit/phpunit": ">=6.0.0",
+ "yoast/phpunit-polyfills": "^0.1.0"
},
"suggest": {
"ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
@@ -1348,139 +1226,162 @@
],
"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": "composer/ca-bundle",
- "version": "1.5.0",
+ "name": "brandembassy/mockery-tools",
+ "version": "4.1.3",
"source": {
"type": "git",
- "url": "https://github.com/composer/ca-bundle.git",
- "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
+ "url": "https://github.com/BrandEmbassy/mockery-tools.git",
+ "reference": "de93d61feb9ccc20f91206469f8bc58bf8c8ebd4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
- "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
+ "url": "https://api.github.com/repos/BrandEmbassy/mockery-tools/zipball/de93d61feb9ccc20f91206469f8bc58bf8c8ebd4",
+ "reference": "de93d61feb9ccc20f91206469f8bc58bf8c8ebd4",
"shasum": ""
},
"require": {
- "ext-openssl": "*",
- "ext-pcre": "*",
- "php": "^7.2 || ^8.0"
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "guzzlehttp/guzzle": "^6.3 || ^7.0",
+ "marc-mabe/php-enum": "^3.0 || ^4.0",
+ "mockery/mockery": "^1.6.7",
+ "nette/di": "^2.4 || ^3.0",
+ "nette/utils": "^2.4 || ^3.0",
+ "php": "^8.1",
+ "phpunit/phpunit": "^9.6 || ^10.5",
+ "ramsey/uuid": "^3.0 || ^4.0",
+ "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1"
},
"require-dev": {
- "phpstan/phpstan": "^1.10",
- "psr/log": "^1.0",
- "symfony/phpunit-bridge": "^4.2 || ^5",
- "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ "brandembassy/coding-standard": "^11.1",
+ "roave/security-advisories": "dev-latest"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Composer\\CaBundle\\": "src"
+ "BrandEmbassy\\MockeryTools\\": "src/MockeryTools"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- }
- ],
- "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
- "keywords": [
- "cabundle",
- "cacert",
- "certificate",
- "ssl",
- "tls"
+ "proprietary"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/ca-bundle/issues",
- "source": "https://github.com/composer/ca-bundle/tree/1.5.0"
+ "issues": "https://github.com/BrandEmbassy/mockery-tools/issues",
+ "source": "https://github.com/BrandEmbassy/mockery-tools/tree/4.1.3"
+ },
+ "time": "2024-02-28T13:26:35+00:00"
+ },
+ {
+ "name": "brick/math",
+ "version": "0.12.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/brick/math.git",
+ "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
+ "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpunit/phpunit": "^10.1",
+ "vimeo/psalm": "5.16.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Brick\\Math\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Arbitrary-precision arithmetic library",
+ "keywords": [
+ "Arbitrary-precision",
+ "BigInteger",
+ "BigRational",
+ "arithmetic",
+ "bigdecimal",
+ "bignum",
+ "bignumber",
+ "brick",
+ "decimal",
+ "integer",
+ "math",
+ "mathematics",
+ "rational"
+ ],
+ "support": {
+ "issues": "https://github.com/brick/math/issues",
+ "source": "https://github.com/brick/math/tree/0.12.1"
},
"funding": [
{
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
+ "url": "https://github.com/BenMorel",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
}
],
- "time": "2024-03-15T14:00:32+00:00"
+ "time": "2023-11-29T23:19:16+00:00"
},
{
- "name": "composer/composer",
- "version": "1.10.27",
+ "name": "colinodell/json5",
+ "version": "v2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/composer.git",
- "reference": "f8f49191eec76f039b466aa1f161406fe43aff50"
+ "url": "https://github.com/colinodell/json5.git",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/composer/zipball/f8f49191eec76f039b466aa1f161406fe43aff50",
- "reference": "f8f49191eec76f039b466aa1f161406fe43aff50",
+ "url": "https://api.github.com/repos/colinodell/json5/zipball/15b063f8cb5e6deb15f0cd39123264ec0d19c710",
+ "reference": "15b063f8cb5e6deb15f0cd39123264ec0d19c710",
"shasum": ""
},
"require": {
- "composer/ca-bundle": "^1.0",
- "composer/semver": "^1.0",
- "composer/spdx-licenses": "^1.2",
- "composer/xdebug-handler": "^1.1",
- "justinrainbow/json-schema": "^5.2.10",
- "php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0",
- "seld/jsonlint": "^1.4",
- "seld/phar-utils": "^1.0",
- "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
- "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "php": "^7.1.3|^8.0"
},
"conflict": {
- "symfony/console": "2.8.38"
+ "scrutinizer/ocular": "1.7.*"
},
"require-dev": {
- "phpspec/prophecy": "^1.10",
- "symfony/phpunit-bridge": "^4.2"
- },
- "suggest": {
- "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
- "ext-zip": "Enabling the zip extension allows you to unzip archives",
- "ext-zlib": "Allow gzip compression of HTTP requests"
+ "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/composer"
+ "bin/json5"
],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.10-dev"
+ "dev-main": "3.0-dev"
}
},
"autoload": {
+ "files": [
+ "src/global.php"
+ ],
"psr-4": {
- "Composer\\": "src/Composer"
+ "ColinODell\\Json5\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1489,80 +1390,65 @@
],
"authors": [
{
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Developer"
}
],
- "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
- "homepage": "https://getcomposer.org/",
+ "description": "UTF-8 compatible JSON5 parser for PHP",
+ "homepage": "https://github.com/colinodell/json5",
"keywords": [
- "autoload",
- "dependency",
- "package"
+ "JSON5",
+ "json",
+ "json5_decode",
+ "json_decode"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/composer/issues",
- "source": "https://github.com/composer/composer/tree/1.10.27"
+ "issues": "https://github.com/colinodell/json5/issues",
+ "source": "https://github.com/colinodell/json5/tree/v2.3.0"
},
"funding": [
{
- "url": "https://packagist.com",
+ "url": "https://www.colinodell.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/composer",
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
+ "url": "https://www.patreon.com/colinodell",
+ "type": "patreon"
}
],
- "time": "2023-09-29T08:50:23+00:00"
+ "time": "2022-12-27T16:44:40+00:00"
},
{
- "name": "composer/package-versions-deprecated",
- "version": "1.11.99.5",
+ "name": "composer-unused/contracts",
+ "version": "0.3.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/package-versions-deprecated.git",
- "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
+ "url": "https://github.com/composer-unused/contracts.git",
+ "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
- "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
+ "url": "https://api.github.com/repos/composer-unused/contracts/zipball/5ec448d3ee80735dccad6a21a3266c377d0845ae",
+ "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.1.0 || ^2.0",
- "php": "^7 || ^8"
- },
- "replace": {
- "ocramius/package-versions": "1.11.99"
- },
- "require-dev": {
- "composer/composer": "^1.9.3 || ^2.0@dev",
- "ext-zip": "^1.13",
- "phpunit/phpunit": "^6.5 || ^7"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "PackageVersions\\Installer",
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
+ "php": "^7.4 || ^8.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "PackageVersions\\": "src/PackageVersions"
+ "ComposerUnused\\Contracts\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1571,64 +1457,59 @@
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be"
+ "name": "Andreas Frรถmer",
+ "email": "composer-unused@icanhazstring.com"
}
],
- "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
+ "description": "Contract repository for composer-unused",
"support": {
- "issues": "https://github.com/composer/package-versions-deprecated/issues",
- "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
+ "issues": "https://github.com/composer-unused/contracts/issues",
+ "source": "https://github.com/composer-unused/contracts/tree/0.3.0"
},
"funding": [
{
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
+ "url": "https://github.com/icanhazstring",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
}
],
- "time": "2022-01-17T14:14:24+00:00"
+ "time": "2023-03-17T00:41:49+00:00"
},
{
- "name": "composer/semver",
- "version": "1.7.2",
+ "name": "composer-unused/symbol-parser",
+ "version": "0.2.5",
"source": {
"type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
+ "url": "https://github.com/composer-unused/symbol-parser.git",
+ "reference": "96cee7244aea405e936247d42c49332d52d90ae7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
+ "url": "https://api.github.com/repos/composer-unused/symbol-parser/zipball/96cee7244aea405e936247d42c49332d52d90ae7",
+ "reference": "96cee7244aea405e936247d42c49332d52d90ae7",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
+ "composer-unused/contracts": "^0.3",
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "php": "^7.4 || ^8.0",
+ "phpstan/phpdoc-parser": "^1.25",
+ "psr/container": "^1.0 || ^2.0",
+ "psr/log": "^1.1 || ^2 || ^3",
+ "symfony/finder": "^5.3 || ^6.0 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.5 || ^5.0.5"
+ "ergebnis/composer-normalize": "^2.42",
+ "ext-ds": "*",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^9.6.10 || ^10.5",
+ "roave/security-advisories": "dev-master",
+ "squizlabs/php_codesniffer": "^3.9.0",
+ "symfony/serializer": "^5.4"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Composer\\Semver\\": "src"
+ "ComposerUnused\\SymbolParser\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1637,69 +1518,57 @@
],
"authors": [
{
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- },
- {
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
+ "name": "Andreas Frรถmer",
+ "email": "composer-unused@icanhazstring.com"
}
],
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "description": "Toolkit to parse symbols from a composer package",
+ "homepage": "https://github.com/composer-unused/symbol-parser",
"keywords": [
- "semantic",
- "semver",
- "validation",
- "versioning"
+ "composer",
+ "parser",
+ "symbol"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/1.7.2"
+ "issues": "https://github.com/composer-unused/symbol-parser/issues",
+ "source": "https://github.com/composer-unused/symbol-parser"
},
"funding": [
{
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
+ "url": "https://github.com/sponsors/icanhazstring",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
+ "url": "https://paypal.me/icanhazstring",
+ "type": "other"
}
],
- "time": "2020-12-03T15:47:16+00:00"
+ "time": "2024-03-09T15:25:51+00:00"
},
{
- "name": "composer/spdx-licenses",
- "version": "1.5.8",
+ "name": "composer/ca-bundle",
+ "version": "1.5.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/spdx-licenses.git",
- "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a"
+ "url": "https://github.com/composer/ca-bundle.git",
+ "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
- "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
+ "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
+ "ext-openssl": "*",
+ "ext-pcre": "*",
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^0.12.55",
- "symfony/phpunit-bridge": "^4.2 || ^5"
+ "phpstan/phpstan": "^1.10",
+ "psr/log": "^1.0",
+ "symfony/phpunit-bridge": "^4.2 || ^5",
+ "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"type": "library",
"extra": {
@@ -1709,7 +1578,7 @@
},
"autoload": {
"psr-4": {
- "Composer\\Spdx\\": "src"
+ "Composer\\CaBundle\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1717,32 +1586,24 @@
"MIT"
],
"authors": [
- {
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
- },
- {
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
}
],
- "description": "SPDX licenses list and validation library.",
+ "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
"keywords": [
- "license",
- "spdx",
- "validator"
+ "cabundle",
+ "cacert",
+ "certificate",
+ "ssl",
+ "tls"
],
"support": {
- "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.8"
+ "irc": "irc://irc.freenode.org/composer",
+ "issues": "https://github.com/composer/ca-bundle/issues",
+ "source": "https://github.com/composer/ca-bundle/tree/1.5.0"
},
"funding": [
{
@@ -1758,34 +1619,44 @@
"type": "tidelift"
}
],
- "time": "2023-11-20T07:44:33+00:00"
+ "time": "2024-03-15T14:00:32+00:00"
},
{
- "name": "composer/xdebug-handler",
- "version": "1.4.6",
+ "name": "composer/class-map-generator",
+ "version": "1.1.1",
"source": {
"type": "git",
- "url": "https://github.com/composer/xdebug-handler.git",
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
+ "url": "https://github.com/composer/class-map-generator.git",
+ "reference": "8286a62d243312ed99b3eee20d5005c961adb311"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8286a62d243312ed99b3eee20d5005c961adb311",
+ "reference": "8286a62d243312ed99b3eee20d5005c961adb311",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0"
+ "composer/pcre": "^2.1 || ^3.1",
+ "php": "^7.2 || ^8.0",
+ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
},
"require-dev": {
- "phpstan/phpstan": "^0.12.55",
- "symfony/phpunit-bridge": "^4.2 || ^5"
+ "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\\XdebugHandler\\": "src"
+ "Composer\\ClassMapGenerator\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1794,19 +1665,18 @@
],
"authors": [
{
- "name": "John Stevenson",
- "email": "john-stevenson@blueyonder.co.uk"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
}
],
- "description": "Restarts a process without Xdebug.",
+ "description": "Utilities to scan PHP code and generate class maps.",
"keywords": [
- "Xdebug",
- "performance"
+ "classmap"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/xdebug-handler/issues",
- "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
+ "issues": "https://github.com/composer/class-map-generator/issues",
+ "source": "https://github.com/composer/class-map-generator/tree/1.1.1"
},
"funding": [
{
@@ -1822,39 +1692,75 @@
"type": "tidelift"
}
],
- "time": "2021-03-25T17:01:18+00:00"
+ "time": "2024-03-15T12:53:41+00:00"
},
{
- "name": "dealerdirect/phpcodesniffer-composer-installer",
- "version": "v0.7.2",
+ "name": "composer/composer",
+ "version": "2.7.6",
"source": {
"type": "git",
- "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
- "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
+ "url": "https://github.com/composer/composer.git",
+ "reference": "fabd995783b633829fd4280e272284b39b6ae702"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
- "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
+ "url": "https://api.github.com/repos/composer/composer/zipball/fabd995783b633829fd4280e272284b39b6ae702",
+ "reference": "fabd995783b633829fd4280e272284b39b6ae702",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.0 || ^2.0",
- "php": ">=5.3",
- "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
+ "composer/ca-bundle": "^1.0",
+ "composer/class-map-generator": "^1.0",
+ "composer/metadata-minifier": "^1.0",
+ "composer/pcre": "^2.1 || ^3.1",
+ "composer/semver": "^3.2.5",
+ "composer/spdx-licenses": "^1.5.7",
+ "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
+ "justinrainbow/json-schema": "^5.2.11",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "react/promise": "^2.8 || ^3",
+ "seld/jsonlint": "^1.4",
+ "seld/phar-utils": "^1.2",
+ "seld/signal-handler": "^2.0",
+ "symfony/console": "^5.4.11 || ^6.0.11 || ^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": {
- "composer/composer": "*",
- "php-parallel-lint/php-parallel-lint": "^1.3.1",
- "phpcompatibility/php-compatibility": "^9.0"
+ "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.4.1 || ^7.0.1"
},
- "type": "composer-plugin",
- "extra": {
- "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
+ "suggest": {
+ "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
+ "ext-zip": "Enabling the zip extension allows you to unzip archives",
+ "ext-zlib": "Allow gzip compression of HTTP requests"
+ },
+ "bin": [
+ "bin/composer"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.7-dev"
+ },
+ "phpstan": {
+ "includes": [
+ "phpstan/rules.neon"
+ ]
+ }
},
"autoload": {
"psr-4": {
- "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
+ "Composer\\": "src/Composer/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1863,72 +1769,76 @@
],
"authors": [
{
- "name": "Franck Nijhof",
- "email": "franck.nijhof@dealerdirect.com",
- "homepage": "http://www.frenck.nl",
- "role": "Developer / IT Manager"
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "https://www.naderman.de"
},
{
- "name": "Contributors",
- "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
}
],
- "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
- "homepage": "http://www.dealerdirect.com",
+ "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
+ "homepage": "https://getcomposer.org/",
"keywords": [
- "PHPCodeSniffer",
- "PHP_CodeSniffer",
- "code quality",
- "codesniffer",
- "composer",
- "installer",
- "phpcbf",
- "phpcs",
- "plugin",
- "qa",
- "quality",
- "standard",
- "standards",
- "style guide",
- "stylecheck",
- "tests"
+ "autoload",
+ "dependency",
+ "package"
],
"support": {
- "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
- "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/composer/issues",
+ "security": "https://github.com/composer/composer/security/policy",
+ "source": "https://github.com/composer/composer/tree/2.7.6"
},
- "time": "2022-02-04T12:51:07+00:00"
+ "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": "2024-05-04T21:03:15+00:00"
},
{
- "name": "dereuromark/composer-prefer-lowest",
- "version": "0.1.10",
+ "name": "composer/metadata-minifier",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/dereuromark/composer-prefer-lowest.git",
- "reference": "9290203cfc25d4a2d0605cb3119bb227aa1195d6"
+ "url": "https://github.com/composer/metadata-minifier.git",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dereuromark/composer-prefer-lowest/zipball/9290203cfc25d4a2d0605cb3119bb227aa1195d6",
- "reference": "9290203cfc25d4a2d0605cb3119bb227aa1195d6",
+ "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
"shasum": ""
},
"require": {
- "composer/semver": "^1.4 || ^2.0 || ^3.0",
- "ext-json": "*",
- "php": ">=7.3"
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "fig-r/psr2r-sniffer": "dev-master",
- "phpunit/phpunit": "^9.5"
+ "composer/composer": "^2",
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
- "bin": [
- "bin/validate-prefer-lowest"
- ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "ComposerPreferLowest\\": "src/"
+ "Composer\\MetadataMinifier\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1937,140 +1847,137 @@
],
"authors": [
{
- "name": "Mark Scherer",
- "email": "euromark@web.de"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
}
],
- "description": "Checks prefer-lowest more strictly. Add-on for CI.",
+ "description": "Small utility library that handles metadata minification and expansion.",
+ "keywords": [
+ "composer",
+ "compression"
+ ],
"support": {
- "issues": "https://github.com/dereuromark/composer-prefer-lowest/issues",
- "source": "https://github.com/dereuromark/composer-prefer-lowest/tree/0.1.10"
+ "issues": "https://github.com/composer/metadata-minifier/issues",
+ "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
},
- "time": "2021-11-02T02:20:22+00:00"
+ "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": "dnoegel/php-xdg-base-dir",
- "version": "v0.1.1",
+ "name": "composer/pcre",
+ "version": "3.1.3",
"source": {
"type": "git",
- "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
- "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
- "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
+ "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.4 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
+ "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": {
- "XdgBaseDir\\": "src/"
+ "Composer\\Pcre\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "implementation of xdg base directory specification for php",
- "support": {
- "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
- "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
- },
- "time": "2019-12-04T15:06:13+00:00"
- },
- {
- "name": "doctrine/coding-standard",
- "version": "9.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/coding-standard.git",
- "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/35a2452c6025cb739c3244b3348bcd1604df07d1",
- "reference": "35a2452c6025cb739c3244b3348bcd1604df07d1",
- "shasum": ""
- },
- "require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
- "php": "^7.1 || ^8.0",
- "slevomat/coding-standard": "^7.0.0",
- "squizlabs/php_codesniffer": "^3.6.0"
- },
- "type": "phpcodesniffer-standard",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
"authors": [
{
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Steve Mรผller",
- "email": "st.mueller@dzh-online.de"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
}
],
- "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
- "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
"keywords": [
- "checks",
- "code",
- "coding",
- "cs",
- "doctrine",
- "rules",
- "sniffer",
- "sniffs",
- "standard",
- "style"
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
],
"support": {
- "issues": "https://github.com/doctrine/coding-standard/issues",
- "source": "https://github.com/doctrine/coding-standard/tree/9.0.0"
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.1.3"
},
- "time": "2021-04-12T15:11:14+00:00"
+ "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": "2024-03-19T10:26:25+00:00"
},
{
- "name": "doctrine/instantiator",
- "version": "1.4.1",
+ "name": "composer/semver",
+ "version": "3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
+ "url": "https://github.com/composer/semver.git",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
- "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
+ "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^0.16 || ^1",
"phpstan/phpstan": "^1.4",
- "phpstan/phpstan-phpunit": "^1",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "vimeo/psalm": "^4.22"
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+ "Composer\\Semver\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2079,80 +1986,79 @@
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "https://ocramius.github.io/"
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
}
],
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
"keywords": [
- "constructor",
- "instantiate"
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
],
"support": {
- "issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.4.0"
},
"funding": [
{
- "url": "https://www.doctrine-project.org/sponsorship.html",
+ "url": "https://packagist.com",
"type": "custom"
},
{
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
+ "url": "https://github.com/composer",
+ "type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
"type": "tidelift"
}
],
- "time": "2022-03-03T08:28:38+00:00"
+ "time": "2023-08-31T09:50:34+00:00"
},
{
- "name": "ergebnis/composer-normalize",
- "version": "2.28.3",
+ "name": "composer/spdx-licenses",
+ "version": "1.5.8",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c"
+ "url": "https://github.com/composer/spdx-licenses.git",
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
+ "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^2.0.0",
- "ergebnis/json-normalizer": "~2.1.0",
- "ergebnis/json-printer": "^3.2.0",
- "justinrainbow/json-schema": "^5.2.12",
- "localheinz/diff": "^1.1.1",
- "php": "^7.4 || ^8.0"
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "composer/composer": "^2.3.9",
- "ergebnis/license": "^1.2.0",
- "ergebnis/php-cs-fixer-config": "^4.4.0",
- "fakerphp/faker": "^1.19.0",
- "phpunit/phpunit": "^9.5.21",
- "psalm/plugin-phpunit": "~0.17.0",
- "symfony/filesystem": "^5.4.9",
- "vimeo/psalm": "^4.24.0"
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
- "type": "composer-plugin",
+ "type": "library",
"extra": {
- "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
+ "branch-alias": {
+ "dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Ergebnis\\Composer\\Normalize\\": "src/"
+ "Composer\\Spdx\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2161,59 +2067,76 @@
],
"authors": [
{
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com"
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
}
],
- "description": "Provides a composer plugin for normalizing composer.json.",
- "homepage": "https://github.com/ergebnis/composer-normalize",
+ "description": "SPDX licenses list and validation library.",
"keywords": [
- "composer",
- "normalize",
- "normalizer",
- "plugin"
+ "license",
+ "spdx",
+ "validator"
],
"support": {
- "issues": "https://github.com/ergebnis/composer-normalize/issues",
- "source": "https://github.com/ergebnis/composer-normalize"
+ "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.8"
},
- "time": "2022-07-05T16:09:10+00:00"
+ "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-11-20T07:44:33+00:00"
},
{
- "name": "ergebnis/json-normalizer",
- "version": "2.1.0",
+ "name": "composer/xdebug-handler",
+ "version": "3.0.5",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/json-normalizer.git",
- "reference": "2039eb11131a243b9204bf51219baa08935e6b1d"
+ "url": "https://github.com/composer/xdebug-handler.git",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/2039eb11131a243b9204bf51219baa08935e6b1d",
- "reference": "2039eb11131a243b9204bf51219baa08935e6b1d",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
"shasum": ""
},
"require": {
- "ergebnis/json-printer": "^3.2.0",
- "ergebnis/json-schema-validator": "^2.0.0",
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.11",
- "php": "^7.4 || ^8.0"
+ "composer/pcre": "^1 || ^2 || ^3",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
- "ergebnis/data-provider": "^1.0.0",
- "ergebnis/license": "^1.2.0",
- "ergebnis/php-cs-fixer-config": "^3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.5",
- "phpunit/phpunit": "^9.5.11",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.17.0"
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
},
"type": "library",
"autoload": {
"psr-4": {
- "Ergebnis\\Json\\Normalizer\\": "src/"
+ "Composer\\XdebugHandler\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2222,60 +2145,70 @@
],
"authors": [
{
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com"
+ "name": "John Stevenson",
+ "email": "john-stevenson@blueyonder.co.uk"
}
],
- "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
- "homepage": "https://github.com/ergebnis/json-normalizer",
+ "description": "Restarts a process without Xdebug.",
"keywords": [
- "json",
- "normalizer"
+ "Xdebug",
+ "performance"
],
"support": {
- "issues": "https://github.com/ergebnis/json-normalizer/issues",
- "source": "https://github.com/ergebnis/json-normalizer"
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/xdebug-handler/issues",
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
},
"funding": [
{
- "url": "https://github.com/localheinz",
+ "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": "2022-01-04T11:19:55+00:00"
+ "time": "2024-05-06T16:37:16+00:00"
},
{
- "name": "ergebnis/json-printer",
- "version": "3.2.0",
+ "name": "dealerdirect/phpcodesniffer-composer-installer",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/json-printer.git",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005"
+ "url": "https://github.com/PHPCSStandards/composer-installer.git",
+ "reference": "4be43904336affa5c2f70744a348312336afd0da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/651cab2b7604a6b338d0d16749f5ea0851a68005",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005",
+ "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
+ "reference": "4be43904336affa5c2f70744a348312336afd0da",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "^7.4 || ^8.0"
+ "composer-plugin-api": "^1.0 || ^2.0",
+ "php": ">=5.4",
+ "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
},
"require-dev": {
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.5",
- "phpunit/phpunit": "^9.5.11",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.16.1"
+ "composer/composer": "*",
+ "ext-json": "*",
+ "ext-zip": "*",
+ "php-parallel-lint/php-parallel-lint": "^1.3.1",
+ "phpcompatibility/php-compatibility": "^9.0",
+ "yoast/phpunit-polyfills": "^1.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
},
- "type": "library",
"autoload": {
"psr-4": {
- "Ergebnis\\Json\\Printer\\": "src/"
+ "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2284,367 +2217,367 @@
],
"authors": [
{
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com"
+ "name": "Franck Nijhof",
+ "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": "Provides a JSON printer, allowing for flexible indentation.",
- "homepage": "https://github.com/ergebnis/json-printer",
+ "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
+ "homepage": "http://www.dealerdirect.com",
"keywords": [
- "formatter",
- "json",
- "printer"
+ "PHPCodeSniffer",
+ "PHP_CodeSniffer",
+ "code quality",
+ "codesniffer",
+ "composer",
+ "installer",
+ "phpcbf",
+ "phpcs",
+ "plugin",
+ "qa",
+ "quality",
+ "standard",
+ "standards",
+ "style guide",
+ "stylecheck",
+ "tests"
],
"support": {
- "issues": "https://github.com/ergebnis/json-printer/issues",
- "source": "https://github.com/ergebnis/json-printer"
+ "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
+ "source": "https://github.com/PHPCSStandards/composer-installer"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2021-12-27T12:39:13+00:00"
+ "time": "2023-01-05T11:28:13+00:00"
},
{
- "name": "ergebnis/json-schema-validator",
- "version": "2.0.0",
+ "name": "dnoegel/php-xdg-base-dir",
+ "version": "v0.1.1",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/json-schema-validator.git",
- "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac"
+ "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/dacd8a47c1cc2c426ec71e952da3609ebe901fac",
- "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac",
+ "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
+ "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "justinrainbow/json-schema": "^5.2.10",
- "php": "^7.4 || ^8.0"
+ "php": ">=5.3.2"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.18.0",
- "ergebnis/data-provider": "^1.0.0",
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "~3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.3",
- "phpunit/phpunit": "~9.5.10",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.15.0"
+ "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
},
"type": "library",
- "extra": {
- "composer-normalize": {
- "indent-size": 2,
- "indent-style": "space"
- }
- },
"autoload": {
"psr-4": {
- "Ergebnis\\Json\\SchemaValidator\\": "src/"
+ "XdgBaseDir\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com"
- }
- ],
- "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
- "homepage": "https://github.com/ergebnis/json-schema-validator",
- "keywords": [
- "json",
- "schema",
- "validator"
- ],
+ "description": "implementation of xdg base directory specification for php",
"support": {
- "issues": "https://github.com/ergebnis/json-schema-validator/issues",
- "source": "https://github.com/ergebnis/json-schema-validator"
+ "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
+ "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2021-12-13T16:54:56+00:00"
+ "time": "2019-12-04T15:06:13+00:00"
},
{
- "name": "ergebnis/phpstan-rules",
- "version": "0.15.3",
+ "name": "doctrine/coding-standard",
+ "version": "12.0.0",
"source": {
"type": "git",
- "url": "https://github.com/ergebnis/phpstan-rules.git",
- "reference": "78a3dd88893cf3250ba339843503dcea7e9bee64"
+ "url": "https://github.com/doctrine/coding-standard.git",
+ "reference": "1b2b7dc58c68833af481fb9325c25abd40681c79"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/78a3dd88893cf3250ba339843503dcea7e9bee64",
- "reference": "78a3dd88893cf3250ba339843503dcea7e9bee64",
+ "url": "https://api.github.com/repos/doctrine/coding-standard/zipball/1b2b7dc58c68833af481fb9325c25abd40681c79",
+ "reference": "1b2b7dc58c68833af481fb9325c25abd40681c79",
"shasum": ""
},
"require": {
- "ext-mbstring": "*",
- "nikic/php-parser": "^4.2.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0.0",
"php": "^7.2 || ^8.0",
- "phpstan/phpstan": "~0.11.15 || ~0.12.0"
- },
- "require-dev": {
- "ergebnis/composer-normalize": "^2.9.0",
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^2.5.1",
- "ergebnis/test-util": "^1.3.0",
- "infection/infection": "~0.15.3",
- "nette/di": "^3.0.1",
- "phpstan/phpstan-deprecation-rules": "~0.11.2",
- "phpstan/phpstan-strict-rules": "~0.11.1",
- "phpunit/phpunit": "^8.5.8",
- "psalm/plugin-phpunit": "~0.12.2",
- "psr/container": "^1.0.0",
- "vimeo/psalm": "^3.18",
- "zendframework/zend-servicemanager": "^2.0.0"
- },
- "type": "phpstan-extension",
- "extra": {
- "phpstan": {
- "includes": [
- "rules.neon"
- ]
- }
- },
- "autoload": {
- "psr-4": {
- "Ergebnis\\PHPStan\\Rules\\": "src/"
- }
+ "slevomat/coding-standard": "^8.11",
+ "squizlabs/php_codesniffer": "^3.7"
},
+ "type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com"
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Steve Mรผller",
+ "email": "st.mueller@dzh-online.de"
}
],
- "description": "Provides additional rules for phpstan/phpstan.",
- "homepage": "https://github.com/ergebnis/phpstan-rules",
+ "description": "The Doctrine Coding Standard is a set of PHPCS rules applied to all Doctrine projects.",
+ "homepage": "https://www.doctrine-project.org/projects/coding-standard.html",
"keywords": [
- "PHPStan",
- "phpstan-extreme-rules",
- "phpstan-rules"
+ "checks",
+ "code",
+ "coding",
+ "cs",
+ "dev",
+ "doctrine",
+ "rules",
+ "sniffer",
+ "sniffs",
+ "standard",
+ "style"
],
"support": {
- "issues": "https://github.com/ergebnis/phpstan-rules/issues",
- "source": "https://github.com/ergebnis/phpstan-rules"
+ "issues": "https://github.com/doctrine/coding-standard/issues",
+ "source": "https://github.com/doctrine/coding-standard/tree/12.0.0"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2020-10-30T09:50:34+00:00"
+ "time": "2023-04-24T17:43:28+00:00"
},
{
- "name": "facade/ignition-contracts",
- "version": "1.0.2",
+ "name": "doctrine/deprecations",
+ "version": "1.1.3",
"source": {
"type": "git",
- "url": "https://github.com/facade/ignition-contracts.git",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
+ "url": "https://github.com/doctrine/deprecations.git",
+ "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
- "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
+ "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
"shasum": ""
},
"require": {
- "php": "^7.3|^8.0"
+ "php": "^7.1 || ^8.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^v2.15.8",
- "phpunit/phpunit": "^9.3.11",
- "vimeo/psalm": "^3.17.1"
+ "doctrine/coding-standard": "^9",
+ "phpstan/phpstan": "1.4.10 || 1.10.15",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+ "psalm/plugin-phpunit": "0.18.4",
+ "psr/log": "^1 || ^2 || ^3",
+ "vimeo/psalm": "4.30.0 || 5.12.0"
+ },
+ "suggest": {
+ "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
},
"type": "library",
"autoload": {
"psr-4": {
- "Facade\\IgnitionContracts\\": "src"
+ "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Freek Van der Herten",
- "email": "freek@spatie.be",
- "homepage": "https://flareapp.io",
- "role": "Developer"
- }
- ],
- "description": "Solution contracts for Ignition",
- "homepage": "https://github.com/facade/ignition-contracts",
- "keywords": [
- "contracts",
- "flare",
- "ignition"
- ],
+ "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/facade/ignition-contracts/issues",
- "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
+ "issues": "https://github.com/doctrine/deprecations/issues",
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
},
- "time": "2020-10-16T08:27:54+00:00"
+ "time": "2024-01-30T19:34:25+00:00"
},
{
- "name": "felixfbecker/advanced-json-rpc",
- "version": "v3.2.1",
+ "name": "ergebnis/composer-normalize",
+ "version": "2.42.0",
"source": {
"type": "git",
- "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
- "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
+ "url": "https://github.com/ergebnis/composer-normalize.git",
+ "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
- "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
+ "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
+ "reference": "02cf2b69ad2a74c6f11a8c3f5f054b8f949df910",
"shasum": ""
},
"require": {
- "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
- "php": "^7.1 || ^8.0",
- "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
+ "composer-plugin-api": "^2.0.0",
+ "ergebnis/json": "^1.2.0",
+ "ergebnis/json-normalizer": "^4.5.0",
+ "ergebnis/json-printer": "^3.5.0",
+ "ext-json": "*",
+ "justinrainbow/json-schema": "^5.2.12",
+ "localheinz/diff": "^1.1.1",
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^7.0 || ^8.0"
+ "composer/composer": "^2.6.6",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.2",
+ "symfony/filesystem": "^5.4.25",
+ "vimeo/psalm": "^5.20.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
+ },
+ "plugin-optional": true
},
- "type": "library",
"autoload": {
"psr-4": {
- "AdvancedJsonRpc\\": "lib/"
+ "Ergebnis\\Composer\\Normalize\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "ISC"
+ "MIT"
],
"authors": [
{
- "name": "Felix Becker",
- "email": "felix.b@outlook.com"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "A more advanced JSONRPC implementation",
+ "description": "Provides a composer plugin for normalizing composer.json.",
+ "homepage": "https://github.com/ergebnis/composer-normalize",
+ "keywords": [
+ "composer",
+ "normalize",
+ "normalizer",
+ "plugin"
+ ],
"support": {
- "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
- "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
+ "issues": "https://github.com/ergebnis/composer-normalize/issues",
+ "security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/composer-normalize"
},
- "time": "2021-06-11T22:34:44+00:00"
+ "time": "2024-01-30T11:54:02+00:00"
},
{
- "name": "felixfbecker/language-server-protocol",
- "version": "v1.5.2",
+ "name": "ergebnis/json",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
- "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
+ "url": "https://github.com/ergebnis/json.git",
+ "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
- "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
+ "url": "https://api.github.com/repos/ergebnis/json/zipball/a457f25a5ba7ea11fc94f84d53678c5211abfce0",
+ "reference": "a457f25a5ba7ea11fc94f84d53678c5211abfce0",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "ext-json": "*",
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "phpstan/phpstan": "*",
- "squizlabs/php_codesniffer": "^3.1",
- "vimeo/psalm": "^4.0"
+ "ergebnis/data-provider": "^3.2.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.2",
+ "vimeo/psalm": "^5.20.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
}
},
"autoload": {
"psr-4": {
- "LanguageServerProtocol\\": "src/"
+ "Ergebnis\\Json\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "ISC"
+ "MIT"
],
"authors": [
{
- "name": "Felix Becker",
- "email": "felix.b@outlook.com"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "PHP classes for the Language Server Protocol",
+ "description": "Provides a Json value object for representing a valid JSON string.",
+ "homepage": "https://github.com/ergebnis/json",
"keywords": [
- "language",
- "microsoft",
- "php",
- "server"
+ "json"
],
"support": {
- "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
- "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
+ "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": "2022-03-02T22:36:06+00:00"
+ "time": "2024-01-29T15:09:24+00:00"
},
{
- "name": "filp/whoops",
- "version": "2.14.5",
+ "name": "ergebnis/json-normalizer",
+ "version": "4.5.0",
"source": {
"type": "git",
- "url": "https://github.com/filp/whoops.git",
- "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
+ "url": "https://github.com/ergebnis/json-normalizer.git",
+ "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
- "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
+ "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/f0ee9e70739f121b27fac8b743e4a52b23de2152",
+ "reference": "f0ee9e70739f121b27fac8b743e4a52b23de2152",
"shasum": ""
},
"require": {
- "php": "^5.5.9 || ^7.0 || ^8.0",
- "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+ "ergebnis/json": "^1.2.0",
+ "ergebnis/json-pointer": "^3.4.0",
+ "ergebnis/json-printer": "^3.5.0",
+ "ergebnis/json-schema-validator": "^4.2.0",
+ "ext-json": "*",
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "mockery/mockery": "^0.9 || ^1.0",
- "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
- "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
+ "composer/semver": "^3.4.0",
+ "ergebnis/data-provider": "^3.2.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.4",
+ "vimeo/psalm": "^5.20.0"
},
"suggest": {
- "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
- "whoops/soap": "Formats errors as SOAP responses"
+ "composer/semver": "If you want to use ComposerJsonNormalizer or VersionConstraintNormalizer"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.7-dev"
- }
- },
"autoload": {
"psr-4": {
- "Whoops\\": "src/Whoops/"
+ "Ergebnis\\Json\\Normalizer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2653,82 +2586,63 @@
],
"authors": [
{
- "name": "Filipe Dobreira",
- "homepage": "https://github.com/filp",
- "role": "Developer"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "php error handling for cool kids",
- "homepage": "https://filp.github.io/whoops/",
+ "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
+ "homepage": "https://github.com/ergebnis/json-normalizer",
"keywords": [
- "error",
- "exception",
- "handling",
- "library",
- "throwable",
- "whoops"
+ "json",
+ "normalizer"
],
"support": {
- "issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.14.5"
+ "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": [
- {
- "url": "https://github.com/denis-sokolov",
- "type": "github"
- }
- ],
- "time": "2022-01-07T12:00:00+00:00"
+ "time": "2024-01-30T09:10:15+00:00"
},
{
- "name": "guzzlehttp/guzzle",
- "version": "7.4.5",
+ "name": "ergebnis/json-pointer",
+ "version": "3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/guzzle/guzzle.git",
- "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
+ "url": "https://github.com/ergebnis/json-pointer.git",
+ "reference": "b654757d873050622c2166f55ab25d04685261c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
- "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
+ "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/b654757d873050622c2166f55ab25d04685261c5",
+ "reference": "b654757d873050622c2166f55ab25d04685261c5",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "guzzlehttp/promises": "^1.5",
- "guzzlehttp/psr7": "^1.9 || ^2.4",
- "php": "^7.2.5 || ^8.0",
- "psr/http-client": "^1.0",
- "symfony/deprecation-contracts": "^2.2 || ^3.0"
- },
- "provide": {
- "psr/http-client-implementation": "1.0"
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.4.1",
- "ext-curl": "*",
- "php-http/client-integration-tests": "^3.0",
- "phpunit/phpunit": "^8.5.5 || ^9.3.5",
- "psr/log": "^1.1 || ^2.0 || ^3.0"
- },
- "suggest": {
- "ext-curl": "Required for CURL handler support",
- "ext-intl": "Required for Internationalized Domain Name (IDN) support",
- "psr/log": "Required for using the Log middleware"
+ "ergebnis/data-provider": "^3.2.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.2",
+ "vimeo/psalm": "^5.20.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "7.4-dev"
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
}
},
"autoload": {
- "files": [
- "src/functions_include.php"
- ],
"psr-4": {
- "GuzzleHttp\\": "src/"
+ "Ergebnis\\Json\\Pointer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2737,105 +2651,60 @@
],
"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://github.com/sagikazarmark"
- },
- {
- "name": "Tobias Schultze",
- "email": "webmaster@tubo-world.de",
- "homepage": "https://github.com/Tobion"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "Guzzle is a PHP HTTP client library",
+ "description": "Provides an abstraction of a JSON pointer.",
+ "homepage": "https://github.com/ergebnis/json-pointer",
"keywords": [
- "client",
- "curl",
- "framework",
- "http",
- "http client",
- "psr-18",
- "psr-7",
- "rest",
- "web service"
+ "RFC6901",
+ "json",
+ "pointer"
],
"support": {
- "issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
+ "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"
},
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://github.com/Nyholm",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
- "type": "tidelift"
- }
- ],
- "time": "2022-06-20T22:16:13+00:00"
+ "time": "2024-01-29T16:37:15+00:00"
},
{
- "name": "guzzlehttp/promises",
- "version": "1.5.1",
+ "name": "ergebnis/json-printer",
+ "version": "3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/guzzle/promises.git",
- "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
+ "url": "https://github.com/ergebnis/json-printer.git",
+ "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
- "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
+ "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/549e16fe6de34b8c3aee7b421be12caa552f3ced",
+ "reference": "549e16fe6de34b8c3aee7b421be12caa552f3ced",
"shasum": ""
},
"require": {
- "php": ">=5.5"
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "symfony/phpunit-bridge": "^4.4 || ^5.1"
+ "ergebnis/data-provider": "^3.2.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.2",
+ "vimeo/psalm": "^5.20.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.5-dev"
- }
- },
"autoload": {
- "files": [
- "src/functions_include.php"
- ],
"psr-4": {
- "GuzzleHttp\\Promise\\": "src/"
+ "Ergebnis\\Json\\Printer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2844,92 +2713,68 @@
],
"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"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "Guzzle promises library",
+ "description": "Provides a JSON printer, allowing for flexible indentation.",
+ "homepage": "https://github.com/ergebnis/json-printer",
"keywords": [
- "promise"
+ "formatter",
+ "json",
+ "printer"
],
"support": {
- "issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/1.5.1"
+ "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/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://github.com/Nyholm",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
- "type": "tidelift"
- }
- ],
- "time": "2021-10-22T20:56:57+00:00"
+ "time": "2024-01-29T15:33:37+00:00"
},
{
- "name": "guzzlehttp/psr7",
- "version": "2.5.0",
+ "name": "ergebnis/json-schema-validator",
+ "version": "4.2.0",
"source": {
"type": "git",
- "url": "https://github.com/guzzle/psr7.git",
- "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
+ "url": "https://github.com/ergebnis/json-schema-validator.git",
+ "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
- "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
+ "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
+ "reference": "10ed514fdc3f9b71f8a92c567afea21a2f6fa1ef",
"shasum": ""
},
"require": {
- "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"
+ "ergebnis/json": "^1.2.0",
+ "ergebnis/json-pointer": "^3.4.0",
+ "ext-json": "*",
+ "justinrainbow/json-schema": "^5.2.12",
+ "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.8.1",
- "http-interop/http-factory-tests": "^0.9",
- "phpunit/phpunit": "^8.5.29 || ^9.5.23"
- },
- "suggest": {
- "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+ "ergebnis/data-provider": "^3.2.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.20.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.9.0",
+ "fakerphp/faker": "^1.23.1",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.6.16",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "rector/rector": "~0.19.2",
+ "vimeo/psalm": "^5.20.0"
},
"type": "library",
"extra": {
- "bamarni-bin": {
- "bin-links": true,
- "forward-command": false
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
}
},
"autoload": {
"psr-4": {
- "GuzzleHttp\\Psr7\\": "src/"
+ "Ergebnis\\Json\\SchemaValidator\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2938,116 +2783,71 @@
],
"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"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "PSR-7 message implementation that also provides common utility methods",
+ "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
+ "homepage": "https://github.com/ergebnis/json-schema-validator",
"keywords": [
- "http",
- "message",
- "psr-7",
- "request",
- "response",
- "stream",
- "uri",
- "url"
+ "json",
+ "schema",
+ "validator"
],
"support": {
- "issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.5.0"
+ "issues": "https://github.com/ergebnis/json-schema-validator/issues",
+ "security": "https://github.com/ergebnis/json-schema-validator/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/json-schema-validator"
},
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://github.com/Nyholm",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
- "type": "tidelift"
- }
- ],
- "time": "2023-04-17T16:11:26+00:00"
+ "time": "2024-01-29T16:50:15+00:00"
},
{
- "name": "icanhazstring/composer-unused",
- "version": "0.7.10",
+ "name": "ergebnis/phpstan-rules",
+ "version": "2.2.0",
"source": {
"type": "git",
- "url": "https://github.com/composer-unused/composer-unused.git",
- "reference": "97086da19c7434a42427df0cf47b21278609ffb8"
+ "url": "https://github.com/ergebnis/phpstan-rules.git",
+ "reference": "2e9946491d39ea1eb043738309895e08f025a7a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/97086da19c7434a42427df0cf47b21278609ffb8",
- "reference": "97086da19c7434a42427df0cf47b21278609ffb8",
+ "url": "https://api.github.com/repos/ergebnis/phpstan-rules/zipball/2e9946491d39ea1eb043738309895e08f025a7a0",
+ "reference": "2e9946491d39ea1eb043738309895e08f025a7a0",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^2.0",
- "ext-json": "*",
- "nikic/php-parser": "^4.13",
- "php": ">=7.3 || ^8.0",
- "psr/container": "^1.0 || ^2.0",
- "psr/log": "^1.1 || ^2 || ^3",
- "symfony/finder": "^4.2 || ^5.0"
+ "ext-mbstring": "*",
+ "nikic/php-parser": "^4.2.3 || ^5.0.0",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "phpstan/phpstan": "^1.10.21"
},
"require-dev": {
- "composer/composer": "^2.1",
- "ext-ds": "*",
- "ext-zend-opcache": "*",
- "jangregor/phpstan-prophecy": "^0.8.1",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/phpstan": "^0.12.99",
- "phpunit/phpunit": "^9.5.10",
- "roave/security-advisories": "dev-master",
- "squizlabs/php_codesniffer": "^3.6"
+ "doctrine/orm": "^3.0.0",
+ "ergebnis/composer-normalize": "^2.42.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.22.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.10.0",
+ "nette/di": "^3.2.0",
+ "phpstan/phpstan-deprecation-rules": "^1.1.4",
+ "phpstan/phpstan-strict-rules": "^1.5.2",
+ "phpunit/phpunit": "^10.5.10",
+ "psalm/plugin-phpunit": "~0.18.4",
+ "psr/container": "^2.0.2",
+ "rector/rector": "^1.0.0",
+ "vimeo/psalm": "^5.21.1"
},
- "bin": [
- "bin/composer-unused"
- ],
- "type": "composer-plugin",
+ "type": "phpstan-extension",
"extra": {
- "class": "Icanhazstring\\Composer\\Unused\\UnusedPlugin"
+ "phpstan": {
+ "includes": [
+ "rules.neon"
+ ]
+ }
},
"autoload": {
"psr-4": {
- "Icanhazstring\\Composer\\Unused\\": "src"
+ "Ergebnis\\PHPStan\\Rules\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3056,337 +2856,481 @@
],
"authors": [
{
- "name": "Andreas Frรถmer",
- "email": "blubb0r05+github@gmail.com"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "Show unused packages by scanning your code",
- "homepage": "https://github.com/composer-unused/composer-unused",
+ "description": "Provides rules for phpstan/phpstan.",
+ "homepage": "https://github.com/ergebnis/phpstan-rules",
"keywords": [
- "composer",
- "php-parser",
- "plugin",
- "unused"
+ "PHPStan",
+ "phpstan-rules"
],
"support": {
- "issues": "https://github.com/composer-unused/composer-unused/issues",
- "source": "https://github.com/composer-unused/composer-unused"
+ "issues": "https://github.com/ergebnis/phpstan-rules/issues",
+ "security": "https://github.com/ergebnis/phpstan-rules/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/phpstan-rules"
},
- "funding": [
- {
- "url": "https://github.com/sponsors/icanhazstring",
- "type": "github"
- },
- {
- "url": "https://paypal.me/icanhazstring",
- "type": "other"
- }
- ],
- "time": "2021-12-16T21:59:44+00:00"
+ "time": "2024-02-07T17:49:28+00:00"
},
{
- "name": "infection/abstract-testframework-adapter",
- "version": "0.3.1",
+ "name": "ergebnis/phpunit-slow-test-detector",
+ "version": "2.14.0",
"source": {
"type": "git",
- "url": "https://github.com/infection/abstract-testframework-adapter.git",
- "reference": "c52539339f28d6b67625ff24496289b3e6d66025"
+ "url": "https://github.com/ergebnis/phpunit-slow-test-detector.git",
+ "reference": "9138b0ebffdd2c579eb4b0567ef3bef8c714fdc2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/abstract-testframework-adapter/zipball/c52539339f28d6b67625ff24496289b3e6d66025",
- "reference": "c52539339f28d6b67625ff24496289b3e6d66025",
+ "url": "https://api.github.com/repos/ergebnis/phpunit-slow-test-detector/zipball/9138b0ebffdd2c579eb4b0567ef3bef8c714fdc2",
+ "reference": "9138b0ebffdd2c579eb4b0567ef3bef8c714fdc2",
"shasum": ""
},
"require": {
- "php": "^7.3 || ^8.0"
+ "php": "~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
+ "phpunit/phpunit": "^6.5.0 || ^7.5.0 || ^8.5.19 || ^9.0.0 || ^10.0.0 || ^11.0.0"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.8",
- "friendsofphp/php-cs-fixer": "^2.16",
- "phpunit/phpunit": "^9.0"
+ "ergebnis/composer-normalize": "^2.42.0",
+ "ergebnis/license": "^2.4.0",
+ "ergebnis/php-cs-fixer-config": "^6.25.1",
+ "fakerphp/faker": "~1.20.0",
+ "psalm/plugin-phpunit": "~0.19.0",
+ "psr/container": "~1.0.0",
+ "rector/rector": "^1.0.4",
+ "vimeo/psalm": "^5.23.1"
},
"type": "library",
+ "extra": {
+ "composer-normalize": {
+ "indent-size": 2,
+ "indent-style": "space"
+ }
+ },
"autoload": {
"psr-4": {
- "Infection\\AbstractTestFramework\\": "src/"
+ "Ergebnis\\PHPUnit\\SlowTestDetector\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Maks Rafalko",
- "email": "maks.rafalko@gmail.com"
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
}
],
- "description": "Abstract Test Framework Adapter for Infection",
+ "description": "Provides facilities for detecting slow tests in phpunit/phpunit.",
+ "homepage": "https://github.com/ergebnis/phpunit-slow-test-detector",
+ "keywords": [
+ "detector",
+ "extension",
+ "phpunit",
+ "slow",
+ "test"
+ ],
"support": {
- "issues": "https://github.com/infection/abstract-testframework-adapter/issues",
- "source": "https://github.com/infection/abstract-testframework-adapter/tree/0.3"
+ "issues": "https://github.com/ergebnis/phpunit-slow-test-detector/issues",
+ "security": "https://github.com/ergebnis/phpunit-slow-test-detector/blob/main/.github/SECURITY.md",
+ "source": "https://github.com/ergebnis/phpunit-slow-test-detector"
},
- "time": "2020-08-30T13:50:12+00:00"
+ "time": "2024-04-08T06:35:34+00:00"
},
{
- "name": "infection/extension-installer",
- "version": "0.1.2",
+ "name": "felixfbecker/advanced-json-rpc",
+ "version": "v3.2.1",
"source": {
"type": "git",
- "url": "https://github.com/infection/extension-installer.git",
- "reference": "9b351d2910b9a23ab4815542e93d541e0ca0cdcf"
+ "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/extension-installer/zipball/9b351d2910b9a23ab4815542e93d541e0ca0cdcf",
- "reference": "9b351d2910b9a23ab4815542e93d541e0ca0cdcf",
+ "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
+ "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.1 || ^2.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": {
- "composer/composer": "^1.9 || ^2.0",
- "friendsofphp/php-cs-fixer": "^2.18, <2.19",
- "infection/infection": "^0.15.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": "^9.5",
- "vimeo/psalm": "^4.8"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Infection\\ExtensionInstaller\\Plugin"
+ "phpunit/phpunit": "^7.0 || ^8.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Infection\\ExtensionInstaller\\": "src/"
+ "AdvancedJsonRpc\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "ISC"
],
"authors": [
{
- "name": "Maks Rafalko",
- "email": "maks.rafalko@gmail.com"
+ "name": "Felix Becker",
+ "email": "felix.b@outlook.com"
}
],
- "description": "Infection Extension Installer",
+ "description": "A more advanced JSONRPC implementation",
"support": {
- "issues": "https://github.com/infection/extension-installer/issues",
- "source": "https://github.com/infection/extension-installer/tree/0.1.2"
+ "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
+ "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
},
- "funding": [
- {
- "url": "https://github.com/infection",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/infection",
- "type": "open_collective"
- }
- ],
- "time": "2021-10-20T22:08:34+00:00"
+ "time": "2021-06-11T22:34:44+00:00"
},
{
- "name": "infection/include-interceptor",
- "version": "0.2.5",
+ "name": "felixfbecker/language-server-protocol",
+ "version": "v1.5.2",
"source": {
"type": "git",
- "url": "https://github.com/infection/include-interceptor.git",
- "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7"
+ "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/include-interceptor/zipball/0cc76d95a79d9832d74e74492b0a30139904bdf7",
- "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7",
+ "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
"shasum": ""
},
+ "require": {
+ "php": ">=7.1"
+ },
"require-dev": {
- "friendsofphp/php-cs-fixer": "^2.16",
- "infection/infection": "^0.15.0",
- "phan/phan": "^2.4 || ^3",
- "php-coveralls/php-coveralls": "^2.2",
- "phpstan/phpstan": "^0.12.8",
- "phpunit/phpunit": "^8.5",
- "vimeo/psalm": "^3.8"
+ "phpstan/phpstan": "*",
+ "squizlabs/php_codesniffer": "^3.1",
+ "vimeo/psalm": "^4.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "Infection\\StreamWrapper\\": "src/"
+ "LanguageServerProtocol\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "ISC"
],
"authors": [
{
- "name": "Maks Rafalko",
- "email": "maks.rafalko@gmail.com"
+ "name": "Felix Becker",
+ "email": "felix.b@outlook.com"
}
],
- "description": "Stream Wrapper: Include Interceptor. Allows to replace included (autoloaded) file with another one.",
+ "description": "PHP classes for the Language Server Protocol",
+ "keywords": [
+ "language",
+ "microsoft",
+ "php",
+ "server"
+ ],
"support": {
- "issues": "https://github.com/infection/include-interceptor/issues",
- "source": "https://github.com/infection/include-interceptor/tree/0.2.5"
+ "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
+ "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": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theofidry/cpu-core-counter.git",
+ "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
+ "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "fidry/makefile": "^0.2.0",
+ "fidry/php-cs-fixer-config": "^1.1.2",
+ "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": "^8.5.31 || ^9.5.26",
+ "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/1.1.0"
},
"funding": [
{
- "url": "https://github.com/infection",
+ "url": "https://github.com/theofidry",
"type": "github"
- },
+ }
+ ],
+ "time": "2024-02-07T09:43:46+00:00"
+ },
+ {
+ "name": "filp/whoops",
+ "version": "2.15.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/filp/whoops.git",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
+ },
+ "dist": {
+ "type": "zip",
+ "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 || ^2.0 || ^3.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^0.9 || ^1.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
+ },
+ "suggest": {
+ "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+ "whoops/soap": "Formats errors as SOAP responses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Whoops\\": "src/Whoops/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
{
- "url": "https://opencollective.com/infection",
- "type": "open_collective"
+ "name": "Filipe Dobreira",
+ "homepage": "https://github.com/filp",
+ "role": "Developer"
}
],
- "time": "2021-08-09T10:03:57+00:00"
+ "description": "php error handling for cool kids",
+ "homepage": "https://filp.github.io/whoops/",
+ "keywords": [
+ "error",
+ "exception",
+ "handling",
+ "library",
+ "throwable",
+ "whoops"
+ ],
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.15.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-03T12:00:00+00:00"
},
{
- "name": "infection/infection",
- "version": "0.20.2",
+ "name": "guzzlehttp/guzzle",
+ "version": "7.8.1",
"source": {
"type": "git",
- "url": "https://github.com/infection/infection.git",
- "reference": "6035c1566af6a5a8d833a276351e5e18ed412305"
+ "url": "https://github.com/guzzle/guzzle.git",
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/infection/infection/zipball/6035c1566af6a5a8d833a276351e5e18ed412305",
- "reference": "6035c1566af6a5a8d833a276351e5e18ed412305",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
+ "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
"shasum": ""
},
"require": {
- "composer/xdebug-handler": "^1.3.3",
- "ext-dom": "*",
"ext-json": "*",
- "ext-libxml": "*",
- "infection/abstract-testframework-adapter": "^0.3.1",
- "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"
+ "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
+ "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-client": "^1.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
},
- "conflict": {
- "phpunit/php-code-coverage": ">9 <9.1.4",
- "symfony/console": "=4.1.5"
+ "provide": {
+ "psr/http-client-implementation": "1.0"
},
"require-dev": {
- "ext-simplexml": "*",
- "helmich/phpunit-json-assert": "^3.0",
- "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"
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-curl": "*",
+ "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",
+ "ext-intl": "Required for Internationalized Domain Name (IDN) support",
+ "psr/log": "Required for using the Log middleware"
},
- "bin": [
- "bin/infection"
- ],
"type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
"autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
"psr-4": {
- "Infection\\": "src/"
+ "GuzzleHttp\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Maks Rafalko",
- "email": "maks.rafalko@gmail.com",
- "homepage": "https://twitter.com/maks_rafalko"
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
},
{
- "name": "Oleg Zhulnev",
- "homepage": "https://github.com/sidz"
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
},
{
- "name": "Gert de Pagter",
- "homepage": "https://github.com/BackEndTea"
+ "name": "Jeremy Lindblom",
+ "email": "jeremeamia@gmail.com",
+ "homepage": "https://github.com/jeremeamia"
},
{
- "name": "Thรฉo FIDRY",
- "email": "theo.fidry@gmail.com",
- "homepage": "https://twitter.com/tfidry"
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
},
{
- "name": "Alexey Kopytko",
- "email": "alexey@kopytko.com",
- "homepage": "https://www.alexeykopytko.com"
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
},
{
- "name": "Andreas Mรถller",
- "email": "am@localheinz.com",
- "homepage": "https://localheinz.com"
+ "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"
}
],
- "description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
+ "description": "Guzzle is a PHP HTTP client library",
"keywords": [
- "coverage",
- "mutant",
- "mutation framework",
- "mutation testing",
- "testing",
- "unit testing"
+ "client",
+ "curl",
+ "framework",
+ "http",
+ "http client",
+ "psr-18",
+ "psr-7",
+ "rest",
+ "web service"
],
"support": {
- "issues": "https://github.com/infection/infection/issues",
- "source": "https://github.com/infection/infection/tree/0.20.2"
+ "issues": "https://github.com/guzzle/guzzle/issues",
+ "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
},
- "time": "2020-11-20T17:15:57+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/guzzle",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-12-03T20:35:24+00:00"
},
{
- "name": "jakobbuis/simple-slow-test-reporter",
- "version": "v1.0.0",
+ "name": "guzzlehttp/promises",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/jakobbuis/simple-slow-test-reporter.git",
- "reference": "7111cb24f4670ca455f5578710022311f78ef1c4"
+ "url": "https://github.com/guzzle/promises.git",
+ "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jakobbuis/simple-slow-test-reporter/zipball/7111cb24f4670ca455f5578710022311f78ef1c4",
- "reference": "7111cb24f4670ca455f5578710022311f78ef1c4",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
+ "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
"shasum": ""
},
"require": {
- "phpunit/phpunit": "^9.0"
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15"
},
"type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
"autoload": {
"psr-4": {
- "SSTR\\": "src/"
+ "GuzzleHttp\\Promise\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3395,57 +3339,2291 @@
],
"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"
+ "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",
+ "keywords": [
+ "promise"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/promises/issues",
+ "source": "https://github.com/guzzle/promises/tree/2.0.2"
+ },
+ "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": "2.6.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
+ "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
+ "shasum": ""
+ },
+ "require": {
+ "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": {
+ "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": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Psr7\\": "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": "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",
+ "keywords": [
+ "http",
+ "message",
+ "psr-7",
+ "request",
+ "response",
+ "stream",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/psr7/issues",
+ "source": "https://github.com/guzzle/psr7/tree/2.6.2"
+ },
+ "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": "hamcrest/hamcrest-php",
+ "version": "v2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hamcrest/hamcrest-php.git",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3|^7.0|^8.0"
+ },
+ "replace": {
+ "cordoval/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "kodova/hamcrest-php": "*"
+ },
+ "require-dev": {
+ "phpunit/php-file-iterator": "^1.4 || ^2.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "hamcrest"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "This is the PHP port of Hamcrest Matchers",
+ "keywords": [
+ "test"
+ ],
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
+ },
+ "time": "2020-07-09T08:09:16+00:00"
+ },
+ {
+ "name": "icanhazstring/composer-unused",
+ "version": "0.8.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer-unused/composer-unused.git",
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/4720206edc29a7da1913ece0e508f6d82fbcd905",
+ "reference": "4720206edc29a7da1913ece0e508f6d82fbcd905",
+ "shasum": ""
+ },
+ "require": {
+ "composer-unused/contracts": "^0.3",
+ "composer-unused/symbol-parser": "^0.2.1",
+ "ext-json": "*",
+ "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": "^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.7"
+ },
+ "bin": [
+ "bin/composer-unused"
+ ],
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": true
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "ComposerUnused\\ComposerUnused\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Andreas Frรถmer",
+ "email": "composer-unused@icanhazstring.com"
+ }
+ ],
+ "description": "Show unused packages by scanning your code",
+ "homepage": "https://github.com/composer-unused/composer-unused",
+ "keywords": [
+ "composer",
+ "php-parser",
+ "static analysis",
+ "unused"
+ ],
+ "support": {
+ "issues": "https://github.com/composer-unused/composer-unused/issues",
+ "source": "https://github.com/composer-unused/composer-unused"
+ },
+ "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.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/infection/abstract-testframework-adapter.git",
+ "reference": "18925e20d15d1a5995bb85c9dc09e8751e1e069b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/infection/abstract-testframework-adapter/zipball/18925e20d15d1a5995bb85c9dc09e8751e1e069b",
+ "reference": "18925e20d15d1a5995bb85c9dc09e8751e1e069b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.8",
+ "friendsofphp/php-cs-fixer": "^2.17",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Infection\\AbstractTestFramework\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Maks Rafalko",
+ "email": "maks.rafalko@gmail.com"
+ }
+ ],
+ "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.5.0"
+ },
+ "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.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/infection/extension-installer.git",
+ "reference": "9b351d2910b9a23ab4815542e93d541e0ca0cdcf"
+ },
+ "dist": {
+ "type": "zip",
+ "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 || ^2.0",
+ "friendsofphp/php-cs-fixer": "^2.18, <2.19",
+ "infection/infection": "^0.15.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": "^9.5",
+ "vimeo/psalm": "^4.8"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Infection\\ExtensionInstaller\\Plugin"
+ },
+ "autoload": {
+ "psr-4": {
+ "Infection\\ExtensionInstaller\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Maks Rafalko",
+ "email": "maks.rafalko@gmail.com"
+ }
+ ],
+ "description": "Infection Extension Installer",
+ "support": {
+ "issues": "https://github.com/infection/extension-installer/issues",
+ "source": "https://github.com/infection/extension-installer/tree/0.1.2"
+ },
+ "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.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/infection/include-interceptor.git",
+ "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/infection/include-interceptor/zipball/0cc76d95a79d9832d74e74492b0a30139904bdf7",
+ "reference": "0cc76d95a79d9832d74e74492b0a30139904bdf7",
+ "shasum": ""
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.16",
+ "infection/infection": "^0.15.0",
+ "phan/phan": "^2.4 || ^3",
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpstan/phpstan": "^0.12.8",
+ "phpunit/phpunit": "^8.5",
+ "vimeo/psalm": "^3.8"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Infection\\StreamWrapper\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Maks Rafalko",
+ "email": "maks.rafalko@gmail.com"
+ }
+ ],
+ "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.5"
+ },
+ "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.27.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/infection/infection.git",
+ "reference": "873cd3335774a114bef9ca93388e623bf362d820"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/infection/infection/zipball/873cd3335774a114bef9ca93388e623bf362d820",
+ "reference": "873cd3335774a114bef9ca93388e623bf362d820",
+ "shasum": ""
+ },
+ "require": {
+ "colinodell/json5": "^2.2",
+ "composer-runtime-api": "^2.0",
+ "composer/xdebug-handler": "^2.0 || ^3.0",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "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.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 || ^6.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": {
+ "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.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"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Infection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Maks Rafalko",
+ "email": "maks.rafalko@gmail.com",
+ "homepage": "https://twitter.com/maks_rafalko"
+ },
+ {
+ "name": "Oleg Zhulnev",
+ "homepage": "https://github.com/sidz"
+ },
+ {
+ "name": "Gert de Pagter",
+ "homepage": "https://github.com/BackEndTea"
+ },
+ {
+ "name": "Thรฉo FIDRY",
+ "email": "theo.fidry@gmail.com",
+ "homepage": "https://twitter.com/tfidry"
+ },
+ {
+ "name": "Alexey Kopytko",
+ "email": "alexey@kopytko.com",
+ "homepage": "https://www.alexeykopytko.com"
+ },
+ {
+ "name": "Andreas Mรถller",
+ "email": "am@localheinz.com",
+ "homepage": "https://localheinz.com"
+ }
+ ],
+ "description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
+ "keywords": [
+ "coverage",
+ "mutant",
+ "mutation framework",
+ "mutation testing",
+ "testing",
+ "unit testing"
+ ],
+ "support": {
+ "issues": "https://github.com/infection/infection/issues",
+ "source": "https://github.com/infection/infection/tree/0.27.10"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/infection",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/infection",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2024-02-20T00:08:52+00:00"
+ },
+ {
+ "name": "jetbrains/phpstorm-stubs",
+ "version": "v2023.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/JetBrains/phpstorm-stubs.git",
+ "reference": "99d8bcab934ae5362f33660b1cd4b8c4d617c40b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/99d8bcab934ae5362f33660b1cd4b8c4d617c40b",
+ "reference": "99d8bcab934ae5362f33660b1cd4b8c4d617c40b",
+ "shasum": ""
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "@stable",
+ "nikic/php-parser": "@stable",
+ "php": "^8.0",
+ "phpdocumentor/reflection-docblock": "@stable",
+ "phpunit/phpunit": "^9.6"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "PhpStormStubsMap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "description": "PHP runtime & extensions header files for PhpStorm",
+ "homepage": "https://www.jetbrains.com/phpstorm",
+ "keywords": [
+ "autocomplete",
+ "code",
+ "inference",
+ "inspection",
+ "jetbrains",
+ "phpstorm",
+ "stubs",
+ "type"
+ ],
+ "support": {
+ "source": "https://github.com/JetBrains/phpstorm-stubs/tree/v2023.3"
+ },
+ "time": "2023-11-01T18:52:29+00:00"
+ },
+ {
+ "name": "justinrainbow/json-schema",
+ "version": "v5.2.13",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/justinrainbow/json-schema.git",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
+ "json-schema/json-schema-test-suite": "1.2.0",
+ "phpunit/phpunit": "^4.8.35"
+ },
+ "bin": [
+ "bin/validate-json"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "JsonSchema\\": "src/JsonSchema/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bruno Prieto Reis",
+ "email": "bruno.p.reis@gmail.com"
+ },
+ {
+ "name": "Justin Rainbow",
+ "email": "justin.rainbow@gmail.com"
+ },
+ {
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
+ },
+ {
+ "name": "Robert Schรถnthal",
+ "email": "seroscho@googlemail.com"
+ }
+ ],
+ "description": "A library to validate a json schema.",
+ "homepage": "https://github.com/justinrainbow/json-schema",
+ "keywords": [
+ "json",
+ "schema"
+ ],
+ "support": {
+ "issues": "https://github.com/justinrainbow/json-schema/issues",
+ "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
+ },
+ "time": "2023-09-26T02:20:38+00:00"
+ },
+ {
+ "name": "localheinz/diff",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/localheinz/diff.git",
+ "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c",
+ "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7.5 || ^8.0",
+ "symfony/process": "^4.2 || ^5"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize",
+ "homepage": "https://github.com/localheinz/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "source": "https://github.com/localheinz/diff/tree/main"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2020-07-06T04:49:32+00:00"
+ },
+ {
+ "name": "maglnet/composer-require-checker",
+ "version": "4.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/maglnet/ComposerRequireChecker.git",
+ "reference": "c6c555e799bee50810fd84933ca1f0b276379ccf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/c6c555e799bee50810fd84933ca1f0b276379ccf",
+ "reference": "c6c555e799bee50810fd84933ca1f0b276379ccf",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.0.0",
+ "ext-phar": "*",
+ "nikic/php-parser": "^4.19.1",
+ "php": "~8.2.0 || ~8.3.0",
+ "symfony/console": "^6.4.1 || ^7.0.1",
+ "webmozart/assert": "^1.11.0",
+ "webmozart/glob": "^4.7.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12.0.0",
+ "ext-zend-opcache": "*",
+ "phing/phing": "^2.17.4",
+ "phpstan/phpstan": "^1.10.66",
+ "phpunit/phpunit": "^10.5.16",
+ "psalm/plugin-phpunit": "^0.19.0",
+ "roave/infection-static-analysis-plugin": "^1.35.0",
+ "spatie/temporary-directory": "^2.2.1",
+ "vimeo/psalm": "^5.23.1"
+ },
+ "bin": [
+ "bin/composer-require-checker"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "ComposerRequireChecker\\": "src/ComposerRequireChecker"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "http://ocramius.github.io/"
+ },
+ {
+ "name": "Matthias Glaub",
+ "email": "magl@magl.net",
+ "homepage": "http://magl.net"
+ }
+ ],
+ "description": "CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package",
+ "homepage": "https://github.com/maglnet/ComposerRequireChecker",
+ "keywords": [
+ "analysis",
+ "cli",
+ "composer",
+ "dependency",
+ "imports",
+ "require",
+ "requirements"
+ ],
+ "support": {
+ "issues": "https://github.com/maglnet/ComposerRequireChecker/issues",
+ "source": "https://github.com/maglnet/ComposerRequireChecker/tree/4.11.0"
+ },
+ "time": "2024-04-01T20:24:52+00:00"
+ },
+ {
+ "name": "marc-mabe/php-enum",
+ "version": "v4.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/marc-mabe/php-enum.git",
+ "reference": "3da42cc1daceaf98c858e56f59d1ccd52b011fdc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/marc-mabe/php-enum/zipball/3da42cc1daceaf98c858e56f59d1ccd52b011fdc",
+ "reference": "3da42cc1daceaf98c858e56f59d1ccd52b011fdc",
+ "shasum": ""
+ },
+ "require": {
+ "ext-reflection": "*",
+ "php": "^7.1 | ^8.0"
+ },
+ "require-dev": {
+ "phpbench/phpbench": "^0.16.10 || ^1.0.4",
+ "phpstan/phpstan": "^1.3.1",
+ "phpunit/phpunit": "^7.5.20 | ^8.5.22 | ^9.5.11",
+ "vimeo/psalm": "^4.17.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.6-dev",
+ "dev-3.x": "3.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "MabeEnum\\": "src/"
+ },
+ "classmap": [
+ "stubs/Stringable.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Marc Bennewitz",
+ "email": "dev@mabe.berlin",
+ "homepage": "https://mabe.berlin/",
+ "role": "Lead"
+ }
+ ],
+ "description": "Simple and fast implementation of enumerations with native PHP",
+ "homepage": "https://github.com/marc-mabe/php-enum",
+ "keywords": [
+ "enum",
+ "enum-map",
+ "enum-set",
+ "enumeration",
+ "enumerator",
+ "enummap",
+ "enumset",
+ "map",
+ "set",
+ "type",
+ "type-hint",
+ "typehint"
+ ],
+ "support": {
+ "issues": "https://github.com/marc-mabe/php-enum/issues",
+ "source": "https://github.com/marc-mabe/php-enum/tree/v4.7.0"
+ },
+ "time": "2022-04-19T02:21:46+00:00"
+ },
+ {
+ "name": "mockery/mockery",
+ "version": "1.6.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mockery/mockery.git",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "shasum": ""
+ },
+ "require": {
+ "hamcrest/hamcrest-php": "^2.0.1",
+ "lib-pcre": ">=7.0",
+ "php": ">=7.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5 || ^9.6.17",
+ "symplify/easy-coding-standard": "^12.1.14"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "library/helpers.php",
+ "library/Mockery.php"
+ ],
+ "psr-4": {
+ "Mockery\\": "library/Mockery"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Pรกdraic Brady",
+ "email": "padraic.brady@gmail.com",
+ "homepage": "https://github.com/padraic",
+ "role": "Author"
+ },
+ {
+ "name": "Dave Marshall",
+ "email": "dave.marshall@atstsolutions.co.uk",
+ "homepage": "https://davedevelopment.co.uk",
+ "role": "Developer"
+ },
+ {
+ "name": "Nathanael Esayeas",
+ "email": "nathanael.esayeas@protonmail.com",
+ "homepage": "https://github.com/ghostwriter",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Mockery is a simple yet flexible PHP mock object framework",
+ "homepage": "https://github.com/mockery/mockery",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "library",
+ "mock",
+ "mock objects",
+ "mockery",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "docs": "https://docs.mockery.io/",
+ "issues": "https://github.com/mockery/mockery/issues",
+ "rss": "https://github.com/mockery/mockery/releases.atom",
+ "security": "https://github.com/mockery/mockery/security/advisories",
+ "source": "https://github.com/mockery/mockery"
+ },
+ "time": "2024-05-16T03:13:13+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.11.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "doctrine/collections": "<1.6.8",
+ "doctrine/common": "<2.13.3 || >=3,<3.2.2"
+ },
+ "require-dev": {
+ "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": {
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ],
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Create deep copies (clones) of your objects",
+ "keywords": [
+ "clone",
+ "copy",
+ "duplicate",
+ "object",
+ "object graph"
+ ],
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-03-08T13:26:56+00:00"
+ },
+ {
+ "name": "netresearch/jsonmapper",
+ "version": "v4.4.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/cweiske/jsonmapper.git",
+ "reference": "132c75c7dd83e45353ebb9c6c9f591952995bbf0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/132c75c7dd83e45353ebb9c6c9f591952995bbf0",
+ "reference": "132c75c7dd83e45353ebb9c6c9f591952995bbf0",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-reflection": "*",
+ "ext-spl": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
+ "squizlabs/php_codesniffer": "~3.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "JsonMapper": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "OSL-3.0"
+ ],
+ "authors": [
+ {
+ "name": "Christian Weiske",
+ "email": "cweiske@cweiske.de",
+ "homepage": "http://github.com/cweiske/jsonmapper/",
+ "role": "Developer"
+ }
+ ],
+ "description": "Map nested JSON structures onto PHP classes",
+ "support": {
+ "email": "cweiske@cweiske.de",
+ "issues": "https://github.com/cweiske/jsonmapper/issues",
+ "source": "https://github.com/cweiske/jsonmapper/tree/v4.4.1"
+ },
+ "time": "2024-01-31T06:18:54+00:00"
+ },
+ {
+ "name": "nette/di",
+ "version": "v3.1.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/di.git",
+ "reference": "2645ec3eaa17fa2ab87c5eb4eaacb1fe6dd28284"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/di/zipball/2645ec3eaa17fa2ab87c5eb4eaacb1fe6dd28284",
+ "reference": "2645ec3eaa17fa2ab87c5eb4eaacb1fe6dd28284",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "nette/neon": "^3.3 || ^4.0",
+ "nette/php-generator": "^3.5.4 || ^4.0",
+ "nette/robot-loader": "^3.2 || ~4.0.0",
+ "nette/schema": "^1.2.5",
+ "nette/utils": "^3.2.5 || ~4.0.0",
+ "php": "7.2 - 8.3"
+ },
+ "require-dev": {
+ "nette/tester": "^2.4",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP features.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "compiled",
+ "di",
+ "dic",
+ "factory",
+ "ioc",
+ "nette",
+ "static"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/di/issues",
+ "source": "https://github.com/nette/di/tree/v3.1.10"
+ },
+ "time": "2024-02-06T01:19:44+00:00"
+ },
+ {
+ "name": "nette/finder",
+ "version": "v2.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/finder.git",
+ "reference": "991aefb42860abeab8e003970c3809a9d83cb932"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/finder/zipball/991aefb42860abeab8e003970c3809a9d83cb932",
+ "reference": "991aefb42860abeab8e003970c3809a9d83cb932",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^2.4 || ^3.0",
+ "php": ">=7.1"
+ },
+ "conflict": {
+ "nette/nette": "<2.2"
+ },
+ "require-dev": {
+ "nette/tester": "^2.0",
+ "phpstan/phpstan": "^0.12",
+ "tracy/tracy": "^2.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.6-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette Finder: find files and directories with an intuitive API.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "filesystem",
+ "glob",
+ "iterator",
+ "nette"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/finder/issues",
+ "source": "https://github.com/nette/finder/tree/v2.6.0"
+ },
+ "time": "2022-10-13T01:31:15+00:00"
+ },
+ {
+ "name": "nette/neon",
+ "version": "v3.4.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/neon.git",
+ "reference": "457bfbf0560f600b30d9df4233af382a478bb44d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/neon/zipball/457bfbf0560f600b30d9df4233af382a478bb44d",
+ "reference": "457bfbf0560f600b30d9df4233af382a478bb44d",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "php": "8.0 - 8.3"
+ },
+ "require-dev": {
+ "nette/tester": "^2.4",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.7"
+ },
+ "bin": [
+ "bin/neon-lint"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ธ Nette NEON: encodes and decodes NEON file format.",
+ "homepage": "https://ne-on.org",
+ "keywords": [
+ "export",
+ "import",
+ "neon",
+ "nette",
+ "yaml"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/neon/issues",
+ "source": "https://github.com/nette/neon/tree/v3.4.1"
+ },
+ "time": "2023-09-27T08:59:11+00:00"
+ },
+ {
+ "name": "nette/php-generator",
+ "version": "v4.1.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/php-generator.git",
+ "reference": "690b00d81d42d5633e4457c43ef9754573b6f9d6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/php-generator/zipball/690b00d81d42d5633e4457c43ef9754573b6f9d6",
+ "reference": "690b00d81d42d5633e4457c43ef9754573b6f9d6",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^3.2.9 || ^4.0",
+ "php": "8.0 - 8.3"
+ },
+ "require-dev": {
+ "jetbrains/phpstorm-attributes": "dev-master",
+ "nette/tester": "^2.4",
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.8"
+ },
+ "suggest": {
+ "nikic/php-parser": "to use ClassType::from(withBodies: true) & ClassType::fromCode()"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.3 features.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "code",
+ "nette",
+ "php",
+ "scaffolding"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/php-generator/issues",
+ "source": "https://github.com/nette/php-generator/tree/v4.1.5"
+ },
+ "time": "2024-05-12T17:31:02+00:00"
+ },
+ {
+ "name": "nette/robot-loader",
+ "version": "v3.4.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/robot-loader.git",
+ "reference": "970c8f82be98ec54180c88a468cd2b057855d993"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/robot-loader/zipball/970c8f82be98ec54180c88a468cd2b057855d993",
+ "reference": "970c8f82be98ec54180c88a468cd2b057855d993",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "nette/finder": "^2.5 || ^3.0",
+ "nette/utils": "^3.0",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "nette/tester": "^2.0",
+ "phpstan/phpstan": "^0.12",
+ "tracy/tracy": "^2.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "autoload",
+ "class",
+ "interface",
+ "nette",
+ "trait"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/robot-loader/issues",
+ "source": "https://github.com/nette/robot-loader/tree/v3.4.2"
+ },
+ "time": "2022-12-14T15:41:06+00:00"
+ },
+ {
+ "name": "nette/schema",
+ "version": "v1.2.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/schema.git",
+ "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
+ "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
+ "php": "7.1 - 8.3"
+ },
+ "require-dev": {
+ "nette/tester": "^2.3 || ^2.4",
+ "phpstan/phpstan-nette": "^1.0",
+ "tracy/tracy": "^2.7"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette Schema: validating data structures against a given Schema.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "config",
+ "nette"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/schema/issues",
+ "source": "https://github.com/nette/schema/tree/v1.2.5"
+ },
+ "time": "2023-10-05T20:37:59+00:00"
+ },
+ {
+ "name": "nette/utils",
+ "version": "v3.2.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/utils.git",
+ "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
+ "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2 <8.4"
+ },
+ "conflict": {
+ "nette/di": "<3.0.6"
+ },
+ "require-dev": {
+ "jetbrains/phpstorm-attributes": "dev-master",
+ "nette/tester": "~2.0",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.3"
+ },
+ "suggest": {
+ "ext-gd": "to use Image",
+ "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
+ "ext-json": "to use Nette\\Utils\\Json",
+ "ext-mbstring": "to use Strings::lower() etc...",
+ "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
+ "ext-xml": "to use Strings::length() etc. when mbstring is not available"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "๐ Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "array",
+ "core",
+ "datetime",
+ "images",
+ "json",
+ "nette",
+ "paginator",
+ "password",
+ "slugify",
+ "string",
+ "unicode",
+ "utf-8",
+ "utility",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/utils/issues",
+ "source": "https://github.com/nette/utils/tree/v3.2.10"
+ },
+ "time": "2023-07-30T15:38:18+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v4.19.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
+ "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
+ },
+ "time": "2024-03-17T08:10:35+00:00"
+ },
+ {
+ "name": "nikolaposa/version",
+ "version": "4.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikolaposa/version.git",
+ "reference": "003fefa14f47cd44917546285e39d196af062a95"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikolaposa/version/zipball/003fefa14f47cd44917546285e39d196af062a95",
+ "reference": "003fefa14f47cd44917546285e39d196af062a95",
+ "shasum": ""
+ },
+ "require": {
+ "beberlei/assert": "^3.2",
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.44",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-beberlei-assert": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^10.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Version\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nikola Poลกa",
+ "email": "posa.nikola@gmail.com",
+ "homepage": "https://www.nikolaposa.in.rs"
+ }
+ ],
+ "description": "Value Object that represents a SemVer-compliant version number.",
+ "homepage": "https://github.com/nikolaposa/version",
+ "keywords": [
+ "semantic",
+ "semver",
+ "version",
+ "versioning"
+ ],
+ "support": {
+ "issues": "https://github.com/nikolaposa/version/issues",
+ "source": "https://github.com/nikolaposa/version/tree/4.2.0"
+ },
+ "time": "2023-12-29T22:07:54+00:00"
+ },
+ {
+ "name": "nunomaduro/collision",
+ "version": "v7.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/collision.git",
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
+ "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
+ "shasum": ""
+ },
+ "require": {
+ "filp/whoops": "^2.15.3",
+ "nunomaduro/termwind": "^1.15.1",
+ "php": "^8.1.0",
+ "symfony/console": "^6.3.4"
+ },
+ "conflict": {
+ "laravel/framework": ">=11.0.0"
+ },
+ "require-dev": {
+ "brianium/paratest": "^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": {
+ "laravel": {
+ "providers": [
+ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
+ "psr-4": {
+ "NunoMaduro\\Collision\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Cli error handling for console/command-line PHP applications.",
+ "keywords": [
+ "artisan",
+ "cli",
+ "command-line",
+ "console",
+ "error",
+ "handling",
+ "laravel",
+ "laravel-zero",
+ "php",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2023-10-11T15:45:01+00:00"
+ },
+ {
+ "name": "nunomaduro/termwind",
+ "version": "v1.15.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+ "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": "^8.0",
+ "symfony/console": "^5.3.0|^6.0.0"
+ },
+ "require-dev": {
+ "ergebnis/phpstan-rules": "^1.0.",
+ "illuminate/console": "^8.0|^9.0",
+ "illuminate/support": "^8.0|^9.0",
+ "laravel/pint": "^1.0.0",
+ "pestphp/pest": "^1.21.0",
+ "pestphp/pest-plugin-mock": "^1.0",
+ "phpstan/phpstan": "^1.4.6",
+ "phpstan/phpstan-strict-rules": "^1.1.0",
+ "symfony/var-dumper": "^5.2.7|^6.0.0",
+ "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Termwind\\Laravel\\TermwindServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php"
+ ],
+ "psr-4": {
+ "Termwind\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Its like Tailwind CSS, but for the console.",
+ "keywords": [
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/xiCO2k",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-08T01:06:31+00:00"
+ },
+ {
+ "name": "ocramius/package-versions",
+ "version": "2.8.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Ocramius/PackageVersions.git",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
+ "reference": "7b5821f854cf1e6753c4ed7ceb3b11ae83bbad4e",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.2.0",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
+ },
+ "replace": {
+ "composer/package-versions-deprecated": "*"
+ },
+ "require-dev": {
+ "composer/composer": "^2.6.3",
+ "doctrine/coding-standard": "^12.0.0",
+ "ext-zip": "^1.15.0",
+ "phpunit/phpunit": "^9.6.12",
+ "roave/infection-static-analysis-plugin": "^1.33",
+ "vimeo/psalm": "^5.15.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PackageVersions\\": "src/PackageVersions"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Provides efficient querying for installed package versions (no runtime IO)",
+ "support": {
+ "issues": "https://github.com/Ocramius/PackageVersions/issues",
+ "source": "https://github.com/Ocramius/PackageVersions/tree/2.8.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Ocramius",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ocramius/package-versions",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-09-15T11:02:59+00:00"
+ },
+ {
+ "name": "ondram/ci-detector",
+ "version": "4.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/OndraM/ci-detector.git",
+ "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8",
+ "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.13.2",
+ "lmc/coding-standard": "^3.0.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.1.0",
+ "phpstan/phpstan": "^1.2.0",
+ "phpstan/phpstan-phpunit": "^1.0.0",
+ "phpunit/phpunit": "^9.6.13"
+ },
+ "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": "Detect continuous integration environment and provide unified access to properties of current build",
+ "keywords": [
+ "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.2.0"
+ },
+ "time": "2024-03-12T13:22:30+00:00"
+ },
+ {
+ "name": "orklah/psalm-insane-comparison",
+ "version": "v2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/orklah/psalm-insane-comparison.git",
+ "reference": "d9e608e787e5ae1c994ae07095eea26029d6d0bd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/orklah/psalm-insane-comparison/zipball/d9e608e787e5ae1c994ae07095eea26029d6d0bd",
+ "reference": "d9e608e787e5ae1c994ae07095eea26029d6d0bd",
+ "shasum": ""
+ },
+ "require": {
+ "ext-simplexml": "*",
+ "php": "^7.3|^8.0",
+ "vimeo/psalm": "^4|^5|dev-master"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^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/orklah/psalm-insane-comparison/issues",
+ "source": "https://github.com/orklah/psalm-insane-comparison/tree/v2.3.0"
+ },
+ "time": "2024-03-20T21:49:45+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "2.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-phar": "*",
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "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/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:33:53+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "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/3.2.1"
},
- "time": "2020-12-26T16:20:53+00:00"
+ "time": "2022-02-21T01:04:05+00:00"
},
{
- "name": "jangregor/phpstan-prophecy",
- "version": "0.8.1",
+ "name": "php-coveralls/php-coveralls",
+ "version": "v2.7.0",
"source": {
"type": "git",
- "url": "https://github.com/Jan0707/phpstan-prophecy.git",
- "reference": "f01ca476840c370bbf9c224aed25fca60eecca9d"
+ "url": "https://github.com/php-coveralls/php-coveralls.git",
+ "reference": "b36fa4394e519dafaddc04ae03976bc65a25ba15"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Jan0707/phpstan-prophecy/zipball/f01ca476840c370bbf9c224aed25fca60eecca9d",
- "reference": "f01ca476840c370bbf9c224aed25fca60eecca9d",
+ "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/b36fa4394e519dafaddc04ae03976bc65a25ba15",
+ "reference": "b36fa4394e519dafaddc04ae03976bc65a25ba15",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.6"
- },
- "conflict": {
- "phpspec/prophecy": "<1.7.0,>=2.0.0",
- "phpunit/phpunit": "<6.0.0,>=10.0.0"
+ "ext-json": "*",
+ "ext-simplexml": "*",
+ "guzzlehttp/guzzle": "^6.0 || ^7.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": {
- "ergebnis/composer-normalize": "^2.1.1",
- "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"
+ "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"
},
- "type": "phpstan-extension",
- "extra": {
- "phpstan": {
- "includes": [
- "extension.neon"
- ]
- }
+ "suggest": {
+ "symfony/http-kernel": "Allows Symfony integration"
},
+ "bin": [
+ "bin/php-coveralls"
+ ],
+ "type": "library",
"autoload": {
"psr-4": {
- "JanGregor\\Prophecy\\": "src/"
+ "PhpCoveralls\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3454,108 +5632,123 @@
],
"authors": [
{
- "name": "Jan Gregor Emge-Triebel",
- "email": "jan@jangregor.me"
- }
- ],
- "description": "Provides a phpstan/phpstan extension for phpspec/prophecy",
- "support": {
- "issues": "https://github.com/Jan0707/phpstan-prophecy/issues",
- "source": "https://github.com/Jan0707/phpstan-prophecy/tree/0.8.1"
- },
- "funding": [
+ "name": "Kitamura Satoshi",
+ "email": "with.no.parachute@gmail.com",
+ "homepage": "https://www.facebook.com/satooshi.jp",
+ "role": "Original creator"
+ },
{
- "url": "https://www.buymeacoffee.com/localheinz",
- "type": "custom"
+ "name": "Takashi Matsuo",
+ "email": "tmatsuo@google.com"
},
{
- "url": "https://github.com/localheinz",
- "type": "github"
+ "name": "Google Inc"
+ },
+ {
+ "name": "Dariusz Ruminski",
+ "email": "dariusz.ruminski@gmail.com",
+ "homepage": "https://github.com/keradus"
+ },
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
}
],
- "time": "2020-10-24T15:04:14+00:00"
+ "description": "PHP client library for Coveralls API",
+ "homepage": "https://github.com/php-coveralls/php-coveralls",
+ "keywords": [
+ "ci",
+ "coverage",
+ "github",
+ "test"
+ ],
+ "support": {
+ "issues": "https://github.com/php-coveralls/php-coveralls/issues",
+ "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.7.0"
+ },
+ "time": "2023-11-22T10:21:01+00:00"
},
{
- "name": "jetbrains/phpstorm-stubs",
- "version": "v2019.3",
+ "name": "php-parallel-lint/php-console-color",
+ "version": "v1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/JetBrains/phpstorm-stubs.git",
- "reference": "883b6facd78e01c0743b554af86fa590c2573f40"
+ "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
+ "reference": "7adfefd530aa2d7570ba87100a99e2483a543b88"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/883b6facd78e01c0743b554af86fa590c2573f40",
- "reference": "883b6facd78e01c0743b554af86fa590c2573f40",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/7adfefd530aa2d7570ba87100a99e2483a543b88",
+ "reference": "7adfefd530aa2d7570ba87100a99e2483a543b88",
"shasum": ""
},
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "replace": {
+ "jakub-onderka/php-console-color": "*"
+ },
"require-dev": {
- "nikic/php-parser": "^4",
- "php": "^7.1",
- "phpdocumentor/reflection-docblock": "^4.3",
- "phpunit/phpunit": "^7"
+ "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": {
- "files": [
- "PhpStormStubsMap.php"
- ]
+ "psr-4": {
+ "PHP_Parallel_Lint\\PhpConsoleColor\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
+ "BSD-2-Clause"
],
- "description": "PHP runtime & extensions header files for PhpStorm",
- "homepage": "https://www.jetbrains.com/phpstorm",
- "keywords": [
- "autocomplete",
- "code",
- "inference",
- "inspection",
- "jetbrains",
- "phpstorm",
- "stubs",
- "type"
+ "authors": [
+ {
+ "name": "Jakub Onderka",
+ "email": "jakub.onderka@gmail.com"
+ }
],
+ "description": "Simple library for creating colored console ouput.",
"support": {
- "source": "https://github.com/JetBrains/phpstorm-stubs/tree/master"
+ "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
+ "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/v1.0.1"
},
- "time": "2019-12-05T16:56:26+00:00"
+ "time": "2021-12-25T06:49:29+00:00"
},
{
- "name": "justinrainbow/json-schema",
- "version": "v5.2.13",
+ "name": "php-parallel-lint/php-console-highlighter",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/justinrainbow/json-schema.git",
- "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
+ "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
+ "reference": "5b4803384d3303cf8e84141039ef56c8a123138d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
- "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/5b4803384d3303cf8e84141039ef56c8a123138d",
+ "reference": "5b4803384d3303cf8e84141039ef56c8a123138d",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "ext-tokenizer": "*",
+ "php": ">=5.3.2",
+ "php-parallel-lint/php-console-color": "^1.0.1"
+ },
+ "replace": {
+ "jakub-onderka/php-console-highlighter": "*"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
- "json-schema/json-schema-test-suite": "1.2.0",
- "phpunit/phpunit": "^4.8.35"
+ "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"
},
- "bin": [
- "bin/validate-json"
- ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "JsonSchema\\": "src/JsonSchema/"
+ "PHP_Parallel_Lint\\PhpConsoleHighlighter\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3564,139 +5757,114 @@
],
"authors": [
{
- "name": "Bruno Prieto Reis",
- "email": "bruno.p.reis@gmail.com"
- },
- {
- "name": "Justin Rainbow",
- "email": "justin.rainbow@gmail.com"
- },
- {
- "name": "Igor Wiedler",
- "email": "igor@wiedler.ch"
- },
- {
- "name": "Robert Schรถnthal",
- "email": "seroscho@googlemail.com"
+ "name": "Jakub Onderka",
+ "email": "acci@acci.cz",
+ "homepage": "http://www.acci.cz/"
}
],
- "description": "A library to validate a json schema.",
- "homepage": "https://github.com/justinrainbow/json-schema",
- "keywords": [
- "json",
- "schema"
- ],
+ "description": "Highlight PHP code in terminal",
"support": {
- "issues": "https://github.com/justinrainbow/json-schema/issues",
- "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
+ "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
+ "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/v1.0.0"
},
- "time": "2023-09-26T02:20:38+00:00"
+ "time": "2022-02-18T08:23:19+00:00"
},
{
- "name": "localheinz/diff",
- "version": "1.1.1",
+ "name": "php-parallel-lint/php-parallel-lint",
+ "version": "v1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/localheinz/diff.git",
- "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c"
+ "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
+ "reference": "6db563514f27e19595a19f45a4bf757b6401194e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c",
- "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c",
+ "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
+ "reference": "6db563514f27e19595a19f45a4bf757b6401194e",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "ext-json": "*",
+ "php": ">=5.3.0"
+ },
+ "replace": {
+ "grogy/php-parallel-lint": "*",
+ "jakub-onderka/php-parallel-lint": "*"
},
"require-dev": {
- "phpunit/phpunit": "^7.5 || ^8.0",
- "symfony/process": "^4.2 || ^5"
+ "nette/tester": "^1.3 || ^2.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"
},
+ "bin": [
+ "parallel-lint"
+ ],
"type": "library",
"autoload": {
"classmap": [
- "src/"
+ "./src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "BSD-2-Clause"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
+ "name": "Jakub Onderka",
+ "email": "ahoj@jakubonderka.cz"
}
],
- "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize",
- "homepage": "https://github.com/localheinz/diff",
+ "description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
+ "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
"keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
+ "lint",
+ "static analysis"
],
"support": {
- "source": "https://github.com/localheinz/diff/tree/main"
+ "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
+ "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-07-06T04:49:32+00:00"
+ "time": "2024-03-27T12:14:49+00:00"
},
{
- "name": "maglnet/composer-require-checker",
- "version": "3.8.0",
+ "name": "php-standard-library/psalm-plugin",
+ "version": "2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/maglnet/ComposerRequireChecker.git",
- "reference": "537138b833ab0f9ad72b667a72bece2a765e88ab"
+ "url": "https://github.com/php-standard-library/psalm-plugin.git",
+ "reference": "bf6d560ae498966150bc66a42e02744b0ee242c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/537138b833ab0f9ad72b667a72bece2a765e88ab",
- "reference": "537138b833ab0f9ad72b667a72bece2a765e88ab",
+ "url": "https://api.github.com/repos/php-standard-library/psalm-plugin/zipball/bf6d560ae498966150bc66a42e02744b0ee242c5",
+ "reference": "bf6d560ae498966150bc66a42e02744b0ee242c5",
"shasum": ""
},
"require": {
- "composer-runtime-api": "^2.0.0",
- "ext-json": "*",
- "ext-phar": "*",
- "nikic/php-parser": "^4.13.0",
- "php": "^7.4 || ^8.0",
- "symfony/console": "^5.4.0",
- "webmozart/assert": "^1.9.1",
- "webmozart/glob": "^4.4.0"
+ "php": "^8.1",
+ "vimeo/psalm": ">=5.16"
+ },
+ "conflict": {
+ "azjezz/psl": "<2.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9.0.0",
- "ext-zend-opcache": "*",
- "mikey179/vfsstream": "^1.6.10",
- "phing/phing": "^2.17.0",
- "phpstan/phpstan": "^1.2.0",
- "phpunit/phpunit": "^9.5.10",
- "vimeo/psalm": "^4.14.0"
+ "friendsofphp/php-cs-fixer": "^2.18",
+ "roave/security-advisories": "dev-master",
+ "squizlabs/php_codesniffer": "^3.5"
},
- "bin": [
- "bin/composer-require-checker"
- ],
- "type": "library",
+ "type": "psalm-plugin",
"extra": {
- "branch-alias": {
- "dev-master": "2.1-dev"
+ "psalm": {
+ "pluginClass": "Psl\\Psalm\\Plugin"
}
},
"autoload": {
"psr-4": {
- "ComposerRequireChecker\\": "src/ComposerRequireChecker"
+ "Psl\\Psalm\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3705,608 +5873,597 @@
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "http://ocramius.github.io/"
- },
- {
- "name": "Matthias Glaub",
- "email": "magl@magl.net",
- "homepage": "http://magl.net"
+ "name": "azjezz",
+ "email": "azjezz@protonmail.com"
}
],
- "description": "CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package",
- "homepage": "https://github.com/maglnet/ComposerRequireChecker",
- "keywords": [
- "analysis",
- "cli",
- "composer",
- "dependency",
- "imports",
- "require",
- "requirements"
- ],
+ "description": "Psalm plugin for the PHP Standard Library",
"support": {
- "issues": "https://github.com/maglnet/ComposerRequireChecker/issues",
- "source": "https://github.com/maglnet/ComposerRequireChecker/tree/3.8.0"
+ "issues": "https://github.com/php-standard-library/psalm-plugin/issues",
+ "source": "https://github.com/php-standard-library/psalm-plugin/tree/2.3.0"
},
- "time": "2021-12-07T14:25:47+00:00"
+ "time": "2023-11-28T12:22:48+00:00"
},
{
- "name": "myclabs/deep-copy",
- "version": "1.11.0",
+ "name": "phpdocumentor/reflection-common",
+ "version": "2.2.0",
"source": {
"type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
- "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
- },
- "conflict": {
- "doctrine/collections": "<1.6.8",
- "doctrine/common": "<2.13.3 || >=3,<3.2.2"
- },
- "require-dev": {
- "doctrine/collections": "^1.6.8",
- "doctrine/common": "^2.13.3 || ^3.2.2",
- "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
"autoload": {
- "files": [
- "src/DeepCopy/deep_copy.php"
- ],
"psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
+ "phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "Create deep copies (clones) of your objects",
+ "authors": [
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
"keywords": [
- "clone",
- "copy",
- "duplicate",
- "object",
- "object graph"
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
],
"support": {
- "issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
},
- "funding": [
- {
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
- "type": "tidelift"
- }
- ],
- "time": "2022-03-03T13:19:32+00:00"
+ "time": "2020-06-27T09:03:43+00:00"
},
{
- "name": "netresearch/jsonmapper",
- "version": "v4.0.0",
+ "name": "phpdocumentor/reflection-docblock",
+ "version": "5.4.0",
"source": {
"type": "git",
- "url": "https://github.com/cweiske/jsonmapper.git",
- "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d"
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+ "reference": "298d2febfe79d03fe714eb871d5538da55205b1a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
- "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a",
+ "reference": "298d2febfe79d03fe714eb871d5538da55205b1a",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
- "php": ">=7.1"
+ "doctrine/deprecations": "^1.1",
+ "ext-filter": "*",
+ "php": "^7.4 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.7",
+ "phpstan/phpdoc-parser": "^1.7",
+ "webmozart/assert": "^1.9.1"
},
"require-dev": {
- "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
- "squizlabs/php_codesniffer": "~3.5"
+ "mockery/mockery": "~1.3.5",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-webmozart-assert": "^1.2",
+ "phpunit/phpunit": "^9.5",
+ "vimeo/psalm": "^5.13"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
"autoload": {
- "psr-0": {
- "JsonMapper": "src/"
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "OSL-3.0"
+ "MIT"
],
"authors": [
{
- "name": "Christian Weiske",
- "email": "cweiske@cweiske.de",
- "homepage": "http://github.com/cweiske/jsonmapper/",
- "role": "Developer"
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
}
],
- "description": "Map nested JSON structures onto PHP classes",
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
- "email": "cweiske@cweiske.de",
- "issues": "https://github.com/cweiske/jsonmapper/issues",
- "source": "https://github.com/cweiske/jsonmapper/tree/v4.0.0"
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.0"
},
- "time": "2020-12-01T19:48:11+00:00"
+ "time": "2024-04-09T21:13:58+00:00"
},
{
- "name": "nikic/php-parser",
- "version": "v4.14.0",
+ "name": "phpdocumentor/type-resolver",
+ "version": "1.8.2",
"source": {
"type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "153ae662783729388a584b4361f2545e4d841e3c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
- "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
+ "reference": "153ae662783729388a584b4361f2545e4d841e3c",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=7.0"
+ "doctrine/deprecations": "^1.0",
+ "php": "^7.3 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0",
+ "phpstan/phpdoc-parser": "^1.13"
},
"require-dev": {
- "ircmaxell/php-yacc": "^0.0.7",
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ "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"
},
- "bin": [
- "bin/php-parse"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.9-dev"
+ "dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "PhpParser\\": "lib/PhpParser"
+ "phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Nikita Popov"
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
}
],
- "description": "A PHP parser written in PHP",
- "keywords": [
- "parser",
- "php"
- ],
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
- "issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
},
- "time": "2022-05-31T20:59:12+00:00"
+ "time": "2024-02-23T11:10:43+00:00"
},
{
- "name": "nikolaposa/version",
- "version": "4.1.0",
+ "name": "phpstan/phpdoc-parser",
+ "version": "1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/nikolaposa/version.git",
- "reference": "0aada6b801962c084ae465f7569397dc2186b6a7"
+ "url": "https://github.com/phpstan/phpdoc-parser.git",
+ "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikolaposa/version/zipball/0aada6b801962c084ae465f7569397dc2186b6a7",
- "reference": "0aada6b801962c084ae465f7569397dc2186b6a7",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/536889f2b340489d328f5ffb7b02bb6b183ddedc",
+ "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc",
"shasum": ""
},
"require": {
- "beberlei/assert": "^3.2",
"php": "^7.2 || ^8.0"
},
"require-dev": {
- "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"
+ "doctrine/annotations": "^2.0",
+ "nikic/php-parser": "^4.15",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.5",
+ "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": "4.0.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Version\\": "src/"
+ "PHPStan\\PhpDocParser\\": [
+ "src/"
+ ]
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Nikola Poลกa",
- "email": "posa.nikola@gmail.com",
- "homepage": "https://www.nikolaposa.in.rs"
- }
- ],
- "description": "Value Object that represents a SemVer-compliant version number.",
- "homepage": "https://github.com/nikolaposa/version",
- "keywords": [
- "semantic",
- "semver",
- "version",
- "versioning"
- ],
+ "description": "PHPDoc parser with support for nullable, intersection and generic types",
"support": {
- "issues": "https://github.com/nikolaposa/version/issues",
- "source": "https://github.com/nikolaposa/version/tree/4.1.0"
+ "issues": "https://github.com/phpstan/phpdoc-parser/issues",
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.0"
},
- "time": "2020-12-12T10:47:10+00:00"
+ "time": "2024-05-06T12:04:23+00:00"
},
{
- "name": "nunomaduro/collision",
- "version": "v5.11.0",
+ "name": "phpstan/phpstan",
+ "version": "1.11.1",
"source": {
"type": "git",
- "url": "https://github.com/nunomaduro/collision.git",
- "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
+ "url": "https://github.com/phpstan/phpstan.git",
+ "reference": "e524358f930e41a2b4cca1320e3b04fc26b39e0b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
- "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e524358f930e41a2b4cca1320e3b04fc26b39e0b",
+ "reference": "e524358f930e41a2b4cca1320e3b04fc26b39e0b",
"shasum": ""
},
"require": {
- "facade/ignition-contracts": "^1.0",
- "filp/whoops": "^2.14.3",
- "php": "^7.3 || ^8.0",
- "symfony/console": "^5.0"
+ "php": "^7.2|^8.0"
},
- "require-dev": {
- "brianium/paratest": "^6.1",
- "fideloper/proxy": "^4.4.1",
- "fruitcake/laravel-cors": "^2.0.3",
- "laravel/framework": "8.x-dev",
- "nunomaduro/larastan": "^0.6.2",
- "nunomaduro/mock-final-classes": "^1.0",
- "orchestra/testbench": "^6.0",
- "phpstan/phpstan": "^0.12.64",
- "phpunit/phpunit": "^9.5.0"
+ "conflict": {
+ "phpstan/phpstan-shim": "*"
},
+ "bin": [
+ "phpstan",
+ "phpstan.phar"
+ ],
"type": "library",
- "extra": {
- "laravel": {
- "providers": [
- "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
- ]
- }
- },
"autoload": {
- "psr-4": {
- "NunoMaduro\\Collision\\": "src/"
- }
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Nuno Maduro",
- "email": "enunomaduro@gmail.com"
- }
- ],
- "description": "Cli error handling for console/command-line PHP applications.",
+ "description": "PHPStan - PHP Static Analysis Tool",
"keywords": [
- "artisan",
- "cli",
- "command-line",
- "console",
- "error",
- "handling",
- "laravel",
- "laravel-zero",
- "php",
- "symfony"
+ "dev",
+ "static analysis"
],
"support": {
- "issues": "https://github.com/nunomaduro/collision/issues",
- "source": "https://github.com/nunomaduro/collision"
+ "docs": "https://phpstan.org/user-guide/getting-started",
+ "forum": "https://github.com/phpstan/phpstan/discussions",
+ "issues": "https://github.com/phpstan/phpstan/issues",
+ "security": "https://github.com/phpstan/phpstan/security/policy",
+ "source": "https://github.com/phpstan/phpstan-src"
},
"funding": [
{
- "url": "https://www.paypal.com/paypalme/enunomaduro",
- "type": "custom"
- },
- {
- "url": "https://github.com/nunomaduro",
+ "url": "https://github.com/ondrejmirtes",
"type": "github"
},
{
- "url": "https://www.patreon.com/nunomaduro",
- "type": "patreon"
+ "url": "https://github.com/phpstan",
+ "type": "github"
+ }
+ ],
+ "time": "2024-05-15T08:00:59+00:00"
+ },
+ {
+ "name": "phpstan/phpstan-deprecation-rules",
+ "version": "1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
+ "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/fa8cce7720fa782899a0aa97b6a41225d1bb7b26",
+ "reference": "fa8cce7720fa782899a0aa97b6a41225d1bb7b26",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.11"
+ },
+ "require-dev": {
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "phpstan-extension",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "rules.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\": "src/"
}
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
],
- "time": "2022-01-10T16:22:52+00:00"
+ "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
+ "support": {
+ "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
+ "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.0"
+ },
+ "time": "2024-04-20T06:39:48+00:00"
},
{
- "name": "ondram/ci-detector",
- "version": "3.5.1",
+ "name": "phpstan/phpstan-mockery",
+ "version": "1.1.2",
"source": {
"type": "git",
- "url": "https://github.com/OndraM/ci-detector.git",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd"
+ "url": "https://github.com/phpstan/phpstan-mockery.git",
+ "reference": "88ae85931768efd3aaf3cce4cb9cb54c4d157d03"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/594e61252843b68998bddd48078c5058fe9028bd",
- "reference": "594e61252843b68998bddd48078c5058fe9028bd",
+ "url": "https://api.github.com/repos/phpstan/phpstan-mockery/zipball/88ae85931768efd3aaf3cce4cb9cb54c4d157d03",
+ "reference": "88ae85931768efd3aaf3cce4cb9cb54c4d157d03",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.10"
},
"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"
+ "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": {
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ }
},
- "type": "library",
"autoload": {
"psr-4": {
- "OndraM\\CiDetector\\": "src/"
+ "PHPStan\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Ondลej Machulda",
- "email": "ondrej.machulda@gmail.com"
- }
- ],
- "description": "Detect continuous integration environment and provide unified access to properties of current build",
- "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"
- ],
+ "description": "PHPStan Mockery extension",
"support": {
- "issues": "https://github.com/OndraM/ci-detector/issues",
- "source": "https://github.com/OndraM/ci-detector/tree/main"
+ "issues": "https://github.com/phpstan/phpstan-mockery/issues",
+ "source": "https://github.com/phpstan/phpstan-mockery/tree/1.1.2"
},
- "time": "2020-09-04T11:21:14+00:00"
+ "time": "2024-01-10T13:50:05+00:00"
},
{
- "name": "openlss/lib-array2xml",
- "version": "1.0.0",
+ "name": "phpstan/phpstan-phpunit",
+ "version": "1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/nullivex/lib-array2xml.git",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
+ "url": "https://github.com/phpstan/phpstan-phpunit.git",
+ "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
- "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/f3ea021866f4263f07ca3636bf22c64be9610c11",
+ "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.11"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<7.0"
+ },
+ "require-dev": {
+ "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"
+ ]
+ }
},
- "type": "library",
"autoload": {
- "psr-0": {
- "LSS": ""
+ "psr-4": {
+ "PHPStan\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Bryan Tong",
- "email": "bryan@nullivex.com",
- "homepage": "https://www.nullivex.com"
- },
- {
- "name": "Tony Butler",
- "email": "spudz76@gmail.com",
- "homepage": "https://www.nullivex.com"
- }
- ],
- "description": "Array2XML conversion library credit to lalit.org",
- "homepage": "https://www.nullivex.com",
- "keywords": [
- "array",
- "array conversion",
- "xml",
- "xml conversion"
+ "MIT"
],
+ "description": "PHPUnit extensions and rules for PHPStan",
"support": {
- "issues": "https://github.com/nullivex/lib-array2xml/issues",
- "source": "https://github.com/nullivex/lib-array2xml/tree/master"
+ "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.0"
},
- "time": "2019-03-29T20:06:56+00:00"
+ "time": "2024-04-20T06:39:00+00:00"
},
{
- "name": "orklah/psalm-insane-comparison",
- "version": "v1.0.3",
+ "name": "phpstan/phpstan-strict-rules",
+ "version": "1.6.0",
"source": {
"type": "git",
- "url": "https://github.com/orklah/psalm-insane-comparison.git",
- "reference": "770b9b5273afd16a25243c5895b6949c30dbaaea"
+ "url": "https://github.com/phpstan/phpstan-strict-rules.git",
+ "reference": "363f921dd8441777d4fc137deb99beb486c77df1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orklah/psalm-insane-comparison/zipball/770b9b5273afd16a25243c5895b6949c30dbaaea",
- "reference": "770b9b5273afd16a25243c5895b6949c30dbaaea",
+ "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/363f921dd8441777d4fc137deb99beb486c77df1",
+ "reference": "363f921dd8441777d4fc137deb99beb486c77df1",
"shasum": ""
},
"require": {
- "ext-simplexml": "*",
- "php": "^7.3|^8.0"
+ "php": "^7.2 || ^8.0",
+ "phpstan/phpstan": "^1.11"
},
"require-dev": {
- "nikic/php-parser": "^4.0",
- "vimeo/psalm": "^4.0"
+ "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": "psalm-plugin",
+ "type": "phpstan-extension",
"extra": {
- "psalm": {
- "pluginClass": "Orklah\\PsalmInsaneComparison\\Plugin"
+ "phpstan": {
+ "includes": [
+ "rules.neon"
+ ]
}
},
"autoload": {
"psr-4": {
- "Orklah\\PsalmInsaneComparison\\": [
- "."
- ],
- "Orklah\\PsalmInsaneComparison\\Hooks\\": [
- "hooks"
- ]
+ "PHPStan\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "orklah"
- }
- ],
- "description": "Detects possible insane comparison (\"string\" == 0) to help migrate to PHP8",
+ "description": "Extra strict and opinionated rules for PHPStan",
"support": {
- "issues": "https://github.com/orklah/psalm-insane-comparison/issues",
- "source": "https://github.com/orklah/psalm-insane-comparison/tree/v1.0.3"
+ "issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
+ "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.6.0"
},
- "time": "2021-01-12T17:01:14+00:00"
+ "time": "2024-04-20T06:37:51+00:00"
},
{
- "name": "pepakriz/phpstan-exception-rules",
- "version": "v0.11.7",
+ "name": "phpunit/php-code-coverage",
+ "version": "10.1.14",
"source": {
"type": "git",
- "url": "https://github.com/pepakriz/phpstan-exception-rules.git",
- "reference": "0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4"
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pepakriz/phpstan-exception-rules/zipball/0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4",
- "reference": "0de69d8fc6e08b6ed79986eb19b9e23355b3d0f4",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
+ "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.4",
- "php": ">=7.1",
- "phpstan/phpstan": "^0.12.26"
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-xmlwriter": "*",
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "php": ">=8.1",
+ "phpunit/php-file-iterator": "^4.0",
+ "phpunit/php-text-template": "^3.0",
+ "sebastian/code-unit-reverse-lookup": "^3.0",
+ "sebastian/complexity": "^3.0",
+ "sebastian/environment": "^6.0",
+ "sebastian/lines-of-code": "^2.0",
+ "sebastian/version": "^4.0",
+ "theseer/tokenizer": "^1.2.0"
},
"require-dev": {
- "nette/utils": "^3.0",
- "php-parallel-lint/php-console-highlighter": "^0.4.0",
- "php-parallel-lint/php-parallel-lint": "^1.2.0",
- "phpstan/phpstan-nette": "^0.12.0",
- "phpstan/phpstan-phpunit": "^0.12.0",
- "phpstan/phpstan-strict-rules": "^0.12.0",
- "phpunit/phpunit": "^7.5.6 || ^9.4.2",
- "slevomat/coding-standard": "^6.4.1",
- "squizlabs/php_codesniffer": "~3.5.2"
+ "phpunit/phpunit": "^10.1"
},
- "type": "phpstan-extension",
+ "suggest": {
+ "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": {
"branch-alias": {
- "dev-master": "0.11-dev"
- },
- "phpstan": {
- "includes": [
- "extension.neon"
- ]
+ "dev-main": "10.1-dev"
}
},
"autoload": {
- "psr-4": {
- "Pepakriz\\PHPStanExceptionRules\\": "src"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
],
- "description": "Exception rules for PHPStan",
"support": {
- "issues": "https://github.com/pepakriz/phpstan-exception-rules/issues",
- "source": "https://github.com/pepakriz/phpstan-exception-rules/tree/v0.11.7"
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
},
- "time": "2021-05-05T06:07:22+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-12T15:33:41+00:00"
},
{
- "name": "phar-io/manifest",
- "version": "2.0.3",
+ "name": "phpunit/php-file-iterator",
+ "version": "4.1.0",
"source": {
"type": "git",
- "url": "https://github.com/phar-io/manifest.git",
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
+ "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-phar": "*",
- "ext-xmlwriter": "*",
- "phar-io/version": "^3.0.1",
- "php": "^7.2 || ^8.0"
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-main": "4.0-dev"
}
},
"autoload": {
@@ -4319,47 +6476,61 @@
"BSD-3-Clause"
],
"authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de",
- "role": "Developer"
+ "role": "lead"
}
],
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
"support": {
- "issues": "https://github.com/phar-io/manifest/issues",
- "source": "https://github.com/phar-io/manifest/tree/2.0.3"
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
},
- "time": "2021-07-20T11:28:43+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-08-31T06:24:48+00:00"
},
{
- "name": "phar-io/version",
- "version": "3.2.1",
+ "name": "phpunit/php-invoker",
+ "version": "4.0.0",
"source": {
"type": "git",
- "url": "https://github.com/phar-io/version.git",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
+ "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
+ "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^10.0"
+ },
+ "suggest": {
+ "ext-pcntl": "*"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
"autoload": {
"classmap": [
"src/"
@@ -4370,297 +6541,347 @@
"BSD-3-Clause"
],
"authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de",
- "role": "Developer"
+ "role": "lead"
}
],
- "description": "Library for handling version information and constraints",
+ "description": "Invoke callables with a timeout",
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "keywords": [
+ "process"
+ ],
"support": {
- "issues": "https://github.com/phar-io/version/issues",
- "source": "https://github.com/phar-io/version/tree/3.2.1"
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
},
- "time": "2022-02-21T01:04:05+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-03T06:56:09+00:00"
},
{
- "name": "php-coveralls/php-coveralls",
- "version": "v2.5.2",
+ "name": "phpunit/php-text-template",
+ "version": "3.0.1",
"source": {
"type": "git",
- "url": "https://github.com/php-coveralls/php-coveralls.git",
- "reference": "007e13afdcdba2cd0efcc5f72c3b7efb356a8bd4"
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/007e13afdcdba2cd0efcc5f72c3b7efb356a8bd4",
- "reference": "007e13afdcdba2cd0efcc5f72c3b7efb356a8bd4",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
+ "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-simplexml": "*",
- "guzzlehttp/guzzle": "^6.0 || ^7.0",
- "php": "^5.5 || ^7.0 || ^8.0",
- "psr/log": "^1.0 || ^2.0",
- "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
- "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+ "php": ">=8.1"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
- "sanmai/phpunit-legacy-adapter": "^6.1 || ^8.0"
- },
- "suggest": {
- "symfony/http-kernel": "Allows Symfony integration"
+ "phpunit/phpunit": "^10.0"
},
- "bin": [
- "bin/php-coveralls"
- ],
"type": "library",
- "autoload": {
- "psr-4": {
- "PhpCoveralls\\": "src/"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
}
},
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Kitamura Satoshi",
- "email": "with.no.parachute@gmail.com",
- "homepage": "https://www.facebook.com/satooshi.jp",
- "role": "Original creator"
- },
- {
- "name": "Takashi Matsuo",
- "email": "tmatsuo@google.com"
- },
- {
- "name": "Google Inc"
- },
- {
- "name": "Dariusz Ruminski",
- "email": "dariusz.ruminski@gmail.com",
- "homepage": "https://github.com/keradus"
- },
- {
- "name": "Contributors",
- "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "PHP client library for Coveralls API",
- "homepage": "https://github.com/php-coveralls/php-coveralls",
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
"keywords": [
- "ci",
- "coverage",
- "github",
- "test"
+ "template"
],
"support": {
- "issues": "https://github.com/php-coveralls/php-coveralls/issues",
- "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.5.2"
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
},
- "time": "2021-12-06T17:05:08+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-08-31T14:07:24+00:00"
},
{
- "name": "php-parallel-lint/php-console-color",
- "version": "v0.3",
+ "name": "phpunit/php-timer",
+ "version": "6.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
- "reference": "b6af326b2088f1ad3b264696c9fd590ec395b49e"
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
},
"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/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
+ "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
"shasum": ""
},
"require": {
- "php": ">=5.4.0"
- },
- "replace": {
- "jakub-onderka/php-console-color": "*"
+ "php": ">=8.1"
},
"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.*",
- "phpunit/phpunit": "~4.3",
- "squizlabs/php_codesniffer": "1.*"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
- "autoload": {
- "psr-4": {
- "JakubOnderka\\PhpConsoleColor\\": "src/"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
}
},
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-2-Clause"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Jakub Onderka",
- "email": "jakub.onderka@gmail.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
"support": {
- "issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/master"
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
},
- "time": "2020-05-14T05:47:14+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-03T06:57:52+00:00"
},
{
- "name": "php-parallel-lint/php-console-highlighter",
- "version": "v0.5",
+ "name": "phpunit/phpunit",
+ "version": "10.5.20",
"source": {
"type": "git",
- "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
- "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
},
"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/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
+ "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=5.4.0",
- "php-parallel-lint/php-console-color": "~0.2"
- },
- "replace": {
- "jakub-onderka/php-console-highlighter": "*"
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "myclabs/deep-copy": "^1.10.1",
+ "phar-io/manifest": "^2.0.3",
+ "phar-io/version": "^3.0.2",
+ "php": ">=8.1",
+ "phpunit/php-code-coverage": "^10.1.5",
+ "phpunit/php-file-iterator": "^4.0",
+ "phpunit/php-invoker": "^4.0",
+ "phpunit/php-text-template": "^3.0",
+ "phpunit/php-timer": "^6.0",
+ "sebastian/cli-parser": "^2.0",
+ "sebastian/code-unit": "^2.0",
+ "sebastian/comparator": "^5.0",
+ "sebastian/diff": "^5.0",
+ "sebastian/environment": "^6.0",
+ "sebastian/exporter": "^5.1",
+ "sebastian/global-state": "^6.0.1",
+ "sebastian/object-enumerator": "^5.0",
+ "sebastian/recursion-context": "^5.0",
+ "sebastian/type": "^4.0",
+ "sebastian/version": "^4.0"
},
- "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"
+ "suggest": {
+ "ext-soap": "To be able to generate mocks based on WSDL files"
},
+ "bin": [
+ "phpunit"
+ ],
"type": "library",
- "autoload": {
- "psr-4": {
- "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "10.5-dev"
}
},
+ "autoload": {
+ "files": [
+ "src/Framework/Assert/Functions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Jakub Onderka",
- "email": "acci@acci.cz",
- "homepage": "http://www.acci.cz/"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Highlight PHP code in terminal",
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
"support": {
- "issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/master"
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
},
- "time": "2020-05-13T07:37:49+00:00"
+ "funding": [
+ {
+ "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": "2024-04-24T06:32:35+00:00"
},
{
- "name": "php-parallel-lint/php-parallel-lint",
- "version": "v1.3.2",
+ "name": "psalm/plugin-mockery",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
- "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
+ "url": "https://github.com/psalm/psalm-plugin-mockery.git",
+ "reference": "876247d15f91df08240d00dac69c5135b6689283"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
- "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-mockery/zipball/876247d15f91df08240d00dac69c5135b6689283",
+ "reference": "876247d15f91df08240d00dac69c5135b6689283",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "php": ">=5.3.0"
- },
- "replace": {
- "grogy/php-parallel-lint": "*",
- "jakub-onderka/php-parallel-lint": "*"
+ "composer/package-versions-deprecated": "^1.10",
+ "composer/semver": "^1.4 || ^2.0 || ^3.0",
+ "mockery/mockery": "^1.0",
+ "php": "~7.4 || ~8.0 || ~8.1 || ~8.2",
+ "vimeo/psalm": "dev-master || ^5.0@rc || ^5.0"
},
"require-dev": {
- "nette/tester": "^1.3 || ^2.0",
- "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
- "squizlabs/php_codesniffer": "^3.6"
+ "codeception/codeception": "^4.1.9",
+ "phpunit/phpunit": "^9.0",
+ "squizlabs/php_codesniffer": "^3.3.1",
+ "weirdan/codeception-psalm-module": "^0.13.1"
},
- "suggest": {
- "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
+ "type": "psalm-plugin",
+ "extra": {
+ "psalm": {
+ "pluginClass": "Psalm\\MockeryPlugin\\Plugin"
+ }
},
- "bin": [
- "parallel-lint"
- ],
- "type": "library",
"autoload": {
- "classmap": [
- "./src/"
- ]
+ "psr-4": {
+ "Psalm\\MockeryPlugin\\": [
+ "."
+ ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-2-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Jakub Onderka",
- "email": "ahoj@jakubonderka.cz"
+ "name": "Matt Brown",
+ "email": "github@muglug.com"
}
],
- "description": "This tool check syntax of PHP files about 20x faster than serial check.",
- "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
+ "description": "Psalm plugin for Mockery",
"support": {
- "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
- "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
+ "issues": "https://github.com/psalm/psalm-plugin-mockery/issues",
+ "source": "https://github.com/psalm/psalm-plugin-mockery/tree/1.1.0"
},
- "time": "2022-02-21T12:50:22+00:00"
+ "time": "2022-11-25T07:16:18+00:00"
},
{
- "name": "phpdocumentor/reflection-common",
- "version": "2.2.0",
+ "name": "psalm/plugin-phpunit",
+ "version": "0.19.0",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
+ "url": "https://github.com/psalm/psalm-plugin-phpunit.git",
+ "reference": "e344eaaa27871e79c6cb97b9efe52a735f9d1966"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/e344eaaa27871e79c6cb97b9efe52a735f9d1966",
+ "reference": "e344eaaa27871e79c6cb97b9efe52a735f9d1966",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "composer/package-versions-deprecated": "^1.10",
+ "composer/semver": "^1.4 || ^2.0 || ^3.0",
+ "ext-simplexml": "*",
+ "php": "^7.4 || ^8.0",
+ "vimeo/psalm": "dev-master || ^5@beta || ^5.0"
},
- "type": "library",
+ "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.11.0",
+ "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ },
+ "type": "psalm-plugin",
"extra": {
- "branch-alias": {
- "dev-2.x": "2.x-dev"
+ "psalm": {
+ "pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": "src/"
+ "Psalm\\PhpUnitPlugin\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4669,59 +6890,43 @@
],
"authors": [
{
- "name": "Jaap van Otterdijk",
- "email": "opensource@ijaap.nl"
+ "name": "Matt Brown",
+ "email": "github@muglug.com"
}
],
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
- "homepage": "http://www.phpdoc.org",
- "keywords": [
- "FQSEN",
- "phpDocumentor",
- "phpdoc",
- "reflection",
- "static analysis"
- ],
+ "description": "Psalm plugin for PHPUnit",
"support": {
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ "issues": "https://github.com/psalm/psalm-plugin-phpunit/issues",
+ "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.19.0"
},
- "time": "2020-06-27T09:03:43+00:00"
+ "time": "2024-03-15T10:43:15+00:00"
},
{
- "name": "phpdocumentor/reflection-docblock",
- "version": "5.3.0",
+ "name": "psr/container",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
"shasum": ""
},
"require": {
- "ext-filter": "*",
- "php": "^7.2 || ^8.0",
- "phpdocumentor/reflection-common": "^2.2",
- "phpdocumentor/type-resolver": "^1.3",
- "webmozart/assert": "^1.9.1"
- },
- "require-dev": {
- "mockery/mockery": "~1.3.2",
- "psalm/phar": "^4.8"
+ "php": ">=7.4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": "src"
+ "Psr\\Container\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4730,52 +6935,52 @@
],
"authors": [
{
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
- },
- {
- "name": "Jaap van Otterdijk",
- "email": "account@ijaap.nl"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
"support": {
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
},
- "time": "2021-10-19T17:43:47+00:00"
+ "time": "2021-11-05T16:47:00+00:00"
},
{
- "name": "phpdocumentor/type-resolver",
- "version": "1.6.1",
+ "name": "psr/http-client",
+ "version": "1.0.3",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "77a32518733312af16a44300404e945338981de3"
+ "url": "https://github.com/php-fig/http-client.git",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
- "reference": "77a32518733312af16a44300404e945338981de3",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0",
- "phpdocumentor/reflection-common": "^2.0"
- },
- "require-dev": {
- "ext-tokenizer": "*",
- "psalm/phar": "^4.8"
+ "php": "^7.0 || ^8.0",
+ "psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-1.x": "1.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": "src"
+ "Psr\\Http\\Client\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4784,51 +6989,50 @@
],
"authors": [
{
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "description": "Common interface for HTTP clients",
+ "homepage": "https://github.com/php-fig/http-client",
+ "keywords": [
+ "http",
+ "http-client",
+ "psr",
+ "psr-18"
+ ],
"support": {
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
+ "source": "https://github.com/php-fig/http-client"
},
- "time": "2022-03-15T21:29:03+00:00"
+ "time": "2023-09-23T14:17:50+00:00"
},
{
- "name": "phpspec/prophecy",
- "version": "v1.15.0",
+ "name": "psr/http-factory",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/phpspec/prophecy.git",
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.2",
- "php": "^7.2 || ~8.0, <8.2",
- "phpdocumentor/reflection-docblock": "^5.2",
- "sebastian/comparator": "^3.0 || ^4.0",
- "sebastian/recursion-context": "^3.0 || ^4.0"
- },
- "require-dev": {
- "phpspec/phpspec": "^6.0 || ^7.0",
- "phpunit/phpunit": "^8.0 || ^9.0"
+ "php": ">=7.1",
+ "psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Prophecy\\": "src/Prophecy"
+ "Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4837,59 +7041,52 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
- },
- {
- "name": "Marcello Duarte",
- "email": "marcello.duarte@gmail.com"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "Highly opinionated mocking framework for PHP 5.3+",
- "homepage": "https://github.com/phpspec/prophecy",
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
"keywords": [
- "Double",
- "Dummy",
- "fake",
- "mock",
- "spy",
- "stub"
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
],
"support": {
- "issues": "https://github.com/phpspec/prophecy/issues",
- "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
+ "source": "https://github.com/php-fig/http-factory"
},
- "time": "2021-12-08T12:19:24+00:00"
+ "time": "2024-04-15T12:06:14+00:00"
},
{
- "name": "phpspec/prophecy-phpunit",
- "version": "v2.0.1",
+ "name": "psr/http-message",
+ "version": "2.0",
"source": {
"type": "git",
- "url": "https://github.com/phpspec/prophecy-phpunit.git",
- "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177"
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/2d7a9df55f257d2cba9b1d0c0963a54960657177",
- "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
- "php": "^7.3 || ^8",
- "phpspec/prophecy": "^1.3",
- "phpunit/phpunit": "^9.1"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Prophecy\\PhpUnit\\": "src"
+ "Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4898,1441 +7095,1512 @@
],
"authors": [
{
- "name": "Christophe Coevoet",
- "email": "stof@notk.org"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "Integrating the Prophecy mocking library in PHPUnit test cases",
- "homepage": "http://phpspec.net",
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
"keywords": [
- "phpunit",
- "prophecy"
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
],
"support": {
- "issues": "https://github.com/phpspec/prophecy-phpunit/issues",
- "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.1"
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
},
- "time": "2020-07-09T08:33:42+00:00"
+ "time": "2023-04-04T09:54:51+00:00"
},
{
- "name": "phpstan/phpdoc-parser",
- "version": "1.7.0",
+ "name": "psr/log",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "367a8d9d5f7da2a0136422d27ce8840583926955"
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/367a8d9d5f7da2a0136422d27ce8840583926955",
- "reference": "367a8d9d5f7da2a0136422d27ce8840583926955",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
+ "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^1.5",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpstan/phpstan-strict-rules": "^1.0",
- "phpunit/phpunit": "^9.5",
- "symfony/process": "^5.2"
+ "php": ">=8.0.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "PHPStan\\PhpDocParser\\": [
- "src/"
- ]
+ "Psr\\Log\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "PHPDoc parser with support for nullable, intersection and generic types",
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
"support": {
- "issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/1.7.0"
+ "source": "https://github.com/php-fig/log/tree/2.0.0"
},
- "time": "2022-08-09T12:23:23+00:00"
+ "time": "2021-07-14T16:41:46+00:00"
},
{
- "name": "phpstan/phpstan",
- "version": "0.12.99",
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan.git",
- "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7"
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b4d40f1d759942f523be267a1bab6884f46ca3f7",
- "reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
"shasum": ""
},
"require": {
- "php": "^7.1|^8.0"
+ "php": ">=5.6"
},
- "conflict": {
- "phpstan/phpstan-shim": "*"
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
},
- "bin": [
- "phpstan",
- "phpstan.phar"
- ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- }
- },
"autoload": {
"files": [
- "bootstrap.php"
+ "src/getallheaders.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "PHPStan - PHP Static Analysis Tool",
- "support": {
- "issues": "https://github.com/phpstan/phpstan/issues",
- "source": "https://github.com/phpstan/phpstan/tree/0.12.99"
- },
- "funding": [
- {
- "url": "https://github.com/ondrejmirtes",
- "type": "github"
- },
- {
- "url": "https://github.com/phpstan",
- "type": "github"
- },
- {
- "url": "https://www.patreon.com/phpstan",
- "type": "patreon"
- },
+ "authors": [
{
- "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
- "type": "tidelift"
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
}
],
- "time": "2021-09-12T20:09:55+00:00"
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "time": "2019-03-08T08:55:37+00:00"
},
{
- "name": "phpstan/phpstan-deprecation-rules",
- "version": "0.12.6",
+ "name": "ramsey/collection",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
- "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb"
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
- "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.60"
+ "php": "^8.1"
},
"require-dev": {
- "phing/phing": "^2.16.3",
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12",
- "phpunit/phpunit": "^7.5.20"
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.28.3",
+ "fakerphp/faker": "^1.21",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "mockery/mockery": "^1.5",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.3",
+ "phpcsstandards/phpcsutils": "^1.0.0-rc1",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpstan/extension-installer": "^1.2",
+ "phpstan/phpstan": "^1.9",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.5",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "ramsey/coding-standard": "^2.0.3",
+ "ramsey/conventional-commits": "^1.3",
+ "vimeo/psalm": "^5.4"
},
- "type": "phpstan-extension",
+ "type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
+ "captainhook": {
+ "force-install": true
},
- "phpstan": {
- "includes": [
- "rules.neon"
- ]
+ "ramsey/conventional-commits": {
+ "configFile": "conventional-commits.json"
}
},
"autoload": {
"psr-4": {
- "PHPStan\\": "src/"
+ "Ramsey\\Collection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
"support": {
- "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
- "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/0.12.6"
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/2.0.0"
},
- "time": "2020-12-13T10:20:54+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-12-31T21:50:55+00:00"
},
{
- "name": "phpstan/phpstan-php-parser",
- "version": "0.12.3",
+ "name": "ramsey/uuid",
+ "version": "4.7.6",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-php-parser.git",
- "reference": "e140bc57f3bd5e8a4d45155556618a43736592e9"
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-php-parser/zipball/e140bc57f3bd5e8a4d45155556618a43736592e9",
- "reference": "e140bc57f3bd5e8a4d45155556618a43736592e9",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.60"
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
+ "ext-json": "*",
+ "php": "^8.0",
+ "ramsey/collection": "^1.2 || ^2.0"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
},
"require-dev": {
- "phing/phing": "^2.16.3",
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12.16",
- "phpstan/phpstan-strict-rules": "^0.12.6",
- "phpunit/phpunit": "^7.5.20"
+ "captainhook/captainhook": "^5.10",
+ "captainhook/plugin-composer": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+ "doctrine/annotations": "^1.8",
+ "ergebnis/composer-normalize": "^2.15",
+ "mockery/mockery": "^1.3",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock": "^2.2",
+ "php-mock/php-mock-mockery": "^1.3",
+ "php-parallel-lint/php-parallel-lint": "^1.1",
+ "phpbench/phpbench": "^1.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9",
+ "ramsey/composer-repl": "^1.4",
+ "slevomat/coding-standard": "^8.4",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.9"
},
- "type": "phpstan-extension",
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
- "phpstan": {
- "includes": [
- "extension.neon"
- ]
+ "captainhook": {
+ "force-install": true
}
},
"autoload": {
+ "files": [
+ "src/functions.php"
+ ],
"psr-4": {
- "PHPStan\\": "src/"
+ "Ramsey\\Uuid\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "PHP-Parser extensions for PHPStan",
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
"support": {
- "issues": "https://github.com/phpstan/phpstan-php-parser/issues",
- "source": "https://github.com/phpstan/phpstan-php-parser/tree/0.12.3"
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "source": "https://github.com/ramsey/uuid/tree/4.7.6"
},
- "time": "2020-12-12T21:05:25+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-27T21:32:50+00:00"
},
{
- "name": "phpstan/phpstan-phpunit",
- "version": "0.12.22",
+ "name": "react/promise",
+ "version": "v3.1.0",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-phpunit.git",
- "reference": "7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc"
+ "url": "https://github.com/reactphp/promise.git",
+ "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc",
- "reference": "7c01ef93bf128b4ac8bdad38c54b2a4fd6b0b3cc",
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
+ "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.92"
- },
- "conflict": {
- "phpunit/phpunit": "<7.0"
+ "php": ">=7.1.0"
},
"require-dev": {
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-strict-rules": "^0.12.6",
- "phpunit/phpunit": "^9.5"
- },
- "type": "phpstan-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "0.12-dev"
- },
- "phpstan": {
- "includes": [
- "extension.neon",
- "rules.neon"
- ]
- }
+ "phpstan/phpstan": "1.10.39 || 1.4.10",
+ "phpunit/phpunit": "^9.6 || ^7.5"
},
+ "type": "library",
"autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
"psr-4": {
- "PHPStan\\": "src/"
+ "React\\Promise\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "PHPUnit extensions and rules for PHPStan",
+ "authors": [
+ {
+ "name": "Jan Sorgalla",
+ "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",
+ "keywords": [
+ "promise",
+ "promises"
+ ],
"support": {
- "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
- "source": "https://github.com/phpstan/phpstan-phpunit/tree/0.12.22"
+ "issues": "https://github.com/reactphp/promise/issues",
+ "source": "https://github.com/reactphp/promise/tree/v3.1.0"
},
- "time": "2021-08-12T10:53:43+00:00"
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-16T16:21:57+00:00"
},
{
- "name": "phpstan/phpstan-strict-rules",
- "version": "0.12.11",
+ "name": "revolt/event-loop",
+ "version": "v1.0.6",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan-strict-rules.git",
- "reference": "2b72e8e17d2034145f239126e876e5fb659675e2"
+ "url": "https://github.com/revoltphp/event-loop.git",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/2b72e8e17d2034145f239126e876e5fb659675e2",
- "reference": "2b72e8e17d2034145f239126e876e5fb659675e2",
+ "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/25de49af7223ba039f64da4ae9a28ec2d10d0254",
+ "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0",
- "phpstan/phpstan": "^0.12.96"
+ "php": ">=8.1"
},
"require-dev": {
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpstan-phpunit": "^0.12.16",
- "phpunit/phpunit": "^9.5"
+ "ext-json": "*",
+ "jetbrains/phpstorm-stubs": "^2019.3",
+ "phpunit/phpunit": "^9",
+ "psalm/phar": "^5.15"
},
- "type": "phpstan-extension",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.12-dev"
- },
- "phpstan": {
- "includes": [
- "rules.neon"
- ]
+ "dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "PHPStan\\": "src/"
+ "Revolt\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "Extra strict and opinionated rules for PHPStan",
+ "authors": [
+ {
+ "name": "Aaron Piotrowski",
+ "email": "aaron@trowski.com"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "ceesjank@gmail.com"
+ },
+ {
+ "name": "Christian Lรผck",
+ "email": "christian@clue.engineering"
+ },
+ {
+ "name": "Niklas Keller",
+ "email": "me@kelunik.com"
+ }
+ ],
+ "description": "Rock-solid event loop for concurrent PHP applications.",
+ "keywords": [
+ "async",
+ "asynchronous",
+ "concurrency",
+ "event",
+ "event-loop",
+ "non-blocking",
+ "scheduler"
+ ],
"support": {
- "issues": "https://github.com/phpstan/phpstan-strict-rules/issues",
- "source": "https://github.com/phpstan/phpstan-strict-rules/tree/0.12.11"
+ "issues": "https://github.com/revoltphp/event-loop/issues",
+ "source": "https://github.com/revoltphp/event-loop/tree/v1.0.6"
},
- "time": "2021-08-21T11:36:27+00:00"
+ "time": "2023-11-30T05:34:44+00:00"
},
{
- "name": "phpunit/php-code-coverage",
- "version": "9.2.15",
+ "name": "roave/backward-compatibility-check",
+ "version": "8.6.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
+ "url": "https://github.com/Roave/BackwardCompatibilityCheck.git",
+ "reference": "5e533114a996f73a7551846c06c59a80185f4d16"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
- "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
+ "url": "https://api.github.com/repos/Roave/BackwardCompatibilityCheck/zipball/5e533114a996f73a7551846c06c59a80185f4d16",
+ "reference": "5e533114a996f73a7551846c06c59a80185f4d16",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-xmlwriter": "*",
- "nikic/php-parser": "^4.13.0",
- "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.3",
- "sebastian/version": "^3.0.1",
- "theseer/tokenizer": "^1.2.0"
+ "azjezz/psl": "^2.3.1",
+ "composer/composer": "^2.6.4",
+ "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"
},
- "require-dev": {
- "phpunit/phpunit": "^9.3"
+ "conflict": {
+ "revolt/event-loop": "<0.2.5",
+ "symfony/process": "<5.3.7"
},
- "suggest": {
- "ext-pcov": "*",
- "ext-xdebug": "*"
+ "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.7.1",
+ "vimeo/psalm": "^5.4.0"
},
+ "bin": [
+ "bin/roave-backward-compatibility-check"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "9.2-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Roave\\BackwardCompatibility\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "James Titcumb",
+ "email": "james@asgrim.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
- "keywords": [
- "coverage",
- "testing",
- "xunit"
- ],
+ "description": "Tool to compare two revisions of a public API to check for BC breaks",
"support": {
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
+ "issues": "https://github.com/Roave/BackwardCompatibilityCheck/issues",
+ "source": "https://github.com/Roave/BackwardCompatibilityCheck/tree/8.6.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2022-03-07T09:28:20+00:00"
+ "time": "2023-12-20T14:01:33+00:00"
},
{
- "name": "phpunit/php-file-iterator",
- "version": "3.0.6",
+ "name": "roave/better-reflection",
+ "version": "6.26.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
+ "url": "https://github.com/Roave/BetterReflection.git",
+ "reference": "658309b70c5afd7b9cfaad20c18aff3943cce23a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
+ "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/658309b70c5afd7b9cfaad20c18aff3943cce23a",
+ "reference": "658309b70c5afd7b9cfaad20c18aff3943cce23a",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "ext-json": "*",
+ "jetbrains/phpstorm-stubs": "2023.3",
+ "nikic/php-parser": "^4.18.0",
+ "php": "~8.2.0 || ~8.3.2",
+ "roave/signature": "^1.8.0"
},
- "require-dev": {
- "phpunit/phpunit": "^9.3"
+ "conflict": {
+ "thecodingmachine/safe": "<1.1.3"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
+ "suggest": {
+ "composer/composer": "Required to use the ComposerSourceLocator"
},
+ "type": "library",
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Roave\\BetterReflection\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "James Titcumb",
+ "email": "james@asgrim.com",
+ "homepage": "https://github.com/asgrim"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "https://ocramius.github.io/"
+ },
+ {
+ "name": "Gary Hockin",
+ "email": "gary@roave.com",
+ "homepage": "https://github.com/geeh"
+ },
+ {
+ "name": "Jaroslav Hanslรญk",
+ "email": "kukulich@kukulich.cz",
+ "homepage": "https://github.com/kukulich"
}
],
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
- "keywords": [
- "filesystem",
- "iterator"
- ],
+ "description": "Better Reflection - an improved code reflection API",
"support": {
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
+ "issues": "https://github.com/Roave/BetterReflection/issues",
+ "source": "https://github.com/Roave/BetterReflection/tree/6.26.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2021-12-02T12:48:52+00:00"
+ "time": "2024-03-11T17:43:07+00:00"
},
{
- "name": "phpunit/php-invoker",
- "version": "3.1.1",
+ "name": "roave/infection-static-analysis-plugin",
+ "version": "1.35.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
+ "url": "https://github.com/Roave/infection-static-analysis-plugin.git",
+ "reference": "3cb32845c5f758913a4b9eafd91ae18eafc26d82"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
+ "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/3cb32845c5f758913a4b9eafd91ae18eafc26d82",
+ "reference": "3cb32845c5f758913a4b9eafd91ae18eafc26d82",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "composer-runtime-api": "^2.2",
+ "infection/infection": "0.27.10",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "sanmai/later": "^0.1.4",
+ "vimeo/psalm": "^4.30.0 || ^5.15"
},
"require-dev": {
- "ext-pcntl": "*",
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-pcntl": "*"
+ "doctrine/coding-standard": "^12.0.0",
+ "phpunit/phpunit": "^10.5.12"
},
+ "bin": [
+ "bin/roave-infection-static-analysis-plugin"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Roave\\InfectionStaticAnalysis\\": "src/Roave/InfectionStaticAnalysis"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Invoke callables with a timeout",
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
- "keywords": [
- "process"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "time": "2020-09-28T05:58:55+00:00"
+ "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.35.0"
+ },
+ "time": "2024-03-10T11:55:48+00:00"
},
{
- "name": "phpunit/php-text-template",
- "version": "2.0.4",
+ "name": "roave/signature",
+ "version": "1.8.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
+ "url": "https://github.com/Roave/Signature.git",
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
+ "url": "https://api.github.com/repos/Roave/Signature/zipball/f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
+ "reference": "f92ce20f82c9a1df3b50fc56fbdaeb82cf4c9c5b",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "doctrine/coding-standard": "^12.0.0",
+ "infection/infection": "^0.26.19",
+ "phpunit/phpunit": "^9.6.7",
+ "vimeo/psalm": "^5.9.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Roave\\Signature\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
- "keywords": [
- "template"
+ "MIT"
],
+ "description": "Sign and verify stuff",
"support": {
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
+ "issues": "https://github.com/Roave/Signature/issues",
+ "source": "https://github.com/Roave/Signature/tree/1.8.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T05:33:50+00:00"
+ "time": "2023-11-25T00:11:29+00:00"
},
{
- "name": "phpunit/php-timer",
- "version": "5.0.3",
+ "name": "sanmai/later",
+ "version": "0.1.4",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
+ "url": "https://github.com/sanmai/later.git",
+ "reference": "e24c4304a4b1349c2a83151a692cec0c10579f60"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
+ "url": "https://api.github.com/repos/sanmai/later/zipball/e24c4304a4b1349c2a83151a692cec0c10579f60",
+ "reference": "e24c4304a4b1349c2a83151a692cec0c10579f60",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=7.4"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "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-master": "5.0-dev"
+ "dev-main": "0.1.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Later\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "Apache-2.0"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Alexey Kopytko",
+ "email": "alexey@kopytko.com"
}
],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
- "keywords": [
- "timer"
- ],
+ "description": "Later: deferred wrapper object",
"support": {
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
- "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
+ "issues": "https://github.com/sanmai/later/issues",
+ "source": "https://github.com/sanmai/later/tree/0.1.4"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/sanmai",
"type": "github"
}
],
- "time": "2020-10-26T13:16:10+00:00"
+ "time": "2023-10-24T00:25:28+00:00"
},
{
- "name": "phpunit/phpunit",
- "version": "9.5.21",
+ "name": "sanmai/pipeline",
+ "version": "v6.10",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
+ "url": "https://github.com/sanmai/pipeline.git",
+ "reference": "cbd2ea30ba8bef596b8dad1adb9c92fb2987e430"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
- "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
+ "url": "https://api.github.com/repos/sanmai/pipeline/zipball/cbd2ea30ba8bef596b8dad1adb9c92fb2987e430",
+ "reference": "cbd2ea30ba8bef596b8dad1adb9c92fb2987e430",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.3.1",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.10.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.13",
- "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/diff": "^4.0.3",
- "sebastian/environment": "^5.1.3",
- "sebastian/exporter": "^4.0.3",
- "sebastian/global-state": "^5.0.1",
- "sebastian/object-enumerator": "^4.0.3",
- "sebastian/resource-operations": "^3.0.3",
- "sebastian/type": "^3.0",
- "sebastian/version": "^3.0.2"
- },
- "require-dev": {
- "phpspec/prophecy-phpunit": "^2.0.1"
+ "php": "^7.4 || ^8.0"
},
- "suggest": {
- "ext-soap": "*",
- "ext-xdebug": "*"
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.8",
+ "friendsofphp/php-cs-fixer": "^3.17",
+ "infection/infection": ">=0.10.5",
+ "league/pipeline": "^0.3 || ^1.0",
+ "phan/phan": ">=1.1",
+ "php-coveralls/php-coveralls": "^2.4.1",
+ "phpstan/phpstan": ">=0.10",
+ "phpunit/phpunit": ">=9.4",
+ "vimeo/psalm": ">=2"
},
- "bin": [
- "phpunit"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "9.5-dev"
+ "dev-main": "v6.x-dev"
}
},
"autoload": {
"files": [
- "src/Framework/Assert/Functions.php"
+ "src/functions.php"
],
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Pipeline\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "Apache-2.0"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Alexey Kopytko",
+ "email": "alexey@kopytko.com"
}
],
- "description": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
- "keywords": [
- "phpunit",
- "testing",
- "xunit"
- ],
+ "description": "General-purpose collections pipeline",
"support": {
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
+ "issues": "https://github.com/sanmai/pipeline/issues",
+ "source": "https://github.com/sanmai/pipeline/tree/v6.10"
},
"funding": [
{
- "url": "https://phpunit.de/sponsors.html",
- "type": "custom"
- },
- {
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/sanmai",
"type": "github"
}
],
- "time": "2022-06-19T12:14:25+00:00"
+ "time": "2024-03-16T01:33:30+00:00"
},
{
- "name": "psalm/plugin-phpunit",
- "version": "0.16.1",
+ "name": "sebastian/cli-parser",
+ "version": "2.0.1",
"source": {
"type": "git",
- "url": "https://github.com/psalm/psalm-plugin-phpunit.git",
- "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24"
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
+ "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/5dd3be04f37a857d52880ef6af2524a441dfef24",
- "reference": "5dd3be04f37a857d52880ef6af2524a441dfef24",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
+ "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
"shasum": ""
},
"require": {
- "composer/package-versions-deprecated": "^1.10",
- "composer/semver": "^1.4 || ^2.0 || ^3.0",
- "ext-simplexml": "*",
- "php": "^7.1 || ^8.0",
- "vimeo/psalm": "dev-master || dev-4.x || ^4.5"
- },
- "conflict": {
- "phpunit/phpunit": "<7.5"
+ "php": ">=8.1"
},
"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.11.0",
- "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ "phpunit/phpunit": "^10.0"
},
- "type": "psalm-plugin",
+ "type": "library",
"extra": {
- "psalm": {
- "pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
+ "branch-alias": {
+ "dev-main": "2.0-dev"
}
},
"autoload": {
- "psr-4": {
- "Psalm\\PhpUnitPlugin\\": "src"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Matt Brown",
- "email": "github@muglug.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Psalm plugin for PHPUnit",
+ "description": "Library for parsing CLI options",
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
"support": {
- "issues": "https://github.com/psalm/psalm-plugin-phpunit/issues",
- "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.16.1"
- },
- "time": "2021-06-18T23:56:46+00:00"
- },
- {
- "name": "psr/container",
- "version": "1.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
- "shasum": ""
- },
- "require": {
- "php": ">=7.4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
}
],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/1.1.2"
- },
- "time": "2021-11-05T16:50:12+00:00"
+ "time": "2024-03-02T07:12:49+00:00"
},
{
- "name": "psr/http-client",
- "version": "1.0.1",
+ "name": "sebastian/code-unit",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-client.git",
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
+ "url": "https://github.com/sebastianbergmann/code-unit.git",
+ "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
+ "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
"shasum": ""
},
"require": {
- "php": "^7.0 || ^8.0",
- "psr/http-message": "^1.0"
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-main": "2.0-dev"
}
},
"autoload": {
- "psr-4": {
- "Psr\\Http\\Client\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Common interface for HTTP clients",
- "homepage": "https://github.com/php-fig/http-client",
- "keywords": [
- "http",
- "http-client",
- "psr",
- "psr-18"
- ],
+ "description": "Collection of value objects that represent the PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/code-unit",
"support": {
- "source": "https://github.com/php-fig/http-client/tree/master"
+ "issues": "https://github.com/sebastianbergmann/code-unit/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
},
- "time": "2020-06-29T06:28:15+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-03T06:58:43+00:00"
},
{
- "name": "psr/http-factory",
- "version": "1.0.2",
+ "name": "sebastian/code-unit-reverse-lookup",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-factory.git",
- "reference": "e616d01114759c4c489f93b099585439f795fe35"
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+ "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
- "reference": "e616d01114759c4c489f93b099585439f795fe35",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
+ "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
"shasum": ""
},
"require": {
- "php": ">=7.0.0",
- "psr/http-message": "^1.0 || ^2.0"
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-main": "3.0-dev"
}
},
"autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
}
],
- "description": "Common interfaces for PSR-7 HTTP message factories",
- "keywords": [
- "factory",
- "http",
- "message",
- "psr",
- "psr-17",
- "psr-7",
- "request",
- "response"
- ],
+ "description": "Looks up which function or method a line of code belongs to",
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
"support": {
- "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
},
- "time": "2023-04-10T20:10:41+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-02-03T06:59:15+00:00"
},
{
- "name": "psr/http-message",
- "version": "1.1",
+ "name": "sebastian/comparator",
+ "version": "5.0.1",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
+ "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "ext-dom": "*",
+ "ext-mbstring": "*",
+ "php": ">=8.1",
+ "sebastian/diff": "^5.0",
+ "sebastian/exporter": "^5.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-main": "5.0-dev"
}
},
"autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
}
],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
"keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
+ "comparator",
+ "compare",
+ "equality"
],
"support": {
- "source": "https://github.com/php-fig/http-message/tree/1.1"
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "security": "https://github.com/sebastianbergmann/comparator/security/policy",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
},
- "time": "2023-04-04T09:50:52+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-08-14T13:18:12+00:00"
},
{
- "name": "psr/log",
- "version": "1.1.4",
+ "name": "sebastian/complexity",
+ "version": "3.2.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
+ "url": "https://github.com/sebastianbergmann/complexity.git",
+ "reference": "68ff824baeae169ec9f2137158ee529584553799"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
+ "reference": "68ff824baeae169ec9f2137158ee529584553799",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-main": "3.2-dev"
}
},
"autoload": {
- "psr-4": {
- "Psr\\Log\\": "Psr/Log/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
- "keywords": [
- "log",
- "psr",
- "psr-3"
- ],
+ "description": "Library for calculating the complexity of PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/complexity",
"support": {
- "source": "https://github.com/php-fig/log/tree/1.1.4"
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
+ "security": "https://github.com/sebastianbergmann/complexity/security/policy",
+ "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
},
- "time": "2021-05-03T11:20:27+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-12-21T08:37:17+00:00"
},
{
- "name": "ralouphie/getallheaders",
- "version": "3.0.3",
+ "name": "sebastian/diff",
+ "version": "5.1.1",
"source": {
"type": "git",
- "url": "https://github.com/ralouphie/getallheaders.git",
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
+ "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
"shasum": ""
},
"require": {
- "php": ">=5.6"
+ "php": ">=8.1"
},
"require-dev": {
- "php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^5 || ^6.5"
+ "phpunit/phpunit": "^10.0",
+ "symfony/process": "^6.4"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.1-dev"
+ }
+ },
"autoload": {
- "files": [
- "src/getallheaders.php"
+ "classmap": [
+ "src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Ralph Khattar",
- "email": "ralph.khattar@gmail.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
}
],
- "description": "A polyfill for getallheaders.",
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
"support": {
- "issues": "https://github.com/ralouphie/getallheaders/issues",
- "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
+ "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
},
- "time": "2019-03-08T08:55:37+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-02T07:15:17+00:00"
},
{
- "name": "roave/backward-compatibility-check",
- "version": "5.0.0",
+ "name": "sebastian/environment",
+ "version": "6.1.0",
"source": {
"type": "git",
- "url": "https://github.com/Roave/BackwardCompatibilityCheck.git",
- "reference": "15611feaa64b3b9fb8dbac3425e4d605c1f35c4f"
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/BackwardCompatibilityCheck/zipball/15611feaa64b3b9fb8dbac3425e4d605c1f35c4f",
- "reference": "15611feaa64b3b9fb8dbac3425e4d605c1f35c4f",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
+ "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
"shasum": ""
},
"require": {
- "composer/composer": "^1.10.7",
- "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",
- "roave/security-advisories": "dev-master",
- "squizlabs/php_codesniffer": "^3.5.5",
- "vimeo/psalm": "^3.11.6"
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0"
+ },
+ "suggest": {
+ "ext-posix": "*"
},
- "bin": [
- "bin/roave-backward-compatibility-check"
- ],
"type": "library",
- "autoload": {
- "psr-4": {
- "Roave\\BackwardCompatibility\\": "src"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.1-dev"
}
},
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "James Titcumb",
- "email": "james@asgrim.com"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
}
],
- "description": "Tool to compare two revisions of a public API to check for BC breaks",
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "https://github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
"support": {
- "issues": "https://github.com/Roave/BackwardCompatibilityCheck/issues",
- "source": "https://github.com/Roave/BackwardCompatibilityCheck/tree/master"
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "security": "https://github.com/sebastianbergmann/environment/security/policy",
+ "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
},
- "time": "2020-06-22T11:14:45+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-23T08:47:14+00:00"
},
{
- "name": "roave/better-reflection",
- "version": "4.12.2",
+ "name": "sebastian/exporter",
+ "version": "5.1.2",
"source": {
"type": "git",
- "url": "https://github.com/Roave/BetterReflection.git",
- "reference": "73c376c7245b2928837ed1e8bef446f57f1148a0"
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/BetterReflection/zipball/73c376c7245b2928837ed1e8bef446f57f1148a0",
- "reference": "73c376c7245b2928837ed1e8bef446f57f1148a0",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
+ "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
"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"
+ "ext-mbstring": "*",
+ "php": ">=8.1",
+ "sebastian/recursion-context": "^5.0"
},
"require-dev": {
- "doctrine/coding-standard": "^8.2.0",
- "infection/infection": "^0.20.0",
- "phpstan/phpstan": "0.12.25",
- "phpunit/phpunit": "^9.4.4",
- "roave/infection-static-analysis-plugin": "^1.2",
- "vimeo/psalm": "^4.2"
- },
- "suggest": {
- "composer/composer": "Required to use the ComposerSourceLocator"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "5.1-dev"
}
},
"autoload": {
- "psr-4": {
- "Roave\\BetterReflection\\": "src"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "James Titcumb",
- "email": "james@asgrim.com",
- "homepage": "https://github.com/asgrim"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
},
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "https://ocramius.github.io/"
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
},
{
- "name": "Gary Hockin",
- "email": "gary@roave.com",
- "homepage": "https://github.com/geeh"
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
},
{
- "name": "Jaroslav Hanslรญk",
- "email": "kukulich@kukulich.cz",
- "homepage": "https://github.com/kukulich"
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
}
],
- "description": "Better Reflection - an improved code reflection API",
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
"support": {
- "issues": "https://github.com/Roave/BetterReflection/issues",
- "source": "https://github.com/Roave/BetterReflection/tree/4.12.2"
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "security": "https://github.com/sebastianbergmann/exporter/security/policy",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
},
- "time": "2020-12-17T17:48:54+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-02T07:17:12+00:00"
},
{
- "name": "roave/infection-static-analysis-plugin",
- "version": "1.7.1",
+ "name": "sebastian/global-state",
+ "version": "6.0.2",
"source": {
"type": "git",
- "url": "https://github.com/Roave/infection-static-analysis-plugin.git",
- "reference": "36d171236fa44b485538c88f56fd1f536b903036"
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/infection-static-analysis-plugin/zipball/36d171236fa44b485538c88f56fd1f536b903036",
- "reference": "36d171236fa44b485538c88f56fd1f536b903036",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
+ "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
"shasum": ""
},
"require": {
- "infection/infection": "0.20.2",
- "ocramius/package-versions": "^1.9.0 || ^2.0.0",
- "php": "~7.4.7|~8.0.0",
- "vimeo/psalm": "^4.3.2"
+ "php": ">=8.1",
+ "sebastian/object-reflector": "^3.0",
+ "sebastian/recursion-context": "^5.0"
},
"require-dev": {
- "doctrine/coding-standard": "^8.2.0",
- "phpunit/phpunit": "^9.5.0"
+ "ext-dom": "*",
+ "phpunit/phpunit": "^10.0"
},
- "bin": [
- "bin/roave-infection-static-analysis-plugin"
- ],
"type": "library",
- "autoload": {
- "psr-4": {
- "Roave\\InfectionStaticAnalysis\\": "src/Roave/InfectionStaticAnalysis"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
}
},
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
}
],
- "description": "Static analysis on top of mutation testing - prevents escaped mutants from being invalid according to static analysis",
+ "description": "Snapshotting of global state",
+ "homepage": "https://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
"support": {
- "issues": "https://github.com/Roave/infection-static-analysis-plugin/issues",
- "source": "https://github.com/Roave/infection-static-analysis-plugin/tree/1.7.1"
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "security": "https://github.com/sebastianbergmann/global-state/security/policy",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
},
- "time": "2021-03-04T16:33:09+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-02T07:19:19+00:00"
},
{
- "name": "roave/signature",
- "version": "1.5.0",
+ "name": "sebastian/lines-of-code",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/Roave/Signature.git",
- "reference": "b100e2c40e51f3c56a0b29faf3e7ca75c33df60b"
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+ "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/Signature/zipball/b100e2c40e51f3c56a0b29faf3e7ca75c33df60b",
- "reference": "b100e2c40e51f3c56a0b29faf3e7ca75c33df60b",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
+ "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
"shasum": ""
},
"require": {
- "php": "7.4.*|8.0.*|8.1.*"
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "php": ">=8.1"
},
"require-dev": {
- "doctrine/coding-standard": "^9.0",
- "infection/infection": "^0.25.1",
- "phpunit/phpunit": "^9.5.9",
- "vimeo/psalm": "^4.10.1"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
- "autoload": {
- "psr-4": {
- "Roave\\Signature\\": "src"
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.0-dev"
}
},
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
- "description": "Sign and verify stuff",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for counting the lines of code in PHP source code",
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
"support": {
- "issues": "https://github.com/Roave/Signature/issues",
- "source": "https://github.com/Roave/Signature/tree/1.5.0"
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+ "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
},
- "time": "2021-09-18T13:37:44+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2023-12-21T08:38:20+00:00"
},
{
- "name": "sanmai/pipeline",
- "version": "v5.2.1",
+ "name": "sebastian/object-enumerator",
+ "version": "5.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sanmai/pipeline.git",
- "reference": "2b5509a7635143165041109eb1c393c8515724f1"
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sanmai/pipeline/zipball/2b5509a7635143165041109eb1c393c8515724f1",
- "reference": "2b5509a7635143165041109eb1c393c8515724f1",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
+ "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": ">=8.1",
+ "sebastian/object-reflector": "^3.0",
+ "sebastian/recursion-context": "^5.0"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.8",
- "friendsofphp/php-cs-fixer": "^3",
- "infection/infection": ">=0.10.5",
- "league/pipeline": "^1.0 || ^0.3",
- "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"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "v5.x-dev"
+ "dev-main": "5.0-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php"
- ],
- "psr-4": {
- "Pipeline\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Alexey Kopytko",
- "email": "alexey@kopytko.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
}
],
- "description": "General-purpose collections pipeline",
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
"support": {
- "issues": "https://github.com/sanmai/pipeline/issues",
- "source": "https://github.com/sanmai/pipeline/tree/v5.2.1"
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
},
"funding": [
{
- "url": "https://github.com/sanmai",
+ "url": "https://github.com/sebastianbergmann",
"type": "github"
}
],
- "time": "2021-11-01T10:09:55+00:00"
+ "time": "2023-02-03T07:08:32+00:00"
},
{
- "name": "sebastian/cli-parser",
- "version": "1.0.1",
+ "name": "sebastian/object-reflector",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
+ "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-main": "3.0-dev"
}
},
"autoload": {
@@ -6347,15 +8615,14 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "email": "sebastian@phpunit.de"
}
],
- "description": "Library for parsing CLI options",
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
"support": {
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
},
"funding": [
{
@@ -6363,32 +8630,32 @@
"type": "github"
}
],
- "time": "2020-09-28T06:08:49+00:00"
+ "time": "2023-02-03T07:06:18+00:00"
},
{
- "name": "sebastian/code-unit",
- "version": "1.0.8",
+ "name": "sebastian/recursion-context",
+ "version": "5.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit.git",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
+ "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-main": "5.0-dev"
}
},
"autoload": {
@@ -6403,15 +8670,22 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
}
],
- "description": "Collection of value objects that represent the PHP code units",
- "homepage": "https://github.com/sebastianbergmann/code-unit",
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
"support": {
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
},
"funding": [
{
@@ -6419,32 +8693,32 @@
"type": "github"
}
],
- "time": "2020-10-26T13:08:54+00:00"
+ "time": "2023-02-03T07:05:40+00:00"
},
{
- "name": "sebastian/code-unit-reverse-lookup",
- "version": "2.0.3",
+ "name": "sebastian/type",
+ "version": "4.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
+ "url": "https://github.com/sebastianbergmann/type.git",
+ "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
+ "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.1"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^10.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-main": "4.0-dev"
}
},
"autoload": {
@@ -6459,14 +8733,15 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Looks up which function or method a line of code belongs to",
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "description": "Collection of value objects that represent the types of the PHP type system",
+ "homepage": "https://github.com/sebastianbergmann/type",
"support": {
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
},
"funding": [
{
@@ -6474,34 +8749,29 @@
"type": "github"
}
],
- "time": "2020-09-28T05:30:19+00:00"
+ "time": "2023-02-03T07:10:45+00:00"
},
{
- "name": "sebastian/comparator",
- "version": "4.0.6",
+ "name": "sebastian/version",
+ "version": "4.0.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
+ "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
"shasum": ""
},
"require": {
- "php": ">=7.3",
- "sebastian/diff": "^4.0",
- "sebastian/exporter": "^4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-main": "4.0-dev"
}
},
"autoload": {
@@ -6516,31 +8786,15 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "https://github.com/sebastianbergmann/comparator",
- "keywords": [
- "comparator",
- "compare",
- "equality"
- ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
"support": {
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
},
"funding": [
{
@@ -6548,760 +8802,879 @@
"type": "github"
}
],
- "time": "2020-10-26T15:49:45+00:00"
+ "time": "2023-02-07T11:34:05+00:00"
},
{
- "name": "sebastian/complexity",
- "version": "2.0.2",
+ "name": "seld/jsonlint",
+ "version": "1.10.2",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/complexity.git",
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
+ "url": "https://github.com/Seldaek/jsonlint.git",
+ "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
+ "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.7",
- "php": ">=7.3"
+ "php": "^5.3 || ^7.0 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpstan/phpstan": "^1.5",
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
},
+ "bin": [
+ "bin/jsonlint"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Seld\\JsonLint\\": "src/Seld/JsonLint/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
}
],
- "description": "Library for calculating the complexity of PHP code units",
- "homepage": "https://github.com/sebastianbergmann/complexity",
+ "description": "JSON Linter",
+ "keywords": [
+ "json",
+ "linter",
+ "parser",
+ "validator"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
- "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
+ "issues": "https://github.com/Seldaek/jsonlint/issues",
+ "source": "https://github.com/Seldaek/jsonlint/tree/1.10.2"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/Seldaek",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
+ "type": "tidelift"
}
],
- "time": "2020-10-26T15:52:27+00:00"
+ "time": "2024-02-07T12:57:50+00:00"
},
{
- "name": "sebastian/diff",
- "version": "4.0.4",
+ "name": "seld/phar-utils",
+ "version": "1.2.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
+ "url": "https://github.com/Seldaek/phar-utils.git",
+ "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
+ "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
"shasum": ""
},
"require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3",
- "symfony/process": "^4.2 || ^5"
+ "php": ">=5.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "1.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Seld\\PharUtils\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be"
}
],
- "description": "Diff implementation",
- "homepage": "https://github.com/sebastianbergmann/diff",
+ "description": "PHAR file format utilities, for when PHP phars you up",
"keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
+ "phar"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/diff/issues",
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
+ "issues": "https://github.com/Seldaek/phar-utils/issues",
+ "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:10:38+00:00"
+ "time": "2022-08-31T10:31:18+00:00"
},
{
- "name": "sebastian/environment",
- "version": "5.1.4",
+ "name": "seld/signal-handler",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
+ "url": "https://github.com/Seldaek/signal-handler.git",
+ "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
- "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
+ "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
+ "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=7.2.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-posix": "*"
+ "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": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.1-dev"
+ "dev-main": "2.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Seld\\Signal\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
}
],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "http://www.github.com/sebastianbergmann/environment",
+ "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
"keywords": [
- "Xdebug",
- "environment",
- "hhvm"
+ "posix",
+ "sigint",
+ "signal",
+ "sigterm",
+ "unix"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/environment/issues",
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
+ "issues": "https://github.com/Seldaek/signal-handler/issues",
+ "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2022-04-03T09:37:03+00:00"
+ "time": "2023-09-03T09:24:00+00:00"
},
{
- "name": "sebastian/exporter",
- "version": "4.0.4",
+ "name": "slevomat/coding-standard",
+ "version": "8.15.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
+ "url": "https://github.com/slevomat/coding-standard.git",
+ "reference": "7d1d957421618a3803b593ec31ace470177d7817"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817",
+ "reference": "7d1d957421618a3803b593ec31ace470177d7817",
"shasum": ""
},
"require": {
- "php": ">=7.3",
- "sebastian/recursion-context": "^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.9.0"
},
"require-dev": {
- "ext-mbstring": "*",
- "phpunit/phpunit": "^9.3"
+ "phing/phing": "2.17.4",
+ "php-parallel-lint/php-parallel-lint": "1.3.2",
+ "phpstan/phpstan": "1.10.60",
+ "phpstan/phpstan-deprecation-rules": "1.1.4",
+ "phpstan/phpstan-phpunit": "1.3.16",
+ "phpstan/phpstan-strict-rules": "1.5.2",
+ "phpunit/phpunit": "8.5.21|9.6.8|10.5.11"
},
- "type": "library",
+ "type": "phpcodesniffer-standard",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "8.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
+ "MIT"
],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
"keywords": [
- "export",
- "exporter"
+ "dev",
+ "phpcs"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
+ "issues": "https://github.com/slevomat/coding-standard/issues",
+ "source": "https://github.com/slevomat/coding-standard/tree/8.15.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/kukulich",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
+ "type": "tidelift"
}
],
- "time": "2021-11-11T14:18:36+00:00"
+ "time": "2024-03-09T15:20:58+00:00"
},
{
- "name": "sebastian/global-state",
- "version": "5.0.5",
+ "name": "spatie/array-to-xml",
+ "version": "3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
+ "url": "https://github.com/spatie/array-to-xml.git",
+ "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
+ "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/f56b220fe2db1ade4c88098d83413ebdfc3bf876",
+ "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876",
"shasum": ""
},
"require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
"ext-dom": "*",
- "phpunit/phpunit": "^9.3"
+ "php": "^8.0"
},
- "suggest": {
- "ext-uopz": "*"
+ "require-dev": {
+ "mockery/mockery": "^1.2",
+ "pestphp/pest": "^1.21",
+ "spatie/pest-plugin-snapshots": "^1.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.0-dev"
+ "dev-main": "3.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Spatie\\ArrayToXml\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://freek.dev",
+ "role": "Developer"
}
],
- "description": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
+ "description": "Convert an array to xml",
+ "homepage": "https://github.com/spatie/array-to-xml",
"keywords": [
- "global state"
+ "array",
+ "convert",
+ "xml"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
+ "source": "https://github.com/spatie/array-to-xml/tree/3.3.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/spatie",
"type": "github"
}
],
- "time": "2022-02-14T08:28:10+00:00"
+ "time": "2024-05-01T10:20:27+00:00"
},
{
- "name": "sebastian/lines-of-code",
- "version": "1.0.3",
+ "name": "spatie/phpunit-snapshot-assertions",
+ "version": "5.1.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
+ "url": "https://github.com/spatie/phpunit-snapshot-assertions.git",
+ "reference": "61e2eb567713c89987895b8f514a7a4d3bff89c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
+ "url": "https://api.github.com/repos/spatie/phpunit-snapshot-assertions/zipball/61e2eb567713c89987895b8f514a7a4d3bff89c9",
+ "reference": "61e2eb567713c89987895b8f514a7a4d3bff89c9",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.6",
- "php": ">=7.3"
+ "composer-runtime-api": "^2.0",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "php": "^8.1",
+ "phpunit/phpunit": "^10.0|^11.0",
+ "symfony/property-access": "^5.2|^6.2|^7.0",
+ "symfony/serializer": "^5.2|^6.2|^7.0",
+ "symfony/yaml": "^5.2|^6.2|^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "spatie/pixelmatch-php": "dev-main",
+ "spatie/ray": "^1.37"
+ },
+ "suggest": {
+ "spatie/pixelmatch-php": "Required to use the image snapshot assertions"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-v5": "5.0-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Spatie\\Snapshots\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Sebastian De Deyne",
+ "email": "sebastian@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
}
],
- "description": "Library for counting the lines of code in PHP source code",
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+ "description": "Snapshot testing with PHPUnit",
+ "homepage": "https://github.com/spatie/phpunit-snapshot-assertions",
+ "keywords": [
+ "assert",
+ "phpunit",
+ "phpunit-snapshot-assertions",
+ "snapshot",
+ "spatie",
+ "testing"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
+ "issues": "https://github.com/spatie/phpunit-snapshot-assertions/issues",
+ "source": "https://github.com/spatie/phpunit-snapshot-assertions/tree/5.1.6"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "custom"
}
],
- "time": "2020-11-28T06:42:11+00:00"
+ "time": "2024-05-03T07:53:03+00:00"
},
{
- "name": "sebastian/object-enumerator",
- "version": "4.0.4",
+ "name": "squizlabs/php_codesniffer",
+ "version": "3.9.2",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
+ "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
+ "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/aac1f6f347a5c5ac6bc98ad395007df00990f480",
+ "reference": "aac1f6f347a5c5ac6bc98ad395007df00990f480",
"shasum": ""
},
"require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
+ "ext-simplexml": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": ">=5.4.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
},
+ "bin": [
+ "bin/phpcbf",
+ "bin/phpcs"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "3.x-dev"
}
},
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Greg Sherwood",
+ "role": "Former lead"
+ },
+ {
+ "name": "Juliette Reinders Folmer",
+ "role": "Current lead"
+ },
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
}
],
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
+ "keywords": [
+ "phpcs",
+ "standards",
+ "static analysis"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
+ "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/PHPCSStandards",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/jrfnl",
"type": "github"
+ },
+ {
+ "url": "https://opencollective.com/php_codesniffer",
+ "type": "open_collective"
}
],
- "time": "2020-10-26T13:12:34+00:00"
+ "time": "2024-04-23T20:25:34+00:00"
},
{
- "name": "sebastian/object-reflector",
- "version": "2.0.4",
+ "name": "symfony/config",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
+ "url": "https://github.com/symfony/config.git",
+ "reference": "f66f908a975500aa4594258bf454dc66e3939eac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
+ "url": "https://api.github.com/repos/symfony/config/zipball/f66f908a975500aa4594258bf454dc66e3939eac",
+ "reference": "f66f908a975500aa4594258bf454dc66e3939eac",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/filesystem": "^6.4|^7.0",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "conflict": {
+ "symfony/finder": "<6.4",
+ "symfony/service-contracts": "<2.5"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "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",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
+ "source": "https://github.com/symfony/config/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "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": "2020-10-26T13:14:26+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "sebastian/recursion-context",
- "version": "4.0.4",
+ "name": "symfony/console",
+ "version": "v6.4.7",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
+ "url": "https://github.com/symfony/console.git",
+ "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
+ "url": "https://api.github.com/repos/symfony/console/zipball/a170e64ae10d00ba89e2acbb590dc2e54da8ad8f",
+ "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^5.4|^6.0|^7.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<5.4",
+ "symfony/dotenv": "<5.4",
+ "symfony/event-dispatcher": "<5.4",
+ "symfony/lock": "<5.4",
+ "symfony/process": "<5.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "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",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
+ "source": "https://github.com/symfony/console/tree/v6.4.7"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "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": "2020-10-26T13:17:30+00:00"
+ "time": "2024-04-18T09:22:46+00:00"
},
{
- "name": "sebastian/resource-operations",
- "version": "3.0.3",
+ "name": "symfony/dependency-injection",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "4db1314337f4dd864113f88e08c9a7f98b1c1324"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4db1314337f4dd864113f88e08c9a7f98b1c1324",
+ "reference": "4db1314337f4dd864113f88e08c9a7f98b1c1324",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "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": {
- "phpunit/phpunit": "^9.0"
+ "symfony/config": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\DependencyInjection\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a list of PHP built-in functions that operate on resources",
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+ "description": "Allows you to standardize and centralize the way objects are constructed in your application",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
+ "source": "https://github.com/symfony/dependency-injection/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "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": "2020-09-28T06:45:17+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "sebastian/type",
- "version": "3.0.0",
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/type.git",
- "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
- "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
"shasum": ""
},
"require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "files": [
+ "function.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Collection of value objects that represent the types of the PHP type system",
- "homepage": "https://github.com/sebastianbergmann/type",
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "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": "2022-03-15T09:54:48+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "sebastian/version",
- "version": "3.0.2",
+ "name": "symfony/filesystem",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
+ "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8",
+ "symfony/process": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/version/issues",
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
+ "source": "https://github.com/symfony/filesystem/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "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": "2020-09-28T06:39:44+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "seld/jsonlint",
- "version": "1.10.2",
+ "name": "symfony/finder",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/Seldaek/jsonlint.git",
- "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259"
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
- "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c",
+ "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c",
"shasum": ""
},
"require": {
- "php": "^5.3 || ^7.0 || ^8.0"
+ "php": ">=8.2"
},
"require-dev": {
- "phpstan/phpstan": "^1.5",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
+ "symfony/filesystem": "^6.4|^7.0"
},
- "bin": [
- "bin/jsonlint"
- ],
"type": "library",
"autoload": {
"psr-4": {
- "Seld\\JsonLint\\": "src/Seld/JsonLint/"
- }
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7309,60 +9682,71 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "https://seld.be"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "JSON Linter",
- "keywords": [
- "json",
- "linter",
- "parser",
- "validator"
- ],
+ "description": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/Seldaek/jsonlint/issues",
- "source": "https://github.com/Seldaek/jsonlint/tree/1.10.2"
+ "source": "https://github.com/symfony/finder/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/Seldaek",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-02-07T12:57:50+00:00"
+ "time": "2024-04-28T11:44:19+00:00"
},
- {
- "name": "seld/phar-utils",
- "version": "1.2.1",
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/Seldaek/phar-utils.git",
- "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
- "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
+ "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
"shasum": ""
},
"require": {
- "php": ">=5.3"
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Seld\\PharUtils\\": "src/"
+ "Symfony\\Polyfill\\Ctype\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -7371,180 +9755,237 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PHAR file format utilities, for when PHP phars you up",
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
"keywords": [
- "phar"
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
],
"support": {
- "issues": "https://github.com/Seldaek/phar-utils/issues",
- "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
},
- "time": "2022-08-31T10:31:18+00:00"
+ "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": "2024-01-29T20:11:03+00:00"
},
{
- "name": "slevomat/coding-standard",
- "version": "7.2.1",
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/slevomat/coding-standard.git",
- "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90"
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/aff06ae7a84e4534bf6f821dc982a93a5d477c90",
- "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
+ "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
- "php": "^7.2 || ^8.0",
- "phpstan/phpdoc-parser": "^1.5.1",
- "squizlabs/php_codesniffer": "^3.6.2"
+ "php": ">=7.1"
},
- "require-dev": {
- "phing/phing": "2.17.3",
- "php-parallel-lint/php-parallel-lint": "1.3.2",
- "phpstan/phpstan": "1.4.10|1.7.1",
- "phpstan/phpstan-deprecation-rules": "1.0.0",
- "phpstan/phpstan-phpunit": "1.0.0|1.1.1",
- "phpstan/phpstan-strict-rules": "1.2.3",
- "phpunit/phpunit": "7.5.20|8.5.21|9.5.20"
+ "suggest": {
+ "ext-intl": "For best performance"
},
- "type": "phpcodesniffer-standard",
+ "type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "7.x-dev"
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "SlevomatCodingStandard\\": "SlevomatCodingStandard"
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
+ "authors": [
+ {
+ "name": "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": {
- "issues": "https://github.com/slevomat/coding-standard/issues",
- "source": "https://github.com/slevomat/coding-standard/tree/7.2.1"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
},
"funding": [
{
- "url": "https://github.com/kukulich",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2022-05-25T10:58:12+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "squizlabs/php_codesniffer",
- "version": "3.7.1",
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
- "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
- "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
+ "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
"shasum": ""
},
"require": {
- "ext-simplexml": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": ">=5.4.0"
+ "php": ">=7.1"
},
- "require-dev": {
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+ "suggest": {
+ "ext-intl": "For best performance"
},
- "bin": [
- "bin/phpcs",
- "bin/phpcbf"
- ],
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "3.x-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": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Greg Sherwood",
- "role": "lead"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
"keywords": [
- "phpcs",
- "standards"
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
},
- "time": "2022-06-18T07:21:10+00:00"
+ "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": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/config",
- "version": "v5.4.11",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/config.git",
- "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
- "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
+ "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/filesystem": "^4.4|^5.0|^6.0",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-php80": "^1.16",
- "symfony/polyfill-php81": "^1.22"
- },
- "conflict": {
- "symfony/finder": "<4.4"
+ "php": ">=7.1"
},
- "require-dev": {
- "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
- "symfony/finder": "^4.4|^5.0|^6.0",
- "symfony/messenger": "^4.4|^5.0|^6.0",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/yaml": "^4.4|^5.0|^6.0"
+ "provide": {
+ "ext-mbstring": "*"
},
"suggest": {
- "symfony/yaml": "To use the yaml reference dumper"
+ "ext-mbstring": "For best performance"
},
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Config\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7552,18 +9993,25 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
"support": {
- "source": "https://github.com/symfony/config/tree/v5.4.11"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
},
"funding": [
{
@@ -7579,64 +10027,41 @@
"type": "tidelift"
}
],
- "time": "2022-07-20T13:00:38+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/console",
- "version": "v5.4.39",
+ "name": "symfony/polyfill-php73",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1"
+ "url": "https://github.com/symfony/polyfill-php73.git",
+ "reference": "21bd091060673a1177ae842c0ef8fe30893114d2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/f3e591c48688a0cfa1a3296205926c05e84b22b1",
- "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1",
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2",
+ "reference": "21bd091060673a1177ae842c0ef8fe30893114d2",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php73": "^1.9",
- "symfony/polyfill-php80": "^1.16",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/string": "^5.1|^6.0"
- },
- "conflict": {
- "psr/log": ">=3",
- "symfony/dependency-injection": "<4.4",
- "symfony/dotenv": "<5.1",
- "symfony/event-dispatcher": "<4.4",
- "symfony/lock": "<4.4",
- "symfony/process": "<4.4"
- },
- "provide": {
- "psr/log-implementation": "1.0|2.0"
- },
- "require-dev": {
- "psr/log": "^1|^2",
- "symfony/config": "^4.4|^5.0|^6.0",
- "symfony/dependency-injection": "^4.4|^5.0|^6.0",
- "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
- "symfony/lock": "^4.4|^5.0|^6.0",
- "symfony/process": "^4.4|^5.0|^6.0",
- "symfony/var-dumper": "^4.4|^5.0|^6.0"
+ "php": ">=7.1"
},
- "suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/lock": "",
- "symfony/process": ""
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
},
- "type": "library",
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Console\\": ""
+ "Symfony\\Polyfill\\Php73\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7645,24 +10070,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": "Eases the creation of beautiful and testable command line interfaces",
+ "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
- "cli",
- "command-line",
- "console",
- "terminal"
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v5.4.39"
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.29.0"
},
"funding": [
{
@@ -7678,20 +10103,20 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T08:26:06+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/deprecation-contracts",
- "version": "v2.5.3",
+ "name": "symfony/polyfill-php80",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
- "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
+ "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
"shasum": ""
},
"require": {
@@ -7699,17 +10124,20 @@
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-main": "2.5-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/",
@@ -7717,6 +10145,10 @@
"MIT"
],
"authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
@@ -7726,10 +10158,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/v2.5.3"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
},
"funding": [
{
@@ -7745,36 +10183,41 @@
"type": "tidelift"
}
],
- "time": "2023-01-24T14:02:46+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/filesystem",
- "version": "v5.4.39",
+ "name": "symfony/polyfill-php81",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "e6edd875d5d39b03de51f3c3951148cfa79a4d12"
+ "url": "https://github.com/symfony/polyfill-php81.git",
+ "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/e6edd875d5d39b03de51f3c3951148cfa79a4d12",
- "reference": "e6edd875d5d39b03de51f3c3951148cfa79a4d12",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
+ "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8",
- "symfony/polyfill-php80": "^1.16",
- "symfony/process": "^5.4|^6.4"
+ "php": ">=7.1"
},
"type": "library",
+ "extra": {
+ "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/",
@@ -7783,18 +10226,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": "Provides basic utilities for the filesystem",
+ "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.4.39"
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
},
"funding": [
{
@@ -7810,34 +10259,42 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T08:26:06+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/finder",
- "version": "v5.4.39",
+ "name": "symfony/polyfill-php83",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a"
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/f6a96e4fcd468a25fede16ee665f50ced856bd0a",
- "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
+ "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/polyfill-php80": "^1.16"
+ "php": ">=7.1",
+ "symfony/polyfill-php80": "^1.14"
},
"type": "library",
+ "extra": {
+ "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/",
@@ -7846,18 +10303,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": "Finds files and directories via an intuitive fluent interface",
+ "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.4.39"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
},
"funding": [
{
@@ -7873,45 +10336,33 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T08:26:06+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/polyfill-ctype",
- "version": "v1.29.0",
+ "name": "symfony/process",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
- "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
+ "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0",
+ "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-ctype": "*"
- },
- "suggest": {
- "ext-ctype": "For best performance"
+ "php": ">=8.2"
},
"type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- }
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7919,24 +10370,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.29.0"
+ "source": "https://github.com/symfony/process/tree/v7.0.7"
},
"funding": [
{
@@ -7952,42 +10397,37 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.29.0",
+ "name": "symfony/property-access",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
+ "url": "https://github.com/symfony/property-access.git",
+ "reference": "8661b861480d2807eb2789ff99d034c0c71ab955"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
- "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/8661b861480d2807eb2789ff99d034c0c71ab955",
+ "reference": "8661b861480d2807eb2789ff99d034c0c71ab955",
"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": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
- }
+ "Symfony\\Component\\PropertyAccess\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7995,26 +10435,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.29.0"
+ "source": "https://github.com/symfony/property-access/tree/v7.0.7"
},
"funding": [
{
@@ -8030,44 +10473,46 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.29.0",
+ "name": "symfony/property-info",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
+ "url": "https://github.com/symfony/property-info.git",
+ "reference": "f0bdb46e19ab308527b324b7ec36161f6880a532"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
- "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
+ "url": "https://api.github.com/repos/symfony/property-info/zipball/f0bdb46e19ab308527b324b7ec36161f6880a532",
+ "reference": "f0bdb46e19ab308527b324b7ec36161f6880a532",
"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": {
- "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": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ "Symfony\\Component\\PropertyInfo\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8076,26 +10521,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.29.0"
+ "source": "https://github.com/symfony/property-info/tree/v7.0.7"
},
"funding": [
{
@@ -8111,45 +10556,67 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-28T11:44:19+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.29.0",
+ "name": "symfony/serializer",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "08f0c517acf4b12dfc0d3963cd12f7b8023aea31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
- "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/08f0c517acf4b12dfc0d3963cd12f7b8023aea31",
+ "reference": "08f0c517acf4b12dfc0d3963cd12f7b8023aea31",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8"
},
- "provide": {
- "ext-mbstring": "*"
+ "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"
},
- "suggest": {
- "ext-mbstring": "For best performance"
+ "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",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- }
+ "Symfony\\Component\\Serializer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8157,25 +10624,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.29.0"
+ "source": "https://github.com/symfony/serializer/tree/v7.0.7"
},
"funding": [
{
@@ -8191,41 +10651,46 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-28T11:44:19+00:00"
},
{
- "name": "symfony/polyfill-php73",
- "version": "v1.29.0",
+ "name": "symfony/service-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "21bd091060673a1177ae842c0ef8fe30893114d2"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2",
- "reference": "21bd091060673a1177ae842c0ef8fe30893114d2",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
},
"type": "library",
"extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php73\\": ""
+ "Symfony\\Contracts\\Service\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Test/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8242,16 +10707,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.29.0"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -8267,44 +10734,33 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/polyfill-php81",
- "version": "v1.26.0",
+ "name": "symfony/stopwatch",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
+ "url": "https://github.com/symfony/stopwatch.git",
+ "reference": "41a7a24aa1dc82adf46a06bc292d1923acfe6b84"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
- "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/41a7a24aa1dc82adf46a06bc292d1923acfe6b84",
+ "reference": "41a7a24aa1dc82adf46a06bc292d1923acfe6b84",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.2",
+ "symfony/service-contracts": "^2.5|^3"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.26-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php81\\": ""
+ "Symfony\\Component\\Stopwatch\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8313,24 +10769,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "description": "Provides a way to profile code",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
+ "source": "https://github.com/symfony/stopwatch/tree/v7.0.7"
},
"funding": [
{
@@ -8346,30 +10796,46 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/process",
- "version": "v5.4.39",
+ "name": "symfony/string",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/85a554acd7c28522241faf2e97b9541247a0d3d5",
- "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5",
+ "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
+ "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-php80": "^1.16"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^6.4|^7.0"
},
"type": "library",
"autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "Symfony\\Component\\String\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8381,18 +10847,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Executes commands in sub-processes",
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
"homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
"support": {
- "source": "https://github.com/symfony/process/tree/v5.4.39"
+ "source": "https://github.com/symfony/string/tree/v7.0.7"
},
"funding": [
{
@@ -8408,37 +10882,29 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T08:26:06+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v2.5.3",
+ "name": "symfony/translation-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
- "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "psr/container": "^1.1",
- "symfony/deprecation-contracts": "^2.1|^3"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2"
- },
- "suggest": {
- "symfony/service-implementation": ""
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.5-dev"
+ "dev-main": "3.5-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -8447,8 +10913,11 @@
},
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Service\\": ""
- }
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8464,7 +10933,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",
@@ -8475,7 +10944,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -8491,30 +10960,62 @@
"type": "tidelift"
}
],
- "time": "2023-04-21T15:04:16+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/stopwatch",
- "version": "v5.4.5",
+ "name": "symfony/validator",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30"
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "ab4e75b9d23ba70e78480aecbe4d8da15adf10eb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
- "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/ab4e75b9d23ba70e78480aecbe4d8da15adf10eb",
+ "reference": "ab4e75b9d23ba70e78480aecbe4d8da15adf10eb",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/service-contracts": "^1|^2|^3"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php83": "^1.27",
+ "symfony/translation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "doctrine/lexer": "<1.1",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/doctrine-bridge": "<7.0",
+ "symfony/expression-language": "<6.4",
+ "symfony/http-kernel": "<6.4",
+ "symfony/intl": "<6.4",
+ "symfony/property-info": "<6.4",
+ "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
+ "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.3|^7.0.3",
+ "symfony/yaml": "^6.4|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
+ "Symfony\\Component\\Validator\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8534,10 +11035,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a way to profile code",
+ "description": "Provides tools to validate values",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/stopwatch/tree/v5.4.5"
+ "source": "https://github.com/symfony/validator/tree/v7.0.7"
},
"funding": [
{
@@ -8553,46 +11054,34 @@
"type": "tidelift"
}
],
- "time": "2022-02-18T16:06:09+00:00"
+ "time": "2024-04-28T11:44:19+00:00"
},
{
- "name": "symfony/string",
- "version": "v5.4.39",
+ "name": "symfony/var-exporter",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "495e71bae5862308051b9e63cc3e34078eed83ef"
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "cdecc0022e40e90340ba1a59a3d5ccf069777078"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/495e71bae5862308051b9e63cc3e34078eed83ef",
- "reference": "495e71bae5862308051b9e63cc3e34078eed83ef",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/cdecc0022e40e90340ba1a59a3d5ccf069777078",
+ "reference": "cdecc0022e40e90340ba1a59a3d5ccf069777078",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
- "symfony/polyfill-intl-normalizer": "~1.0",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php80": "~1.15"
- },
- "conflict": {
- "symfony/translation-contracts": ">=3.0"
+ "php": ">=8.2"
},
"require-dev": {
- "symfony/error-handler": "^4.4|^5.0|^6.0",
- "symfony/http-client": "^4.4|^5.0|^6.0",
- "symfony/translation-contracts": "^1.1|^2",
- "symfony/var-exporter": "^4.4|^5.0|^6.0"
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0"
},
"type": "library",
"autoload": {
- "files": [
- "Resources/functions.php"
- ],
"psr-4": {
- "Symfony\\Component\\String\\": ""
+ "Symfony\\Component\\VarExporter\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8612,18 +11101,20 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "description": "Allows exporting any serializable PHP data structure to plain PHP code",
"homepage": "https://symfony.com",
"keywords": [
- "grapheme",
- "i18n",
- "string",
- "unicode",
- "utf-8",
- "utf8"
+ "clone",
+ "construct",
+ "export",
+ "hydrate",
+ "instantiate",
+ "lazy-loading",
+ "proxy",
+ "serialize"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v5.4.39"
+ "source": "https://github.com/symfony/var-exporter/tree/v7.0.7"
},
"funding": [
{
@@ -8639,35 +11130,31 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T08:26:06+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
"name": "symfony/yaml",
- "version": "v5.4.11",
+ "version": "v7.0.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e"
+ "reference": "0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/05d4ea560f3402c6c116afd99fdc66e60eda227e",
- "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c",
+ "reference": "0d3916ae69ea28b59d94b60c4f2b50f4e25adb5c",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/deprecation-contracts": "^2.1|^3",
+ "php": ">=8.2",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
- "symfony/console": "<5.3"
+ "symfony/console": "<6.4"
},
"require-dev": {
- "symfony/console": "^5.3|^6.0"
- },
- "suggest": {
- "symfony/console": "For validating YAML files using the lint command"
+ "symfony/console": "^6.4|^7.0"
},
"bin": [
"Resources/bin/yaml-lint"
@@ -8698,7 +11185,7 @@
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/yaml/tree/v5.4.11"
+ "source": "https://github.com/symfony/yaml/tree/v7.0.7"
},
"funding": [
{
@@ -8714,36 +11201,36 @@
"type": "tidelift"
}
],
- "time": "2022-06-27T16:58:25+00:00"
+ "time": "2024-04-28T11:44: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": [
@@ -8769,27 +11256,27 @@
"description": "A PHPStan rule to detect safety issues. Must be used in conjunction with thecodingmachine/safe",
"support": {
"issues": "https://github.com/thecodingmachine/phpstan-safe-rule/issues",
- "source": "https://github.com/thecodingmachine/phpstan-safe-rule/tree/v1.0.1"
+ "source": "https://github.com/thecodingmachine/phpstan-safe-rule/tree/v1.2.0"
},
- "time": "2020-08-30T11:41:12+00:00"
+ "time": "2022-01-17T10:12:29+00:00"
},
{
"name": "thecodingmachine/phpstan-strict-rules",
- "version": "v0.12.2",
+ "version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/thecodingmachine/phpstan-strict-rules.git",
- "reference": "ed65c3cf33e3b668c5a072d49741965114c881b5"
+ "reference": "2ba8fa8b328c45f3b149c05def5bf96793c594b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thecodingmachine/phpstan-strict-rules/zipball/ed65c3cf33e3b668c5a072d49741965114c881b5",
- "reference": "ed65c3cf33e3b668c5a072d49741965114c881b5",
+ "url": "https://api.github.com/repos/thecodingmachine/phpstan-strict-rules/zipball/2ba8fa8b328c45f3b149c05def5bf96793c594b6",
+ "reference": "2ba8fa8b328c45f3b149c05def5bf96793c594b6",
"shasum": ""
},
"require": {
"php": "^7.1|^8.0",
- "phpstan/phpstan": "^0.12"
+ "phpstan/phpstan": "^1.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
@@ -8798,7 +11285,7 @@
"type": "phpstan-extension",
"extra": {
"branch-alias": {
- "dev-master": "0.12-dev"
+ "dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
@@ -8824,22 +11311,22 @@
"description": "A set of additional rules for PHPStan based on best practices followed at TheCodingMachine",
"support": {
"issues": "https://github.com/thecodingmachine/phpstan-strict-rules/issues",
- "source": "https://github.com/thecodingmachine/phpstan-strict-rules/tree/v0.12.2"
+ "source": "https://github.com/thecodingmachine/phpstan-strict-rules/tree/v1.0.0"
},
- "time": "2021-11-08T09:01:22+00:00"
+ "time": "2021-11-08T09:10:49+00:00"
},
{
"name": "theseer/tokenizer",
- "version": "1.2.1",
+ "version": "1.2.3",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
"shasum": ""
},
"require": {
@@ -8868,7 +11355,7 @@
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
"support": {
"issues": "https://github.com/theseer/tokenizer/issues",
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
},
"funding": [
{
@@ -8876,28 +11363,28 @@
"type": "github"
}
],
- "time": "2021-07-28T10:34:58+00:00"
+ "time": "2024-03-03T12:36:25+00:00"
},
{
"name": "vimeo/psalm",
- "version": "4.26.0",
+ "version": "5.24.0",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
- "reference": "6998fabb2bf528b65777bf9941920888d23c03ac"
+ "reference": "462c80e31c34e58cc4f750c656be3927e80e550e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/6998fabb2bf528b65777bf9941920888d23c03ac",
- "reference": "6998fabb2bf528b65777bf9941920888d23c03ac",
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/462c80e31c34e58cc4f750c656be3927e80e550e",
+ "reference": "462c80e31c34e58cc4f750c656be3927e80e550e",
"shasum": ""
},
"require": {
"amphp/amp": "^2.4.2",
"amphp/byte-stream": "^1.5",
- "composer/package-versions-deprecated": "^1.8.0",
+ "composer-runtime-api": "^2",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
- "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0",
+ "composer/xdebug-handler": "^2.0 || ^3.0",
"dnoegel/php-xdg-base-dir": "^0.1.1",
"ext-ctype": "*",
"ext-dom": "*",
@@ -8906,34 +11393,38 @@
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
- "felixfbecker/advanced-json-rpc": "^3.0.3",
- "felixfbecker/language-server-protocol": "^1.5",
+ "felixfbecker/advanced-json-rpc": "^3.1",
+ "felixfbecker/language-server-protocol": "^1.5.2",
+ "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0",
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
- "nikic/php-parser": "^4.13",
- "openlss/lib-array2xml": "^1.0",
- "php": "^7.1|^8",
- "sebastian/diff": "^3.0 || ^4.0",
- "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
- "symfony/polyfill-php80": "^1.25",
- "webmozart/path-util": "^2.3"
+ "nikic/php-parser": "^4.16",
+ "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
+ "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
+ "spatie/array-to-xml": "^2.17.0 || ^3.0",
+ "symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7.0"
+ },
+ "conflict": {
+ "nikic/php-parser": "4.17.0"
},
"provide": {
"psalm/psalm": "self.version"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.2",
- "brianium/paratest": "^4.0||^6.0",
+ "amphp/phpunit-util": "^2.0",
+ "bamarni/composer-bin-plugin": "^1.4",
+ "brianium/paratest": "^6.9",
"ext-curl": "*",
+ "mockery/mockery": "^1.5",
+ "nunomaduro/mock-final-classes": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.2",
- "phpdocumentor/reflection-docblock": "^5",
- "phpmyadmin/sql-parser": "5.1.0||dev-master",
- "phpspec/prophecy": ">=1.9.0",
- "phpunit/phpunit": "^9.0",
- "psalm/plugin-phpunit": "^0.16",
- "slevomat/coding-standard": "^7.0",
- "squizlabs/php_codesniffer": "^3.5",
- "symfony/process": "^4.3 || ^5.0 || ^6.0",
- "weirdan/prophecy-shim": "^1.0 || ^2.0"
+ "phpstan/phpdoc-parser": "^1.6",
+ "phpunit/phpunit": "^9.6",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.18",
+ "slevomat/coding-standard": "^8.4",
+ "squizlabs/php_codesniffer": "^3.6",
+ "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
"ext-curl": "In order to send data to shepherd",
@@ -8946,20 +11437,17 @@
"psalm-refactor",
"psalter"
],
- "type": "library",
+ "type": "project",
"extra": {
"branch-alias": {
- "dev-master": "4.x-dev",
+ "dev-master": "5.x-dev",
+ "dev-4.x": "4.x-dev",
"dev-3.x": "3.x-dev",
"dev-2.x": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php",
- "src/spl_object_id.php"
- ],
"psr-4": {
"Psalm\\": "src/Psalm/"
}
@@ -8977,13 +11465,15 @@
"keywords": [
"code",
"inspection",
- "php"
+ "php",
+ "static analysis"
],
"support": {
+ "docs": "https://psalm.dev/docs",
"issues": "https://github.com/vimeo/psalm/issues",
- "source": "https://github.com/vimeo/psalm/tree/4.26.0"
+ "source": "https://github.com/vimeo/psalm"
},
- "time": "2022-07-31T13:10:26+00:00"
+ "time": "2024-05-01T19:32:08+00:00"
},
{
"name": "webmozart/assert",
@@ -9045,16 +11535,16 @@
},
{
"name": "webmozart/glob",
- "version": "4.6.0",
+ "version": "4.7.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/glob.git",
- "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655"
+ "reference": "8a2842112d6916e61e0e15e316465b611f3abc17"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/glob/zipball/3c17f7dec3d9d0e87b575026011f2e75a56ed655",
- "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655",
+ "url": "https://api.github.com/repos/webmozarts/glob/zipball/8a2842112d6916e61e0e15e316465b611f3abc17",
+ "reference": "8a2842112d6916e61e0e15e316465b611f3abc17",
"shasum": ""
},
"require": {
@@ -9088,81 +11578,30 @@
"description": "A PHP implementation of Ant's glob.",
"support": {
"issues": "https://github.com/webmozarts/glob/issues",
- "source": "https://github.com/webmozarts/glob/tree/4.6.0"
- },
- "time": "2022-05-24T19:45:58+00:00"
- },
- {
- "name": "webmozart/path-util",
- "version": "2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/webmozart/path-util.git",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3",
- "webmozart/assert": "~1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1"
+ "source": "https://github.com/webmozarts/glob/tree/4.7.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Webmozart\\PathUtil\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
- ],
- "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
- "support": {
- "issues": "https://github.com/webmozart/path-util/issues",
- "source": "https://github.com/webmozart/path-util/tree/2.3.0"
- },
- "abandoned": "symfony/filesystem",
- "time": "2015-12-17T08:42:14+00:00"
+ "time": "2024-03-07T20:33:40+00:00"
},
{
"name": "wyrihaximus/coding-standard",
- "version": "2.8.0",
+ "version": "2.14.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-coding-standard.git",
- "reference": "c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f"
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f",
- "reference": "c3af51ffec5ef372d4bbdf6d6efb5c9c05658a7f",
+ "url": "https://api.github.com/repos/WyriHaximus/php-coding-standard/zipball/7530678d70ced4d41540df0e60e8811d14813058",
+ "reference": "7530678d70ced4d41540df0e60e8811d14813058",
"shasum": ""
},
"require": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
- "doctrine/coding-standard": "^9.0.0",
- "php": "^8 || ^7.4",
- "slevomat/coding-standard": "^7.0.14",
- "squizlabs/php_codesniffer": "^3.6.0"
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
+ "doctrine/coding-standard": "^12.0.0",
+ "php": "^8.1",
+ "slevomat/coding-standard": "^8.11.1",
+ "squizlabs/php_codesniffer": "^3.7.2"
},
"type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
@@ -9172,7 +11611,7 @@
"description": "WyriHaximus Coding Standard",
"support": {
"issues": "https://github.com/WyriHaximus/php-coding-standard/issues",
- "source": "https://github.com/WyriHaximus/php-coding-standard/tree/2.8.0"
+ "source": "https://github.com/WyriHaximus/php-coding-standard/tree/2.14.0"
},
"funding": [
{
@@ -9180,32 +11619,31 @@
"type": "github"
}
],
- "time": "2022-03-08T07:19:19+00:00"
+ "time": "2023-05-06T11:54:10+00:00"
},
{
"name": "wyrihaximus/phpstan-rules-wrapper",
- "version": "1.2.5",
+ "version": "6.1.0",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper.git",
- "reference": "b15e2b272408ec3a0467361557b0b88089bd1d4d"
+ "reference": "e781d15c0316a8c72599ec50a18fce97aae12c73"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/b15e2b272408ec3a0467361557b0b88089bd1d4d",
- "reference": "b15e2b272408ec3a0467361557b0b88089bd1d4d",
+ "url": "https://api.github.com/repos/WyriHaximus/php-phpstan-rules-wrapper/zipball/e781d15c0316a8c72599ec50a18fce97aae12c73",
+ "reference": "e781d15c0316a8c72599ec50a18fce97aae12c73",
"shasum": ""
},
"require": {
- "ergebnis/phpstan-rules": "^0.15.3",
- "jangregor/phpstan-prophecy": "^0.8.1",
- "pepakriz/phpstan-exception-rules": "^0.11.7",
- "phpstan/phpstan-deprecation-rules": "^0.12.6",
- "phpstan/phpstan-php-parser": "^0.12.3",
- "phpstan/phpstan-phpunit": "^0.12.22",
- "phpstan/phpstan-strict-rules": "^0.12.11",
- "thecodingmachine/phpstan-safe-rule": "^1.0",
- "thecodingmachine/phpstan-strict-rules": "^0.12.1"
+ "ergebnis/phpstan-rules": "^2.2.0",
+ "php": "^8.2",
+ "phpstan/phpstan-deprecation-rules": "^1.2.0",
+ "phpstan/phpstan-mockery": "^1.1.2",
+ "phpstan/phpstan-phpunit": "^1.4.0",
+ "phpstan/phpstan-strict-rules": "^1.6.0",
+ "thecodingmachine/phpstan-safe-rule": "^1.2",
+ "thecodingmachine/phpstan-strict-rules": "^1.0"
},
"type": "library",
"notification-url": "https://packagist.org/downloads/",
@@ -9221,7 +11659,7 @@
"description": "๐ฏ PHPStan rules wrapper",
"support": {
"issues": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/issues",
- "source": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/tree/1.2.5"
+ "source": "https://github.com/WyriHaximus/php-phpstan-rules-wrapper/tree/6.1.0"
},
"funding": [
{
@@ -9229,76 +11667,54 @@
"type": "github"
}
],
- "time": "2021-09-30T14:46:42+00:00"
+ "time": "2024-05-15T05:39:12+00:00"
},
{
"name": "wyrihaximus/test-utilities",
- "version": "3.7.6",
+ "version": "6.0.7",
"source": {
"type": "git",
"url": "https://github.com/WyriHaximus/php-test-utilities.git",
- "reference": "4a900a8f44207c3f0f6a4819676aca7612f4821f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/4a900a8f44207c3f0f6a4819676aca7612f4821f",
- "reference": "4a900a8f44207c3f0f6a4819676aca7612f4821f",
- "shasum": ""
- },
- "require": {
- "dereuromark/composer-prefer-lowest": "^0.1.10",
- "ergebnis/composer-normalize": "^2.15.0",
- "icanhazstring/composer-unused": "^0.7.5",
- "infection/infection": "^0.20.2",
- "jakobbuis/simple-slow-test-reporter": "^1.0",
- "maglnet/composer-require-checker": "^3.5.1",
- "nunomaduro/collision": "^5.10.0",
- "orklah/psalm-insane-comparison": "^1.0.3",
- "php": "^8 || ^7.4",
- "php-coveralls/php-coveralls": "^2.5.1",
- "php-parallel-lint/php-console-highlighter": "^0.5",
- "php-parallel-lint/php-parallel-lint": "^1.3.1",
- "phpspec/prophecy": "^1.14",
- "phpspec/prophecy-phpunit": "^2.0.1",
- "phpstan/phpstan": "^0.12.99",
- "phpunit/phpunit": "^9.5.10",
- "psalm/plugin-phpunit": "^0.16.1",
- "roave/backward-compatibility-check": "^5.0.0",
- "roave/infection-static-analysis-plugin": "^1.7.1",
- "squizlabs/php_codesniffer": "^3.6.1",
- "thecodingmachine/safe": "^1.3.3",
- "vimeo/psalm": "^4.12.0",
- "wyrihaximus/coding-standard": "^2.5.0",
- "wyrihaximus/phpstan-rules-wrapper": "^1.2.5"
+ "reference": "701bdbd994a56e6bd151098ba9219895bac994c7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/WyriHaximus/php-test-utilities/zipball/701bdbd994a56e6bd151098ba9219895bac994c7",
+ "reference": "701bdbd994a56e6bd151098ba9219895bac994c7",
+ "shasum": ""
+ },
+ "require": {
+ "brandembassy/mockery-tools": "^4.1.3",
+ "ergebnis/composer-normalize": "^2.42.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.14.0",
+ "icanhazstring/composer-unused": "^0.8.11",
+ "infection/infection": "^0.27.0",
+ "maglnet/composer-require-checker": "^4.11.0",
+ "mockery/mockery": "^1.6.11",
+ "nunomaduro/collision": "^7.10.0",
+ "orklah/psalm-insane-comparison": "^2.3.0",
+ "php": "^8.2",
+ "php-coveralls/php-coveralls": "^2.7.0",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.4.0",
+ "php-standard-library/psalm-plugin": "^1.1.5 || ^2.2.1",
+ "phpstan/phpstan": "^1.10.67",
+ "phpunit/phpunit": "^10.5.20",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.19.0",
+ "roave/backward-compatibility-check": "^8.6.0",
+ "roave/infection-static-analysis-plugin": "^1.33.0",
+ "squizlabs/php_codesniffer": "^3.9.2",
+ "thecodingmachine/safe": "^2.5.0",
+ "vimeo/psalm": "^5.23.1",
+ "wyrihaximus/coding-standard": "^2.14.0",
+ "wyrihaximus/phpstan-rules-wrapper": "^6.0.1"
},
"conflict": {
- "beberlei/assert": ">= 3.3"
+ "composer/compoer": "<2.6.0",
+ "symfony/dependency-injection": "<5.0.0"
},
"type": "library",
- "extra": {
- "unused": [
- "php",
- "dereuromark/composer-prefer-lowest",
- "friendsofphp/php-cs-fixer",
- "icanhazstring/composer-unused",
- "infection/infection",
- "jakobbuis/simple-slow-test-reporter",
- "php-coveralls/php-coveralls",
- "php-parallel-lint/php-console-highlighter",
- "php-parallel-lint/php-parallel-lint",
- "maglnet/composer-require-checker",
- "nunomaduro/collision",
- "orklah/psalm-insane-comparison",
- "phpstan/phpstan",
- "phpunit/phpunit",
- "psalm/plugin-phpunit",
- "roave/backward-compatibility-check",
- "roave/infection-static-analysis-plugin",
- "slevomat/coding-standard",
- "vimeo/psalm",
- "wyrihaximus/phpstan-rules-wrapper"
- ]
- },
"autoload": {
"psr-4": {
"WyriHaximus\\TestUtilities\\": "src/"
@@ -9317,7 +11733,7 @@
"description": "๐ ๏ธ Test utilities for api-clients packages",
"support": {
"issues": "https://github.com/WyriHaximus/php-test-utilities/issues",
- "source": "https://github.com/WyriHaximus/php-test-utilities/tree/3.7.6"
+ "source": "https://github.com/WyriHaximus/php-test-utilities/tree/6.0.7"
},
"funding": [
{
@@ -9325,7 +11741,7 @@
"type": "github"
}
],
- "time": "2021-11-15T22:30:45+00:00"
+ "time": "2024-04-25T11:09:56+00:00"
}
],
"aliases": [],
@@ -9334,11 +11750,11 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": "^7.4 || ^8.0"
+ "php": "^8.2"
},
"platform-dev": [],
"platform-overrides": {
- "php": "7.4.7"
+ "php": "8.2.13"
},
"plugin-api-version": "2.6.0"
}
diff --git a/etc/ci/markdown-link-checker.json b/etc/ci/markdown-link-checker.json
new file mode 100644
index 0000000..15fb56f
--- /dev/null
+++ b/etc/ci/markdown-link-checker.json
@@ -0,0 +1,10 @@
+{
+ "httpHeaders": [
+ {
+ "urls": ["https://docs.github.com/"],
+ "headers": {
+ "Accept-Encoding": "zstd, br, gzip, deflate"
+ }
+ }
+ ]
+}
diff --git a/etc/qa/.phpunit.cache/code-coverage/29ed4094badcf3fc6f82fbea64252d76 b/etc/qa/.phpunit.cache/code-coverage/29ed4094badcf3fc6f82fbea64252d76
new file mode 100644
index 0000000..721b15b
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/29ed4094badcf3fc6f82fbea64252d76
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:81;s:7:"methods";a:3:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:15;s:7:"endLine";i:20;s:3:"ccn";i:1;}s:12:"calculateMap";a:6:{s:10:"methodName";s:12:"calculateMap";s:9:"signature";s:44:"calculateMap(): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:22;s:7:"endLine";i:57;s:3:"ccn";i:6;}s:6:"render";a:6:{s:10:"methodName";s:6:"render";s:9:"signature";s:28:"render(string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:59;s:7:"endLine";i:80;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:82;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:81;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:39:{i:19;i:2;i:24;i:3;i:25;i:4;i:26;i:5;i:27;i:6;i:29;i:7;i:30;i:8;i:31;i:9;i:34;i:10;i:35;i:11;i:38;i:12;i:39;i:13;i:42;i:14;i:43;i:15;i:46;i:16;i:49;i:17;i:50;i:17;i:51;i:17;i:52;i:17;i:53;i:17;i:54;i:17;i:55;i:17;i:56;i:17;i:61;i:18;i:62;i:19;i:63;i:20;i:65;i:21;i:66;i:22;i:67;i:23;i:68;i:23;i:69;i:23;i:70;i:23;i:71;i:23;i:72;i:23;i:73;i:23;i:74;i:23;i:75;i:23;i:76;i:23;i:79;i:24;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/2c83bae28882beae23531e9d6455d791 b/etc/qa/.phpunit.cache/code-coverage/2c83bae28882beae23531e9d6455d791
new file mode 100644
index 0000000..8ec0aaf
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/2c83bae28882beae23531e9d6455d791
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:58;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:15;s:7:"endLine";i:20;s:3:"ccn";i:1;}s:19:"calculateDimensions";a:6:{s:10:"methodName";s:19:"calculateDimensions";s:9:"signature";s:58:"calculateDimensions(): WyriHaximus\TileStitcher\Dimensions";s:10:"visibility";s:6:"public";s:9:"startLine";i:22;s:7:"endLine";i:57;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:59;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:58;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:23:{i:19;i:2;i:24;i:3;i:25;i:4;i:26;i:5;i:27;i:6;i:28;i:7;i:29;i:8;i:30;i:9;i:33;i:10;i:34;i:11;i:37;i:12;i:38;i:13;i:41;i:14;i:42;i:15;i:45;i:16;i:48;i:17;i:49;i:17;i:50;i:17;i:51;i:17;i:53;i:18;i:54;i:18;i:55;i:18;i:56;i:18;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/450ef215da0be86af65a23096e98ea6a b/etc/qa/.phpunit.cache/code-coverage/450ef215da0be86af65a23096e98ea6a
new file mode 100644
index 0000000..717be4e
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/450ef215da0be86af65a23096e98ea6a
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:28:"WyriHaximus\TileStitcher\Map";a:6:{s:4:"name";s:3:"Map";s:14:"namespacedName";s:28:"WyriHaximus\TileStitcher\Map";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:67;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:236:"__construct(WyriHaximus\TileStitcher\Dimensions $dimensions, WyriHaximus\TileStitcher\Coordinate $highest, WyriHaximus\TileStitcher\Coordinate $lowest, WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:7:"private";s:9:"startLine";i:17;s:7:"endLine";i:25;s:3:"ccn";i:1;}s:9:"calculate";a:6:{s:10:"methodName";s:9:"calculate";s:9:"signature";s:124:"calculate(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:27;s:7:"endLine";i:66;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:68;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:67;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:25:{i:24;i:3;i:31;i:4;i:32;i:5;i:33;i:6;i:34;i:7;i:36;i:8;i:37;i:9;i:38;i:10;i:41;i:11;i:42;i:12;i:45;i:13;i:46;i:14;i:49;i:15;i:50;i:16;i:53;i:17;i:56;i:18;i:57;i:18;i:58;i:18;i:59;i:18;i:60;i:18;i:61;i:18;i:62;i:18;i:63;i:18;i:64;i:18;i:65;i:18;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/4565624e31a3d65386147b2ab09b0832 b/etc/qa/.phpunit.cache/code-coverage/4565624e31a3d65386147b2ab09b0832
new file mode 100644
index 0000000..1f85c8e
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/4565624e31a3d65386147b2ab09b0832
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:29:"WyriHaximus\TileStitcher\Tile";a:6:{s:4:"name";s:4:"Tile";s:14:"namespacedName";s:29:"WyriHaximus\TileStitcher\Tile";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:14;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:78:"__construct(WyriHaximus\TileStitcher\Coordinate $coordinate, string $fileName)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:13;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:15;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:15;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:13;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/5f83a49c1240befa38788632050d5a74 b/etc/qa/.phpunit.cache/code-coverage/5f83a49c1240befa38788632050d5a74
new file mode 100644
index 0000000..0afa963
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/5f83a49c1240befa38788632050d5a74
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:17;s:7:"endLine";i:41;s:7:"methods";a:1:{s:6:"stitch";a:6:{s:10:"methodName";s:6:"stitch";s:9:"signature";s:63:"stitch(WyriHaximus\TileStitcher\Map $map, string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:19;s:7:"endLine";i:40;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:42;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:41;}s:15:"ignoredLinesFor";a:1:{i:0;i:17;}s:17:"executableLinesIn";a:15:{i:21;i:1;i:23;i:2;i:25;i:3;i:26;i:4;i:27;i:5;i:28;i:5;i:29;i:5;i:30;i:5;i:31;i:5;i:32;i:5;i:33;i:5;i:34;i:5;i:35;i:5;i:36;i:5;i:39;i:6;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/6347976fe829d592c5f129a9ea52daae b/etc/qa/.phpunit.cache/code-coverage/6347976fe829d592c5f129a9ea52daae
new file mode 100644
index 0000000..3f980c4
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/6347976fe829d592c5f129a9ea52daae
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:19;s:7:"endLine";i:43;s:7:"methods";a:1:{s:6:"stitch";a:6:{s:10:"methodName";s:6:"stitch";s:9:"signature";s:63:"stitch(WyriHaximus\TileStitcher\Map $map, string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:21;s:7:"endLine";i:42;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:44;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:43;}s:15:"ignoredLinesFor";a:1:{i:0;i:19;}s:17:"executableLinesIn";a:15:{i:23;i:1;i:25;i:2;i:27;i:3;i:28;i:4;i:29;i:5;i:30;i:5;i:31;i:5;i:32;i:5;i:33;i:5;i:34;i:5;i:35;i:5;i:36;i:5;i:37;i:5;i:38;i:5;i:41;i:6;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/694dd85216dca91fda48082027f28470 b/etc/qa/.phpunit.cache/code-coverage/694dd85216dca91fda48082027f28470
new file mode 100644
index 0000000..c6257d7
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/694dd85216dca91fda48082027f28470
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:53;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:15;s:7:"endLine";i:20;s:3:"ccn";i:1;}s:19:"calculateDimensions";a:6:{s:10:"methodName";s:19:"calculateDimensions";s:9:"signature";s:58:"calculateDimensions(): WyriHaximus\TileStitcher\Dimensions";s:10:"visibility";s:6:"public";s:9:"startLine";i:22;s:7:"endLine";i:52;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:54;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:53;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:19:{i:19;i:2;i:24;i:3;i:25;i:4;i:26;i:5;i:27;i:6;i:28;i:7;i:29;i:8;i:30;i:9;i:33;i:10;i:34;i:11;i:37;i:12;i:38;i:13;i:41;i:14;i:42;i:15;i:45;i:16;i:48;i:17;i:49;i:17;i:50;i:17;i:51;i:17;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/719cb59a040a3da7c3df0278dfc31b33 b/etc/qa/.phpunit.cache/code-coverage/719cb59a040a3da7c3df0278dfc31b33
new file mode 100644
index 0000000..d863d44
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/719cb59a040a3da7c3df0278dfc31b33
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:47;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:13;s:7:"endLine";i:19;s:3:"ccn";i:1;}s:19:"calculateDimensions";a:6:{s:10:"methodName";s:19:"calculateDimensions";s:9:"signature";s:58:"calculateDimensions(): WyriHaximus\TileStitcher\Dimensions";s:10:"visibility";s:6:"public";s:9:"startLine";i:21;s:7:"endLine";i:46;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:48;s:18:"commentLinesOfCode";i:3;s:21:"nonCommentLinesOfCode";i:45;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:18:{i:18;i:2;i:23;i:3;i:24;i:4;i:25;i:5;i:26;i:6;i:27;i:7;i:28;i:8;i:29;i:9;i:31;i:10;i:32;i:11;i:34;i:12;i:35;i:13;i:37;i:14;i:38;i:15;i:42;i:16;i:43;i:16;i:44;i:16;i:45;i:16;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/73a59660da6c53e5a92a7e9b358ab493 b/etc/qa/.phpunit.cache/code-coverage/73a59660da6c53e5a92a7e9b358ab493
new file mode 100644
index 0000000..9d2d2bd
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/73a59660da6c53e5a92a7e9b358ab493
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:19;s:7:"endLine";i:91;s:7:"methods";a:3:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:24;s:7:"endLine";i:29;s:3:"ccn";i:1;}s:12:"calculateMap";a:6:{s:10:"methodName";s:12:"calculateMap";s:9:"signature";s:44:"calculateMap(): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:31;s:7:"endLine";i:66;s:3:"ccn";i:6;}s:6:"render";a:6:{s:10:"methodName";s:6:"render";s:9:"signature";s:28:"render(string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:68;s:7:"endLine";i:90;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:92;s:18:"commentLinesOfCode";i:2;s:21:"nonCommentLinesOfCode";i:90;}s:15:"ignoredLinesFor";a:1:{i:0;i:19;}s:17:"executableLinesIn";a:39:{i:28;i:2;i:33;i:3;i:34;i:4;i:35;i:5;i:36;i:6;i:38;i:7;i:39;i:8;i:40;i:9;i:43;i:10;i:44;i:11;i:47;i:12;i:48;i:13;i:51;i:14;i:52;i:15;i:55;i:16;i:58;i:17;i:59;i:17;i:60;i:17;i:61;i:17;i:62;i:17;i:63;i:17;i:64;i:17;i:65;i:17;i:70;i:18;i:71;i:19;i:73;i:20;i:75;i:21;i:76;i:22;i:77;i:23;i:78;i:23;i:79;i:23;i:80;i:23;i:81;i:23;i:82;i:23;i:83;i:23;i:84;i:23;i:85;i:23;i:86;i:23;i:89;i:24;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/772c46f69c56d1ff9d4309ecbd836252 b/etc/qa/.phpunit.cache/code-coverage/772c46f69c56d1ff9d4309ecbd836252
new file mode 100644
index 0000000..6b45670
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/772c46f69c56d1ff9d4309ecbd836252
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:35:"WyriHaximus\TileStitcher\Coordinate";a:6:{s:4:"name";s:10:"Coordinate";s:14:"namespacedName";s:35:"WyriHaximus\TileStitcher\Coordinate";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:14;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:39:"__construct(int|float $x, int|float $y)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:13;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:15;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:15;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:13;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/8536d3d759f01608b7791efb9b7cf1c3 b/etc/qa/.phpunit.cache/code-coverage/8536d3d759f01608b7791efb9b7cf1c3
new file mode 100644
index 0000000..f9190ee
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/8536d3d759f01608b7791efb9b7cf1c3
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:28:"WyriHaximus\TileStitcher\Map";a:6:{s:4:"name";s:3:"Map";s:14:"namespacedName";s:28:"WyriHaximus\TileStitcher\Map";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:65;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:236:"__construct(WyriHaximus\TileStitcher\Dimensions $dimensions, WyriHaximus\TileStitcher\Coordinate $highest, WyriHaximus\TileStitcher\Coordinate $lowest, WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:7:"private";s:9:"startLine";i:15;s:7:"endLine";i:23;s:3:"ccn";i:1;}s:9:"calculate";a:6:{s:10:"methodName";s:9:"calculate";s:9:"signature";s:124:"calculate(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:25;s:7:"endLine";i:64;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:66;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:65;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:25:{i:22;i:2;i:29;i:3;i:30;i:4;i:31;i:5;i:32;i:6;i:34;i:7;i:35;i:8;i:36;i:9;i:39;i:10;i:40;i:11;i:43;i:12;i:44;i:13;i:47;i:14;i:48;i:15;i:51;i:16;i:54;i:17;i:55;i:17;i:56;i:17;i:57;i:17;i:58;i:17;i:59;i:17;i:60;i:17;i:61;i:17;i:62;i:17;i:63;i:17;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/883b1fbd9e0f2e059d894c9c9d67452b b/etc/qa/.phpunit.cache/code-coverage/883b1fbd9e0f2e059d894c9c9d67452b
new file mode 100644
index 0000000..19f391f
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/883b1fbd9e0f2e059d894c9c9d67452b
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:80;s:7:"methods";a:3:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:15;s:7:"endLine";i:20;s:3:"ccn";i:1;}s:12:"calculateMap";a:6:{s:10:"methodName";s:12:"calculateMap";s:9:"signature";s:44:"calculateMap(): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:22;s:7:"endLine";i:57;s:3:"ccn";i:6;}s:6:"render";a:6:{s:10:"methodName";s:6:"render";s:9:"signature";s:28:"render(string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:59;s:7:"endLine";i:79;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:81;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:80;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:38:{i:19;i:2;i:24;i:3;i:25;i:4;i:26;i:5;i:27;i:6;i:29;i:7;i:30;i:8;i:31;i:9;i:34;i:10;i:35;i:11;i:38;i:12;i:39;i:13;i:42;i:14;i:43;i:15;i:46;i:16;i:49;i:17;i:50;i:17;i:51;i:17;i:52;i:17;i:53;i:17;i:54;i:17;i:55;i:17;i:56;i:17;i:61;i:18;i:62;i:19;i:64;i:20;i:65;i:21;i:66;i:22;i:67;i:22;i:68;i:22;i:69;i:22;i:70;i:22;i:71;i:22;i:72;i:22;i:73;i:22;i:74;i:22;i:75;i:22;i:78;i:23;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/921d5b0dcb724558069ebd63da944ca5 b/etc/qa/.phpunit.cache/code-coverage/921d5b0dcb724558069ebd63da944ca5
new file mode 100644
index 0000000..55c1ce6
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/921d5b0dcb724558069ebd63da944ca5
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:28:"WyriHaximus\TileStitcher\Map";a:6:{s:4:"name";s:3:"Map";s:14:"namespacedName";s:28:"WyriHaximus\TileStitcher\Map";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:63;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:236:"__construct(WyriHaximus\TileStitcher\Dimensions $dimensions, WyriHaximus\TileStitcher\Coordinate $highest, WyriHaximus\TileStitcher\Coordinate $lowest, WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:7:"private";s:9:"startLine";i:12;s:7:"endLine";i:20;s:3:"ccn";i:1;}s:9:"calculate";a:6:{s:10:"methodName";s:9:"calculate";s:9:"signature";s:124:"calculate(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:22;s:7:"endLine";i:62;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:64;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:63;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:25:{i:19;i:2;i:27;i:3;i:28;i:4;i:29;i:5;i:30;i:6;i:32;i:7;i:33;i:8;i:34;i:9;i:37;i:10;i:38;i:11;i:41;i:12;i:42;i:13;i:45;i:14;i:46;i:15;i:49;i:16;i:52;i:17;i:53;i:17;i:54;i:17;i:55;i:17;i:56;i:17;i:57;i:17;i:58;i:17;i:59;i:17;i:60;i:17;i:61;i:17;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/9256cfb920f84fa2525ee12171594032 b/etc/qa/.phpunit.cache/code-coverage/9256cfb920f84fa2525ee12171594032
new file mode 100644
index 0000000..395562c
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/9256cfb920f84fa2525ee12171594032
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:35:"WyriHaximus\TileStitcher\Coordinate";a:6:{s:4:"name";s:10:"Coordinate";s:14:"namespacedName";s:35:"WyriHaximus\TileStitcher\Coordinate";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:16;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:27:"__construct(int $x, int $y)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:15;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:17;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:17;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:15;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/99eda4d6cccb3d3260dd6cb4c6b63102 b/etc/qa/.phpunit.cache/code-coverage/99eda4d6cccb3d3260dd6cb4c6b63102
new file mode 100644
index 0000000..d9aec14
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/99eda4d6cccb3d3260dd6cb4c6b63102
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:35:"WyriHaximus\TileStitcher\Dimensions";a:6:{s:4:"name";s:10:"Dimensions";s:14:"namespacedName";s:35:"WyriHaximus\TileStitcher\Dimensions";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:16;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:36:"__construct(int $width, int $height)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:15;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:17;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:17;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:15;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/9d05ada5e48faeab1d361e8877f3114c b/etc/qa/.phpunit.cache/code-coverage/9d05ada5e48faeab1d361e8877f3114c
new file mode 100644
index 0000000..629fca8
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/9d05ada5e48faeab1d361e8877f3114c
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:19;s:7:"endLine";i:95;s:7:"methods";a:3:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:24;s:7:"endLine";i:29;s:3:"ccn";i:1;}s:12:"calculateMap";a:6:{s:10:"methodName";s:12:"calculateMap";s:9:"signature";s:44:"calculateMap(): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:31;s:7:"endLine";i:66;s:3:"ccn";i:6;}s:6:"render";a:6:{s:10:"methodName";s:6:"render";s:9:"signature";s:28:"render(string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:68;s:7:"endLine";i:94;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:96;s:18:"commentLinesOfCode";i:6;s:21:"nonCommentLinesOfCode";i:90;}s:15:"ignoredLinesFor";a:1:{i:0;i:19;}s:17:"executableLinesIn";a:39:{i:28;i:2;i:33;i:3;i:34;i:4;i:35;i:5;i:36;i:6;i:38;i:7;i:39;i:8;i:40;i:9;i:43;i:10;i:44;i:11;i:47;i:12;i:48;i:13;i:51;i:14;i:52;i:15;i:55;i:16;i:58;i:17;i:59;i:17;i:60;i:17;i:61;i:17;i:62;i:17;i:63;i:17;i:64;i:17;i:65;i:17;i:70;i:18;i:71;i:19;i:73;i:20;i:75;i:21;i:76;i:22;i:77;i:23;i:78;i:23;i:79;i:23;i:80;i:23;i:81;i:23;i:82;i:23;i:83;i:23;i:84;i:23;i:85;i:23;i:86;i:23;i:93;i:24;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/ac7311906827ee8c75d30243add1970e b/etc/qa/.phpunit.cache/code-coverage/ac7311906827ee8c75d30243add1970e
new file mode 100644
index 0000000..33ee889
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/ac7311906827ee8c75d30243add1970e
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:17;s:7:"endLine";i:45;s:7:"methods";a:1:{s:6:"stitch";a:6:{s:10:"methodName";s:6:"stitch";s:9:"signature";s:63:"stitch(WyriHaximus\TileStitcher\Map $map, string $output): void";s:10:"visibility";s:6:"public";s:9:"startLine";i:23;s:7:"endLine";i:44;s:3:"ccn";i:2;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:46;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:45;}s:15:"ignoredLinesFor";a:1:{i:0;i:17;}s:17:"executableLinesIn";a:15:{i:25;i:4;i:27;i:5;i:29;i:6;i:30;i:7;i:31;i:8;i:32;i:8;i:33;i:8;i:34;i:8;i:35;i:8;i:36;i:8;i:37;i:8;i:38;i:8;i:39;i:8;i:40;i:8;i:43;i:9;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/b25e9525eae96208aa8d6b14a84abf5e b/etc/qa/.phpunit.cache/code-coverage/b25e9525eae96208aa8d6b14a84abf5e
new file mode 100644
index 0000000..3097286
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/b25e9525eae96208aa8d6b14a84abf5e
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:35:"WyriHaximus\TileStitcher\Coordinate";a:6:{s:4:"name";s:10:"Coordinate";s:14:"namespacedName";s:35:"WyriHaximus\TileStitcher\Coordinate";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:14;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:27:"__construct(int $x, int $y)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:13;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:15;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:15;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:13;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/bf2d5511f262d35c03c315c5fc0c4764 b/etc/qa/.phpunit.cache/code-coverage/bf2d5511f262d35c03c315c5fc0c4764
new file mode 100644
index 0000000..b75ce9a
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/bf2d5511f262d35c03c315c5fc0c4764
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:59;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:15;s:7:"endLine";i:21;s:3:"ccn";i:1;}s:19:"calculateDimensions";a:6:{s:10:"methodName";s:19:"calculateDimensions";s:9:"signature";s:58:"calculateDimensions(): WyriHaximus\TileStitcher\Dimensions";s:10:"visibility";s:6:"public";s:9:"startLine";i:23;s:7:"endLine";i:58;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:60;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:59;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:24:{i:19;i:2;i:20;i:3;i:25;i:4;i:26;i:5;i:27;i:6;i:28;i:7;i:29;i:8;i:30;i:9;i:31;i:10;i:34;i:11;i:35;i:12;i:38;i:13;i:39;i:14;i:42;i:15;i:43;i:16;i:46;i:17;i:49;i:18;i:50;i:18;i:51;i:18;i:52;i:18;i:54;i:19;i:55;i:19;i:56;i:19;i:57;i:19;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/c52c5c4cb6184d0d5b09168fa258e523 b/etc/qa/.phpunit.cache/code-coverage/c52c5c4cb6184d0d5b09168fa258e523
new file mode 100644
index 0000000..0591246
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/c52c5c4cb6184d0d5b09168fa258e523
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:28:"WyriHaximus\TileStitcher\Map";a:6:{s:4:"name";s:3:"Map";s:14:"namespacedName";s:28:"WyriHaximus\TileStitcher\Map";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:15;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:151:"__construct(WyriHaximus\TileStitcher\Dimensions $dimensions, WyriHaximus\TileStitcher\Coordinate $highest, WyriHaximus\TileStitcher\Coordinate $lowest)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:14;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:16;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:16;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:14;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/c626059b9fa77a330c1accbea9da2b43 b/etc/qa/.phpunit.cache/code-coverage/c626059b9fa77a330c1accbea9da2b43
new file mode 100644
index 0000000..966f85d
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/c626059b9fa77a330c1accbea9da2b43
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:29:"WyriHaximus\TileStitcher\Tile";a:6:{s:4:"name";s:4:"Tile";s:14:"namespacedName";s:29:"WyriHaximus\TileStitcher\Tile";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:16;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:78:"__construct(WyriHaximus\TileStitcher\Coordinate $coordinate, string $fileName)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:15;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:17;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:17;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:15;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/e1cb9274b8c2657b7eb561cf5e727d84 b/etc/qa/.phpunit.cache/code-coverage/e1cb9274b8c2657b7eb561cf5e727d84
new file mode 100644
index 0000000..d863d44
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/e1cb9274b8c2657b7eb561cf5e727d84
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:33:"WyriHaximus\TileStitcher\Stitcher";a:6:{s:4:"name";s:8:"Stitcher";s:14:"namespacedName";s:33:"WyriHaximus\TileStitcher\Stitcher";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:47;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:96:"__construct(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:6:"public";s:9:"startLine";i:13;s:7:"endLine";i:19;s:3:"ccn";i:1;}s:19:"calculateDimensions";a:6:{s:10:"methodName";s:19:"calculateDimensions";s:9:"signature";s:58:"calculateDimensions(): WyriHaximus\TileStitcher\Dimensions";s:10:"visibility";s:6:"public";s:9:"startLine";i:21;s:7:"endLine";i:46;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:48;s:18:"commentLinesOfCode";i:3;s:21:"nonCommentLinesOfCode";i:45;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:18:{i:18;i:2;i:23;i:3;i:24;i:4;i:25;i:5;i:26;i:6;i:27;i:7;i:28;i:8;i:29;i:9;i:31;i:10;i:32;i:11;i:34;i:12;i:35;i:13;i:37;i:14;i:38;i:15;i:42;i:16;i:43;i:16;i:44;i:16;i:45;i:16;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/ea0fa4c2ab75b3b9f196ae05135c3fde b/etc/qa/.phpunit.cache/code-coverage/ea0fa4c2ab75b3b9f196ae05135c3fde
new file mode 100644
index 0000000..1422d94
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/ea0fa4c2ab75b3b9f196ae05135c3fde
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:28:"WyriHaximus\TileStitcher\Map";a:6:{s:4:"name";s:3:"Map";s:14:"namespacedName";s:28:"WyriHaximus\TileStitcher\Map";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:10;s:7:"endLine";i:66;s:7:"methods";a:2:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:236:"__construct(WyriHaximus\TileStitcher\Dimensions $dimensions, WyriHaximus\TileStitcher\Coordinate $highest, WyriHaximus\TileStitcher\Coordinate $lowest, WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles)";s:10:"visibility";s:7:"private";s:9:"startLine";i:16;s:7:"endLine";i:24;s:3:"ccn";i:1;}s:9:"calculate";a:6:{s:10:"methodName";s:9:"calculate";s:9:"signature";s:124:"calculate(WyriHaximus\TileStitcher\Dimensions $tileSize, WyriHaximus\TileStitcher\Tile $tiles): WyriHaximus\TileStitcher\Map";s:10:"visibility";s:6:"public";s:9:"startLine";i:26;s:7:"endLine";i:65;s:3:"ccn";i:6;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:67;s:18:"commentLinesOfCode";i:1;s:21:"nonCommentLinesOfCode";i:66;}s:15:"ignoredLinesFor";a:1:{i:0;i:10;}s:17:"executableLinesIn";a:25:{i:23;i:3;i:30;i:4;i:31;i:5;i:32;i:6;i:33;i:7;i:35;i:8;i:36;i:9;i:37;i:10;i:40;i:11;i:41;i:12;i:44;i:13;i:45;i:14;i:48;i:15;i:49;i:16;i:52;i:17;i:55;i:18;i:56;i:18;i:57;i:18;i:58;i:18;i:59;i:18;i:60;i:18;i:61;i:18;i:62;i:18;i:63;i:18;i:64;i:18;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/code-coverage/f53a28db0490ce8996a3f3769f688249 b/etc/qa/.phpunit.cache/code-coverage/f53a28db0490ce8996a3f3769f688249
new file mode 100644
index 0000000..e31e027
--- /dev/null
+++ b/etc/qa/.phpunit.cache/code-coverage/f53a28db0490ce8996a3f3769f688249
@@ -0,0 +1 @@
+a:6:{s:9:"classesIn";a:1:{s:35:"WyriHaximus\TileStitcher\Dimensions";a:6:{s:4:"name";s:10:"Dimensions";s:14:"namespacedName";s:35:"WyriHaximus\TileStitcher\Dimensions";s:9:"namespace";s:24:"WyriHaximus\TileStitcher";s:9:"startLine";i:7;s:7:"endLine";i:14;s:7:"methods";a:1:{s:11:"__construct";a:6:{s:10:"methodName";s:11:"__construct";s:9:"signature";s:36:"__construct(int $width, int $height)";s:10:"visibility";s:6:"public";s:9:"startLine";i:9;s:7:"endLine";i:13;s:3:"ccn";i:1;}}}}s:8:"traitsIn";a:0:{}s:11:"functionsIn";a:0:{}s:14:"linesOfCodeFor";a:3:{s:11:"linesOfCode";i:15;s:18:"commentLinesOfCode";i:0;s:21:"nonCommentLinesOfCode";i:15;}s:15:"ignoredLinesFor";a:1:{i:0;i:7;}s:17:"executableLinesIn";a:1:{i:13;i:1;}}
\ No newline at end of file
diff --git a/etc/qa/.phpunit.cache/test-results b/etc/qa/.phpunit.cache/test-results
new file mode 100644
index 0000000..67c4751
--- /dev/null
+++ b/etc/qa/.phpunit.cache/test-results
@@ -0,0 +1 @@
+{"version":1,"defects":{"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#single":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#1x2":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#2x4":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#4x4":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#2x2":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#..":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#.":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#1x2":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single":8,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2":8,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#2x2":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2":8,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#4x4":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4":8,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#isles":7,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles":8,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#script-tag-with-attribute":7,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::emptyCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::biggerOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::sameSizedOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::emptyCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::biggerOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::sameSizedOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::emptyCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::biggerOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::sameSizedOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::compress":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::emptyCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::biggerOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::sameSizedOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::emptyCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::biggerOutputThenInputCompressResultIsIgnored":8,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::sameSizedOutputThenInputCompressResultIsIgnored":8},"times":{"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions":0.079,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#single":0.08,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#1x2":0.009,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#2x2":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#2x4":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#4x4":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#..":0.078,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateDimensions#.":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#single":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#1x2":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single":0.223,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2":0.404,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#2x2":0.091,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2":0.915,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#4x4":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4":3.148,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::calculateMap#isles":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles":29.495,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2":0.099,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2":0.004,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4":0.004,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2_shuffled":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles_shuffled":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single_reversed":0.004,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single_shuffled":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2_shuffled":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4_shuffled":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2_reversed":0.737,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2_shuffled":0.703,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles_reversed":29.821,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles_shuffled":29.252,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single_reversed":0.151,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single_shuffled":0.178,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2_reversed":0.299,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2_shuffled":0.364,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4_reversed":2.658,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4_shuffled":2.922,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2_shuffled_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles_shuffled_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single_shuffled_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2_shuffled_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4_shuffled_reversed":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2_shuffled_reversed":0.738,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles_shuffled_reversed":30.362,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single_shuffled_reversed":0.175,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2_shuffled_reversed":0.353,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4_shuffled_reversed":2.967,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2_unsorted":0.089,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles_unsorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single_unsorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2_unsorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4_unsorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2_unsorted":0.778,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles_unsorted":29.257,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single_unsorted":0.168,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2_unsorted":0.298,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4_unsorted":2.621,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#2x2_sorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#isles_sorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#single_sorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#1x2_sorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\MapTest::calculateMap#4x4_sorted":0.003,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#2x2_sorted":0.712,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#isles_sorted":26.828,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#single_sorted":0.15,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#1x2_sorted":0.301,"WyriHaximus\\Tests\\TileStitcher\\StitcherTest::render#4x4_sorted":2.668,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testNewLinesTabsReturns#0":0.1,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testNewLinesTabsReturns#1":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testNewLinesTabsReturns#2":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testMultipleSpaces#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testMultipleSpaces#1":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testMultipleSpaces#2":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testMultipleSpaces#3":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testMultipleSpaces#4":0.004,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testSpaceAfterGt#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testSpaceAfterGt#1":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testSpaceBeforeLt#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testSpaceBeforeLt#1":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testTrim#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testTrim#1":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testSpecialCharacterEncoding#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Compressor\\HtmlCompressorTest::testComments#0":0.003,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#WyriHaximus-MinifyHtml-5":0.009,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#asciinema":0.008,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#blog.wyrihaximus.net":0.015,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#css-wrapped-in-comments":0.004,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#inline-css":0.004,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#issue-72":0.004,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#ld-json":0.01,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#ld-json-37":0.01,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#newline-between-tag-properties":0.005,"WyriHaximus\\HtmlCompress\\Tests\\EdgeCasesTest::testEdgeCase#script-tag-with-attribute":0.008,"WyriHaximus\\HtmlCompress\\Tests\\FactoryTest::testConstructFastest":0.004,"WyriHaximus\\HtmlCompress\\Tests\\FactoryTest::testConstruct":0.009,"WyriHaximus\\HtmlCompress\\Tests\\FactoryTest::testConstructSmallest":0.017,"WyriHaximus\\HtmlCompress\\Tests\\HtmlCompressorTest::withHtmlMin":0.003,"WyriHaximus\\HtmlCompress\\Tests\\HtmlMinObserverTest::testEdgeCase#jscript-full-match":0.004,"WyriHaximus\\HtmlCompress\\Tests\\HtmlMinObserverTest::testEdgeCase#ld-json-full-match":0.005,"WyriHaximus\\HtmlCompress\\Tests\\HtmlMinObserverTest::testEdgeCase#ld-json-not-matching-tag":0.003,"WyriHaximus\\HtmlCompress\\Tests\\HtmlMinObserverTest::testEdgeCase#script-full-match":0.004,"WyriHaximus\\HtmlCompress\\Tests\\SpecialFormats\\LdJsonTest::testLdJson#mmjs":0.004,"WyriHaximus\\HtmlCompress\\Tests\\SpecialFormats\\LdJsonTest::testLdJson#return":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::emptyCompressResultIsIgnored":0.006,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::biggerOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\JavaScriptTest::sameSizedOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::emptyCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::biggerOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\LdJsonTest::sameSizedOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::emptyCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::biggerOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::sameSizedOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\ScriptTest::compress":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::emptyCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::biggerOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleAttributeTest::sameSizedOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::emptyCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::biggerOutputThenInputCompressResultIsIgnored":0.003,"WyriHaximus\\HtmlCompress\\Tests\\Pattern\\StyleTest::sameSizedOutputThenInputCompressResultIsIgnored":0.003}}
\ No newline at end of file
diff --git a/etc/qa/composer-require-checker.json b/etc/qa/composer-require-checker.json
new file mode 100644
index 0000000..5527880
--- /dev/null
+++ b/etc/qa/composer-require-checker.json
@@ -0,0 +1,17 @@
+{
+ "symbol-whitelist" : [
+ "null", "true", "false",
+ "static", "self", "parent",
+ "array", "string", "int", "float", "bool", "iterable", "callable", "void", "object"
+ ],
+ "php-core-extensions" : [
+ "Core",
+ "date",
+ "pcre",
+ "Phar",
+ "Reflection",
+ "SPL",
+ "standard"
+ ],
+ "scan-files" : []
+}
diff --git a/etc/qa/composer-unused.php b/etc/qa/composer-unused.php
new file mode 100644
index 0000000..d8835db
--- /dev/null
+++ b/etc/qa/composer-unused.php
@@ -0,0 +1,13 @@
+addNamedFilter(NamedFilter::fromString('wyrihaximus/phpstan-rules-wrapper'));
+};
diff --git a/phpcs.xml.dist b/etc/qa/phpcs.xml
similarity index 55%
rename from phpcs.xml.dist
rename to etc/qa/phpcs.xml
index 68bfba6..1bb6ddb 100644
--- a/phpcs.xml.dist
+++ b/etc/qa/phpcs.xml
@@ -1,13 +1,13 @@
-
+
-
+
- src
- tests
+ ../../src
+ ../../tests
diff --git a/etc/qa/phpstan.neon b/etc/qa/phpstan.neon
new file mode 100644
index 0000000..91dd8bd
--- /dev/null
+++ b/etc/qa/phpstan.neon
@@ -0,0 +1,2 @@
+includes:
+ - ../../vendor/wyrihaximus/test-utilities/rules.neon
diff --git a/etc/qa/phpunit.xml b/etc/qa/phpunit.xml
new file mode 100644
index 0000000..d091884
--- /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 77%
rename from psalm.xml
rename to etc/qa/psalm.xml
index 4e1ab74..136d602 100644
--- a/psalm.xml
+++ b/etc/qa/psalm.xml
@@ -1,18 +1,19 @@
-
+
-
+
+
@@ -49,4 +50,10 @@
-
+
+
+
+
+
+
+
diff --git a/infection.json.dist b/infection.json.dist
index 27bcff3..0a85f2f 100644
--- a/infection.json.dist
+++ b/infection.json.dist
@@ -1,13 +1,20 @@
{
- "timeout": 120,
+ "timeout": 1800,
"source": {
"directories": [
"src"
]
},
"logs": {
- "text": "infection-log.txt"
+ "text": "./var/infection.log",
+ "summary": "./var/infection-summary.log",
+ "json": "./var/infection.json",
+ "perMutator": "./var/infection-per-mutator.md",
+ "github": true
},
+ "minMsi": 100,
+ "minCoveredMsi": 100,
+ "ignoreMsiWithNoMutations": true,
"mutators": {
"@default": true,
"MethodCallRemoval": {
@@ -22,5 +29,8 @@
"WyriHaximus\\HtmlCompress\\Patterns::compress"
]
}
+ },
+ "phpUnit": {
+ "configDir": "./etc/qa/"
}
-}
\ No newline at end of file
+}
diff --git a/phpstan.neon b/phpstan.neon
deleted file mode 100644
index 9a796c2..0000000
--- a/phpstan.neon
+++ /dev/null
@@ -1,12 +0,0 @@
-parameters:
- checkGenericClassInNonGenericObjectType: false
- ignoreErrors:
- - '#Cannot call method shouldBeCalled\(\) on Prophecy\\Prophecy\\MethodProphecy\|string#'
-# - '#Parameter \#2 \$interval of function WyriHaximus\\React\\timedPromise expects int, float given.#'
-# - '#Call to an undefined method Rx\\ObservableInterface::filter\(\).#'
- ergebnis:
- classesAllowedToBeExtended:
- - Exception
-
-includes:
- - vendor/wyrihaximus/test-utilities/rules.neon
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
deleted file mode 100644
index d9b3788..0000000
--- a/phpunit.xml.dist
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- tests/
-
-
-
-
- src/
-
-
-
diff --git a/src/Factory.php b/src/Factory.php
index 2e9417f..0e87943 100644
--- a/src/Factory.php
+++ b/src/Factory.php
@@ -30,21 +30,21 @@ public static function construct(): HtmlCompressorInterface
new HtmlMin(),
new Patterns(
new LdJson(
- new MMMJSCompressor()
+ new MMMJSCompressor(),
),
new JavaScript(
- JsFactory::construct()
+ JsFactory::construct(),
),
new Script(
- new ReturnCompressor()
+ new ReturnCompressor(),
),
new Style(
- $styleCompressor
+ $styleCompressor,
),
new StyleAttribute(
- $styleCompressor
- )
- )
+ $styleCompressor,
+ ),
+ ),
);
}
@@ -56,21 +56,21 @@ public static function constructSmallest(): HtmlCompressorInterface
new HtmlMin(),
new Patterns(
new LdJson(
- new MMMJSCompressor()
+ new MMMJSCompressor(),
),
new JavaScript(
- JsFactory::constructSmallest()
+ JsFactory::constructSmallest(),
),
new Script(
- new ReturnCompressor()
+ new ReturnCompressor(),
),
new Style(
- $styleCompressor
+ $styleCompressor,
),
new StyleAttribute(
- $styleCompressor
- )
- )
+ $styleCompressor,
+ ),
+ ),
);
}
}
diff --git a/src/HtmlCompressor.php b/src/HtmlCompressor.php
index 0166f60..ba3b824 100644
--- a/src/HtmlCompressor.php
+++ b/src/HtmlCompressor.php
@@ -6,22 +6,18 @@
use voku\helper\HtmlMin;
+use function trim;
+
final class HtmlCompressor implements HtmlCompressorInterface
{
- private HtmlMin $htmlMin;
-
- private Patterns $patterns;
-
- public function __construct(HtmlMin $htmlMin, Patterns $patterns)
+ public function __construct(private HtmlMin $htmlMin, private Patterns $patterns)
{
- $this->htmlMin = $htmlMin;
- $this->patterns = $patterns;
$this->htmlMin->attachObserverToTheDomLoop($this->patterns);
}
public function compress(string $string): string
{
- return $this->htmlMin->minify($string);
+ return trim($this->htmlMin->minify($string));
}
public function withHtmlMin(HtmlMin $htmlMin): HtmlCompressorInterface
diff --git a/src/HtmlMinObserver.php b/src/HtmlMinObserver.php
index 6fec11d..ea53c3b 100644
--- a/src/HtmlMinObserver.php
+++ b/src/HtmlMinObserver.php
@@ -10,11 +10,8 @@
final class HtmlMinObserver implements HtmlMinDomObserverInterface
{
- private Patterns $patterns;
-
- public function __construct(Patterns $patterns)
+ public function __construct(private Patterns $patterns)
{
- $this->patterns = $patterns;
}
/**
diff --git a/src/Pattern/JavaScript.php b/src/Pattern/JavaScript.php
index ff01304..ffab59c 100644
--- a/src/Pattern/JavaScript.php
+++ b/src/Pattern/JavaScript.php
@@ -12,11 +12,8 @@
final class JavaScript implements PatternInterface
{
- private CompressorInterface $compressor;
-
- public function __construct(CompressorInterface $compressor)
+ public function __construct(private CompressorInterface $compressor)
{
- $this->compressor = $compressor;
}
public function matches(SimpleHtmlDomInterface $element): bool
diff --git a/src/Pattern/LdJson.php b/src/Pattern/LdJson.php
index 34d16f8..942e942 100644
--- a/src/Pattern/LdJson.php
+++ b/src/Pattern/LdJson.php
@@ -12,11 +12,8 @@
final class LdJson implements PatternInterface
{
- private CompressorInterface $compressor;
-
- public function __construct(CompressorInterface $compressor)
+ public function __construct(private CompressorInterface $compressor)
{
- $this->compressor = $compressor;
}
public function matches(SimpleHtmlDomInterface $element): bool
diff --git a/src/Pattern/Script.php b/src/Pattern/Script.php
index d1c514d..85ca1e5 100644
--- a/src/Pattern/Script.php
+++ b/src/Pattern/Script.php
@@ -12,11 +12,8 @@
final class Script implements PatternInterface
{
- private CompressorInterface $compressor;
-
- public function __construct(CompressorInterface $compressor)
+ public function __construct(private CompressorInterface $compressor)
{
- $this->compressor = $compressor;
}
public function matches(SimpleHtmlDomInterface $element): bool
diff --git a/src/Pattern/Style.php b/src/Pattern/Style.php
index 71e9b09..0f1efde 100644
--- a/src/Pattern/Style.php
+++ b/src/Pattern/Style.php
@@ -8,9 +8,9 @@
use WyriHaximus\Compress\CompressorInterface;
use WyriHaximus\HtmlCompress\PatternInterface;
-use function Safe\substr;
use function strlen;
use function strpos;
+use function substr;
final class Style implements PatternInterface
{
@@ -19,11 +19,8 @@ final class Style implements PatternInterface
private const CSS_COMMENT_OPEN_LENGTH = 4;
private const CSS_COMMENT_CLOSE = '-->';
- private CompressorInterface $compressor;
-
- public function __construct(CompressorInterface $compressor)
+ public function __construct(private CompressorInterface $compressor)
{
- $this->compressor = $compressor;
}
public function matches(SimpleHtmlDomInterface $element): bool
diff --git a/src/Pattern/StyleAttribute.php b/src/Pattern/StyleAttribute.php
index 1a12a12..b09011e 100644
--- a/src/Pattern/StyleAttribute.php
+++ b/src/Pattern/StyleAttribute.php
@@ -12,11 +12,8 @@
final class StyleAttribute implements PatternInterface
{
- private CompressorInterface $compressor;
-
- public function __construct(CompressorInterface $compressor)
+ public function __construct(private CompressorInterface $compressor)
{
- $this->compressor = $compressor;
}
public function matches(SimpleHtmlDomInterface $element): bool
diff --git a/tests/Compressor/HtmlCompressorTest.php b/tests/Compressor/HtmlCompressorTest.php
index 42d8045..1c6501a 100644
--- a/tests/Compressor/HtmlCompressorTest.php
+++ b/tests/Compressor/HtmlCompressorTest.php
@@ -9,15 +9,11 @@
use WyriHaximus\HtmlCompress\Patterns;
use WyriHaximus\TestUtilities\TestCase;
-/**
- * @internal
- */
+/** @internal */
final class HtmlCompressorTest extends TestCase
{
- /**
- * @return string[][]
- */
- public function providerNewLinesTabsReturns(): iterable
+ /** @return iterable> */
+ public static function providerNewLinesTabsReturns(): iterable
{
yield [
"\r\t\n\t\thoi
\r\n\t\r\n",
@@ -35,22 +31,15 @@ public function providerNewLinesTabsReturns(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerNewLinesTabsReturns
- */
- public function testNewLinesTabsReturns($input, $expected): void
+ /** @dataProvider providerNewLinesTabsReturns */
+ public function testNewLinesTabsReturns(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerMultipleSpaces(): iterable
+ /** @return iterable> */
+ public static function providerMultipleSpaces(): iterable
{
yield [
' h oi
',
@@ -78,22 +67,15 @@ public function providerMultipleSpaces(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerMultipleSpaces
- */
- public function testMultipleSpaces($input, $expected): void
+ /** @dataProvider providerMultipleSpaces */
+ public function testMultipleSpaces(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerSpaceAfterGt(): iterable
+ /** @return iterable> */
+ public static function providerSpaceAfterGt(): iterable
{
yield [
' hoi
',
@@ -106,22 +88,15 @@ public function providerSpaceAfterGt(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerSpaceAfterGt
- */
- public function testSpaceAfterGt($input, $expected): void
+ /** @dataProvider providerSpaceAfterGt */
+ public function testSpaceAfterGt(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerSpaceBeforeLt(): iterable
+ /** @return iterable> */
+ public static function providerSpaceBeforeLt(): iterable
{
yield [
' hoi
',
@@ -134,22 +109,15 @@ public function providerSpaceBeforeLt(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerSpaceBeforeLt
- */
- public function testSpaceBeforeLt($input, $expected): void
+ /** @dataProvider providerSpaceBeforeLt */
+ public function testSpaceBeforeLt(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerTrim(): iterable
+ /** @return iterable> */
+ public static function providerTrim(): iterable
{
yield [
' ',
@@ -162,22 +130,15 @@ public function providerTrim(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerTrim
- */
- public function testTrim($input, $expected): void
+ /** @dataProvider providerTrim */
+ public function testTrim(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerSpecialCharacterEncoding(): iterable
+ /** @return iterable> */
+ public static function providerSpecialCharacterEncoding(): iterable
{
yield [
"\r\n\t\xc3\xa0\r\n\t",
@@ -185,22 +146,15 @@ public function providerSpecialCharacterEncoding(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerSpecialCharacterEncoding
- */
- public function testSpecialCharacterEncoding($input, $expected): void
+ /** @dataProvider providerSpecialCharacterEncoding */
+ public function testSpecialCharacterEncoding(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
}
- /**
- * @return string[][]
- */
- public function providerComments(): iterable
+ /** @return iterable> */
+ public static function providerComments(): iterable
{
yield [
'',
@@ -208,13 +162,8 @@ public function providerComments(): iterable
];
}
- /**
- * @param mixed $input
- * @param mixed $expected
- *
- * @dataProvider providerComments
- */
- public function testComments($input, $expected): void
+ /** @dataProvider providerComments */
+ public function testComments(string $input, string $expected): void
{
$actual = (new HtmlCompressor(new HtmlMin(), new Patterns()))->compress($input);
self::assertSame($expected, $actual);
diff --git a/tests/EdgeCasesTest.php b/tests/EdgeCasesTest.php
index 3863ceb..d4719a1 100644
--- a/tests/EdgeCasesTest.php
+++ b/tests/EdgeCasesTest.php
@@ -4,7 +4,6 @@
namespace WyriHaximus\HtmlCompress\Tests;
-use Generator;
use WyriHaximus\HtmlCompress\Factory;
use WyriHaximus\TestUtilities\TestCase;
@@ -16,15 +15,11 @@
use const DIRECTORY_SEPARATOR;
use const GLOB_ONLYDIR;
-/**
- * @internal
- */
+/** @internal */
final class EdgeCasesTest extends TestCase
{
- /**
- * @return Generator>
- */
- public function providerEdgeCase(): Generator
+ /** @return iterable> */
+ public static function providerEdgeCase(): iterable
{
$items = glob(__DIR__ . DIRECTORY_SEPARATOR . 'EdgeCases' . DIRECTORY_SEPARATOR . '*', GLOB_ONLYDIR);
@@ -36,12 +31,8 @@ public function providerEdgeCase(): Generator
}
}
- /**
- * @param mixed $dir
- *
- * @dataProvider providerEdgeCase
- */
- public function testEdgeCase($dir): void
+ /** @dataProvider providerEdgeCase */
+ public function testEdgeCase(mixed $dir): void
{
$in = file_get_contents($dir . 'in.html');
$out = file_get_contents($dir . 'out.html');
diff --git a/tests/FactoryTest.php b/tests/FactoryTest.php
index 6d1a475..f8e58bc 100644
--- a/tests/FactoryTest.php
+++ b/tests/FactoryTest.php
@@ -13,9 +13,7 @@
use const DIRECTORY_SEPARATOR;
-/**
- * @internal
- */
+/** @internal */
final class FactoryTest extends TestCase
{
public function testConstructFastest(): void
@@ -26,8 +24,8 @@ public function testConstructFastest(): void
self::assertSame(
safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'fastest' . DIRECTORY_SEPARATOR . 'out.html'),
$compressor->compress(
- safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'fastest' . DIRECTORY_SEPARATOR . 'in.html')
- )
+ safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'fastest' . DIRECTORY_SEPARATOR . 'in.html'),
+ ),
);
}
@@ -39,8 +37,8 @@ public function testConstruct(): void
self::assertSame(
safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'normal' . DIRECTORY_SEPARATOR . 'out.html'),
$compressor->compress(
- safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'normal' . DIRECTORY_SEPARATOR . 'in.html')
- )
+ safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'normal' . DIRECTORY_SEPARATOR . 'in.html'),
+ ),
);
}
@@ -52,8 +50,8 @@ public function testConstructSmallest(): void
self::assertSame(
safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'smallest' . DIRECTORY_SEPARATOR . 'out.html'),
$compressor->compress(
- safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'smallest' . DIRECTORY_SEPARATOR . 'in.html')
- )
+ safeFileGetContents(__DIR__ . DIRECTORY_SEPARATOR . 'Factory' . DIRECTORY_SEPARATOR . 'smallest' . DIRECTORY_SEPARATOR . 'in.html'),
+ ),
);
}
}
diff --git a/tests/HtmlCompressorTest.php b/tests/HtmlCompressorTest.php
index cacd1f0..3e1e65e 100644
--- a/tests/HtmlCompressorTest.php
+++ b/tests/HtmlCompressorTest.php
@@ -8,14 +8,10 @@
use WyriHaximus\HtmlCompress\Factory;
use WyriHaximus\TestUtilities\TestCase;
-/**
- * @internal
- */
+/** @internal */
final class HtmlCompressorTest extends TestCase
{
- /**
- * @test
- */
+ /** @test */
public function withHtmlMin(): void
{
$compressor = Factory::constructFastest();
diff --git a/tests/HtmlMinObserver/jscript-full-match/compressor.php b/tests/HtmlMinObserver/jscript-full-match/compressor.php
index 5a55e60..2c02717 100644
--- a/tests/HtmlMinObserver/jscript-full-match/compressor.php
+++ b/tests/HtmlMinObserver/jscript-full-match/compressor.php
@@ -12,7 +12,7 @@
new HtmlMin(),
new Patterns(
new JavaScript(
- new MMMJSCompressor()
- )
- )
+ new MMMJSCompressor(),
+ ),
+ ),
);
diff --git a/tests/HtmlMinObserver/ld-json-full-match/compressor.php b/tests/HtmlMinObserver/ld-json-full-match/compressor.php
index c465e32..8b1a1dd 100644
--- a/tests/HtmlMinObserver/ld-json-full-match/compressor.php
+++ b/tests/HtmlMinObserver/ld-json-full-match/compressor.php
@@ -12,7 +12,7 @@
new HtmlMin(),
new Patterns(
new LdJson(
- new MMMJSCompressor()
- )
- )
+ new MMMJSCompressor(),
+ ),
+ ),
);
diff --git a/tests/HtmlMinObserver/ld-json-not-matching-tag/compressor.php b/tests/HtmlMinObserver/ld-json-not-matching-tag/compressor.php
index c465e32..8b1a1dd 100644
--- a/tests/HtmlMinObserver/ld-json-not-matching-tag/compressor.php
+++ b/tests/HtmlMinObserver/ld-json-not-matching-tag/compressor.php
@@ -12,7 +12,7 @@
new HtmlMin(),
new Patterns(
new LdJson(
- new MMMJSCompressor()
- )
- )
+ new MMMJSCompressor(),
+ ),
+ ),
);
diff --git a/tests/HtmlMinObserver/script-full-match/compressor.php b/tests/HtmlMinObserver/script-full-match/compressor.php
index e6ab83a..00830c4 100644
--- a/tests/HtmlMinObserver/script-full-match/compressor.php
+++ b/tests/HtmlMinObserver/script-full-match/compressor.php
@@ -12,7 +12,7 @@
new HtmlMin(),
new Patterns(
new Script(
- new MMMJSCompressor()
- )
- )
+ new MMMJSCompressor(),
+ ),
+ ),
);
diff --git a/tests/HtmlMinObserverTest.php b/tests/HtmlMinObserverTest.php
index e0a1ebf..c73eb1f 100644
--- a/tests/HtmlMinObserverTest.php
+++ b/tests/HtmlMinObserverTest.php
@@ -4,7 +4,6 @@
namespace WyriHaximus\HtmlCompress\Tests;
-use Generator;
use WyriHaximus\TestUtilities\TestCase;
use function array_pop;
@@ -15,15 +14,11 @@
use const DIRECTORY_SEPARATOR;
use const GLOB_ONLYDIR;
-/**
- * @internal
- */
+/** @internal */
final class HtmlMinObserverTest extends TestCase
{
- /**
- * @return Generator>
- */
- public function providerEdgeCase(): Generator
+ /** @return iterable> */
+ public static function providerEdgeCase(): iterable
{
$items = glob(__DIR__ . DIRECTORY_SEPARATOR . 'HtmlMinObserver' . DIRECTORY_SEPARATOR . '*', GLOB_ONLYDIR);
@@ -35,12 +30,8 @@ public function providerEdgeCase(): Generator
}
}
- /**
- * @param mixed $dir
- *
- * @dataProvider providerEdgeCase
- */
- public function testEdgeCase($dir): void
+ /** @dataProvider providerEdgeCase */
+ public function testEdgeCase(mixed $dir): void
{
$in = file_get_contents($dir . 'in.html');
$out = file_get_contents($dir . 'out.html');
diff --git a/tests/Pattern/JavaScriptTest.php b/tests/Pattern/JavaScriptTest.php
index e2b2612..74c38ed 100644
--- a/tests/Pattern/JavaScriptTest.php
+++ b/tests/Pattern/JavaScriptTest.php
@@ -4,7 +4,7 @@
namespace WyriHaximus\HtmlCompress\Tests\Pattern;
-use Prophecy\Prophecy\ObjectProphecy;
+use Mockery;
use voku\helper\HtmlDomParser;
use voku\helper\SimpleHtmlDomInterface;
use WyriHaximus\Compress\CompressorInterface;
@@ -16,8 +16,7 @@ final class JavaScriptTest extends TestCase
{
private SimpleHtmlDomInterface $simpleHtmlDom;
- /** @var ObjectProphecy|CompressorInterface */
- private $compressor;
+ private Mockery\MockInterface&CompressorInterface $compressor;
private JavaScript $javaScript;
@@ -27,41 +26,35 @@ protected function setUp(): void
$this->simpleHtmlDom = HtmlDomParser::str_get_html('innerHtml')->getElementByTagName('span');
- $this->compressor = $this->prophesize(CompressorInterface::class);
+ $this->compressor = Mockery::mock(CompressorInterface::class);
- $this->javaScript = new JavaScript($this->compressor->reveal());
+ $this->javaScript = new JavaScript($this->compressor);
}
- /**
- * @test
- */
+ /** @test */
public function emptyCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('');
$this->javaScript->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function biggerOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('aaaaaaaaaaaaaaaaaaaaaaa');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('aaaaaaaaaaaaaaaaaaaaaaa');
$this->javaScript->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function sameSizedOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('htmlInner');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('htmlInner');
$this->javaScript->compress($this->simpleHtmlDom);
diff --git a/tests/Pattern/LdJsonTest.php b/tests/Pattern/LdJsonTest.php
index e3dbfb0..a822eec 100644
--- a/tests/Pattern/LdJsonTest.php
+++ b/tests/Pattern/LdJsonTest.php
@@ -4,7 +4,7 @@
namespace WyriHaximus\HtmlCompress\Tests\Pattern;
-use Prophecy\Prophecy\ObjectProphecy;
+use Mockery;
use voku\helper\HtmlDomParser;
use voku\helper\SimpleHtmlDomInterface;
use WyriHaximus\Compress\CompressorInterface;
@@ -16,8 +16,7 @@ final class LdJsonTest extends TestCase
{
private SimpleHtmlDomInterface $simpleHtmlDom;
- /** @var ObjectProphecy|CompressorInterface */
- private $compressor;
+ private Mockery\MockInterface&CompressorInterface $compressor;
private LdJson $ldJson;
@@ -27,41 +26,35 @@ protected function setUp(): void
$this->simpleHtmlDom = HtmlDomParser::str_get_html('innerHtml')->getElementByTagName('span');
- $this->compressor = $this->prophesize(CompressorInterface::class);
+ $this->compressor = Mockery::mock(CompressorInterface::class);
- $this->ldJson = new LdJson($this->compressor->reveal());
+ $this->ldJson = new LdJson($this->compressor);
}
- /**
- * @test
- */
+ /** @test */
public function emptyCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('');
$this->ldJson->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function biggerOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('aaaaaaaaaaaaaaaaaaaaaaa');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('aaaaaaaaaaaaaaaaaaaaaaa');
$this->ldJson->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function sameSizedOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('htmlInner');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('htmlInner');
$this->ldJson->compress($this->simpleHtmlDom);
diff --git a/tests/Pattern/ScriptTest.php b/tests/Pattern/ScriptTest.php
index 2c32946..d853b57 100644
--- a/tests/Pattern/ScriptTest.php
+++ b/tests/Pattern/ScriptTest.php
@@ -4,7 +4,7 @@
namespace WyriHaximus\HtmlCompress\Tests\Pattern;
-use Prophecy\Prophecy\ObjectProphecy;
+use Mockery;
use voku\helper\HtmlDomParser;
use voku\helper\SimpleHtmlDomInterface;
use WyriHaximus\Compress\CompressorInterface;
@@ -16,8 +16,7 @@ final class ScriptTest extends TestCase
{
private SimpleHtmlDomInterface $simpleHtmlDom;
- /** @var ObjectProphecy|CompressorInterface */
- private $compressor;
+ private Mockery\MockInterface&CompressorInterface $compressor;
private Script $script;
@@ -26,63 +25,55 @@ protected function setUp(): void
parent::setUp();
$this->simpleHtmlDom = HtmlDomParser::str_get_html(
- ''
+ '',
)->getElementByTagName('script');
- $this->compressor = $this->prophesize(CompressorInterface::class);
+ $this->compressor = Mockery::mock(CompressorInterface::class);
- $this->script = new Script($this->compressor->reveal());
+ $this->script = new Script($this->compressor);
}
- /**
- * @test
- */
+ /** @test */
public function emptyCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('');
$this->script->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function biggerOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('aaaaaaaaaaaaaaaaaaaaaaa');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('aaaaaaaaaaaaaaaaaaaaaaa');
$this->script->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function sameSizedOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('htmlInner');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('htmlInner');
$this->script->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function compress(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('bla');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('bla');
$this->script->compress($this->simpleHtmlDom);
self::assertSame('bla', $this->simpleHtmlDom->innerhtml);
self::assertSame(
'',
- $this->simpleHtmlDom->outerHtml()
+ $this->simpleHtmlDom->outerHtml(),
);
}
}
diff --git a/tests/Pattern/StyleAttributeTest.php b/tests/Pattern/StyleAttributeTest.php
index e6b5e7b..3d66ceb 100644
--- a/tests/Pattern/StyleAttributeTest.php
+++ b/tests/Pattern/StyleAttributeTest.php
@@ -4,7 +4,7 @@
namespace WyriHaximus\HtmlCompress\Tests\Pattern;
-use Prophecy\Prophecy\ObjectProphecy;
+use Mockery;
use voku\helper\HtmlDomParser;
use voku\helper\SimpleHtmlDomInterface;
use WyriHaximus\Compress\CompressorInterface;
@@ -16,8 +16,7 @@ final class StyleAttributeTest extends TestCase
{
private SimpleHtmlDomInterface $simpleHtmlDom;
- /** @var ObjectProphecy|CompressorInterface */
- private $compressor;
+ private Mockery\MockInterface&CompressorInterface $compressor;
private StyleAttribute $styleAttribute;
@@ -27,41 +26,35 @@ protected function setUp(): void
$this->simpleHtmlDom = HtmlDomParser::str_get_html('blaatg')->getElementByTagName('span');
- $this->compressor = $this->prophesize(CompressorInterface::class);
+ $this->compressor = Mockery::mock(CompressorInterface::class);
- $this->styleAttribute = new StyleAttribute($this->compressor->reveal());
+ $this->styleAttribute = new StyleAttribute($this->compressor);
}
- /**
- * @test
- */
+ /** @test */
public function emptyCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('');
$this->styleAttribute->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->getAttribute('style'));
}
- /**
- * @test
- */
+ /** @test */
public function biggerOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('aaaaaaaaaaaaaaaaaaaaaaa');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('aaaaaaaaaaaaaaaaaaaaaaa');
$this->styleAttribute->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->getAttribute('style'));
}
- /**
- * @test
- */
+ /** @test */
public function sameSizedOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('htmlInner');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('htmlInner');
$this->styleAttribute->compress($this->simpleHtmlDom);
diff --git a/tests/Pattern/StyleTest.php b/tests/Pattern/StyleTest.php
index 2acb314..61c4356 100644
--- a/tests/Pattern/StyleTest.php
+++ b/tests/Pattern/StyleTest.php
@@ -4,7 +4,7 @@
namespace WyriHaximus\HtmlCompress\Tests\Pattern;
-use Prophecy\Prophecy\ObjectProphecy;
+use Mockery;
use voku\helper\HtmlDomParser;
use voku\helper\SimpleHtmlDomInterface;
use WyriHaximus\Compress\CompressorInterface;
@@ -16,8 +16,7 @@ final class StyleTest extends TestCase
{
private SimpleHtmlDomInterface $simpleHtmlDom;
- /** @var ObjectProphecy|CompressorInterface */
- private $compressor;
+ private Mockery\MockInterface&CompressorInterface $compressor;
private Style $style;
@@ -27,41 +26,35 @@ protected function setUp(): void
$this->simpleHtmlDom = HtmlDomParser::str_get_html('innerHtml')->getElementByTagName('span');
- $this->compressor = $this->prophesize(CompressorInterface::class);
+ $this->compressor = Mockery::mock(CompressorInterface::class);
- $this->style = new Style($this->compressor->reveal());
+ $this->style = new Style($this->compressor);
}
- /**
- * @test
- */
+ /** @test */
public function emptyCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('');
$this->style->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function biggerOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('aaaaaaaaaaaaaaaaaaaaaaa');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('aaaaaaaaaaaaaaaaaaaaaaa');
$this->style->compress($this->simpleHtmlDom);
self::assertSame('innerHtml', $this->simpleHtmlDom->innerhtml);
}
- /**
- * @test
- */
+ /** @test */
public function sameSizedOutputThenInputCompressResultIsIgnored(): void
{
- $this->compressor->compress('innerHtml')->shouldBeCalled()->willReturn('htmlInner');
+ $this->compressor->expects('compress')->with('innerHtml')->andReturn('htmlInner');
$this->style->compress($this->simpleHtmlDom);
diff --git a/tests/SpecialFormats/LdJsonTest.php b/tests/SpecialFormats/LdJsonTest.php
index db5e6cd..2d5671c 100644
--- a/tests/SpecialFormats/LdJsonTest.php
+++ b/tests/SpecialFormats/LdJsonTest.php
@@ -4,7 +4,6 @@
namespace WyriHaximus\HtmlCompress\Tests\SpecialFormats;
-use Generator;
use WyriHaximus\Compress\CompressorInterface;
use WyriHaximus\Compress\ReturnCompressor;
use WyriHaximus\JsCompress\Compressor as JsCompressor;
@@ -12,26 +11,18 @@
use function Safe\file_get_contents;
use function Safe\json_decode;
-use function Safe\substr;
use function strpos;
use function strrpos;
+use function substr;
use const DIRECTORY_SEPARATOR;
-/**
- * @internal
- */
+/** @internal */
final class LdJsonTest extends TestCase
{
- /**
- * @return Generator>
- */
- public function javascriptCompressorProvider(): Generator
+ /** @return iterable> */
+ public static function javascriptCompressorProvider(): iterable
{
- yield 'jsmin' => [
- new JsCompressor\JSMinCompressor(),
- ];
-
yield 'mmjs' => [
new JsCompressor\MMMJSCompressor(),
];
@@ -41,9 +32,7 @@ public function javascriptCompressorProvider(): Generator
];
}
- /**
- * @dataProvider javascriptCompressorProvider
- */
+ /** @dataProvider javascriptCompressorProvider */
public function testLdJson(CompressorInterface $compressor): void
{
$input = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'input' . DIRECTORY_SEPARATOR . 'ld.json.input');
@@ -55,15 +44,14 @@ public function testLdJson(CompressorInterface $compressor): void
self::assertSame($inputJson, $compressedJson, $compressedInput);
}
- /**
- * @return mixed[]
- */
+ /** @return array */
private function getJson(string $string): array
{
$start = (int) strpos($string, '{');
$end = (int) strrpos($string, '}') + 1;
$string = substr($string, $start, $end - $start);
+ /** @phpstan-ignore-next-line */
return json_decode($string, true);
}
}
diff --git a/var/.gitkeep b/var/.gitkeep
new file mode 100644
index 0000000..e69de29