├── .github
└── workflows
│ └── test.yml
├── .gitignore
├── .rmt.yml
├── .scrutinizer.yml
├── .styleci.yml
├── .travis.yml
├── CHANGELOG
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── LICENSE.md
├── README.md
├── RMT
├── bin
└── phpqt-install
├── composer.json
├── composer.lock
├── phpcs.xml
├── phpmd.xml
├── phpunit.xml.dist
├── src
├── PhpQualityTools.php
├── helpers.php
└── install.php
└── tests
├── InstallTest.php
├── expected
├── composer.json
├── composer_no_script.json
├── phpcs.xml
└── phpmd.xml
└── resources
├── composer.json
└── composer_no_script.json
/.github/workflows/test.yml:
--------------------------------------------------------------------------------
1 | name: Run Tests
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | run-tests:
7 |
8 | runs-on: ubuntu-latest
9 | strategy:
10 | matrix:
11 | php-versions: ['7.4', '8.0']
12 | composer-flags: ["--prefer-lowest", ""]
13 | steps:
14 | - uses: actions/checkout@v2
15 | - name: Setup PHP
16 | uses: shivammathur/setup-php@v2
17 | with:
18 | php-version: ${{ matrix.php-versions }}
19 | - name: Install Dependencies
20 | run: composer update ${composer-flags} --no-interaction --prefer-source
21 | - name: Create Database
22 | run: |
23 | mkdir -p database
24 | touch database/database.sqlite
25 | - name: Execute tests (Unit and Feature tests) via PHPUnit
26 | env:
27 | DB_CONNECTION: sqlite
28 | DB_DATABASE: database/database.sqlite
29 | run: vendor/bin/phpunit
30 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .idea/
3 | .php_cs.cache
4 | build/
5 | vendor/
6 | coverage/
7 | /nbproject/private/
--------------------------------------------------------------------------------
/.rmt.yml:
--------------------------------------------------------------------------------
1 | _default:
2 |
3 | # VCS CONFIG
4 | vcs: git
5 |
6 | # PREREQUISITES
7 | # Actions executed before any questions get asked to the user.
8 | # Custom action can be added by provided a relative path the the php script. Example:
9 | # - relative/path/to/your-own-sript.php
10 | prerequisites:
11 | - working-copy-check
12 | - display-last-changes
13 |
14 | # GENERAL CONFIG
15 | # Apply to all branches except the one from the 'branch-specific' section
16 | # Like prerequisites, you can add your own script. Example:
17 | # - relative/path/to/your-own-sript.php
18 | version-generator: simple # Simple versionning
19 | version-persister:
20 | vcs-tag: # Release with VCS tag
21 | tag-prefix: "{branch-name}_" # Prefix any tag with the VCS branch name
22 | post-release-actions:
23 | vcs-publish: # Publish the release to the VCS
24 | ask-confirmation: true
25 |
26 | # BRANCH SPECIFIC CONFIG
27 | # On master, we override the general config
28 | master:
29 | version-generator: semantic # More complex versionning (semantic)
30 | version-persister:
31 | vcs-tag:
32 | tag-prefix: '' # No more prefix for tags
33 | pre-release-actions:
34 | changelog-update: # Update a CHANGELOG file before the release
35 | format: semantic
36 | vcs-commit: ~ # Commit the CHANGELOG
--------------------------------------------------------------------------------
/.scrutinizer.yml:
--------------------------------------------------------------------------------
1 | filter:
2 | excluded_paths: [tests/*]
3 |
4 | checks:
5 | php:
6 | remove_extra_empty_lines: true
7 | remove_php_closing_tag: true
8 | remove_trailing_whitespace: true
9 | fix_use_statements:
10 | remove_unused: true
11 | preserve_multiple: false
12 | preserve_blanklines: true
13 | order_alphabetically: true
14 | fix_php_opening_tag: true
15 | fix_linefeed: true
16 | fix_line_ending: true
17 | fix_identation_4spaces: true
18 | fix_doc_comments: true
19 |
--------------------------------------------------------------------------------
/.styleci.yml:
--------------------------------------------------------------------------------
1 | preset: laravel
2 |
3 | disabled:
4 | - single_class_element_per_statement
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 7.4
5 | - 8.0
6 |
7 | env:
8 | matrix:
9 | - COMPOSER_FLAGS="--prefer-lowest"
10 | - COMPOSER_FLAGS=""
11 |
12 | before_install:
13 | - sudo apt-get update
14 |
15 | before_script:
16 | - travis_retry composer self-update
17 | - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
18 |
19 | script:
20 | - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
21 |
22 | after_script:
23 | - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
--------------------------------------------------------------------------------
/CHANGELOG:
--------------------------------------------------------------------------------
1 |
2 | VERSION 2 UPDATE UNDERLYING TOOLS
3 | ==================================
4 |
5 | Version 2.1 - PHP 8 support
6 | 31/10/2021 15:54 2.1.0 initial release
7 |
8 | Version 2.0 - Update underlying tools
9 | 31/10/2021 15:48 2.0.0 initial release
10 |
11 | VERSION 1 FIRST RELEASE
12 | ========================
13 |
14 | Version 1.3 - Update php-cs-fixer phpmd phpstan and php_codesniffer
15 | 05/10/2021 14:48 1.3.0 initial release
16 |
17 | Version 1.2 - Updated phpstan to 0.12
18 | 24/01/2020 10:58 1.2.0 initial release
19 |
20 | Version 1.1 - Added error handling, and fixed the bcomposer script paths for windows
21 | 23/10/2019 19:59 1.1.0 initial release
22 |
23 | Version 1.0 - First release
24 | 12/10/2019 19:37 1.0.0 initial release
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | All notable changes to `php-quality-tools` will be documented in this file
4 |
5 | ## 1.0.0 - 201X-XX-XX
6 |
7 | - initial release
8 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 |
3 | Contributions are **welcome** and will be fully **credited**.
4 |
5 | Please read and understand the contribution guide before creating an issue or pull request.
6 |
7 | ## Etiquette
8 |
9 | This project is open source, and as such, the maintainers give their free time to build and maintain the source code
10 | held within. They make the code freely available in the hope that it will be of use to other developers. It would be
11 | extremely unfair for them to suffer abuse or anger for their hard work.
12 |
13 | Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the
14 | world that developers are civilized and selfless people.
15 |
16 | It's the duty of the maintainer to ensure that all submissions to the project are of sufficient
17 | quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used.
18 |
19 | ## Viability
20 |
21 | When requesting or submitting new features, first consider whether it might be useful to others. Open
22 | source projects are used by many developers, who may have entirely different needs to your own. Think about
23 | whether or not your feature is likely to be used by other users of the project.
24 |
25 | ## Procedure
26 |
27 | Before filing an issue:
28 |
29 | - Attempt to replicate the problem, to ensure that it wasn't a coincidental incident.
30 | - Check to make sure your feature suggestion isn't already present within the project.
31 | - Check the pull requests tab to ensure that the bug doesn't have a fix in progress.
32 | - Check the pull requests tab to ensure that the feature isn't already in progress.
33 |
34 | Before submitting a pull request:
35 |
36 | - Check the codebase to ensure that your feature doesn't already exist.
37 | - Check the pull requests to ensure that another person hasn't already submitted the feature or fix.
38 |
39 | ## Requirements
40 |
41 | If the project maintainer has any additional requirements, you will find them listed here.
42 |
43 | - **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](https://pear.php.net/package/PHP_CodeSniffer).
44 |
45 | - **Add tests!** - Your patch won't be accepted if it doesn't have tests.
46 |
47 | - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
48 |
49 | - **Consider our release cycle** - We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
50 |
51 | - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
52 |
53 | - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
54 |
55 | **Happy coding**!
56 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Daniel Werner
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) Daniel Werner
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # PHP Quality Tools
2 |
3 | [](https://packagist.org/packages/daniel-werner/php-quality-tools)
4 | [](https://travis-ci.org/daniel-werner/php-quality-tools)
5 | [](https://github.com/daniel-werner/php-quality-tools/actions/workflows/test.yml)
6 | [](https://scrutinizer-ci.com/g/daniel-werner/php-quality-tools)
7 | [](https://packagist.org/packages/daniel-werner/php-quality-tools)
8 |
9 | This package installs the most commonly used quality tools for php: [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer),
10 | [PHP Mess Detector](https://phpmd.org/), [PHP Static Analysis Tool](https://github.com/phpstan/phpstan) and [PHP Coding Standards Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer).
11 | It comes with some reasonable predefined configurations and using the PSR-2 coding style. This package can be used with Laravel applications or with any php project it is not specifically a Laravel package.
12 |
13 | The purpose of this package is to allow php developers to quickly install and configure
14 | all the necessary quality tools for their projects.
15 |
16 | ## Installation
17 |
18 | You can install the package via composer:
19 |
20 | ```bash
21 | composer require --dev daniel-werner/php-quality-tools
22 | ```
23 |
24 | After installing with composer, run the following command from the `root` directory of your project:
25 |
26 | ```bash
27 | vendor/bin/phpqt-install
28 | ```
29 |
30 | This will copy the default xml settings for the tools and to set up the scripts in the `composer.json`.
31 |
32 | The install script will try to guess the source code directory in your project,
33 | if it is a Laravel application it will use the `app` directory, if it is a package
34 | it will use the `src` directory, otherwise the current directory.
35 |
36 | You can pass the source code directory as the first argument of the install script, like this:
37 |
38 | ```bash
39 | vendor/bin/phpqt-install my-app-src
40 | ```
41 |
42 | After the installation the xml configurations can be found in your projects root directory.
43 | You can customize the phpcs and phpmd configurations by changing the settings in the xml files.
44 |
45 | ## Usage
46 |
47 | The package defines the following scripts in the `composer.json`:
48 | - `composer inspect`: this command runs the PHP Code Sniffer (phpcs) and the PHP Static Analysis Tool (phpstan).
49 | It will analyze your code style and run the phpstan with the default minimum level=0
50 | - `composer inspect-fix`: this command will try to fix the problems found by the inspection
51 | by running the PHP Coding Standards Fixer (php-cs-fixer) and the PHP Code Beautifier and Fixer (phpcbf).
52 | - `composer insights`: runs the PHP Mess Detector to find any potential issues in your code.
53 |
54 | ### Testing
55 |
56 | ``` bash
57 | composer test
58 | ```
59 |
60 | ### Changelog
61 |
62 | Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
63 |
64 | ## Contributing
65 |
66 | Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
67 |
68 | ### Security
69 |
70 | If you discover any security related issues, please email vernerd@gmail.com instead of using the issue tracker.
71 |
72 | ## Credits
73 |
74 | - [Daniel Werner](https://github.com/daniel-werner)
75 | - [All Contributors](../../contributors)
76 |
77 | ## License
78 |
79 | The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
80 |
81 | ## PHP Package Boilerplate
82 |
83 | This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com).
84 |
--------------------------------------------------------------------------------
/RMT:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env php
2 | =5.3.7",
481 | "symfony/config": "^2.3.0|^3|^4|^5|^6.0",
482 | "symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0",
483 | "symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0"
484 | },
485 | "require-dev": {
486 | "easy-doc/easy-doc": "0.0.0|^1.2.3",
487 | "gregwar/rst": "^1.0",
488 | "phpunit/phpunit": "^4.8.36|^5.7.27",
489 | "squizlabs/php_codesniffer": "^2.0.0"
490 | },
491 | "bin": [
492 | "src/bin/pdepend"
493 | ],
494 | "type": "library",
495 | "extra": {
496 | "branch-alias": {
497 | "dev-master": "2.x-dev"
498 | }
499 | },
500 | "autoload": {
501 | "psr-4": {
502 | "PDepend\\": "src/main/php/PDepend"
503 | }
504 | },
505 | "notification-url": "https://packagist.org/downloads/",
506 | "license": [
507 | "BSD-3-Clause"
508 | ],
509 | "description": "Official version of pdepend to be handled with Composer",
510 | "support": {
511 | "issues": "https://github.com/pdepend/pdepend/issues",
512 | "source": "https://github.com/pdepend/pdepend/tree/2.12.1"
513 | },
514 | "funding": [
515 | {
516 | "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend",
517 | "type": "tidelift"
518 | }
519 | ],
520 | "time": "2022-09-08T19:30:37+00:00"
521 | },
522 | {
523 | "name": "phpmd/phpmd",
524 | "version": "2.13.0",
525 | "source": {
526 | "type": "git",
527 | "url": "https://github.com/phpmd/phpmd.git",
528 | "reference": "dad0228156856b3ad959992f9748514fa943f3e3"
529 | },
530 | "dist": {
531 | "type": "zip",
532 | "url": "https://api.github.com/repos/phpmd/phpmd/zipball/dad0228156856b3ad959992f9748514fa943f3e3",
533 | "reference": "dad0228156856b3ad959992f9748514fa943f3e3",
534 | "shasum": ""
535 | },
536 | "require": {
537 | "composer/xdebug-handler": "^1.0 || ^2.0 || ^3.0",
538 | "ext-xml": "*",
539 | "pdepend/pdepend": "^2.12.1",
540 | "php": ">=5.3.9"
541 | },
542 | "require-dev": {
543 | "easy-doc/easy-doc": "0.0.0 || ^1.3.2",
544 | "ext-json": "*",
545 | "ext-simplexml": "*",
546 | "gregwar/rst": "^1.0",
547 | "mikey179/vfsstream": "^1.6.8",
548 | "phpunit/phpunit": "^4.8.36 || ^5.7.27",
549 | "squizlabs/php_codesniffer": "^2.0"
550 | },
551 | "bin": [
552 | "src/bin/phpmd"
553 | ],
554 | "type": "library",
555 | "autoload": {
556 | "psr-0": {
557 | "PHPMD\\": "src/main/php"
558 | }
559 | },
560 | "notification-url": "https://packagist.org/downloads/",
561 | "license": [
562 | "BSD-3-Clause"
563 | ],
564 | "authors": [
565 | {
566 | "name": "Manuel Pichler",
567 | "email": "github@manuel-pichler.de",
568 | "homepage": "https://github.com/manuelpichler",
569 | "role": "Project Founder"
570 | },
571 | {
572 | "name": "Marc Würth",
573 | "email": "ravage@bluewin.ch",
574 | "homepage": "https://github.com/ravage84",
575 | "role": "Project Maintainer"
576 | },
577 | {
578 | "name": "Other contributors",
579 | "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
580 | "role": "Contributors"
581 | }
582 | ],
583 | "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
584 | "homepage": "https://phpmd.org/",
585 | "keywords": [
586 | "mess detection",
587 | "mess detector",
588 | "pdepend",
589 | "phpmd",
590 | "pmd"
591 | ],
592 | "support": {
593 | "irc": "irc://irc.freenode.org/phpmd",
594 | "issues": "https://github.com/phpmd/phpmd/issues",
595 | "source": "https://github.com/phpmd/phpmd/tree/2.13.0"
596 | },
597 | "funding": [
598 | {
599 | "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd",
600 | "type": "tidelift"
601 | }
602 | ],
603 | "time": "2022-09-10T08:44:15+00:00"
604 | },
605 | {
606 | "name": "phpstan/phpstan",
607 | "version": "1.8.9",
608 | "source": {
609 | "type": "git",
610 | "url": "https://github.com/phpstan/phpstan.git",
611 | "reference": "3a72d9d9f2528fbd50c2d8fcf155fd9f74ade3f2"
612 | },
613 | "dist": {
614 | "type": "zip",
615 | "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3a72d9d9f2528fbd50c2d8fcf155fd9f74ade3f2",
616 | "reference": "3a72d9d9f2528fbd50c2d8fcf155fd9f74ade3f2",
617 | "shasum": ""
618 | },
619 | "require": {
620 | "php": "^7.2|^8.0"
621 | },
622 | "conflict": {
623 | "phpstan/phpstan-shim": "*"
624 | },
625 | "bin": [
626 | "phpstan",
627 | "phpstan.phar"
628 | ],
629 | "type": "library",
630 | "autoload": {
631 | "files": [
632 | "bootstrap.php"
633 | ]
634 | },
635 | "notification-url": "https://packagist.org/downloads/",
636 | "license": [
637 | "MIT"
638 | ],
639 | "description": "PHPStan - PHP Static Analysis Tool",
640 | "keywords": [
641 | "dev",
642 | "static analysis"
643 | ],
644 | "support": {
645 | "issues": "https://github.com/phpstan/phpstan/issues",
646 | "source": "https://github.com/phpstan/phpstan/tree/1.8.9"
647 | },
648 | "funding": [
649 | {
650 | "url": "https://github.com/ondrejmirtes",
651 | "type": "github"
652 | },
653 | {
654 | "url": "https://github.com/phpstan",
655 | "type": "github"
656 | },
657 | {
658 | "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
659 | "type": "tidelift"
660 | }
661 | ],
662 | "time": "2022-10-13T13:40:18+00:00"
663 | },
664 | {
665 | "name": "psr/cache",
666 | "version": "1.0.1",
667 | "source": {
668 | "type": "git",
669 | "url": "https://github.com/php-fig/cache.git",
670 | "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
671 | },
672 | "dist": {
673 | "type": "zip",
674 | "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
675 | "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
676 | "shasum": ""
677 | },
678 | "require": {
679 | "php": ">=5.3.0"
680 | },
681 | "type": "library",
682 | "extra": {
683 | "branch-alias": {
684 | "dev-master": "1.0.x-dev"
685 | }
686 | },
687 | "autoload": {
688 | "psr-4": {
689 | "Psr\\Cache\\": "src/"
690 | }
691 | },
692 | "notification-url": "https://packagist.org/downloads/",
693 | "license": [
694 | "MIT"
695 | ],
696 | "authors": [
697 | {
698 | "name": "PHP-FIG",
699 | "homepage": "http://www.php-fig.org/"
700 | }
701 | ],
702 | "description": "Common interface for caching libraries",
703 | "keywords": [
704 | "cache",
705 | "psr",
706 | "psr-6"
707 | ],
708 | "support": {
709 | "source": "https://github.com/php-fig/cache/tree/master"
710 | },
711 | "time": "2016-08-06T20:24:11+00:00"
712 | },
713 | {
714 | "name": "psr/container",
715 | "version": "1.1.2",
716 | "source": {
717 | "type": "git",
718 | "url": "https://github.com/php-fig/container.git",
719 | "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
720 | },
721 | "dist": {
722 | "type": "zip",
723 | "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
724 | "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
725 | "shasum": ""
726 | },
727 | "require": {
728 | "php": ">=7.4.0"
729 | },
730 | "type": "library",
731 | "autoload": {
732 | "psr-4": {
733 | "Psr\\Container\\": "src/"
734 | }
735 | },
736 | "notification-url": "https://packagist.org/downloads/",
737 | "license": [
738 | "MIT"
739 | ],
740 | "authors": [
741 | {
742 | "name": "PHP-FIG",
743 | "homepage": "https://www.php-fig.org/"
744 | }
745 | ],
746 | "description": "Common Container Interface (PHP FIG PSR-11)",
747 | "homepage": "https://github.com/php-fig/container",
748 | "keywords": [
749 | "PSR-11",
750 | "container",
751 | "container-interface",
752 | "container-interop",
753 | "psr"
754 | ],
755 | "support": {
756 | "issues": "https://github.com/php-fig/container/issues",
757 | "source": "https://github.com/php-fig/container/tree/1.1.2"
758 | },
759 | "time": "2021-11-05T16:50:12+00:00"
760 | },
761 | {
762 | "name": "psr/event-dispatcher",
763 | "version": "1.0.0",
764 | "source": {
765 | "type": "git",
766 | "url": "https://github.com/php-fig/event-dispatcher.git",
767 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
768 | },
769 | "dist": {
770 | "type": "zip",
771 | "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
772 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
773 | "shasum": ""
774 | },
775 | "require": {
776 | "php": ">=7.2.0"
777 | },
778 | "type": "library",
779 | "extra": {
780 | "branch-alias": {
781 | "dev-master": "1.0.x-dev"
782 | }
783 | },
784 | "autoload": {
785 | "psr-4": {
786 | "Psr\\EventDispatcher\\": "src/"
787 | }
788 | },
789 | "notification-url": "https://packagist.org/downloads/",
790 | "license": [
791 | "MIT"
792 | ],
793 | "authors": [
794 | {
795 | "name": "PHP-FIG",
796 | "homepage": "http://www.php-fig.org/"
797 | }
798 | ],
799 | "description": "Standard interfaces for event handling.",
800 | "keywords": [
801 | "events",
802 | "psr",
803 | "psr-14"
804 | ],
805 | "support": {
806 | "issues": "https://github.com/php-fig/event-dispatcher/issues",
807 | "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
808 | },
809 | "time": "2019-01-08T18:20:26+00:00"
810 | },
811 | {
812 | "name": "psr/log",
813 | "version": "1.1.4",
814 | "source": {
815 | "type": "git",
816 | "url": "https://github.com/php-fig/log.git",
817 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
818 | },
819 | "dist": {
820 | "type": "zip",
821 | "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
822 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
823 | "shasum": ""
824 | },
825 | "require": {
826 | "php": ">=5.3.0"
827 | },
828 | "type": "library",
829 | "extra": {
830 | "branch-alias": {
831 | "dev-master": "1.1.x-dev"
832 | }
833 | },
834 | "autoload": {
835 | "psr-4": {
836 | "Psr\\Log\\": "Psr/Log/"
837 | }
838 | },
839 | "notification-url": "https://packagist.org/downloads/",
840 | "license": [
841 | "MIT"
842 | ],
843 | "authors": [
844 | {
845 | "name": "PHP-FIG",
846 | "homepage": "https://www.php-fig.org/"
847 | }
848 | ],
849 | "description": "Common interface for logging libraries",
850 | "homepage": "https://github.com/php-fig/log",
851 | "keywords": [
852 | "log",
853 | "psr",
854 | "psr-3"
855 | ],
856 | "support": {
857 | "source": "https://github.com/php-fig/log/tree/1.1.4"
858 | },
859 | "time": "2021-05-03T11:20:27+00:00"
860 | },
861 | {
862 | "name": "sebastian/diff",
863 | "version": "4.0.4",
864 | "source": {
865 | "type": "git",
866 | "url": "https://github.com/sebastianbergmann/diff.git",
867 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
868 | },
869 | "dist": {
870 | "type": "zip",
871 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
872 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
873 | "shasum": ""
874 | },
875 | "require": {
876 | "php": ">=7.3"
877 | },
878 | "require-dev": {
879 | "phpunit/phpunit": "^9.3",
880 | "symfony/process": "^4.2 || ^5"
881 | },
882 | "type": "library",
883 | "extra": {
884 | "branch-alias": {
885 | "dev-master": "4.0-dev"
886 | }
887 | },
888 | "autoload": {
889 | "classmap": [
890 | "src/"
891 | ]
892 | },
893 | "notification-url": "https://packagist.org/downloads/",
894 | "license": [
895 | "BSD-3-Clause"
896 | ],
897 | "authors": [
898 | {
899 | "name": "Sebastian Bergmann",
900 | "email": "sebastian@phpunit.de"
901 | },
902 | {
903 | "name": "Kore Nordmann",
904 | "email": "mail@kore-nordmann.de"
905 | }
906 | ],
907 | "description": "Diff implementation",
908 | "homepage": "https://github.com/sebastianbergmann/diff",
909 | "keywords": [
910 | "diff",
911 | "udiff",
912 | "unidiff",
913 | "unified diff"
914 | ],
915 | "support": {
916 | "issues": "https://github.com/sebastianbergmann/diff/issues",
917 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
918 | },
919 | "funding": [
920 | {
921 | "url": "https://github.com/sebastianbergmann",
922 | "type": "github"
923 | }
924 | ],
925 | "time": "2020-10-26T13:10:38+00:00"
926 | },
927 | {
928 | "name": "squizlabs/php_codesniffer",
929 | "version": "3.7.1",
930 | "source": {
931 | "type": "git",
932 | "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
933 | "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
934 | },
935 | "dist": {
936 | "type": "zip",
937 | "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
938 | "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
939 | "shasum": ""
940 | },
941 | "require": {
942 | "ext-simplexml": "*",
943 | "ext-tokenizer": "*",
944 | "ext-xmlwriter": "*",
945 | "php": ">=5.4.0"
946 | },
947 | "require-dev": {
948 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
949 | },
950 | "bin": [
951 | "bin/phpcs",
952 | "bin/phpcbf"
953 | ],
954 | "type": "library",
955 | "extra": {
956 | "branch-alias": {
957 | "dev-master": "3.x-dev"
958 | }
959 | },
960 | "notification-url": "https://packagist.org/downloads/",
961 | "license": [
962 | "BSD-3-Clause"
963 | ],
964 | "authors": [
965 | {
966 | "name": "Greg Sherwood",
967 | "role": "lead"
968 | }
969 | ],
970 | "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
971 | "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
972 | "keywords": [
973 | "phpcs",
974 | "standards"
975 | ],
976 | "support": {
977 | "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
978 | "source": "https://github.com/squizlabs/PHP_CodeSniffer",
979 | "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
980 | },
981 | "time": "2022-06-18T07:21:10+00:00"
982 | },
983 | {
984 | "name": "symfony/config",
985 | "version": "v5.4.11",
986 | "source": {
987 | "type": "git",
988 | "url": "https://github.com/symfony/config.git",
989 | "reference": "ec79e03125c1d2477e43dde8528535d90cc78379"
990 | },
991 | "dist": {
992 | "type": "zip",
993 | "url": "https://api.github.com/repos/symfony/config/zipball/ec79e03125c1d2477e43dde8528535d90cc78379",
994 | "reference": "ec79e03125c1d2477e43dde8528535d90cc78379",
995 | "shasum": ""
996 | },
997 | "require": {
998 | "php": ">=7.2.5",
999 | "symfony/deprecation-contracts": "^2.1|^3",
1000 | "symfony/filesystem": "^4.4|^5.0|^6.0",
1001 | "symfony/polyfill-ctype": "~1.8",
1002 | "symfony/polyfill-php80": "^1.16",
1003 | "symfony/polyfill-php81": "^1.22"
1004 | },
1005 | "conflict": {
1006 | "symfony/finder": "<4.4"
1007 | },
1008 | "require-dev": {
1009 | "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
1010 | "symfony/finder": "^4.4|^5.0|^6.0",
1011 | "symfony/messenger": "^4.4|^5.0|^6.0",
1012 | "symfony/service-contracts": "^1.1|^2|^3",
1013 | "symfony/yaml": "^4.4|^5.0|^6.0"
1014 | },
1015 | "suggest": {
1016 | "symfony/yaml": "To use the yaml reference dumper"
1017 | },
1018 | "type": "library",
1019 | "autoload": {
1020 | "psr-4": {
1021 | "Symfony\\Component\\Config\\": ""
1022 | },
1023 | "exclude-from-classmap": [
1024 | "/Tests/"
1025 | ]
1026 | },
1027 | "notification-url": "https://packagist.org/downloads/",
1028 | "license": [
1029 | "MIT"
1030 | ],
1031 | "authors": [
1032 | {
1033 | "name": "Fabien Potencier",
1034 | "email": "fabien@symfony.com"
1035 | },
1036 | {
1037 | "name": "Symfony Community",
1038 | "homepage": "https://symfony.com/contributors"
1039 | }
1040 | ],
1041 | "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
1042 | "homepage": "https://symfony.com",
1043 | "support": {
1044 | "source": "https://github.com/symfony/config/tree/v5.4.11"
1045 | },
1046 | "funding": [
1047 | {
1048 | "url": "https://symfony.com/sponsor",
1049 | "type": "custom"
1050 | },
1051 | {
1052 | "url": "https://github.com/fabpot",
1053 | "type": "github"
1054 | },
1055 | {
1056 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1057 | "type": "tidelift"
1058 | }
1059 | ],
1060 | "time": "2022-07-20T13:00:38+00:00"
1061 | },
1062 | {
1063 | "name": "symfony/console",
1064 | "version": "v5.4.14",
1065 | "source": {
1066 | "type": "git",
1067 | "url": "https://github.com/symfony/console.git",
1068 | "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d"
1069 | },
1070 | "dist": {
1071 | "type": "zip",
1072 | "url": "https://api.github.com/repos/symfony/console/zipball/984ea2c0f45f42dfed01d2f3987b187467c4b16d",
1073 | "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d",
1074 | "shasum": ""
1075 | },
1076 | "require": {
1077 | "php": ">=7.2.5",
1078 | "symfony/deprecation-contracts": "^2.1|^3",
1079 | "symfony/polyfill-mbstring": "~1.0",
1080 | "symfony/polyfill-php73": "^1.9",
1081 | "symfony/polyfill-php80": "^1.16",
1082 | "symfony/service-contracts": "^1.1|^2|^3",
1083 | "symfony/string": "^5.1|^6.0"
1084 | },
1085 | "conflict": {
1086 | "psr/log": ">=3",
1087 | "symfony/dependency-injection": "<4.4",
1088 | "symfony/dotenv": "<5.1",
1089 | "symfony/event-dispatcher": "<4.4",
1090 | "symfony/lock": "<4.4",
1091 | "symfony/process": "<4.4"
1092 | },
1093 | "provide": {
1094 | "psr/log-implementation": "1.0|2.0"
1095 | },
1096 | "require-dev": {
1097 | "psr/log": "^1|^2",
1098 | "symfony/config": "^4.4|^5.0|^6.0",
1099 | "symfony/dependency-injection": "^4.4|^5.0|^6.0",
1100 | "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
1101 | "symfony/lock": "^4.4|^5.0|^6.0",
1102 | "symfony/process": "^4.4|^5.0|^6.0",
1103 | "symfony/var-dumper": "^4.4|^5.0|^6.0"
1104 | },
1105 | "suggest": {
1106 | "psr/log": "For using the console logger",
1107 | "symfony/event-dispatcher": "",
1108 | "symfony/lock": "",
1109 | "symfony/process": ""
1110 | },
1111 | "type": "library",
1112 | "autoload": {
1113 | "psr-4": {
1114 | "Symfony\\Component\\Console\\": ""
1115 | },
1116 | "exclude-from-classmap": [
1117 | "/Tests/"
1118 | ]
1119 | },
1120 | "notification-url": "https://packagist.org/downloads/",
1121 | "license": [
1122 | "MIT"
1123 | ],
1124 | "authors": [
1125 | {
1126 | "name": "Fabien Potencier",
1127 | "email": "fabien@symfony.com"
1128 | },
1129 | {
1130 | "name": "Symfony Community",
1131 | "homepage": "https://symfony.com/contributors"
1132 | }
1133 | ],
1134 | "description": "Eases the creation of beautiful and testable command line interfaces",
1135 | "homepage": "https://symfony.com",
1136 | "keywords": [
1137 | "cli",
1138 | "command line",
1139 | "console",
1140 | "terminal"
1141 | ],
1142 | "support": {
1143 | "source": "https://github.com/symfony/console/tree/v5.4.14"
1144 | },
1145 | "funding": [
1146 | {
1147 | "url": "https://symfony.com/sponsor",
1148 | "type": "custom"
1149 | },
1150 | {
1151 | "url": "https://github.com/fabpot",
1152 | "type": "github"
1153 | },
1154 | {
1155 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1156 | "type": "tidelift"
1157 | }
1158 | ],
1159 | "time": "2022-10-07T08:01:20+00:00"
1160 | },
1161 | {
1162 | "name": "symfony/dependency-injection",
1163 | "version": "v5.4.13",
1164 | "source": {
1165 | "type": "git",
1166 | "url": "https://github.com/symfony/dependency-injection.git",
1167 | "reference": "24cf522668845391c0542bc1de496366072a6d0e"
1168 | },
1169 | "dist": {
1170 | "type": "zip",
1171 | "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/24cf522668845391c0542bc1de496366072a6d0e",
1172 | "reference": "24cf522668845391c0542bc1de496366072a6d0e",
1173 | "shasum": ""
1174 | },
1175 | "require": {
1176 | "php": ">=7.2.5",
1177 | "psr/container": "^1.1.1",
1178 | "symfony/deprecation-contracts": "^2.1|^3",
1179 | "symfony/polyfill-php80": "^1.16",
1180 | "symfony/polyfill-php81": "^1.22",
1181 | "symfony/service-contracts": "^1.1.6|^2"
1182 | },
1183 | "conflict": {
1184 | "ext-psr": "<1.1|>=2",
1185 | "symfony/config": "<5.3",
1186 | "symfony/finder": "<4.4",
1187 | "symfony/proxy-manager-bridge": "<4.4",
1188 | "symfony/yaml": "<4.4.26"
1189 | },
1190 | "provide": {
1191 | "psr/container-implementation": "1.0",
1192 | "symfony/service-implementation": "1.0|2.0"
1193 | },
1194 | "require-dev": {
1195 | "symfony/config": "^5.3|^6.0",
1196 | "symfony/expression-language": "^4.4|^5.0|^6.0",
1197 | "symfony/yaml": "^4.4.26|^5.0|^6.0"
1198 | },
1199 | "suggest": {
1200 | "symfony/config": "",
1201 | "symfony/expression-language": "For using expressions in service container configuration",
1202 | "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
1203 | "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
1204 | "symfony/yaml": ""
1205 | },
1206 | "type": "library",
1207 | "autoload": {
1208 | "psr-4": {
1209 | "Symfony\\Component\\DependencyInjection\\": ""
1210 | },
1211 | "exclude-from-classmap": [
1212 | "/Tests/"
1213 | ]
1214 | },
1215 | "notification-url": "https://packagist.org/downloads/",
1216 | "license": [
1217 | "MIT"
1218 | ],
1219 | "authors": [
1220 | {
1221 | "name": "Fabien Potencier",
1222 | "email": "fabien@symfony.com"
1223 | },
1224 | {
1225 | "name": "Symfony Community",
1226 | "homepage": "https://symfony.com/contributors"
1227 | }
1228 | ],
1229 | "description": "Allows you to standardize and centralize the way objects are constructed in your application",
1230 | "homepage": "https://symfony.com",
1231 | "support": {
1232 | "source": "https://github.com/symfony/dependency-injection/tree/v5.4.13"
1233 | },
1234 | "funding": [
1235 | {
1236 | "url": "https://symfony.com/sponsor",
1237 | "type": "custom"
1238 | },
1239 | {
1240 | "url": "https://github.com/fabpot",
1241 | "type": "github"
1242 | },
1243 | {
1244 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1245 | "type": "tidelift"
1246 | }
1247 | ],
1248 | "time": "2022-08-30T19:10:13+00:00"
1249 | },
1250 | {
1251 | "name": "symfony/deprecation-contracts",
1252 | "version": "v2.5.2",
1253 | "source": {
1254 | "type": "git",
1255 | "url": "https://github.com/symfony/deprecation-contracts.git",
1256 | "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
1257 | },
1258 | "dist": {
1259 | "type": "zip",
1260 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
1261 | "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
1262 | "shasum": ""
1263 | },
1264 | "require": {
1265 | "php": ">=7.1"
1266 | },
1267 | "type": "library",
1268 | "extra": {
1269 | "branch-alias": {
1270 | "dev-main": "2.5-dev"
1271 | },
1272 | "thanks": {
1273 | "name": "symfony/contracts",
1274 | "url": "https://github.com/symfony/contracts"
1275 | }
1276 | },
1277 | "autoload": {
1278 | "files": [
1279 | "function.php"
1280 | ]
1281 | },
1282 | "notification-url": "https://packagist.org/downloads/",
1283 | "license": [
1284 | "MIT"
1285 | ],
1286 | "authors": [
1287 | {
1288 | "name": "Nicolas Grekas",
1289 | "email": "p@tchwork.com"
1290 | },
1291 | {
1292 | "name": "Symfony Community",
1293 | "homepage": "https://symfony.com/contributors"
1294 | }
1295 | ],
1296 | "description": "A generic function and convention to trigger deprecation notices",
1297 | "homepage": "https://symfony.com",
1298 | "support": {
1299 | "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
1300 | },
1301 | "funding": [
1302 | {
1303 | "url": "https://symfony.com/sponsor",
1304 | "type": "custom"
1305 | },
1306 | {
1307 | "url": "https://github.com/fabpot",
1308 | "type": "github"
1309 | },
1310 | {
1311 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1312 | "type": "tidelift"
1313 | }
1314 | ],
1315 | "time": "2022-01-02T09:53:40+00:00"
1316 | },
1317 | {
1318 | "name": "symfony/event-dispatcher",
1319 | "version": "v5.4.9",
1320 | "source": {
1321 | "type": "git",
1322 | "url": "https://github.com/symfony/event-dispatcher.git",
1323 | "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
1324 | },
1325 | "dist": {
1326 | "type": "zip",
1327 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
1328 | "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
1329 | "shasum": ""
1330 | },
1331 | "require": {
1332 | "php": ">=7.2.5",
1333 | "symfony/deprecation-contracts": "^2.1|^3",
1334 | "symfony/event-dispatcher-contracts": "^2|^3",
1335 | "symfony/polyfill-php80": "^1.16"
1336 | },
1337 | "conflict": {
1338 | "symfony/dependency-injection": "<4.4"
1339 | },
1340 | "provide": {
1341 | "psr/event-dispatcher-implementation": "1.0",
1342 | "symfony/event-dispatcher-implementation": "2.0"
1343 | },
1344 | "require-dev": {
1345 | "psr/log": "^1|^2|^3",
1346 | "symfony/config": "^4.4|^5.0|^6.0",
1347 | "symfony/dependency-injection": "^4.4|^5.0|^6.0",
1348 | "symfony/error-handler": "^4.4|^5.0|^6.0",
1349 | "symfony/expression-language": "^4.4|^5.0|^6.0",
1350 | "symfony/http-foundation": "^4.4|^5.0|^6.0",
1351 | "symfony/service-contracts": "^1.1|^2|^3",
1352 | "symfony/stopwatch": "^4.4|^5.0|^6.0"
1353 | },
1354 | "suggest": {
1355 | "symfony/dependency-injection": "",
1356 | "symfony/http-kernel": ""
1357 | },
1358 | "type": "library",
1359 | "autoload": {
1360 | "psr-4": {
1361 | "Symfony\\Component\\EventDispatcher\\": ""
1362 | },
1363 | "exclude-from-classmap": [
1364 | "/Tests/"
1365 | ]
1366 | },
1367 | "notification-url": "https://packagist.org/downloads/",
1368 | "license": [
1369 | "MIT"
1370 | ],
1371 | "authors": [
1372 | {
1373 | "name": "Fabien Potencier",
1374 | "email": "fabien@symfony.com"
1375 | },
1376 | {
1377 | "name": "Symfony Community",
1378 | "homepage": "https://symfony.com/contributors"
1379 | }
1380 | ],
1381 | "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
1382 | "homepage": "https://symfony.com",
1383 | "support": {
1384 | "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
1385 | },
1386 | "funding": [
1387 | {
1388 | "url": "https://symfony.com/sponsor",
1389 | "type": "custom"
1390 | },
1391 | {
1392 | "url": "https://github.com/fabpot",
1393 | "type": "github"
1394 | },
1395 | {
1396 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1397 | "type": "tidelift"
1398 | }
1399 | ],
1400 | "time": "2022-05-05T16:45:39+00:00"
1401 | },
1402 | {
1403 | "name": "symfony/event-dispatcher-contracts",
1404 | "version": "v2.5.2",
1405 | "source": {
1406 | "type": "git",
1407 | "url": "https://github.com/symfony/event-dispatcher-contracts.git",
1408 | "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
1409 | },
1410 | "dist": {
1411 | "type": "zip",
1412 | "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
1413 | "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
1414 | "shasum": ""
1415 | },
1416 | "require": {
1417 | "php": ">=7.2.5",
1418 | "psr/event-dispatcher": "^1"
1419 | },
1420 | "suggest": {
1421 | "symfony/event-dispatcher-implementation": ""
1422 | },
1423 | "type": "library",
1424 | "extra": {
1425 | "branch-alias": {
1426 | "dev-main": "2.5-dev"
1427 | },
1428 | "thanks": {
1429 | "name": "symfony/contracts",
1430 | "url": "https://github.com/symfony/contracts"
1431 | }
1432 | },
1433 | "autoload": {
1434 | "psr-4": {
1435 | "Symfony\\Contracts\\EventDispatcher\\": ""
1436 | }
1437 | },
1438 | "notification-url": "https://packagist.org/downloads/",
1439 | "license": [
1440 | "MIT"
1441 | ],
1442 | "authors": [
1443 | {
1444 | "name": "Nicolas Grekas",
1445 | "email": "p@tchwork.com"
1446 | },
1447 | {
1448 | "name": "Symfony Community",
1449 | "homepage": "https://symfony.com/contributors"
1450 | }
1451 | ],
1452 | "description": "Generic abstractions related to dispatching event",
1453 | "homepage": "https://symfony.com",
1454 | "keywords": [
1455 | "abstractions",
1456 | "contracts",
1457 | "decoupling",
1458 | "interfaces",
1459 | "interoperability",
1460 | "standards"
1461 | ],
1462 | "support": {
1463 | "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
1464 | },
1465 | "funding": [
1466 | {
1467 | "url": "https://symfony.com/sponsor",
1468 | "type": "custom"
1469 | },
1470 | {
1471 | "url": "https://github.com/fabpot",
1472 | "type": "github"
1473 | },
1474 | {
1475 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1476 | "type": "tidelift"
1477 | }
1478 | ],
1479 | "time": "2022-01-02T09:53:40+00:00"
1480 | },
1481 | {
1482 | "name": "symfony/filesystem",
1483 | "version": "v5.4.13",
1484 | "source": {
1485 | "type": "git",
1486 | "url": "https://github.com/symfony/filesystem.git",
1487 | "reference": "ac09569844a9109a5966b9438fc29113ce77cf51"
1488 | },
1489 | "dist": {
1490 | "type": "zip",
1491 | "url": "https://api.github.com/repos/symfony/filesystem/zipball/ac09569844a9109a5966b9438fc29113ce77cf51",
1492 | "reference": "ac09569844a9109a5966b9438fc29113ce77cf51",
1493 | "shasum": ""
1494 | },
1495 | "require": {
1496 | "php": ">=7.2.5",
1497 | "symfony/polyfill-ctype": "~1.8",
1498 | "symfony/polyfill-mbstring": "~1.8",
1499 | "symfony/polyfill-php80": "^1.16"
1500 | },
1501 | "type": "library",
1502 | "autoload": {
1503 | "psr-4": {
1504 | "Symfony\\Component\\Filesystem\\": ""
1505 | },
1506 | "exclude-from-classmap": [
1507 | "/Tests/"
1508 | ]
1509 | },
1510 | "notification-url": "https://packagist.org/downloads/",
1511 | "license": [
1512 | "MIT"
1513 | ],
1514 | "authors": [
1515 | {
1516 | "name": "Fabien Potencier",
1517 | "email": "fabien@symfony.com"
1518 | },
1519 | {
1520 | "name": "Symfony Community",
1521 | "homepage": "https://symfony.com/contributors"
1522 | }
1523 | ],
1524 | "description": "Provides basic utilities for the filesystem",
1525 | "homepage": "https://symfony.com",
1526 | "support": {
1527 | "source": "https://github.com/symfony/filesystem/tree/v5.4.13"
1528 | },
1529 | "funding": [
1530 | {
1531 | "url": "https://symfony.com/sponsor",
1532 | "type": "custom"
1533 | },
1534 | {
1535 | "url": "https://github.com/fabpot",
1536 | "type": "github"
1537 | },
1538 | {
1539 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1540 | "type": "tidelift"
1541 | }
1542 | ],
1543 | "time": "2022-09-21T19:53:16+00:00"
1544 | },
1545 | {
1546 | "name": "symfony/finder",
1547 | "version": "v5.4.11",
1548 | "source": {
1549 | "type": "git",
1550 | "url": "https://github.com/symfony/finder.git",
1551 | "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
1552 | },
1553 | "dist": {
1554 | "type": "zip",
1555 | "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
1556 | "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
1557 | "shasum": ""
1558 | },
1559 | "require": {
1560 | "php": ">=7.2.5",
1561 | "symfony/deprecation-contracts": "^2.1|^3",
1562 | "symfony/polyfill-php80": "^1.16"
1563 | },
1564 | "type": "library",
1565 | "autoload": {
1566 | "psr-4": {
1567 | "Symfony\\Component\\Finder\\": ""
1568 | },
1569 | "exclude-from-classmap": [
1570 | "/Tests/"
1571 | ]
1572 | },
1573 | "notification-url": "https://packagist.org/downloads/",
1574 | "license": [
1575 | "MIT"
1576 | ],
1577 | "authors": [
1578 | {
1579 | "name": "Fabien Potencier",
1580 | "email": "fabien@symfony.com"
1581 | },
1582 | {
1583 | "name": "Symfony Community",
1584 | "homepage": "https://symfony.com/contributors"
1585 | }
1586 | ],
1587 | "description": "Finds files and directories via an intuitive fluent interface",
1588 | "homepage": "https://symfony.com",
1589 | "support": {
1590 | "source": "https://github.com/symfony/finder/tree/v5.4.11"
1591 | },
1592 | "funding": [
1593 | {
1594 | "url": "https://symfony.com/sponsor",
1595 | "type": "custom"
1596 | },
1597 | {
1598 | "url": "https://github.com/fabpot",
1599 | "type": "github"
1600 | },
1601 | {
1602 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1603 | "type": "tidelift"
1604 | }
1605 | ],
1606 | "time": "2022-07-29T07:37:50+00:00"
1607 | },
1608 | {
1609 | "name": "symfony/options-resolver",
1610 | "version": "v5.4.11",
1611 | "source": {
1612 | "type": "git",
1613 | "url": "https://github.com/symfony/options-resolver.git",
1614 | "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690"
1615 | },
1616 | "dist": {
1617 | "type": "zip",
1618 | "url": "https://api.github.com/repos/symfony/options-resolver/zipball/54f14e36aa73cb8f7261d7686691fd4d75ea2690",
1619 | "reference": "54f14e36aa73cb8f7261d7686691fd4d75ea2690",
1620 | "shasum": ""
1621 | },
1622 | "require": {
1623 | "php": ">=7.2.5",
1624 | "symfony/deprecation-contracts": "^2.1|^3",
1625 | "symfony/polyfill-php73": "~1.0",
1626 | "symfony/polyfill-php80": "^1.16"
1627 | },
1628 | "type": "library",
1629 | "autoload": {
1630 | "psr-4": {
1631 | "Symfony\\Component\\OptionsResolver\\": ""
1632 | },
1633 | "exclude-from-classmap": [
1634 | "/Tests/"
1635 | ]
1636 | },
1637 | "notification-url": "https://packagist.org/downloads/",
1638 | "license": [
1639 | "MIT"
1640 | ],
1641 | "authors": [
1642 | {
1643 | "name": "Fabien Potencier",
1644 | "email": "fabien@symfony.com"
1645 | },
1646 | {
1647 | "name": "Symfony Community",
1648 | "homepage": "https://symfony.com/contributors"
1649 | }
1650 | ],
1651 | "description": "Provides an improved replacement for the array_replace PHP function",
1652 | "homepage": "https://symfony.com",
1653 | "keywords": [
1654 | "config",
1655 | "configuration",
1656 | "options"
1657 | ],
1658 | "support": {
1659 | "source": "https://github.com/symfony/options-resolver/tree/v5.4.11"
1660 | },
1661 | "funding": [
1662 | {
1663 | "url": "https://symfony.com/sponsor",
1664 | "type": "custom"
1665 | },
1666 | {
1667 | "url": "https://github.com/fabpot",
1668 | "type": "github"
1669 | },
1670 | {
1671 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1672 | "type": "tidelift"
1673 | }
1674 | ],
1675 | "time": "2022-07-20T13:00:38+00:00"
1676 | },
1677 | {
1678 | "name": "symfony/polyfill-ctype",
1679 | "version": "v1.26.0",
1680 | "source": {
1681 | "type": "git",
1682 | "url": "https://github.com/symfony/polyfill-ctype.git",
1683 | "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
1684 | },
1685 | "dist": {
1686 | "type": "zip",
1687 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
1688 | "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
1689 | "shasum": ""
1690 | },
1691 | "require": {
1692 | "php": ">=7.1"
1693 | },
1694 | "provide": {
1695 | "ext-ctype": "*"
1696 | },
1697 | "suggest": {
1698 | "ext-ctype": "For best performance"
1699 | },
1700 | "type": "library",
1701 | "extra": {
1702 | "branch-alias": {
1703 | "dev-main": "1.26-dev"
1704 | },
1705 | "thanks": {
1706 | "name": "symfony/polyfill",
1707 | "url": "https://github.com/symfony/polyfill"
1708 | }
1709 | },
1710 | "autoload": {
1711 | "files": [
1712 | "bootstrap.php"
1713 | ],
1714 | "psr-4": {
1715 | "Symfony\\Polyfill\\Ctype\\": ""
1716 | }
1717 | },
1718 | "notification-url": "https://packagist.org/downloads/",
1719 | "license": [
1720 | "MIT"
1721 | ],
1722 | "authors": [
1723 | {
1724 | "name": "Gert de Pagter",
1725 | "email": "BackEndTea@gmail.com"
1726 | },
1727 | {
1728 | "name": "Symfony Community",
1729 | "homepage": "https://symfony.com/contributors"
1730 | }
1731 | ],
1732 | "description": "Symfony polyfill for ctype functions",
1733 | "homepage": "https://symfony.com",
1734 | "keywords": [
1735 | "compatibility",
1736 | "ctype",
1737 | "polyfill",
1738 | "portable"
1739 | ],
1740 | "support": {
1741 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
1742 | },
1743 | "funding": [
1744 | {
1745 | "url": "https://symfony.com/sponsor",
1746 | "type": "custom"
1747 | },
1748 | {
1749 | "url": "https://github.com/fabpot",
1750 | "type": "github"
1751 | },
1752 | {
1753 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1754 | "type": "tidelift"
1755 | }
1756 | ],
1757 | "time": "2022-05-24T11:49:31+00:00"
1758 | },
1759 | {
1760 | "name": "symfony/polyfill-intl-grapheme",
1761 | "version": "v1.26.0",
1762 | "source": {
1763 | "type": "git",
1764 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
1765 | "reference": "433d05519ce6990bf3530fba6957499d327395c2"
1766 | },
1767 | "dist": {
1768 | "type": "zip",
1769 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
1770 | "reference": "433d05519ce6990bf3530fba6957499d327395c2",
1771 | "shasum": ""
1772 | },
1773 | "require": {
1774 | "php": ">=7.1"
1775 | },
1776 | "suggest": {
1777 | "ext-intl": "For best performance"
1778 | },
1779 | "type": "library",
1780 | "extra": {
1781 | "branch-alias": {
1782 | "dev-main": "1.26-dev"
1783 | },
1784 | "thanks": {
1785 | "name": "symfony/polyfill",
1786 | "url": "https://github.com/symfony/polyfill"
1787 | }
1788 | },
1789 | "autoload": {
1790 | "files": [
1791 | "bootstrap.php"
1792 | ],
1793 | "psr-4": {
1794 | "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
1795 | }
1796 | },
1797 | "notification-url": "https://packagist.org/downloads/",
1798 | "license": [
1799 | "MIT"
1800 | ],
1801 | "authors": [
1802 | {
1803 | "name": "Nicolas Grekas",
1804 | "email": "p@tchwork.com"
1805 | },
1806 | {
1807 | "name": "Symfony Community",
1808 | "homepage": "https://symfony.com/contributors"
1809 | }
1810 | ],
1811 | "description": "Symfony polyfill for intl's grapheme_* functions",
1812 | "homepage": "https://symfony.com",
1813 | "keywords": [
1814 | "compatibility",
1815 | "grapheme",
1816 | "intl",
1817 | "polyfill",
1818 | "portable",
1819 | "shim"
1820 | ],
1821 | "support": {
1822 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
1823 | },
1824 | "funding": [
1825 | {
1826 | "url": "https://symfony.com/sponsor",
1827 | "type": "custom"
1828 | },
1829 | {
1830 | "url": "https://github.com/fabpot",
1831 | "type": "github"
1832 | },
1833 | {
1834 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1835 | "type": "tidelift"
1836 | }
1837 | ],
1838 | "time": "2022-05-24T11:49:31+00:00"
1839 | },
1840 | {
1841 | "name": "symfony/polyfill-intl-normalizer",
1842 | "version": "v1.26.0",
1843 | "source": {
1844 | "type": "git",
1845 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
1846 | "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
1847 | },
1848 | "dist": {
1849 | "type": "zip",
1850 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
1851 | "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
1852 | "shasum": ""
1853 | },
1854 | "require": {
1855 | "php": ">=7.1"
1856 | },
1857 | "suggest": {
1858 | "ext-intl": "For best performance"
1859 | },
1860 | "type": "library",
1861 | "extra": {
1862 | "branch-alias": {
1863 | "dev-main": "1.26-dev"
1864 | },
1865 | "thanks": {
1866 | "name": "symfony/polyfill",
1867 | "url": "https://github.com/symfony/polyfill"
1868 | }
1869 | },
1870 | "autoload": {
1871 | "files": [
1872 | "bootstrap.php"
1873 | ],
1874 | "psr-4": {
1875 | "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
1876 | },
1877 | "classmap": [
1878 | "Resources/stubs"
1879 | ]
1880 | },
1881 | "notification-url": "https://packagist.org/downloads/",
1882 | "license": [
1883 | "MIT"
1884 | ],
1885 | "authors": [
1886 | {
1887 | "name": "Nicolas Grekas",
1888 | "email": "p@tchwork.com"
1889 | },
1890 | {
1891 | "name": "Symfony Community",
1892 | "homepage": "https://symfony.com/contributors"
1893 | }
1894 | ],
1895 | "description": "Symfony polyfill for intl's Normalizer class and related functions",
1896 | "homepage": "https://symfony.com",
1897 | "keywords": [
1898 | "compatibility",
1899 | "intl",
1900 | "normalizer",
1901 | "polyfill",
1902 | "portable",
1903 | "shim"
1904 | ],
1905 | "support": {
1906 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
1907 | },
1908 | "funding": [
1909 | {
1910 | "url": "https://symfony.com/sponsor",
1911 | "type": "custom"
1912 | },
1913 | {
1914 | "url": "https://github.com/fabpot",
1915 | "type": "github"
1916 | },
1917 | {
1918 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1919 | "type": "tidelift"
1920 | }
1921 | ],
1922 | "time": "2022-05-24T11:49:31+00:00"
1923 | },
1924 | {
1925 | "name": "symfony/polyfill-mbstring",
1926 | "version": "v1.26.0",
1927 | "source": {
1928 | "type": "git",
1929 | "url": "https://github.com/symfony/polyfill-mbstring.git",
1930 | "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
1931 | },
1932 | "dist": {
1933 | "type": "zip",
1934 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
1935 | "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
1936 | "shasum": ""
1937 | },
1938 | "require": {
1939 | "php": ">=7.1"
1940 | },
1941 | "provide": {
1942 | "ext-mbstring": "*"
1943 | },
1944 | "suggest": {
1945 | "ext-mbstring": "For best performance"
1946 | },
1947 | "type": "library",
1948 | "extra": {
1949 | "branch-alias": {
1950 | "dev-main": "1.26-dev"
1951 | },
1952 | "thanks": {
1953 | "name": "symfony/polyfill",
1954 | "url": "https://github.com/symfony/polyfill"
1955 | }
1956 | },
1957 | "autoload": {
1958 | "files": [
1959 | "bootstrap.php"
1960 | ],
1961 | "psr-4": {
1962 | "Symfony\\Polyfill\\Mbstring\\": ""
1963 | }
1964 | },
1965 | "notification-url": "https://packagist.org/downloads/",
1966 | "license": [
1967 | "MIT"
1968 | ],
1969 | "authors": [
1970 | {
1971 | "name": "Nicolas Grekas",
1972 | "email": "p@tchwork.com"
1973 | },
1974 | {
1975 | "name": "Symfony Community",
1976 | "homepage": "https://symfony.com/contributors"
1977 | }
1978 | ],
1979 | "description": "Symfony polyfill for the Mbstring extension",
1980 | "homepage": "https://symfony.com",
1981 | "keywords": [
1982 | "compatibility",
1983 | "mbstring",
1984 | "polyfill",
1985 | "portable",
1986 | "shim"
1987 | ],
1988 | "support": {
1989 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
1990 | },
1991 | "funding": [
1992 | {
1993 | "url": "https://symfony.com/sponsor",
1994 | "type": "custom"
1995 | },
1996 | {
1997 | "url": "https://github.com/fabpot",
1998 | "type": "github"
1999 | },
2000 | {
2001 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2002 | "type": "tidelift"
2003 | }
2004 | ],
2005 | "time": "2022-05-24T11:49:31+00:00"
2006 | },
2007 | {
2008 | "name": "symfony/polyfill-php73",
2009 | "version": "v1.26.0",
2010 | "source": {
2011 | "type": "git",
2012 | "url": "https://github.com/symfony/polyfill-php73.git",
2013 | "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
2014 | },
2015 | "dist": {
2016 | "type": "zip",
2017 | "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
2018 | "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
2019 | "shasum": ""
2020 | },
2021 | "require": {
2022 | "php": ">=7.1"
2023 | },
2024 | "type": "library",
2025 | "extra": {
2026 | "branch-alias": {
2027 | "dev-main": "1.26-dev"
2028 | },
2029 | "thanks": {
2030 | "name": "symfony/polyfill",
2031 | "url": "https://github.com/symfony/polyfill"
2032 | }
2033 | },
2034 | "autoload": {
2035 | "files": [
2036 | "bootstrap.php"
2037 | ],
2038 | "psr-4": {
2039 | "Symfony\\Polyfill\\Php73\\": ""
2040 | },
2041 | "classmap": [
2042 | "Resources/stubs"
2043 | ]
2044 | },
2045 | "notification-url": "https://packagist.org/downloads/",
2046 | "license": [
2047 | "MIT"
2048 | ],
2049 | "authors": [
2050 | {
2051 | "name": "Nicolas Grekas",
2052 | "email": "p@tchwork.com"
2053 | },
2054 | {
2055 | "name": "Symfony Community",
2056 | "homepage": "https://symfony.com/contributors"
2057 | }
2058 | ],
2059 | "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
2060 | "homepage": "https://symfony.com",
2061 | "keywords": [
2062 | "compatibility",
2063 | "polyfill",
2064 | "portable",
2065 | "shim"
2066 | ],
2067 | "support": {
2068 | "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
2069 | },
2070 | "funding": [
2071 | {
2072 | "url": "https://symfony.com/sponsor",
2073 | "type": "custom"
2074 | },
2075 | {
2076 | "url": "https://github.com/fabpot",
2077 | "type": "github"
2078 | },
2079 | {
2080 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2081 | "type": "tidelift"
2082 | }
2083 | ],
2084 | "time": "2022-05-24T11:49:31+00:00"
2085 | },
2086 | {
2087 | "name": "symfony/polyfill-php80",
2088 | "version": "v1.26.0",
2089 | "source": {
2090 | "type": "git",
2091 | "url": "https://github.com/symfony/polyfill-php80.git",
2092 | "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
2093 | },
2094 | "dist": {
2095 | "type": "zip",
2096 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
2097 | "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
2098 | "shasum": ""
2099 | },
2100 | "require": {
2101 | "php": ">=7.1"
2102 | },
2103 | "type": "library",
2104 | "extra": {
2105 | "branch-alias": {
2106 | "dev-main": "1.26-dev"
2107 | },
2108 | "thanks": {
2109 | "name": "symfony/polyfill",
2110 | "url": "https://github.com/symfony/polyfill"
2111 | }
2112 | },
2113 | "autoload": {
2114 | "files": [
2115 | "bootstrap.php"
2116 | ],
2117 | "psr-4": {
2118 | "Symfony\\Polyfill\\Php80\\": ""
2119 | },
2120 | "classmap": [
2121 | "Resources/stubs"
2122 | ]
2123 | },
2124 | "notification-url": "https://packagist.org/downloads/",
2125 | "license": [
2126 | "MIT"
2127 | ],
2128 | "authors": [
2129 | {
2130 | "name": "Ion Bazan",
2131 | "email": "ion.bazan@gmail.com"
2132 | },
2133 | {
2134 | "name": "Nicolas Grekas",
2135 | "email": "p@tchwork.com"
2136 | },
2137 | {
2138 | "name": "Symfony Community",
2139 | "homepage": "https://symfony.com/contributors"
2140 | }
2141 | ],
2142 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
2143 | "homepage": "https://symfony.com",
2144 | "keywords": [
2145 | "compatibility",
2146 | "polyfill",
2147 | "portable",
2148 | "shim"
2149 | ],
2150 | "support": {
2151 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
2152 | },
2153 | "funding": [
2154 | {
2155 | "url": "https://symfony.com/sponsor",
2156 | "type": "custom"
2157 | },
2158 | {
2159 | "url": "https://github.com/fabpot",
2160 | "type": "github"
2161 | },
2162 | {
2163 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2164 | "type": "tidelift"
2165 | }
2166 | ],
2167 | "time": "2022-05-10T07:21:04+00:00"
2168 | },
2169 | {
2170 | "name": "symfony/polyfill-php81",
2171 | "version": "v1.26.0",
2172 | "source": {
2173 | "type": "git",
2174 | "url": "https://github.com/symfony/polyfill-php81.git",
2175 | "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
2176 | },
2177 | "dist": {
2178 | "type": "zip",
2179 | "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
2180 | "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
2181 | "shasum": ""
2182 | },
2183 | "require": {
2184 | "php": ">=7.1"
2185 | },
2186 | "type": "library",
2187 | "extra": {
2188 | "branch-alias": {
2189 | "dev-main": "1.26-dev"
2190 | },
2191 | "thanks": {
2192 | "name": "symfony/polyfill",
2193 | "url": "https://github.com/symfony/polyfill"
2194 | }
2195 | },
2196 | "autoload": {
2197 | "files": [
2198 | "bootstrap.php"
2199 | ],
2200 | "psr-4": {
2201 | "Symfony\\Polyfill\\Php81\\": ""
2202 | },
2203 | "classmap": [
2204 | "Resources/stubs"
2205 | ]
2206 | },
2207 | "notification-url": "https://packagist.org/downloads/",
2208 | "license": [
2209 | "MIT"
2210 | ],
2211 | "authors": [
2212 | {
2213 | "name": "Nicolas Grekas",
2214 | "email": "p@tchwork.com"
2215 | },
2216 | {
2217 | "name": "Symfony Community",
2218 | "homepage": "https://symfony.com/contributors"
2219 | }
2220 | ],
2221 | "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
2222 | "homepage": "https://symfony.com",
2223 | "keywords": [
2224 | "compatibility",
2225 | "polyfill",
2226 | "portable",
2227 | "shim"
2228 | ],
2229 | "support": {
2230 | "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
2231 | },
2232 | "funding": [
2233 | {
2234 | "url": "https://symfony.com/sponsor",
2235 | "type": "custom"
2236 | },
2237 | {
2238 | "url": "https://github.com/fabpot",
2239 | "type": "github"
2240 | },
2241 | {
2242 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2243 | "type": "tidelift"
2244 | }
2245 | ],
2246 | "time": "2022-05-24T11:49:31+00:00"
2247 | },
2248 | {
2249 | "name": "symfony/process",
2250 | "version": "v5.4.11",
2251 | "source": {
2252 | "type": "git",
2253 | "url": "https://github.com/symfony/process.git",
2254 | "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
2255 | },
2256 | "dist": {
2257 | "type": "zip",
2258 | "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
2259 | "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
2260 | "shasum": ""
2261 | },
2262 | "require": {
2263 | "php": ">=7.2.5",
2264 | "symfony/polyfill-php80": "^1.16"
2265 | },
2266 | "type": "library",
2267 | "autoload": {
2268 | "psr-4": {
2269 | "Symfony\\Component\\Process\\": ""
2270 | },
2271 | "exclude-from-classmap": [
2272 | "/Tests/"
2273 | ]
2274 | },
2275 | "notification-url": "https://packagist.org/downloads/",
2276 | "license": [
2277 | "MIT"
2278 | ],
2279 | "authors": [
2280 | {
2281 | "name": "Fabien Potencier",
2282 | "email": "fabien@symfony.com"
2283 | },
2284 | {
2285 | "name": "Symfony Community",
2286 | "homepage": "https://symfony.com/contributors"
2287 | }
2288 | ],
2289 | "description": "Executes commands in sub-processes",
2290 | "homepage": "https://symfony.com",
2291 | "support": {
2292 | "source": "https://github.com/symfony/process/tree/v5.4.11"
2293 | },
2294 | "funding": [
2295 | {
2296 | "url": "https://symfony.com/sponsor",
2297 | "type": "custom"
2298 | },
2299 | {
2300 | "url": "https://github.com/fabpot",
2301 | "type": "github"
2302 | },
2303 | {
2304 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2305 | "type": "tidelift"
2306 | }
2307 | ],
2308 | "time": "2022-06-27T16:58:25+00:00"
2309 | },
2310 | {
2311 | "name": "symfony/service-contracts",
2312 | "version": "v2.5.2",
2313 | "source": {
2314 | "type": "git",
2315 | "url": "https://github.com/symfony/service-contracts.git",
2316 | "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
2317 | },
2318 | "dist": {
2319 | "type": "zip",
2320 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
2321 | "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
2322 | "shasum": ""
2323 | },
2324 | "require": {
2325 | "php": ">=7.2.5",
2326 | "psr/container": "^1.1",
2327 | "symfony/deprecation-contracts": "^2.1|^3"
2328 | },
2329 | "conflict": {
2330 | "ext-psr": "<1.1|>=2"
2331 | },
2332 | "suggest": {
2333 | "symfony/service-implementation": ""
2334 | },
2335 | "type": "library",
2336 | "extra": {
2337 | "branch-alias": {
2338 | "dev-main": "2.5-dev"
2339 | },
2340 | "thanks": {
2341 | "name": "symfony/contracts",
2342 | "url": "https://github.com/symfony/contracts"
2343 | }
2344 | },
2345 | "autoload": {
2346 | "psr-4": {
2347 | "Symfony\\Contracts\\Service\\": ""
2348 | }
2349 | },
2350 | "notification-url": "https://packagist.org/downloads/",
2351 | "license": [
2352 | "MIT"
2353 | ],
2354 | "authors": [
2355 | {
2356 | "name": "Nicolas Grekas",
2357 | "email": "p@tchwork.com"
2358 | },
2359 | {
2360 | "name": "Symfony Community",
2361 | "homepage": "https://symfony.com/contributors"
2362 | }
2363 | ],
2364 | "description": "Generic abstractions related to writing services",
2365 | "homepage": "https://symfony.com",
2366 | "keywords": [
2367 | "abstractions",
2368 | "contracts",
2369 | "decoupling",
2370 | "interfaces",
2371 | "interoperability",
2372 | "standards"
2373 | ],
2374 | "support": {
2375 | "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
2376 | },
2377 | "funding": [
2378 | {
2379 | "url": "https://symfony.com/sponsor",
2380 | "type": "custom"
2381 | },
2382 | {
2383 | "url": "https://github.com/fabpot",
2384 | "type": "github"
2385 | },
2386 | {
2387 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2388 | "type": "tidelift"
2389 | }
2390 | ],
2391 | "time": "2022-05-30T19:17:29+00:00"
2392 | },
2393 | {
2394 | "name": "symfony/stopwatch",
2395 | "version": "v5.4.13",
2396 | "source": {
2397 | "type": "git",
2398 | "url": "https://github.com/symfony/stopwatch.git",
2399 | "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69"
2400 | },
2401 | "dist": {
2402 | "type": "zip",
2403 | "url": "https://api.github.com/repos/symfony/stopwatch/zipball/6df7a3effde34d81717bbef4591e5ffe32226d69",
2404 | "reference": "6df7a3effde34d81717bbef4591e5ffe32226d69",
2405 | "shasum": ""
2406 | },
2407 | "require": {
2408 | "php": ">=7.2.5",
2409 | "symfony/service-contracts": "^1|^2|^3"
2410 | },
2411 | "type": "library",
2412 | "autoload": {
2413 | "psr-4": {
2414 | "Symfony\\Component\\Stopwatch\\": ""
2415 | },
2416 | "exclude-from-classmap": [
2417 | "/Tests/"
2418 | ]
2419 | },
2420 | "notification-url": "https://packagist.org/downloads/",
2421 | "license": [
2422 | "MIT"
2423 | ],
2424 | "authors": [
2425 | {
2426 | "name": "Fabien Potencier",
2427 | "email": "fabien@symfony.com"
2428 | },
2429 | {
2430 | "name": "Symfony Community",
2431 | "homepage": "https://symfony.com/contributors"
2432 | }
2433 | ],
2434 | "description": "Provides a way to profile code",
2435 | "homepage": "https://symfony.com",
2436 | "support": {
2437 | "source": "https://github.com/symfony/stopwatch/tree/v5.4.13"
2438 | },
2439 | "funding": [
2440 | {
2441 | "url": "https://symfony.com/sponsor",
2442 | "type": "custom"
2443 | },
2444 | {
2445 | "url": "https://github.com/fabpot",
2446 | "type": "github"
2447 | },
2448 | {
2449 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2450 | "type": "tidelift"
2451 | }
2452 | ],
2453 | "time": "2022-09-28T13:19:49+00:00"
2454 | },
2455 | {
2456 | "name": "symfony/string",
2457 | "version": "v5.4.14",
2458 | "source": {
2459 | "type": "git",
2460 | "url": "https://github.com/symfony/string.git",
2461 | "reference": "089e7237497fae7a9c404d0c3aeb8db3254733e4"
2462 | },
2463 | "dist": {
2464 | "type": "zip",
2465 | "url": "https://api.github.com/repos/symfony/string/zipball/089e7237497fae7a9c404d0c3aeb8db3254733e4",
2466 | "reference": "089e7237497fae7a9c404d0c3aeb8db3254733e4",
2467 | "shasum": ""
2468 | },
2469 | "require": {
2470 | "php": ">=7.2.5",
2471 | "symfony/polyfill-ctype": "~1.8",
2472 | "symfony/polyfill-intl-grapheme": "~1.0",
2473 | "symfony/polyfill-intl-normalizer": "~1.0",
2474 | "symfony/polyfill-mbstring": "~1.0",
2475 | "symfony/polyfill-php80": "~1.15"
2476 | },
2477 | "conflict": {
2478 | "symfony/translation-contracts": ">=3.0"
2479 | },
2480 | "require-dev": {
2481 | "symfony/error-handler": "^4.4|^5.0|^6.0",
2482 | "symfony/http-client": "^4.4|^5.0|^6.0",
2483 | "symfony/translation-contracts": "^1.1|^2",
2484 | "symfony/var-exporter": "^4.4|^5.0|^6.0"
2485 | },
2486 | "type": "library",
2487 | "autoload": {
2488 | "files": [
2489 | "Resources/functions.php"
2490 | ],
2491 | "psr-4": {
2492 | "Symfony\\Component\\String\\": ""
2493 | },
2494 | "exclude-from-classmap": [
2495 | "/Tests/"
2496 | ]
2497 | },
2498 | "notification-url": "https://packagist.org/downloads/",
2499 | "license": [
2500 | "MIT"
2501 | ],
2502 | "authors": [
2503 | {
2504 | "name": "Nicolas Grekas",
2505 | "email": "p@tchwork.com"
2506 | },
2507 | {
2508 | "name": "Symfony Community",
2509 | "homepage": "https://symfony.com/contributors"
2510 | }
2511 | ],
2512 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
2513 | "homepage": "https://symfony.com",
2514 | "keywords": [
2515 | "grapheme",
2516 | "i18n",
2517 | "string",
2518 | "unicode",
2519 | "utf-8",
2520 | "utf8"
2521 | ],
2522 | "support": {
2523 | "source": "https://github.com/symfony/string/tree/v5.4.14"
2524 | },
2525 | "funding": [
2526 | {
2527 | "url": "https://symfony.com/sponsor",
2528 | "type": "custom"
2529 | },
2530 | {
2531 | "url": "https://github.com/fabpot",
2532 | "type": "github"
2533 | },
2534 | {
2535 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2536 | "type": "tidelift"
2537 | }
2538 | ],
2539 | "time": "2022-10-05T15:16:54+00:00"
2540 | }
2541 | ],
2542 | "packages-dev": [
2543 | {
2544 | "name": "doctrine/instantiator",
2545 | "version": "1.4.1",
2546 | "source": {
2547 | "type": "git",
2548 | "url": "https://github.com/doctrine/instantiator.git",
2549 | "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
2550 | },
2551 | "dist": {
2552 | "type": "zip",
2553 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
2554 | "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
2555 | "shasum": ""
2556 | },
2557 | "require": {
2558 | "php": "^7.1 || ^8.0"
2559 | },
2560 | "require-dev": {
2561 | "doctrine/coding-standard": "^9",
2562 | "ext-pdo": "*",
2563 | "ext-phar": "*",
2564 | "phpbench/phpbench": "^0.16 || ^1",
2565 | "phpstan/phpstan": "^1.4",
2566 | "phpstan/phpstan-phpunit": "^1",
2567 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
2568 | "vimeo/psalm": "^4.22"
2569 | },
2570 | "type": "library",
2571 | "autoload": {
2572 | "psr-4": {
2573 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
2574 | }
2575 | },
2576 | "notification-url": "https://packagist.org/downloads/",
2577 | "license": [
2578 | "MIT"
2579 | ],
2580 | "authors": [
2581 | {
2582 | "name": "Marco Pivetta",
2583 | "email": "ocramius@gmail.com",
2584 | "homepage": "https://ocramius.github.io/"
2585 | }
2586 | ],
2587 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
2588 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
2589 | "keywords": [
2590 | "constructor",
2591 | "instantiate"
2592 | ],
2593 | "support": {
2594 | "issues": "https://github.com/doctrine/instantiator/issues",
2595 | "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
2596 | },
2597 | "funding": [
2598 | {
2599 | "url": "https://www.doctrine-project.org/sponsorship.html",
2600 | "type": "custom"
2601 | },
2602 | {
2603 | "url": "https://www.patreon.com/phpdoctrine",
2604 | "type": "patreon"
2605 | },
2606 | {
2607 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
2608 | "type": "tidelift"
2609 | }
2610 | ],
2611 | "time": "2022-03-03T08:28:38+00:00"
2612 | },
2613 | {
2614 | "name": "liip/rmt",
2615 | "version": "1.7.0",
2616 | "source": {
2617 | "type": "git",
2618 | "url": "https://github.com/liip/RMT.git",
2619 | "reference": "a31f08e11934a54d65faab41a1041e2049ccbabc"
2620 | },
2621 | "dist": {
2622 | "type": "zip",
2623 | "url": "https://api.github.com/repos/liip/RMT/zipball/a31f08e11934a54d65faab41a1041e2049ccbabc",
2624 | "reference": "a31f08e11934a54d65faab41a1041e2049ccbabc",
2625 | "shasum": ""
2626 | },
2627 | "require": {
2628 | "ext-json": "*",
2629 | "php": "^7.1|^8.0",
2630 | "symfony/console": "^3.4|^4.0|^5.0|^6.0",
2631 | "symfony/process": "^3.4|^4.0|^5.0|^6.0",
2632 | "symfony/yaml": "^3.4|^4.0|^5.0|^6.0",
2633 | "vierbergenlars/php-semver": "^3.0.2"
2634 | },
2635 | "bin": [
2636 | "RMT"
2637 | ],
2638 | "type": "library",
2639 | "extra": {
2640 | "branch-alias": {
2641 | "dev-master": "1.3-dev"
2642 | }
2643 | },
2644 | "autoload": {
2645 | "psr-0": {
2646 | "Liip": "src"
2647 | }
2648 | },
2649 | "notification-url": "https://packagist.org/downloads/",
2650 | "license": [
2651 | "MIT"
2652 | ],
2653 | "authors": [
2654 | {
2655 | "name": "Jonathan Macheret",
2656 | "email": "jonathan.macheret@liip.ch",
2657 | "role": "Developer"
2658 | },
2659 | {
2660 | "name": "David Jeanmonod",
2661 | "email": "david.jeanmonod@liip.ch",
2662 | "role": "Developer"
2663 | }
2664 | ],
2665 | "description": "Release Management Tool: a handy tool to help releasing new version of your software",
2666 | "homepage": "http://github.com/liip/RMT",
2667 | "keywords": [
2668 | "post-release",
2669 | "pre-release",
2670 | "release",
2671 | "semantic versioning",
2672 | "vcs tag",
2673 | "version"
2674 | ],
2675 | "support": {
2676 | "issues": "http://github.com/liip/RMT/issues",
2677 | "source": "https://github.com/liip/RMT/tree/1.7.0"
2678 | },
2679 | "time": "2022-03-15T07:32:30+00:00"
2680 | },
2681 | {
2682 | "name": "myclabs/deep-copy",
2683 | "version": "1.11.0",
2684 | "source": {
2685 | "type": "git",
2686 | "url": "https://github.com/myclabs/DeepCopy.git",
2687 | "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
2688 | },
2689 | "dist": {
2690 | "type": "zip",
2691 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
2692 | "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
2693 | "shasum": ""
2694 | },
2695 | "require": {
2696 | "php": "^7.1 || ^8.0"
2697 | },
2698 | "conflict": {
2699 | "doctrine/collections": "<1.6.8",
2700 | "doctrine/common": "<2.13.3 || >=3,<3.2.2"
2701 | },
2702 | "require-dev": {
2703 | "doctrine/collections": "^1.6.8",
2704 | "doctrine/common": "^2.13.3 || ^3.2.2",
2705 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
2706 | },
2707 | "type": "library",
2708 | "autoload": {
2709 | "files": [
2710 | "src/DeepCopy/deep_copy.php"
2711 | ],
2712 | "psr-4": {
2713 | "DeepCopy\\": "src/DeepCopy/"
2714 | }
2715 | },
2716 | "notification-url": "https://packagist.org/downloads/",
2717 | "license": [
2718 | "MIT"
2719 | ],
2720 | "description": "Create deep copies (clones) of your objects",
2721 | "keywords": [
2722 | "clone",
2723 | "copy",
2724 | "duplicate",
2725 | "object",
2726 | "object graph"
2727 | ],
2728 | "support": {
2729 | "issues": "https://github.com/myclabs/DeepCopy/issues",
2730 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
2731 | },
2732 | "funding": [
2733 | {
2734 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
2735 | "type": "tidelift"
2736 | }
2737 | ],
2738 | "time": "2022-03-03T13:19:32+00:00"
2739 | },
2740 | {
2741 | "name": "nikic/php-parser",
2742 | "version": "v4.15.1",
2743 | "source": {
2744 | "type": "git",
2745 | "url": "https://github.com/nikic/PHP-Parser.git",
2746 | "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
2747 | },
2748 | "dist": {
2749 | "type": "zip",
2750 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
2751 | "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
2752 | "shasum": ""
2753 | },
2754 | "require": {
2755 | "ext-tokenizer": "*",
2756 | "php": ">=7.0"
2757 | },
2758 | "require-dev": {
2759 | "ircmaxell/php-yacc": "^0.0.7",
2760 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
2761 | },
2762 | "bin": [
2763 | "bin/php-parse"
2764 | ],
2765 | "type": "library",
2766 | "extra": {
2767 | "branch-alias": {
2768 | "dev-master": "4.9-dev"
2769 | }
2770 | },
2771 | "autoload": {
2772 | "psr-4": {
2773 | "PhpParser\\": "lib/PhpParser"
2774 | }
2775 | },
2776 | "notification-url": "https://packagist.org/downloads/",
2777 | "license": [
2778 | "BSD-3-Clause"
2779 | ],
2780 | "authors": [
2781 | {
2782 | "name": "Nikita Popov"
2783 | }
2784 | ],
2785 | "description": "A PHP parser written in PHP",
2786 | "keywords": [
2787 | "parser",
2788 | "php"
2789 | ],
2790 | "support": {
2791 | "issues": "https://github.com/nikic/PHP-Parser/issues",
2792 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
2793 | },
2794 | "time": "2022-09-04T07:30:47+00:00"
2795 | },
2796 | {
2797 | "name": "phar-io/manifest",
2798 | "version": "2.0.3",
2799 | "source": {
2800 | "type": "git",
2801 | "url": "https://github.com/phar-io/manifest.git",
2802 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
2803 | },
2804 | "dist": {
2805 | "type": "zip",
2806 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
2807 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
2808 | "shasum": ""
2809 | },
2810 | "require": {
2811 | "ext-dom": "*",
2812 | "ext-phar": "*",
2813 | "ext-xmlwriter": "*",
2814 | "phar-io/version": "^3.0.1",
2815 | "php": "^7.2 || ^8.0"
2816 | },
2817 | "type": "library",
2818 | "extra": {
2819 | "branch-alias": {
2820 | "dev-master": "2.0.x-dev"
2821 | }
2822 | },
2823 | "autoload": {
2824 | "classmap": [
2825 | "src/"
2826 | ]
2827 | },
2828 | "notification-url": "https://packagist.org/downloads/",
2829 | "license": [
2830 | "BSD-3-Clause"
2831 | ],
2832 | "authors": [
2833 | {
2834 | "name": "Arne Blankerts",
2835 | "email": "arne@blankerts.de",
2836 | "role": "Developer"
2837 | },
2838 | {
2839 | "name": "Sebastian Heuer",
2840 | "email": "sebastian@phpeople.de",
2841 | "role": "Developer"
2842 | },
2843 | {
2844 | "name": "Sebastian Bergmann",
2845 | "email": "sebastian@phpunit.de",
2846 | "role": "Developer"
2847 | }
2848 | ],
2849 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
2850 | "support": {
2851 | "issues": "https://github.com/phar-io/manifest/issues",
2852 | "source": "https://github.com/phar-io/manifest/tree/2.0.3"
2853 | },
2854 | "time": "2021-07-20T11:28:43+00:00"
2855 | },
2856 | {
2857 | "name": "phar-io/version",
2858 | "version": "3.2.1",
2859 | "source": {
2860 | "type": "git",
2861 | "url": "https://github.com/phar-io/version.git",
2862 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
2863 | },
2864 | "dist": {
2865 | "type": "zip",
2866 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
2867 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
2868 | "shasum": ""
2869 | },
2870 | "require": {
2871 | "php": "^7.2 || ^8.0"
2872 | },
2873 | "type": "library",
2874 | "autoload": {
2875 | "classmap": [
2876 | "src/"
2877 | ]
2878 | },
2879 | "notification-url": "https://packagist.org/downloads/",
2880 | "license": [
2881 | "BSD-3-Clause"
2882 | ],
2883 | "authors": [
2884 | {
2885 | "name": "Arne Blankerts",
2886 | "email": "arne@blankerts.de",
2887 | "role": "Developer"
2888 | },
2889 | {
2890 | "name": "Sebastian Heuer",
2891 | "email": "sebastian@phpeople.de",
2892 | "role": "Developer"
2893 | },
2894 | {
2895 | "name": "Sebastian Bergmann",
2896 | "email": "sebastian@phpunit.de",
2897 | "role": "Developer"
2898 | }
2899 | ],
2900 | "description": "Library for handling version information and constraints",
2901 | "support": {
2902 | "issues": "https://github.com/phar-io/version/issues",
2903 | "source": "https://github.com/phar-io/version/tree/3.2.1"
2904 | },
2905 | "time": "2022-02-21T01:04:05+00:00"
2906 | },
2907 | {
2908 | "name": "phpunit/php-code-coverage",
2909 | "version": "9.2.17",
2910 | "source": {
2911 | "type": "git",
2912 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
2913 | "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
2914 | },
2915 | "dist": {
2916 | "type": "zip",
2917 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
2918 | "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
2919 | "shasum": ""
2920 | },
2921 | "require": {
2922 | "ext-dom": "*",
2923 | "ext-libxml": "*",
2924 | "ext-xmlwriter": "*",
2925 | "nikic/php-parser": "^4.14",
2926 | "php": ">=7.3",
2927 | "phpunit/php-file-iterator": "^3.0.3",
2928 | "phpunit/php-text-template": "^2.0.2",
2929 | "sebastian/code-unit-reverse-lookup": "^2.0.2",
2930 | "sebastian/complexity": "^2.0",
2931 | "sebastian/environment": "^5.1.2",
2932 | "sebastian/lines-of-code": "^1.0.3",
2933 | "sebastian/version": "^3.0.1",
2934 | "theseer/tokenizer": "^1.2.0"
2935 | },
2936 | "require-dev": {
2937 | "phpunit/phpunit": "^9.3"
2938 | },
2939 | "suggest": {
2940 | "ext-pcov": "*",
2941 | "ext-xdebug": "*"
2942 | },
2943 | "type": "library",
2944 | "extra": {
2945 | "branch-alias": {
2946 | "dev-master": "9.2-dev"
2947 | }
2948 | },
2949 | "autoload": {
2950 | "classmap": [
2951 | "src/"
2952 | ]
2953 | },
2954 | "notification-url": "https://packagist.org/downloads/",
2955 | "license": [
2956 | "BSD-3-Clause"
2957 | ],
2958 | "authors": [
2959 | {
2960 | "name": "Sebastian Bergmann",
2961 | "email": "sebastian@phpunit.de",
2962 | "role": "lead"
2963 | }
2964 | ],
2965 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
2966 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
2967 | "keywords": [
2968 | "coverage",
2969 | "testing",
2970 | "xunit"
2971 | ],
2972 | "support": {
2973 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
2974 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
2975 | },
2976 | "funding": [
2977 | {
2978 | "url": "https://github.com/sebastianbergmann",
2979 | "type": "github"
2980 | }
2981 | ],
2982 | "time": "2022-08-30T12:24:04+00:00"
2983 | },
2984 | {
2985 | "name": "phpunit/php-file-iterator",
2986 | "version": "3.0.6",
2987 | "source": {
2988 | "type": "git",
2989 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
2990 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
2991 | },
2992 | "dist": {
2993 | "type": "zip",
2994 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
2995 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
2996 | "shasum": ""
2997 | },
2998 | "require": {
2999 | "php": ">=7.3"
3000 | },
3001 | "require-dev": {
3002 | "phpunit/phpunit": "^9.3"
3003 | },
3004 | "type": "library",
3005 | "extra": {
3006 | "branch-alias": {
3007 | "dev-master": "3.0-dev"
3008 | }
3009 | },
3010 | "autoload": {
3011 | "classmap": [
3012 | "src/"
3013 | ]
3014 | },
3015 | "notification-url": "https://packagist.org/downloads/",
3016 | "license": [
3017 | "BSD-3-Clause"
3018 | ],
3019 | "authors": [
3020 | {
3021 | "name": "Sebastian Bergmann",
3022 | "email": "sebastian@phpunit.de",
3023 | "role": "lead"
3024 | }
3025 | ],
3026 | "description": "FilterIterator implementation that filters files based on a list of suffixes.",
3027 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
3028 | "keywords": [
3029 | "filesystem",
3030 | "iterator"
3031 | ],
3032 | "support": {
3033 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
3034 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
3035 | },
3036 | "funding": [
3037 | {
3038 | "url": "https://github.com/sebastianbergmann",
3039 | "type": "github"
3040 | }
3041 | ],
3042 | "time": "2021-12-02T12:48:52+00:00"
3043 | },
3044 | {
3045 | "name": "phpunit/php-invoker",
3046 | "version": "3.1.1",
3047 | "source": {
3048 | "type": "git",
3049 | "url": "https://github.com/sebastianbergmann/php-invoker.git",
3050 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
3051 | },
3052 | "dist": {
3053 | "type": "zip",
3054 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
3055 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
3056 | "shasum": ""
3057 | },
3058 | "require": {
3059 | "php": ">=7.3"
3060 | },
3061 | "require-dev": {
3062 | "ext-pcntl": "*",
3063 | "phpunit/phpunit": "^9.3"
3064 | },
3065 | "suggest": {
3066 | "ext-pcntl": "*"
3067 | },
3068 | "type": "library",
3069 | "extra": {
3070 | "branch-alias": {
3071 | "dev-master": "3.1-dev"
3072 | }
3073 | },
3074 | "autoload": {
3075 | "classmap": [
3076 | "src/"
3077 | ]
3078 | },
3079 | "notification-url": "https://packagist.org/downloads/",
3080 | "license": [
3081 | "BSD-3-Clause"
3082 | ],
3083 | "authors": [
3084 | {
3085 | "name": "Sebastian Bergmann",
3086 | "email": "sebastian@phpunit.de",
3087 | "role": "lead"
3088 | }
3089 | ],
3090 | "description": "Invoke callables with a timeout",
3091 | "homepage": "https://github.com/sebastianbergmann/php-invoker/",
3092 | "keywords": [
3093 | "process"
3094 | ],
3095 | "support": {
3096 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
3097 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
3098 | },
3099 | "funding": [
3100 | {
3101 | "url": "https://github.com/sebastianbergmann",
3102 | "type": "github"
3103 | }
3104 | ],
3105 | "time": "2020-09-28T05:58:55+00:00"
3106 | },
3107 | {
3108 | "name": "phpunit/php-text-template",
3109 | "version": "2.0.4",
3110 | "source": {
3111 | "type": "git",
3112 | "url": "https://github.com/sebastianbergmann/php-text-template.git",
3113 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
3114 | },
3115 | "dist": {
3116 | "type": "zip",
3117 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
3118 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
3119 | "shasum": ""
3120 | },
3121 | "require": {
3122 | "php": ">=7.3"
3123 | },
3124 | "require-dev": {
3125 | "phpunit/phpunit": "^9.3"
3126 | },
3127 | "type": "library",
3128 | "extra": {
3129 | "branch-alias": {
3130 | "dev-master": "2.0-dev"
3131 | }
3132 | },
3133 | "autoload": {
3134 | "classmap": [
3135 | "src/"
3136 | ]
3137 | },
3138 | "notification-url": "https://packagist.org/downloads/",
3139 | "license": [
3140 | "BSD-3-Clause"
3141 | ],
3142 | "authors": [
3143 | {
3144 | "name": "Sebastian Bergmann",
3145 | "email": "sebastian@phpunit.de",
3146 | "role": "lead"
3147 | }
3148 | ],
3149 | "description": "Simple template engine.",
3150 | "homepage": "https://github.com/sebastianbergmann/php-text-template/",
3151 | "keywords": [
3152 | "template"
3153 | ],
3154 | "support": {
3155 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
3156 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
3157 | },
3158 | "funding": [
3159 | {
3160 | "url": "https://github.com/sebastianbergmann",
3161 | "type": "github"
3162 | }
3163 | ],
3164 | "time": "2020-10-26T05:33:50+00:00"
3165 | },
3166 | {
3167 | "name": "phpunit/php-timer",
3168 | "version": "5.0.3",
3169 | "source": {
3170 | "type": "git",
3171 | "url": "https://github.com/sebastianbergmann/php-timer.git",
3172 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
3173 | },
3174 | "dist": {
3175 | "type": "zip",
3176 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
3177 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
3178 | "shasum": ""
3179 | },
3180 | "require": {
3181 | "php": ">=7.3"
3182 | },
3183 | "require-dev": {
3184 | "phpunit/phpunit": "^9.3"
3185 | },
3186 | "type": "library",
3187 | "extra": {
3188 | "branch-alias": {
3189 | "dev-master": "5.0-dev"
3190 | }
3191 | },
3192 | "autoload": {
3193 | "classmap": [
3194 | "src/"
3195 | ]
3196 | },
3197 | "notification-url": "https://packagist.org/downloads/",
3198 | "license": [
3199 | "BSD-3-Clause"
3200 | ],
3201 | "authors": [
3202 | {
3203 | "name": "Sebastian Bergmann",
3204 | "email": "sebastian@phpunit.de",
3205 | "role": "lead"
3206 | }
3207 | ],
3208 | "description": "Utility class for timing",
3209 | "homepage": "https://github.com/sebastianbergmann/php-timer/",
3210 | "keywords": [
3211 | "timer"
3212 | ],
3213 | "support": {
3214 | "issues": "https://github.com/sebastianbergmann/php-timer/issues",
3215 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
3216 | },
3217 | "funding": [
3218 | {
3219 | "url": "https://github.com/sebastianbergmann",
3220 | "type": "github"
3221 | }
3222 | ],
3223 | "time": "2020-10-26T13:16:10+00:00"
3224 | },
3225 | {
3226 | "name": "phpunit/phpunit",
3227 | "version": "9.5.25",
3228 | "source": {
3229 | "type": "git",
3230 | "url": "https://github.com/sebastianbergmann/phpunit.git",
3231 | "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
3232 | },
3233 | "dist": {
3234 | "type": "zip",
3235 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
3236 | "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
3237 | "shasum": ""
3238 | },
3239 | "require": {
3240 | "doctrine/instantiator": "^1.3.1",
3241 | "ext-dom": "*",
3242 | "ext-json": "*",
3243 | "ext-libxml": "*",
3244 | "ext-mbstring": "*",
3245 | "ext-xml": "*",
3246 | "ext-xmlwriter": "*",
3247 | "myclabs/deep-copy": "^1.10.1",
3248 | "phar-io/manifest": "^2.0.3",
3249 | "phar-io/version": "^3.0.2",
3250 | "php": ">=7.3",
3251 | "phpunit/php-code-coverage": "^9.2.13",
3252 | "phpunit/php-file-iterator": "^3.0.5",
3253 | "phpunit/php-invoker": "^3.1.1",
3254 | "phpunit/php-text-template": "^2.0.3",
3255 | "phpunit/php-timer": "^5.0.2",
3256 | "sebastian/cli-parser": "^1.0.1",
3257 | "sebastian/code-unit": "^1.0.6",
3258 | "sebastian/comparator": "^4.0.8",
3259 | "sebastian/diff": "^4.0.3",
3260 | "sebastian/environment": "^5.1.3",
3261 | "sebastian/exporter": "^4.0.5",
3262 | "sebastian/global-state": "^5.0.1",
3263 | "sebastian/object-enumerator": "^4.0.3",
3264 | "sebastian/resource-operations": "^3.0.3",
3265 | "sebastian/type": "^3.2",
3266 | "sebastian/version": "^3.0.2"
3267 | },
3268 | "suggest": {
3269 | "ext-soap": "*",
3270 | "ext-xdebug": "*"
3271 | },
3272 | "bin": [
3273 | "phpunit"
3274 | ],
3275 | "type": "library",
3276 | "extra": {
3277 | "branch-alias": {
3278 | "dev-master": "9.5-dev"
3279 | }
3280 | },
3281 | "autoload": {
3282 | "files": [
3283 | "src/Framework/Assert/Functions.php"
3284 | ],
3285 | "classmap": [
3286 | "src/"
3287 | ]
3288 | },
3289 | "notification-url": "https://packagist.org/downloads/",
3290 | "license": [
3291 | "BSD-3-Clause"
3292 | ],
3293 | "authors": [
3294 | {
3295 | "name": "Sebastian Bergmann",
3296 | "email": "sebastian@phpunit.de",
3297 | "role": "lead"
3298 | }
3299 | ],
3300 | "description": "The PHP Unit Testing framework.",
3301 | "homepage": "https://phpunit.de/",
3302 | "keywords": [
3303 | "phpunit",
3304 | "testing",
3305 | "xunit"
3306 | ],
3307 | "support": {
3308 | "issues": "https://github.com/sebastianbergmann/phpunit/issues",
3309 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
3310 | },
3311 | "funding": [
3312 | {
3313 | "url": "https://phpunit.de/sponsors.html",
3314 | "type": "custom"
3315 | },
3316 | {
3317 | "url": "https://github.com/sebastianbergmann",
3318 | "type": "github"
3319 | },
3320 | {
3321 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
3322 | "type": "tidelift"
3323 | }
3324 | ],
3325 | "time": "2022-09-25T03:44:45+00:00"
3326 | },
3327 | {
3328 | "name": "sebastian/cli-parser",
3329 | "version": "1.0.1",
3330 | "source": {
3331 | "type": "git",
3332 | "url": "https://github.com/sebastianbergmann/cli-parser.git",
3333 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
3334 | },
3335 | "dist": {
3336 | "type": "zip",
3337 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
3338 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
3339 | "shasum": ""
3340 | },
3341 | "require": {
3342 | "php": ">=7.3"
3343 | },
3344 | "require-dev": {
3345 | "phpunit/phpunit": "^9.3"
3346 | },
3347 | "type": "library",
3348 | "extra": {
3349 | "branch-alias": {
3350 | "dev-master": "1.0-dev"
3351 | }
3352 | },
3353 | "autoload": {
3354 | "classmap": [
3355 | "src/"
3356 | ]
3357 | },
3358 | "notification-url": "https://packagist.org/downloads/",
3359 | "license": [
3360 | "BSD-3-Clause"
3361 | ],
3362 | "authors": [
3363 | {
3364 | "name": "Sebastian Bergmann",
3365 | "email": "sebastian@phpunit.de",
3366 | "role": "lead"
3367 | }
3368 | ],
3369 | "description": "Library for parsing CLI options",
3370 | "homepage": "https://github.com/sebastianbergmann/cli-parser",
3371 | "support": {
3372 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
3373 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
3374 | },
3375 | "funding": [
3376 | {
3377 | "url": "https://github.com/sebastianbergmann",
3378 | "type": "github"
3379 | }
3380 | ],
3381 | "time": "2020-09-28T06:08:49+00:00"
3382 | },
3383 | {
3384 | "name": "sebastian/code-unit",
3385 | "version": "1.0.8",
3386 | "source": {
3387 | "type": "git",
3388 | "url": "https://github.com/sebastianbergmann/code-unit.git",
3389 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
3390 | },
3391 | "dist": {
3392 | "type": "zip",
3393 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
3394 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
3395 | "shasum": ""
3396 | },
3397 | "require": {
3398 | "php": ">=7.3"
3399 | },
3400 | "require-dev": {
3401 | "phpunit/phpunit": "^9.3"
3402 | },
3403 | "type": "library",
3404 | "extra": {
3405 | "branch-alias": {
3406 | "dev-master": "1.0-dev"
3407 | }
3408 | },
3409 | "autoload": {
3410 | "classmap": [
3411 | "src/"
3412 | ]
3413 | },
3414 | "notification-url": "https://packagist.org/downloads/",
3415 | "license": [
3416 | "BSD-3-Clause"
3417 | ],
3418 | "authors": [
3419 | {
3420 | "name": "Sebastian Bergmann",
3421 | "email": "sebastian@phpunit.de",
3422 | "role": "lead"
3423 | }
3424 | ],
3425 | "description": "Collection of value objects that represent the PHP code units",
3426 | "homepage": "https://github.com/sebastianbergmann/code-unit",
3427 | "support": {
3428 | "issues": "https://github.com/sebastianbergmann/code-unit/issues",
3429 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
3430 | },
3431 | "funding": [
3432 | {
3433 | "url": "https://github.com/sebastianbergmann",
3434 | "type": "github"
3435 | }
3436 | ],
3437 | "time": "2020-10-26T13:08:54+00:00"
3438 | },
3439 | {
3440 | "name": "sebastian/code-unit-reverse-lookup",
3441 | "version": "2.0.3",
3442 | "source": {
3443 | "type": "git",
3444 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
3445 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
3446 | },
3447 | "dist": {
3448 | "type": "zip",
3449 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
3450 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
3451 | "shasum": ""
3452 | },
3453 | "require": {
3454 | "php": ">=7.3"
3455 | },
3456 | "require-dev": {
3457 | "phpunit/phpunit": "^9.3"
3458 | },
3459 | "type": "library",
3460 | "extra": {
3461 | "branch-alias": {
3462 | "dev-master": "2.0-dev"
3463 | }
3464 | },
3465 | "autoload": {
3466 | "classmap": [
3467 | "src/"
3468 | ]
3469 | },
3470 | "notification-url": "https://packagist.org/downloads/",
3471 | "license": [
3472 | "BSD-3-Clause"
3473 | ],
3474 | "authors": [
3475 | {
3476 | "name": "Sebastian Bergmann",
3477 | "email": "sebastian@phpunit.de"
3478 | }
3479 | ],
3480 | "description": "Looks up which function or method a line of code belongs to",
3481 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
3482 | "support": {
3483 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
3484 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
3485 | },
3486 | "funding": [
3487 | {
3488 | "url": "https://github.com/sebastianbergmann",
3489 | "type": "github"
3490 | }
3491 | ],
3492 | "time": "2020-09-28T05:30:19+00:00"
3493 | },
3494 | {
3495 | "name": "sebastian/comparator",
3496 | "version": "4.0.8",
3497 | "source": {
3498 | "type": "git",
3499 | "url": "https://github.com/sebastianbergmann/comparator.git",
3500 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
3501 | },
3502 | "dist": {
3503 | "type": "zip",
3504 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
3505 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
3506 | "shasum": ""
3507 | },
3508 | "require": {
3509 | "php": ">=7.3",
3510 | "sebastian/diff": "^4.0",
3511 | "sebastian/exporter": "^4.0"
3512 | },
3513 | "require-dev": {
3514 | "phpunit/phpunit": "^9.3"
3515 | },
3516 | "type": "library",
3517 | "extra": {
3518 | "branch-alias": {
3519 | "dev-master": "4.0-dev"
3520 | }
3521 | },
3522 | "autoload": {
3523 | "classmap": [
3524 | "src/"
3525 | ]
3526 | },
3527 | "notification-url": "https://packagist.org/downloads/",
3528 | "license": [
3529 | "BSD-3-Clause"
3530 | ],
3531 | "authors": [
3532 | {
3533 | "name": "Sebastian Bergmann",
3534 | "email": "sebastian@phpunit.de"
3535 | },
3536 | {
3537 | "name": "Jeff Welch",
3538 | "email": "whatthejeff@gmail.com"
3539 | },
3540 | {
3541 | "name": "Volker Dusch",
3542 | "email": "github@wallbash.com"
3543 | },
3544 | {
3545 | "name": "Bernhard Schussek",
3546 | "email": "bschussek@2bepublished.at"
3547 | }
3548 | ],
3549 | "description": "Provides the functionality to compare PHP values for equality",
3550 | "homepage": "https://github.com/sebastianbergmann/comparator",
3551 | "keywords": [
3552 | "comparator",
3553 | "compare",
3554 | "equality"
3555 | ],
3556 | "support": {
3557 | "issues": "https://github.com/sebastianbergmann/comparator/issues",
3558 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
3559 | },
3560 | "funding": [
3561 | {
3562 | "url": "https://github.com/sebastianbergmann",
3563 | "type": "github"
3564 | }
3565 | ],
3566 | "time": "2022-09-14T12:41:17+00:00"
3567 | },
3568 | {
3569 | "name": "sebastian/complexity",
3570 | "version": "2.0.2",
3571 | "source": {
3572 | "type": "git",
3573 | "url": "https://github.com/sebastianbergmann/complexity.git",
3574 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
3575 | },
3576 | "dist": {
3577 | "type": "zip",
3578 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
3579 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
3580 | "shasum": ""
3581 | },
3582 | "require": {
3583 | "nikic/php-parser": "^4.7",
3584 | "php": ">=7.3"
3585 | },
3586 | "require-dev": {
3587 | "phpunit/phpunit": "^9.3"
3588 | },
3589 | "type": "library",
3590 | "extra": {
3591 | "branch-alias": {
3592 | "dev-master": "2.0-dev"
3593 | }
3594 | },
3595 | "autoload": {
3596 | "classmap": [
3597 | "src/"
3598 | ]
3599 | },
3600 | "notification-url": "https://packagist.org/downloads/",
3601 | "license": [
3602 | "BSD-3-Clause"
3603 | ],
3604 | "authors": [
3605 | {
3606 | "name": "Sebastian Bergmann",
3607 | "email": "sebastian@phpunit.de",
3608 | "role": "lead"
3609 | }
3610 | ],
3611 | "description": "Library for calculating the complexity of PHP code units",
3612 | "homepage": "https://github.com/sebastianbergmann/complexity",
3613 | "support": {
3614 | "issues": "https://github.com/sebastianbergmann/complexity/issues",
3615 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
3616 | },
3617 | "funding": [
3618 | {
3619 | "url": "https://github.com/sebastianbergmann",
3620 | "type": "github"
3621 | }
3622 | ],
3623 | "time": "2020-10-26T15:52:27+00:00"
3624 | },
3625 | {
3626 | "name": "sebastian/environment",
3627 | "version": "5.1.4",
3628 | "source": {
3629 | "type": "git",
3630 | "url": "https://github.com/sebastianbergmann/environment.git",
3631 | "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
3632 | },
3633 | "dist": {
3634 | "type": "zip",
3635 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
3636 | "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
3637 | "shasum": ""
3638 | },
3639 | "require": {
3640 | "php": ">=7.3"
3641 | },
3642 | "require-dev": {
3643 | "phpunit/phpunit": "^9.3"
3644 | },
3645 | "suggest": {
3646 | "ext-posix": "*"
3647 | },
3648 | "type": "library",
3649 | "extra": {
3650 | "branch-alias": {
3651 | "dev-master": "5.1-dev"
3652 | }
3653 | },
3654 | "autoload": {
3655 | "classmap": [
3656 | "src/"
3657 | ]
3658 | },
3659 | "notification-url": "https://packagist.org/downloads/",
3660 | "license": [
3661 | "BSD-3-Clause"
3662 | ],
3663 | "authors": [
3664 | {
3665 | "name": "Sebastian Bergmann",
3666 | "email": "sebastian@phpunit.de"
3667 | }
3668 | ],
3669 | "description": "Provides functionality to handle HHVM/PHP environments",
3670 | "homepage": "http://www.github.com/sebastianbergmann/environment",
3671 | "keywords": [
3672 | "Xdebug",
3673 | "environment",
3674 | "hhvm"
3675 | ],
3676 | "support": {
3677 | "issues": "https://github.com/sebastianbergmann/environment/issues",
3678 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
3679 | },
3680 | "funding": [
3681 | {
3682 | "url": "https://github.com/sebastianbergmann",
3683 | "type": "github"
3684 | }
3685 | ],
3686 | "time": "2022-04-03T09:37:03+00:00"
3687 | },
3688 | {
3689 | "name": "sebastian/exporter",
3690 | "version": "4.0.5",
3691 | "source": {
3692 | "type": "git",
3693 | "url": "https://github.com/sebastianbergmann/exporter.git",
3694 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
3695 | },
3696 | "dist": {
3697 | "type": "zip",
3698 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
3699 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
3700 | "shasum": ""
3701 | },
3702 | "require": {
3703 | "php": ">=7.3",
3704 | "sebastian/recursion-context": "^4.0"
3705 | },
3706 | "require-dev": {
3707 | "ext-mbstring": "*",
3708 | "phpunit/phpunit": "^9.3"
3709 | },
3710 | "type": "library",
3711 | "extra": {
3712 | "branch-alias": {
3713 | "dev-master": "4.0-dev"
3714 | }
3715 | },
3716 | "autoload": {
3717 | "classmap": [
3718 | "src/"
3719 | ]
3720 | },
3721 | "notification-url": "https://packagist.org/downloads/",
3722 | "license": [
3723 | "BSD-3-Clause"
3724 | ],
3725 | "authors": [
3726 | {
3727 | "name": "Sebastian Bergmann",
3728 | "email": "sebastian@phpunit.de"
3729 | },
3730 | {
3731 | "name": "Jeff Welch",
3732 | "email": "whatthejeff@gmail.com"
3733 | },
3734 | {
3735 | "name": "Volker Dusch",
3736 | "email": "github@wallbash.com"
3737 | },
3738 | {
3739 | "name": "Adam Harvey",
3740 | "email": "aharvey@php.net"
3741 | },
3742 | {
3743 | "name": "Bernhard Schussek",
3744 | "email": "bschussek@gmail.com"
3745 | }
3746 | ],
3747 | "description": "Provides the functionality to export PHP variables for visualization",
3748 | "homepage": "https://www.github.com/sebastianbergmann/exporter",
3749 | "keywords": [
3750 | "export",
3751 | "exporter"
3752 | ],
3753 | "support": {
3754 | "issues": "https://github.com/sebastianbergmann/exporter/issues",
3755 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
3756 | },
3757 | "funding": [
3758 | {
3759 | "url": "https://github.com/sebastianbergmann",
3760 | "type": "github"
3761 | }
3762 | ],
3763 | "time": "2022-09-14T06:03:37+00:00"
3764 | },
3765 | {
3766 | "name": "sebastian/global-state",
3767 | "version": "5.0.5",
3768 | "source": {
3769 | "type": "git",
3770 | "url": "https://github.com/sebastianbergmann/global-state.git",
3771 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
3772 | },
3773 | "dist": {
3774 | "type": "zip",
3775 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
3776 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
3777 | "shasum": ""
3778 | },
3779 | "require": {
3780 | "php": ">=7.3",
3781 | "sebastian/object-reflector": "^2.0",
3782 | "sebastian/recursion-context": "^4.0"
3783 | },
3784 | "require-dev": {
3785 | "ext-dom": "*",
3786 | "phpunit/phpunit": "^9.3"
3787 | },
3788 | "suggest": {
3789 | "ext-uopz": "*"
3790 | },
3791 | "type": "library",
3792 | "extra": {
3793 | "branch-alias": {
3794 | "dev-master": "5.0-dev"
3795 | }
3796 | },
3797 | "autoload": {
3798 | "classmap": [
3799 | "src/"
3800 | ]
3801 | },
3802 | "notification-url": "https://packagist.org/downloads/",
3803 | "license": [
3804 | "BSD-3-Clause"
3805 | ],
3806 | "authors": [
3807 | {
3808 | "name": "Sebastian Bergmann",
3809 | "email": "sebastian@phpunit.de"
3810 | }
3811 | ],
3812 | "description": "Snapshotting of global state",
3813 | "homepage": "http://www.github.com/sebastianbergmann/global-state",
3814 | "keywords": [
3815 | "global state"
3816 | ],
3817 | "support": {
3818 | "issues": "https://github.com/sebastianbergmann/global-state/issues",
3819 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
3820 | },
3821 | "funding": [
3822 | {
3823 | "url": "https://github.com/sebastianbergmann",
3824 | "type": "github"
3825 | }
3826 | ],
3827 | "time": "2022-02-14T08:28:10+00:00"
3828 | },
3829 | {
3830 | "name": "sebastian/lines-of-code",
3831 | "version": "1.0.3",
3832 | "source": {
3833 | "type": "git",
3834 | "url": "https://github.com/sebastianbergmann/lines-of-code.git",
3835 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
3836 | },
3837 | "dist": {
3838 | "type": "zip",
3839 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
3840 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
3841 | "shasum": ""
3842 | },
3843 | "require": {
3844 | "nikic/php-parser": "^4.6",
3845 | "php": ">=7.3"
3846 | },
3847 | "require-dev": {
3848 | "phpunit/phpunit": "^9.3"
3849 | },
3850 | "type": "library",
3851 | "extra": {
3852 | "branch-alias": {
3853 | "dev-master": "1.0-dev"
3854 | }
3855 | },
3856 | "autoload": {
3857 | "classmap": [
3858 | "src/"
3859 | ]
3860 | },
3861 | "notification-url": "https://packagist.org/downloads/",
3862 | "license": [
3863 | "BSD-3-Clause"
3864 | ],
3865 | "authors": [
3866 | {
3867 | "name": "Sebastian Bergmann",
3868 | "email": "sebastian@phpunit.de",
3869 | "role": "lead"
3870 | }
3871 | ],
3872 | "description": "Library for counting the lines of code in PHP source code",
3873 | "homepage": "https://github.com/sebastianbergmann/lines-of-code",
3874 | "support": {
3875 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
3876 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
3877 | },
3878 | "funding": [
3879 | {
3880 | "url": "https://github.com/sebastianbergmann",
3881 | "type": "github"
3882 | }
3883 | ],
3884 | "time": "2020-11-28T06:42:11+00:00"
3885 | },
3886 | {
3887 | "name": "sebastian/object-enumerator",
3888 | "version": "4.0.4",
3889 | "source": {
3890 | "type": "git",
3891 | "url": "https://github.com/sebastianbergmann/object-enumerator.git",
3892 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
3893 | },
3894 | "dist": {
3895 | "type": "zip",
3896 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
3897 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
3898 | "shasum": ""
3899 | },
3900 | "require": {
3901 | "php": ">=7.3",
3902 | "sebastian/object-reflector": "^2.0",
3903 | "sebastian/recursion-context": "^4.0"
3904 | },
3905 | "require-dev": {
3906 | "phpunit/phpunit": "^9.3"
3907 | },
3908 | "type": "library",
3909 | "extra": {
3910 | "branch-alias": {
3911 | "dev-master": "4.0-dev"
3912 | }
3913 | },
3914 | "autoload": {
3915 | "classmap": [
3916 | "src/"
3917 | ]
3918 | },
3919 | "notification-url": "https://packagist.org/downloads/",
3920 | "license": [
3921 | "BSD-3-Clause"
3922 | ],
3923 | "authors": [
3924 | {
3925 | "name": "Sebastian Bergmann",
3926 | "email": "sebastian@phpunit.de"
3927 | }
3928 | ],
3929 | "description": "Traverses array structures and object graphs to enumerate all referenced objects",
3930 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
3931 | "support": {
3932 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
3933 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
3934 | },
3935 | "funding": [
3936 | {
3937 | "url": "https://github.com/sebastianbergmann",
3938 | "type": "github"
3939 | }
3940 | ],
3941 | "time": "2020-10-26T13:12:34+00:00"
3942 | },
3943 | {
3944 | "name": "sebastian/object-reflector",
3945 | "version": "2.0.4",
3946 | "source": {
3947 | "type": "git",
3948 | "url": "https://github.com/sebastianbergmann/object-reflector.git",
3949 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
3950 | },
3951 | "dist": {
3952 | "type": "zip",
3953 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
3954 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
3955 | "shasum": ""
3956 | },
3957 | "require": {
3958 | "php": ">=7.3"
3959 | },
3960 | "require-dev": {
3961 | "phpunit/phpunit": "^9.3"
3962 | },
3963 | "type": "library",
3964 | "extra": {
3965 | "branch-alias": {
3966 | "dev-master": "2.0-dev"
3967 | }
3968 | },
3969 | "autoload": {
3970 | "classmap": [
3971 | "src/"
3972 | ]
3973 | },
3974 | "notification-url": "https://packagist.org/downloads/",
3975 | "license": [
3976 | "BSD-3-Clause"
3977 | ],
3978 | "authors": [
3979 | {
3980 | "name": "Sebastian Bergmann",
3981 | "email": "sebastian@phpunit.de"
3982 | }
3983 | ],
3984 | "description": "Allows reflection of object attributes, including inherited and non-public ones",
3985 | "homepage": "https://github.com/sebastianbergmann/object-reflector/",
3986 | "support": {
3987 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
3988 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
3989 | },
3990 | "funding": [
3991 | {
3992 | "url": "https://github.com/sebastianbergmann",
3993 | "type": "github"
3994 | }
3995 | ],
3996 | "time": "2020-10-26T13:14:26+00:00"
3997 | },
3998 | {
3999 | "name": "sebastian/recursion-context",
4000 | "version": "4.0.4",
4001 | "source": {
4002 | "type": "git",
4003 | "url": "https://github.com/sebastianbergmann/recursion-context.git",
4004 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
4005 | },
4006 | "dist": {
4007 | "type": "zip",
4008 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
4009 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
4010 | "shasum": ""
4011 | },
4012 | "require": {
4013 | "php": ">=7.3"
4014 | },
4015 | "require-dev": {
4016 | "phpunit/phpunit": "^9.3"
4017 | },
4018 | "type": "library",
4019 | "extra": {
4020 | "branch-alias": {
4021 | "dev-master": "4.0-dev"
4022 | }
4023 | },
4024 | "autoload": {
4025 | "classmap": [
4026 | "src/"
4027 | ]
4028 | },
4029 | "notification-url": "https://packagist.org/downloads/",
4030 | "license": [
4031 | "BSD-3-Clause"
4032 | ],
4033 | "authors": [
4034 | {
4035 | "name": "Sebastian Bergmann",
4036 | "email": "sebastian@phpunit.de"
4037 | },
4038 | {
4039 | "name": "Jeff Welch",
4040 | "email": "whatthejeff@gmail.com"
4041 | },
4042 | {
4043 | "name": "Adam Harvey",
4044 | "email": "aharvey@php.net"
4045 | }
4046 | ],
4047 | "description": "Provides functionality to recursively process PHP variables",
4048 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
4049 | "support": {
4050 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
4051 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
4052 | },
4053 | "funding": [
4054 | {
4055 | "url": "https://github.com/sebastianbergmann",
4056 | "type": "github"
4057 | }
4058 | ],
4059 | "time": "2020-10-26T13:17:30+00:00"
4060 | },
4061 | {
4062 | "name": "sebastian/resource-operations",
4063 | "version": "3.0.3",
4064 | "source": {
4065 | "type": "git",
4066 | "url": "https://github.com/sebastianbergmann/resource-operations.git",
4067 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
4068 | },
4069 | "dist": {
4070 | "type": "zip",
4071 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
4072 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
4073 | "shasum": ""
4074 | },
4075 | "require": {
4076 | "php": ">=7.3"
4077 | },
4078 | "require-dev": {
4079 | "phpunit/phpunit": "^9.0"
4080 | },
4081 | "type": "library",
4082 | "extra": {
4083 | "branch-alias": {
4084 | "dev-master": "3.0-dev"
4085 | }
4086 | },
4087 | "autoload": {
4088 | "classmap": [
4089 | "src/"
4090 | ]
4091 | },
4092 | "notification-url": "https://packagist.org/downloads/",
4093 | "license": [
4094 | "BSD-3-Clause"
4095 | ],
4096 | "authors": [
4097 | {
4098 | "name": "Sebastian Bergmann",
4099 | "email": "sebastian@phpunit.de"
4100 | }
4101 | ],
4102 | "description": "Provides a list of PHP built-in functions that operate on resources",
4103 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
4104 | "support": {
4105 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
4106 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
4107 | },
4108 | "funding": [
4109 | {
4110 | "url": "https://github.com/sebastianbergmann",
4111 | "type": "github"
4112 | }
4113 | ],
4114 | "time": "2020-09-28T06:45:17+00:00"
4115 | },
4116 | {
4117 | "name": "sebastian/type",
4118 | "version": "3.2.0",
4119 | "source": {
4120 | "type": "git",
4121 | "url": "https://github.com/sebastianbergmann/type.git",
4122 | "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
4123 | },
4124 | "dist": {
4125 | "type": "zip",
4126 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
4127 | "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
4128 | "shasum": ""
4129 | },
4130 | "require": {
4131 | "php": ">=7.3"
4132 | },
4133 | "require-dev": {
4134 | "phpunit/phpunit": "^9.5"
4135 | },
4136 | "type": "library",
4137 | "extra": {
4138 | "branch-alias": {
4139 | "dev-master": "3.2-dev"
4140 | }
4141 | },
4142 | "autoload": {
4143 | "classmap": [
4144 | "src/"
4145 | ]
4146 | },
4147 | "notification-url": "https://packagist.org/downloads/",
4148 | "license": [
4149 | "BSD-3-Clause"
4150 | ],
4151 | "authors": [
4152 | {
4153 | "name": "Sebastian Bergmann",
4154 | "email": "sebastian@phpunit.de",
4155 | "role": "lead"
4156 | }
4157 | ],
4158 | "description": "Collection of value objects that represent the types of the PHP type system",
4159 | "homepage": "https://github.com/sebastianbergmann/type",
4160 | "support": {
4161 | "issues": "https://github.com/sebastianbergmann/type/issues",
4162 | "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
4163 | },
4164 | "funding": [
4165 | {
4166 | "url": "https://github.com/sebastianbergmann",
4167 | "type": "github"
4168 | }
4169 | ],
4170 | "time": "2022-09-12T14:47:03+00:00"
4171 | },
4172 | {
4173 | "name": "sebastian/version",
4174 | "version": "3.0.2",
4175 | "source": {
4176 | "type": "git",
4177 | "url": "https://github.com/sebastianbergmann/version.git",
4178 | "reference": "c6c1022351a901512170118436c764e473f6de8c"
4179 | },
4180 | "dist": {
4181 | "type": "zip",
4182 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
4183 | "reference": "c6c1022351a901512170118436c764e473f6de8c",
4184 | "shasum": ""
4185 | },
4186 | "require": {
4187 | "php": ">=7.3"
4188 | },
4189 | "type": "library",
4190 | "extra": {
4191 | "branch-alias": {
4192 | "dev-master": "3.0-dev"
4193 | }
4194 | },
4195 | "autoload": {
4196 | "classmap": [
4197 | "src/"
4198 | ]
4199 | },
4200 | "notification-url": "https://packagist.org/downloads/",
4201 | "license": [
4202 | "BSD-3-Clause"
4203 | ],
4204 | "authors": [
4205 | {
4206 | "name": "Sebastian Bergmann",
4207 | "email": "sebastian@phpunit.de",
4208 | "role": "lead"
4209 | }
4210 | ],
4211 | "description": "Library that helps with managing the version number of Git-hosted PHP projects",
4212 | "homepage": "https://github.com/sebastianbergmann/version",
4213 | "support": {
4214 | "issues": "https://github.com/sebastianbergmann/version/issues",
4215 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
4216 | },
4217 | "funding": [
4218 | {
4219 | "url": "https://github.com/sebastianbergmann",
4220 | "type": "github"
4221 | }
4222 | ],
4223 | "time": "2020-09-28T06:39:44+00:00"
4224 | },
4225 | {
4226 | "name": "symfony/yaml",
4227 | "version": "v5.4.14",
4228 | "source": {
4229 | "type": "git",
4230 | "url": "https://github.com/symfony/yaml.git",
4231 | "reference": "e83fe9a72011f07c662da46a05603d66deeeb487"
4232 | },
4233 | "dist": {
4234 | "type": "zip",
4235 | "url": "https://api.github.com/repos/symfony/yaml/zipball/e83fe9a72011f07c662da46a05603d66deeeb487",
4236 | "reference": "e83fe9a72011f07c662da46a05603d66deeeb487",
4237 | "shasum": ""
4238 | },
4239 | "require": {
4240 | "php": ">=7.2.5",
4241 | "symfony/deprecation-contracts": "^2.1|^3",
4242 | "symfony/polyfill-ctype": "^1.8"
4243 | },
4244 | "conflict": {
4245 | "symfony/console": "<5.3"
4246 | },
4247 | "require-dev": {
4248 | "symfony/console": "^5.3|^6.0"
4249 | },
4250 | "suggest": {
4251 | "symfony/console": "For validating YAML files using the lint command"
4252 | },
4253 | "bin": [
4254 | "Resources/bin/yaml-lint"
4255 | ],
4256 | "type": "library",
4257 | "autoload": {
4258 | "psr-4": {
4259 | "Symfony\\Component\\Yaml\\": ""
4260 | },
4261 | "exclude-from-classmap": [
4262 | "/Tests/"
4263 | ]
4264 | },
4265 | "notification-url": "https://packagist.org/downloads/",
4266 | "license": [
4267 | "MIT"
4268 | ],
4269 | "authors": [
4270 | {
4271 | "name": "Fabien Potencier",
4272 | "email": "fabien@symfony.com"
4273 | },
4274 | {
4275 | "name": "Symfony Community",
4276 | "homepage": "https://symfony.com/contributors"
4277 | }
4278 | ],
4279 | "description": "Loads and dumps YAML files",
4280 | "homepage": "https://symfony.com",
4281 | "support": {
4282 | "source": "https://github.com/symfony/yaml/tree/v5.4.14"
4283 | },
4284 | "funding": [
4285 | {
4286 | "url": "https://symfony.com/sponsor",
4287 | "type": "custom"
4288 | },
4289 | {
4290 | "url": "https://github.com/fabpot",
4291 | "type": "github"
4292 | },
4293 | {
4294 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4295 | "type": "tidelift"
4296 | }
4297 | ],
4298 | "time": "2022-10-03T15:15:50+00:00"
4299 | },
4300 | {
4301 | "name": "theseer/tokenizer",
4302 | "version": "1.2.1",
4303 | "source": {
4304 | "type": "git",
4305 | "url": "https://github.com/theseer/tokenizer.git",
4306 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
4307 | },
4308 | "dist": {
4309 | "type": "zip",
4310 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
4311 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
4312 | "shasum": ""
4313 | },
4314 | "require": {
4315 | "ext-dom": "*",
4316 | "ext-tokenizer": "*",
4317 | "ext-xmlwriter": "*",
4318 | "php": "^7.2 || ^8.0"
4319 | },
4320 | "type": "library",
4321 | "autoload": {
4322 | "classmap": [
4323 | "src/"
4324 | ]
4325 | },
4326 | "notification-url": "https://packagist.org/downloads/",
4327 | "license": [
4328 | "BSD-3-Clause"
4329 | ],
4330 | "authors": [
4331 | {
4332 | "name": "Arne Blankerts",
4333 | "email": "arne@blankerts.de",
4334 | "role": "Developer"
4335 | }
4336 | ],
4337 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
4338 | "support": {
4339 | "issues": "https://github.com/theseer/tokenizer/issues",
4340 | "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
4341 | },
4342 | "funding": [
4343 | {
4344 | "url": "https://github.com/theseer",
4345 | "type": "github"
4346 | }
4347 | ],
4348 | "time": "2021-07-28T10:34:58+00:00"
4349 | },
4350 | {
4351 | "name": "vierbergenlars/php-semver",
4352 | "version": "3.0.2",
4353 | "source": {
4354 | "type": "git",
4355 | "url": "https://github.com/vierbergenlars/php-semver.git",
4356 | "reference": "be22b86be4c1133acc42fd1685276792024af5f9"
4357 | },
4358 | "dist": {
4359 | "type": "zip",
4360 | "url": "https://api.github.com/repos/vierbergenlars/php-semver/zipball/be22b86be4c1133acc42fd1685276792024af5f9",
4361 | "reference": "be22b86be4c1133acc42fd1685276792024af5f9",
4362 | "shasum": ""
4363 | },
4364 | "require": {
4365 | "php": ">=5.3.0"
4366 | },
4367 | "require-dev": {
4368 | "phpunit/phpunit": "~4"
4369 | },
4370 | "bin": [
4371 | "bin/semver",
4372 | "bin/update-versions"
4373 | ],
4374 | "type": "library",
4375 | "autoload": {
4376 | "psr-0": {
4377 | "vierbergenlars\\LibJs\\": "src/",
4378 | "vierbergenlars\\SemVer\\": "src/"
4379 | },
4380 | "classmap": [
4381 | "src/vierbergenlars/SemVer/internal.php"
4382 | ]
4383 | },
4384 | "notification-url": "https://packagist.org/downloads/",
4385 | "license": [
4386 | "MIT"
4387 | ],
4388 | "authors": [
4389 | {
4390 | "name": "Lars Vierbergen",
4391 | "email": "vierbergenlars@gmail.com"
4392 | }
4393 | ],
4394 | "description": "The Semantic Versioner for PHP",
4395 | "keywords": [
4396 | "semantic",
4397 | "semver",
4398 | "versioning"
4399 | ],
4400 | "support": {
4401 | "issues": "https://github.com/vierbergenlars/php-semver/issues",
4402 | "source": "https://github.com/vierbergenlars/php-semver/tree/master"
4403 | },
4404 | "time": "2017-07-11T09:53:59+00:00"
4405 | }
4406 | ],
4407 | "aliases": [],
4408 | "minimum-stability": "stable",
4409 | "stability-flags": [],
4410 | "prefer-stable": false,
4411 | "prefer-lowest": false,
4412 | "platform": {
4413 | "php": "^7.4|^8.0"
4414 | },
4415 | "platform-dev": [],
4416 | "plugin-api-version": "2.2.0"
4417 | }
4418 |
--------------------------------------------------------------------------------
/phpcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | The PSR2 coding standard.
4 |
5 | vendor
6 | resources
7 | database/
8 | storage/
9 | node_modules/
10 |
--------------------------------------------------------------------------------
/phpmd.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Inspired by https://github.com/phpmd/phpmd/issues/137
9 | using http://phpmd.org/documentation/creating-a-ruleset.html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
46 | 3
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 | tests
15 |
16 |
17 |
18 |
19 | src/
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/src/PhpQualityTools.php:
--------------------------------------------------------------------------------
1 | srcDirectory = $srcDirectory;
23 | }
24 |
25 | /**
26 | * @param $destination
27 | * @throws Exception
28 | */
29 | public function install($destination)
30 | {
31 | $this->copyStubs($destination);
32 | $this->setUpComposerJson($destination);
33 |
34 | echo 'Done.' . PHP_EOL;
35 | }
36 |
37 | /**
38 | * @param string $destination
39 | * @throws Exception
40 | */
41 | protected function copyStubs(string $destination)
42 | {
43 | echo 'Copying configuration files.' . PHP_EOL;
44 | $this->createDestinationIfNotExist($destination);
45 | $this->copyFile('phpmd.xml', $destination);
46 | $this->copyFile('phpcs.xml', $destination);
47 | }
48 |
49 | /**
50 | * @param string $destination
51 | * @throws Exception
52 | */
53 | protected function setUpComposerJson(string $destination)
54 | {
55 | echo 'Setting up composer.json scripts.' . PHP_EOL;
56 |
57 | $composerJson = $destination . '/composer.json';
58 | if (!file_exists($composerJson)) {
59 | throw new Exception('File composer.json is missed! Please ensure that you are in root folder.');
60 | }
61 | $composerSettings = $this->readComposerJson($composerJson);
62 |
63 | if (is_null($composerSettings)) {
64 | throw new Exception('File composer.json is corrupted!');
65 | }
66 |
67 | if (empty($composerSettings->scripts)) {
68 | $composerSettings->scripts = new stdClass();
69 | }
70 |
71 | $composerSettings->scripts = (object) array_merge(
72 | (array) $composerSettings->scripts,
73 | (array) $this->getComposerScripts()
74 | );
75 |
76 | if (!$this->writeComposerJson($composerJson, $composerSettings)) {
77 | throw new Exception('Cannot write new composer.json!');
78 | }
79 | }
80 |
81 | /**
82 | * @return array
83 | */
84 | protected function getComposerScripts(): array
85 | {
86 | return [
87 | "inspect" => [
88 | sprintf("phpcs %s", $this->srcDirectory),
89 | sprintf("phpstan analyze %s", $this->srcDirectory)
90 | ],
91 | "inspect-fix" => [
92 | sprintf("php-cs-fixer fix %s", $this->srcDirectory),
93 | sprintf("phpcbf %s", $this->srcDirectory)
94 | ],
95 | "insights" => sprintf("phpmd %s text phpmd.xml", $this->srcDirectory)
96 | ];
97 | }
98 |
99 | /**
100 | * @param string $composerJson
101 | * @return stdClass
102 | * @throws Exception
103 | */
104 | protected function readComposerJson(string $composerJson): \stdClass
105 | {
106 | $content = file_get_contents($composerJson);
107 | if (!$content) {
108 | throw new Exception('File composer.json is empty!');
109 | }
110 | return json_decode($content);
111 | }
112 |
113 | /**
114 | * @param string $composerJson
115 | * @param stdClass $composerSettings
116 | * @return bool|int
117 | */
118 | protected function writeComposerJson(string $composerJson, stdClass $composerSettings)
119 | {
120 | return file_put_contents(
121 | $composerJson,
122 | json_encode(
123 | $composerSettings,
124 | JSON_PRETTY_PRINT |
125 | JSON_UNESCAPED_LINE_TERMINATORS |
126 | JSON_UNESCAPED_SLASHES |
127 | JSON_UNESCAPED_UNICODE
128 | )
129 | );
130 | }
131 |
132 | private function createDestinationIfNotExist($destination)
133 | {
134 | if (is_null($destination)) {
135 | throw new Exception('Failed to create required folders!');
136 | }
137 | if (!file_exists($destination)) {
138 | if (!mkdir($destination, 0777, true)) {
139 | throw new Exception('Failed to create required folders! Please check your write permission.');
140 | }
141 | }
142 | }
143 |
144 | private function copyFile($filename, $destination)
145 | {
146 | if (!file_exists(__DIR__ . "/../$filename") || !copy(__DIR__ . "/../$filename", $destination . "/$filename")) {
147 | throw new Exception(sprintf("File %s cannot be created! Please check your write permission.", $filename));
148 | }
149 | }
150 | }
151 |
--------------------------------------------------------------------------------
/src/helpers.php:
--------------------------------------------------------------------------------
1 | install($cwd);
19 | } catch (Exception $ex) {
20 | echo $ex->getMessage();
21 | }
22 |
--------------------------------------------------------------------------------
/tests/InstallTest.php:
--------------------------------------------------------------------------------
1 | install(__DIR__);
43 |
44 | $this->assertXmlFilesEquals();
45 | $this->assertJsonFileEqualsJsonFile(__DIR__ . '/expected/composer.json', __DIR__ . '/composer.json');
46 | }
47 |
48 | /** @test */
49 | public function can_install_the_package_with_install_php()
50 | {
51 | chdir(__DIR__);
52 | mkdir('src');
53 | require __DIR__ . '/../src/install.php';
54 | rmdir('src');
55 |
56 | $this->assertXmlFilesEquals();
57 | $this->assertJsonFileEqualsJsonFile(__DIR__ . '/expected/composer.json', __DIR__ . '/composer.json');
58 | }
59 |
60 | /** @test */
61 | public function can_install_the_package_without_script_in_composer_json()
62 | {
63 | unlink(__DIR__ . '/composer.json');
64 | copy(__DIR__ . '/resources/composer_no_script.json', __DIR__ . '/composer.json');
65 |
66 | $qualityTools = new PhpQualityTools('src');
67 | $qualityTools->install(__DIR__);
68 |
69 | $this->assertXmlFilesEquals();
70 | $this->assertJsonFileEqualsJsonFile(__DIR__ . '/expected/composer_no_script.json', __DIR__ . '/composer.json');
71 | }
72 |
73 | /** @test */
74 | public function can_guess_the_directory()
75 | {
76 | chdir(__DIR__);
77 | require_once __DIR__ . '/../src/helpers.php';
78 |
79 | mkdir('src');
80 | $this->assertEquals('src', guessSrcDirectory(__DIR__));
81 | rmdir('src');
82 |
83 |
84 | mkdir('app');
85 | $this->assertEquals('app', guessSrcDirectory(__DIR__));
86 | rmdir('app');
87 |
88 | $this->assertEquals('.', guessSrcDirectory(__DIR__));
89 |
90 | }
91 |
92 | /** @test */
93 | public function can_install_the_package_from_command_line()
94 | {
95 | chdir(__DIR__);
96 |
97 | mkdir('src');
98 | exec(__DIR__ . '/../bin/phpqt-install');
99 | rmdir('src');
100 |
101 | $this->assertXmlFilesEquals();
102 | $this->assertJsonFileEqualsJsonFile(__DIR__ . '/expected/composer.json', __DIR__ . '/composer.json');
103 |
104 | }
105 |
106 | /** @test */
107 | public function can_install_the_package_from_command_line_with_src_directory_argument()
108 | {
109 | chdir(__DIR__);
110 | exec(__DIR__ . '/../bin/phpqt-install ' . $this->srcDirectory);
111 |
112 | $this->assertXmlFilesEquals();
113 |
114 | $jsonSettings = json_decode(file_get_contents(__DIR__ . '/composer.json'), true);
115 |
116 | $this->assertEquals($jsonSettings['scripts']['inspect'],
117 | [
118 | sprintf("phpcs %s", $this->srcDirectory),
119 | sprintf("phpstan analyze %s", $this->srcDirectory)
120 | ]
121 | );
122 |
123 | $this->assertEquals($jsonSettings['scripts']['inspect-fix'],
124 | [
125 | sprintf("php-cs-fixer fix %s", $this->srcDirectory),
126 | sprintf("phpcbf %s", $this->srcDirectory)
127 | ]
128 | );
129 |
130 | $this->assertEquals($jsonSettings['scripts']['insights'],
131 | sprintf("phpmd %s text phpmd.xml", $this->srcDirectory)
132 | );
133 |
134 | }
135 |
136 | /** @test */
137 | public function can_create_directory_if_needed()
138 | {
139 | if (file_exists('createdDir')){
140 | rmdir('createdDir');
141 | }
142 |
143 | $class = new \ReflectionClass('DanielWerner\PhpQualityTools\PhpQualityTools');
144 | $method = $class->getMethod('createDestinationIfNotExist');
145 | $method->setAccessible(true);
146 | $qtObject = new PhpQualityTools('src');
147 |
148 | $method->invokeArgs($qtObject, ['createdDir']);
149 |
150 | $this->assertFileExists('createdDir');
151 | rmdir('createdDir');
152 | }
153 |
154 | /** @test */
155 | public function throw_error_if_dir_path_is_null()
156 | {
157 | $class = new \ReflectionClass('DanielWerner\PhpQualityTools\PhpQualityTools');
158 | $method = $class->getMethod('createDestinationIfNotExist');
159 | $method->setAccessible(true);
160 |
161 | $this->expectException(\Exception::class);
162 | $qtObject = new PhpQualityTools('src');
163 | $method->invokeArgs($qtObject, [null]);
164 | }
165 |
166 | /** @test */
167 | public function throw_error_if_cant_copy_files()
168 | {
169 | $class = new \ReflectionClass('DanielWerner\PhpQualityTools\PhpQualityTools');
170 | $method = $class->getMethod('copyFile');
171 | $method->setAccessible(true);
172 |
173 | $this->expectException(\Exception::class);
174 | $qtObject = new PhpQualityTools('src');
175 | $method->invokeArgs($qtObject, ['file', 'dest']);
176 | }
177 |
178 | protected function assertXmlFilesEquals(): void
179 | {
180 | $this->assertFileEquals(__DIR__ . '/expected/phpcs.xml', __DIR__ . '/phpcs.xml');
181 | $this->assertFileEquals(__DIR__ . '/expected/phpmd.xml', __DIR__ . '/phpmd.xml');
182 | }
183 | }
184 |
--------------------------------------------------------------------------------
/tests/expected/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "daniel-werner/php-quality-tools",
3 | "description": "Opinionated package for easy install php quality tools with a reasonable default setup",
4 | "keywords": [
5 | "daniel-werner",
6 | "php-quality-tools"
7 | ],
8 | "homepage": "https://github.com/daniel-werner/php-quality-tools",
9 | "license": "MIT",
10 | "type": "library",
11 | "authors": [
12 | {
13 | "name": "Daniel Werner",
14 | "email": "vernerd@gmail.com",
15 | "role": "Developer"
16 | }
17 | ],
18 | "require": {
19 | "php": "^7.1",
20 | "friendsofphp/php-cs-fixer": "^2.15",
21 | "phpmd/phpmd": "^2.7",
22 | "phpstan/phpstan": "^0.11.16",
23 | "squizlabs/php_codesniffer": "^3.5"
24 | },
25 | "require-dev": {
26 | "phpunit/phpunit": "^7.0"
27 | },
28 | "autoload": {
29 | "psr-4": {
30 | "DanielWerner\\PhpQualityTools\\": "src"
31 | }
32 | },
33 | "autoload-dev": {
34 | "psr-4": {
35 | "DanielWerner\\PhpQualityTools\\Tests\\": "tests"
36 | }
37 | },
38 | "bin": ["bin/phpqt-install"],
39 | "scripts": {
40 | "test": "phpunit",
41 | "test-coverage": "phpunit --coverage-html coverage",
42 | "inspect": [
43 | "phpcs src",
44 | "phpstan analyze src"
45 | ],
46 | "inspect-fix": [
47 | "php-cs-fixer fix src",
48 | "phpcbf src"
49 | ],
50 | "insights": "phpmd src text phpmd.xml"
51 | },
52 | "config": {
53 | "sort-packages": true
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/tests/expected/composer_no_script.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "daniel-werner/php-quality-tools",
3 | "description": "Opinionated package for easy install php quality tools with a reasonable default setup",
4 | "keywords": [
5 | "daniel-werner",
6 | "php-quality-tools"
7 | ],
8 | "homepage": "https://github.com/daniel-werner/php-quality-tools",
9 | "license": "MIT",
10 | "type": "library",
11 | "authors": [
12 | {
13 | "name": "Daniel Werner",
14 | "email": "vernerd@gmail.com",
15 | "role": "Developer"
16 | }
17 | ],
18 | "require": {
19 | "php": "^7.1",
20 | "friendsofphp/php-cs-fixer": "^2.15",
21 | "phpmd/phpmd": "^2.7",
22 | "phpstan/phpstan": "^0.11.16",
23 | "squizlabs/php_codesniffer": "^3.5"
24 | },
25 | "require-dev": {
26 | "phpunit/phpunit": "^7.0"
27 | },
28 | "autoload": {
29 | "psr-4": {
30 | "DanielWerner\\PhpQualityTools\\": "src"
31 | }
32 | },
33 | "autoload-dev": {
34 | "psr-4": {
35 | "DanielWerner\\PhpQualityTools\\Tests\\": "tests"
36 | }
37 | },
38 | "bin": ["bin/phpqt-install"],
39 | "scripts": {
40 | "inspect": [
41 | "phpcs src",
42 | "phpstan analyze src"
43 | ],
44 | "inspect-fix": [
45 | "php-cs-fixer fix src",
46 | "phpcbf src"
47 | ],
48 | "insights": "phpmd src text phpmd.xml"
49 | },
50 | "config": {
51 | "sort-packages": true
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/tests/expected/phpcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | The PSR2 coding standard.
4 |
5 | vendor
6 | resources
7 | database/
8 | storage/
9 | node_modules/
10 |
--------------------------------------------------------------------------------
/tests/expected/phpmd.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Inspired by https://github.com/phpmd/phpmd/issues/137
9 | using http://phpmd.org/documentation/creating-a-ruleset.html
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
46 | 3
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/tests/resources/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "daniel-werner/php-quality-tools",
3 | "description": "Opinionated package for easy install php quality tools with a reasonable default setup",
4 | "keywords": [
5 | "daniel-werner",
6 | "php-quality-tools"
7 | ],
8 | "homepage": "https://github.com/daniel-werner/php-quality-tools",
9 | "license": "MIT",
10 | "type": "library",
11 | "authors": [
12 | {
13 | "name": "Daniel Werner",
14 | "email": "vernerd@gmail.com",
15 | "role": "Developer"
16 | }
17 | ],
18 | "require": {
19 | "php": "^7.1",
20 | "friendsofphp/php-cs-fixer": "^2.15",
21 | "phpmd/phpmd": "^2.7",
22 | "phpstan/phpstan": "^0.11.16",
23 | "squizlabs/php_codesniffer": "^3.5"
24 | },
25 | "require-dev": {
26 | "phpunit/phpunit": "^7.0"
27 | },
28 | "autoload": {
29 | "psr-4": {
30 | "DanielWerner\\PhpQualityTools\\": "src"
31 | }
32 | },
33 | "autoload-dev": {
34 | "psr-4": {
35 | "DanielWerner\\PhpQualityTools\\Tests\\": "tests"
36 | }
37 | },
38 | "bin": ["bin/phpqt-install"],
39 | "scripts": {
40 | "test": "phpunit",
41 | "test-coverage": "phpunit --coverage-html coverage"
42 |
43 | },
44 | "config": {
45 | "sort-packages": true
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/tests/resources/composer_no_script.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "daniel-werner/php-quality-tools",
3 | "description": "Opinionated package for easy install php quality tools with a reasonable default setup",
4 | "keywords": [
5 | "daniel-werner",
6 | "php-quality-tools"
7 | ],
8 | "homepage": "https://github.com/daniel-werner/php-quality-tools",
9 | "license": "MIT",
10 | "type": "library",
11 | "authors": [
12 | {
13 | "name": "Daniel Werner",
14 | "email": "vernerd@gmail.com",
15 | "role": "Developer"
16 | }
17 | ],
18 | "require": {
19 | "php": "^7.1",
20 | "friendsofphp/php-cs-fixer": "^2.15",
21 | "phpmd/phpmd": "^2.7",
22 | "phpstan/phpstan": "^0.11.16",
23 | "squizlabs/php_codesniffer": "^3.5"
24 | },
25 | "require-dev": {
26 | "phpunit/phpunit": "^7.0"
27 | },
28 | "autoload": {
29 | "psr-4": {
30 | "DanielWerner\\PhpQualityTools\\": "src"
31 | }
32 | },
33 | "autoload-dev": {
34 | "psr-4": {
35 | "DanielWerner\\PhpQualityTools\\Tests\\": "tests"
36 | }
37 | },
38 | "bin": ["bin/phpqt-install"],
39 | "config": {
40 | "sort-packages": true
41 | }
42 | }
43 |
--------------------------------------------------------------------------------