├── .gitignore ├── docker-compose.yml ├── Dockerfile ├── .github └── workflows │ ├── linter.yml │ ├── codeql-analysis.yml │ └── tests.yml ├── psalm.xml ├── phpunit.xml ├── composer.json ├── LICENSE.md ├── src └── Registry │ └── Registry.php ├── README.md ├── tests └── Registry │ └── RegistryTest.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── composer.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | 3 | services: 4 | test: 5 | build: 6 | context: . 7 | volumes: 8 | - ./:/app 9 | working_dir: /app 10 | command: vendor/bin/phpunit --configuration phpunit.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM composer:2.0 as deps 2 | COPY composer.* /app/ 3 | RUN composer install \ 4 | --ignore-platform-reqs \ 5 | --optimize-autoloader \ 6 | --no-plugins \ 7 | --no-scripts \ 8 | --prefer-dist 9 | 10 | FROM php:8.0.14-alpine3.15 11 | COPY --from=deps /app/vendor /app/vendor 12 | WORKDIR /app 13 | COPY . . 14 | CMD ["vendor/bin/phpunit", "--configuration", "phpunit.xml"] 15 | -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- 1 | name: "Linter" 2 | 3 | on: [pull_request] 4 | jobs: 5 | lint: 6 | name: Linter 7 | runs-on: ubuntu-latest 8 | 9 | steps: 10 | - name: Checkout repository 11 | uses: actions/checkout@v3 12 | with: 13 | fetch-depth: 2 14 | 15 | - run: git checkout HEAD^2 16 | 17 | - name: Run Linter 18 | run: | 19 | docker run --rm -v $PWD:/app composer sh -c \ 20 | "composer install --profile --ignore-platform-reqs && composer lint" -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | name: "CodeQL" 2 | 3 | on: [pull_request] 4 | jobs: 5 | lint: 6 | name: CodeQL 7 | runs-on: ubuntu-latest 8 | 9 | steps: 10 | - name: Checkout repository 11 | uses: actions/checkout@v3 12 | with: 13 | fetch-depth: 2 14 | 15 | - run: git checkout HEAD^2 16 | 17 | - name: Run CodeQL 18 | run: | 19 | docker run --rm -v $PWD:/app composer sh -c \ 20 | "composer install --profile --ignore-platform-reqs && composer check" -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | ./tests/ 14 | 15 | 16 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: "Tests" 2 | 3 | on: [pull_request] 4 | jobs: 5 | lint: 6 | name: Tests ${{ matrix.php-versions }} 7 | runs-on: ubuntu-latest 8 | strategy: 9 | matrix: 10 | php-versions: ['8.0', '8.1', '8.2', '8.3', 'nightly'] 11 | 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v3 15 | 16 | - name: Setup PHP ${{ matrix.php-versions }} 17 | uses: shivammathur/setup-php@v2 18 | with: 19 | php-version: ${{ matrix.php-versions }} 20 | 21 | - name: Validate composer.json and composer.lock 22 | run: composer validate --strict 23 | 24 | - name: Compose install 25 | run: composer install --ignore-platform-reqs 26 | 27 | - name: Run tests 28 | run: composer test -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "utopia-php/registry", 3 | "description": "A simple dependency management library for PHP", 4 | "type": "library", 5 | "keywords": ["php","framework", "upf", "utopia", "di", "dependency management"], 6 | "license": "MIT", 7 | "autoload": { 8 | "psr-4": {"Utopia\\Registry\\": "src/Registry"} 9 | }, 10 | "scripts": { 11 | "check": "./vendor/bin/phpstan analyse -l 7 src tests", 12 | "lint": "./vendor/bin/pint --test", 13 | "format": "./vendor/bin/pint", 14 | "test": "./vendor/bin/phpunit --configuration phpunit.xml" 15 | }, 16 | "require": { 17 | "php": ">=8.0" 18 | }, 19 | "require-dev": { 20 | "phpunit/phpunit": "^9.3", 21 | "vimeo/psalm": "4.0.1", 22 | "phpstan/phpstan": "1.9.x-dev", 23 | "laravel/pint": "1.2.*" 24 | }, 25 | "minimum-stability": "dev" 26 | } 27 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Eldad Fux 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | 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, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /src/Registry/Registry.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | protected array $fresh = []; 22 | 23 | /** 24 | * List of all connections 25 | * 26 | * @var array 27 | */ 28 | protected array $registry = [ 29 | 'default' => [], 30 | ]; 31 | 32 | /** 33 | * Current context 34 | * 35 | * @var string 36 | */ 37 | protected string $context = 'default'; 38 | 39 | /** 40 | * Set a new connection callback 41 | * 42 | * @param string $name 43 | * @param callable $callback 44 | * @param bool $fresh 45 | * @return $this 46 | * 47 | * @throws Exception 48 | */ 49 | public function set(string $name, callable $callback, bool $fresh = false): self 50 | { 51 | if (\array_key_exists($name, $this->registry[$this->context])) { 52 | unset($this->registry[$this->context][$name]); 53 | } 54 | 55 | $this->fresh[$name] = $fresh; 56 | $this->callbacks[$name] = $callback; 57 | 58 | return $this; 59 | } 60 | 61 | /** 62 | * If connection has been created returns it, otherwise create and than return it 63 | * 64 | * @param string $name 65 | * @param bool $fresh 66 | * @return mixed 67 | * 68 | * @throws Exception 69 | */ 70 | public function get(string $name, bool $fresh = false): mixed 71 | { 72 | if (! \array_key_exists($name, $this->registry[$this->context]) || $fresh || $this->fresh[$name]) { 73 | if (! \array_key_exists($name, $this->callbacks)) { 74 | throw new Exception('No callback named "'.$name.'" found when trying to create connection'); 75 | } 76 | $this->registry[$this->context][$name] = $this->callbacks[$name](); 77 | } 78 | 79 | return $this->registry[$this->context][$name]; 80 | } 81 | 82 | /** 83 | * Check if connection exists 84 | * 85 | * @param string $name 86 | * @return bool 87 | */ 88 | public function has(string $name): bool 89 | { 90 | return \array_key_exists($name, $this->callbacks); 91 | } 92 | 93 | /** 94 | * Set the current context 95 | * 96 | * @param string $name 97 | * @return self 98 | */ 99 | public function context(string $name): self 100 | { 101 | if (! array_key_exists($name, $this->registry)) { 102 | $this->registry[$name] = []; 103 | } 104 | 105 | $this->context = $name; 106 | 107 | return $this; 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Utopia Registry 2 | 3 | [![Build Status](https://travis-ci.org/utopia-php/registry.svg?branch=master)](https://travis-ci.com/utopia-php/registry) 4 | ![Total Downloads](https://img.shields.io/packagist/dt/utopia-php/registry.svg) 5 | [![Discord](https://img.shields.io/discord/564160730845151244?label=discord)](https://appwrite.io/discord) 6 | 7 | Utopia Registry library is simple and lite library for managing dependency management and lazy load initialization of PHP objects or resources. This library is aiming to be as simple and easy to learn and use. 8 | 9 | Although this library is part of the [Utopia Framework](https://github.com/utopia-php/framework) project it is dependency free and can be used as standalone with any other PHP project or framework. 10 | 11 | ## Getting Started 12 | 13 | Install using composer: 14 | ```bash 15 | composer require utopia-php/registry 16 | ``` 17 | 18 | script.php 19 | ```php 20 | set('db', function() use ($dbHost, $dbUser, $dbPass, $dbScheme) { // Register DB connection 31 | $pdo = new PDO("mysql:host={$dbHost};dbname={$dbScheme}", $dbUser, $dbPass, array( 32 | PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', 33 | PDO::ATTR_TIMEOUT => 5 // Seconds 34 | )); 35 | 36 | // Connection settings 37 | $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); // Return arrays 38 | $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); // Handle all errors with exceptions 39 | 40 | return $pdo; 41 | }); 42 | 43 | /** 44 | * Execute callback and create database connection only when 45 | * you need it and not a second before 46 | */ 47 | $register->get('db'); 48 | 49 | /** 50 | * Second call for db service will return the instance that has been created 51 | * in the previous line of code 52 | */ 53 | $register->get('db'); 54 | 55 | /** 56 | * Third call for db service when passing the value 'true' to the $fresh argument 57 | * will return a fresh and new instance of the db service 58 | */ 59 | $register->get('db', true); 60 | 61 | /** 62 | * Using the context method you can manage multiple instances of the same resources with separated scopes. 63 | */ 64 | $register->context('new-set-of-instances'); 65 | 66 | /** 67 | * You can use the 3rd parameter `$fresh` to get a new copy of the resource in every get call 68 | */ 69 | $register->set('time', function() { // Register DB connection 70 | return microtime(); 71 | }, true); 72 | 73 | $register->get('time'); // 0.16608900 74 | $register->get('time'); // 0.16608905 75 | 76 | ``` 77 | 78 | ## System Requirements 79 | 80 | Utopia Framework requires PHP 8 or later. We recommend using the latest PHP version whenever possible. 81 | 82 | 83 | ## Copyright and license 84 | 85 | The MIT License (MIT) [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) 86 | -------------------------------------------------------------------------------- /tests/Registry/RegistryTest.php: -------------------------------------------------------------------------------- 1 | registry = new Registry(); 16 | } 17 | 18 | public function tearDown(): void 19 | { 20 | $this->registry = null; 21 | } 22 | 23 | /** 24 | * @throws \Exception 25 | */ 26 | public function testGet(): void 27 | { 28 | $this->registry->set('array', function () { 29 | return new ArrayObject(['test']); 30 | }); 31 | $this->registry->get('array')[] = 'Hello World'; 32 | 33 | $this->assertCount(2, $this->registry->get('array')); 34 | } 35 | 36 | /** 37 | * @throws \Exception 38 | */ 39 | public function testSet(): void 40 | { 41 | $this->registry->set('array', function () { 42 | return new ArrayObject(['test']); 43 | }); 44 | $this->assertCount(1, $this->registry->get('array')); 45 | } 46 | 47 | /** 48 | * @throws \Exception 49 | */ 50 | public function testHas(): void 51 | { 52 | $this->registry->set('item', function () { 53 | return ['test']; 54 | }); 55 | $this->assertTrue($this->registry->has('item')); 56 | } 57 | 58 | /** 59 | * @throws \Exception 60 | */ 61 | public function testGetFresh(): void 62 | { 63 | $this->registry->set('array', function () { 64 | return new ArrayObject(['test']); 65 | }); 66 | $this->assertCount(1, $this->registry->get('array', true)); 67 | } 68 | 69 | /** 70 | * @throws \Exception 71 | */ 72 | public function testSetFresh(): void 73 | { 74 | $this->registry->set('fresh', function () { 75 | return microtime(); 76 | }, true); 77 | 78 | // Added usleep because some runs were so fast that the microtime was the same 79 | $copy1 = $this->registry->get('fresh'); 80 | usleep(1); 81 | $copy2 = $this->registry->get('fresh'); 82 | usleep(1); 83 | $copy3 = $this->registry->get('fresh'); 84 | 85 | $this->assertNotEquals($copy1, $copy2); 86 | $this->assertNotEquals($copy2, $copy3); 87 | $this->assertNotEquals($copy1, $copy3); 88 | } 89 | 90 | /** 91 | * @throws \Exception 92 | */ 93 | public function testGetCaching(): void 94 | { 95 | $this->registry->set('time', function () { 96 | return microtime(); 97 | }); 98 | 99 | $timeX = $this->registry->get('time'); 100 | $timeY = $this->registry->get('time'); 101 | 102 | $this->assertEquals($timeX, $timeY); 103 | } 104 | 105 | /** 106 | * @throws \Exception 107 | */ 108 | public function testContextSwitching(): void 109 | { 110 | $this->registry->set('time', function () { 111 | return microtime(); 112 | }); 113 | 114 | $timeX = $this->registry->get('time'); 115 | $timeY = $this->registry->get('time'); 116 | 117 | $this->registry->context('new'); 118 | 119 | $timeY = $this->registry->get('time'); 120 | 121 | $this->assertNotEquals($timeX, $timeY); 122 | } 123 | } 124 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to make participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity, expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at team@appwrite.io. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | We would ❤️ for you to contribute to Utopia-php and help make it better! We want contributing to Utopia-php to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including issues, new docs as well as updates and tweaks, blog posts, workshops, and more. 4 | 5 | ## How to Start? 6 | 7 | If you are worried or don’t know where to start, check out our next section explaining what kind of help we could use and where can you get involved. You can reach out with questions to [Eldad Fux (@eldadfux)](https://twitter.com/eldadfux) or anyone from the [Appwrite team on Discord](https://discord.gg/GSeTUeA). You can also submit an issue, and a maintainer can guide you! 8 | 9 | ## Code of Conduct 10 | 11 | Help us keep Utopia-php open and inclusive. Please read and follow our [Code of Conduct](https://github.com/appwrite/appwrite/blob/master/CODE_OF_CONDUCT.md). 12 | 13 | ## Submit a Pull Request 🚀 14 | 15 | Branch naming convention is as following 16 | 17 | `TYPE-ISSUE_ID-DESCRIPTION` 18 | 19 | example: 20 | 21 | ``` 22 | doc-548-submit-a-pull-request-section-to-contribution-guide 23 | ``` 24 | 25 | When `TYPE` can be: 26 | 27 | - **feat** - is a new feature 28 | - **doc** - documentation only changes 29 | - **cicd** - changes related to CI/CD system 30 | - **fix** - a bug fix 31 | - **refactor** - code change that neither fixes a bug nor adds a feature 32 | 33 | **All PRs must include a commit message with the changes description!** 34 | 35 | For the initial start, fork the project and use git clone command to download the repository to your computer. A standard procedure for working on an issue would be to: 36 | 37 | 1. `git pull`, before creating a new branch, pull the changes from upstream. Your master needs to be up to date. 38 | 39 | ``` 40 | $ git pull 41 | ``` 42 | 43 | 2. Create new branch from `master` like: `doc-548-submit-a-pull-request-section-to-contribution-guide`
44 | 45 | ``` 46 | $ git checkout -b [name_of_your_new_branch] 47 | ``` 48 | 49 | 3. Work - commit - repeat ( be sure to be in your branch ) 50 | 51 | 4. Push changes to GitHub 52 | 53 | ``` 54 | $ git push origin [name_of_your_new_branch] 55 | ``` 56 | 57 | 5. Submit your changes for review 58 | If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button. 59 | 6. Start a Pull Request 60 | Now submit the pull request and click on `Create pull request`. 61 | 7. Get a code review approval/reject 62 | 8. After approval, merge your PR 63 | 9. GitHub will automatically delete the branch after the merge is done. (they can still be restored). 64 | 65 | ## Introducing New Features 66 | 67 | We would 💖 you to contribute to Utopia-php, but we would also like to make sure Utopia-php is as great as possible and loyal to its vision and mission statement 🙏. 68 | 69 | For us to find the right balance, please open an issue explaining your ideas before introducing a new pull request. 70 | 71 | This will allow the Utopia-php community to have sufficient discussion about the new feature value and how it fits in the product roadmap and vision. 72 | 73 | This is also important for the Utopia-php lead developers to be able to give technical input and different emphasis regarding the feature design and architecture. Some bigger features might need to go through our [RFC process](https://github.com/appwrite/rfc). 74 | 75 | ## Other Ways to Help 76 | 77 | Pull requests are great, but there are many other areas where you can help Utopia-php. 78 | 79 | ### Blogging & Speaking 80 | 81 | Blogging, speaking about, or creating tutorials about one of Utopia-php’s many features is great way to contribute and help our project grow. 82 | 83 | ### Presenting at Meetups 84 | 85 | Presenting at meetups and conferences about your Utopia-php projects. Your unique challenges and successes in building things with Utopia-php can provide great speaking material. We’d love to review your talk abstract/CFP, so get in touch with us if you’d like some help! 86 | 87 | ### Sending Feedbacks & Reporting Bugs 88 | 89 | Sending feedback is a great way for us to understand your different use cases of Utopia-php better. If you had any issues, bugs, or want to share about your experience, feel free to do so on our GitHub issues page or at our [Discord channel](https://discord.gg/GSeTUeA). 90 | 91 | ### Submitting New Ideas 92 | 93 | If you think Utopia-php could use a new feature, please open an issue on our GitHub repository, stating as much information as you can think about your new idea and it's implications. We would also use this issue to gather more information, get more feedback from the community, and have a proper discussion about the new feature. 94 | 95 | ### Improving Documentation 96 | 97 | Submitting documentation updates, enhancements, designs, or bug fixes. Spelling or grammar fixes will be very much appreciated. 98 | 99 | ### Helping Someone 100 | 101 | Searching for Utopia-php, GitHub or StackOverflow and helping someone else who needs help. You can also help by teaching others how to contribute to Utopia-php's repo! -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "f6ba1308ea2718200fc5c72cb61c93b1", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "amphp/amp", 12 | "version": "2.x-dev", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/amphp/amp.git", 16 | "reference": "c5ea79065f98f93f7b16a4d5a504fe5d69451447" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/amphp/amp/zipball/c5ea79065f98f93f7b16a4d5a504fe5d69451447", 21 | "reference": "c5ea79065f98f93f7b16a4d5a504fe5d69451447", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "php": ">=7.1" 26 | }, 27 | "require-dev": { 28 | "amphp/php-cs-fixer-config": "dev-master", 29 | "amphp/phpunit-util": "^1", 30 | "ext-json": "*", 31 | "jetbrains/phpstorm-stubs": "^2019.3", 32 | "phpunit/phpunit": "^7 | ^8 | ^9", 33 | "psalm/phar": "^3.11@dev", 34 | "react/promise": "^2" 35 | }, 36 | "type": "library", 37 | "extra": { 38 | "branch-alias": { 39 | "dev-master": "2.x-dev" 40 | } 41 | }, 42 | "autoload": { 43 | "files": [ 44 | "lib/functions.php", 45 | "lib/Internal/functions.php" 46 | ], 47 | "psr-4": { 48 | "Amp\\": "lib" 49 | } 50 | }, 51 | "notification-url": "https://packagist.org/downloads/", 52 | "license": [ 53 | "MIT" 54 | ], 55 | "authors": [ 56 | { 57 | "name": "Daniel Lowrey", 58 | "email": "rdlowrey@php.net" 59 | }, 60 | { 61 | "name": "Aaron Piotrowski", 62 | "email": "aaron@trowski.com" 63 | }, 64 | { 65 | "name": "Bob Weinand", 66 | "email": "bobwei9@hotmail.com" 67 | }, 68 | { 69 | "name": "Niklas Keller", 70 | "email": "me@kelunik.com" 71 | } 72 | ], 73 | "description": "A non-blocking concurrency framework for PHP applications.", 74 | "homepage": "https://amphp.org/amp", 75 | "keywords": [ 76 | "async", 77 | "asynchronous", 78 | "awaitable", 79 | "concurrency", 80 | "event", 81 | "event-loop", 82 | "future", 83 | "non-blocking", 84 | "promise" 85 | ], 86 | "support": { 87 | "irc": "irc://irc.freenode.org/amphp", 88 | "issues": "https://github.com/amphp/amp/issues", 89 | "source": "https://github.com/amphp/amp/tree/master" 90 | }, 91 | "funding": [ 92 | { 93 | "url": "https://github.com/amphp", 94 | "type": "github" 95 | } 96 | ], 97 | "time": "2022-08-21T11:55:21+00:00" 98 | }, 99 | { 100 | "name": "amphp/byte-stream", 101 | "version": "1.x-dev", 102 | "source": { 103 | "type": "git", 104 | "url": "https://github.com/amphp/byte-stream.git", 105 | "reference": "18f86b65129d923e004df27e2a3d6f4159c3c743" 106 | }, 107 | "dist": { 108 | "type": "zip", 109 | "url": "https://api.github.com/repos/amphp/byte-stream/zipball/18f86b65129d923e004df27e2a3d6f4159c3c743", 110 | "reference": "18f86b65129d923e004df27e2a3d6f4159c3c743", 111 | "shasum": "" 112 | }, 113 | "require": { 114 | "amphp/amp": "^2", 115 | "php": ">=7.1" 116 | }, 117 | "require-dev": { 118 | "amphp/php-cs-fixer-config": "dev-master", 119 | "amphp/phpunit-util": "^1.4", 120 | "friendsofphp/php-cs-fixer": "^2.3", 121 | "jetbrains/phpstorm-stubs": "^2019.3", 122 | "phpunit/phpunit": "^6 || ^7 || ^8", 123 | "psalm/phar": "^3.11.4" 124 | }, 125 | "type": "library", 126 | "extra": { 127 | "branch-alias": { 128 | "dev-master": "1.x-dev" 129 | } 130 | }, 131 | "autoload": { 132 | "files": [ 133 | "lib/functions.php" 134 | ], 135 | "psr-4": { 136 | "Amp\\ByteStream\\": "lib" 137 | } 138 | }, 139 | "notification-url": "https://packagist.org/downloads/", 140 | "license": [ 141 | "MIT" 142 | ], 143 | "authors": [ 144 | { 145 | "name": "Aaron Piotrowski", 146 | "email": "aaron@trowski.com" 147 | }, 148 | { 149 | "name": "Niklas Keller", 150 | "email": "me@kelunik.com" 151 | } 152 | ], 153 | "description": "A stream abstraction to make working with non-blocking I/O simple.", 154 | "homepage": "https://amphp.org/byte-stream", 155 | "keywords": [ 156 | "amp", 157 | "amphp", 158 | "async", 159 | "io", 160 | "non-blocking", 161 | "stream" 162 | ], 163 | "support": { 164 | "irc": "irc://irc.freenode.org/amphp", 165 | "issues": "https://github.com/amphp/byte-stream/issues", 166 | "source": "https://github.com/amphp/byte-stream/tree/master" 167 | }, 168 | "funding": [ 169 | { 170 | "url": "https://github.com/amphp", 171 | "type": "github" 172 | } 173 | ], 174 | "time": "2022-06-21T18:19:50+00:00" 175 | }, 176 | { 177 | "name": "composer/package-versions-deprecated", 178 | "version": "dev-master", 179 | "source": { 180 | "type": "git", 181 | "url": "https://github.com/composer/package-versions-deprecated.git", 182 | "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" 183 | }, 184 | "dist": { 185 | "type": "zip", 186 | "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", 187 | "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", 188 | "shasum": "" 189 | }, 190 | "require": { 191 | "composer-plugin-api": "^1.1.0 || ^2.0", 192 | "php": "^7 || ^8" 193 | }, 194 | "replace": { 195 | "ocramius/package-versions": "1.11.99" 196 | }, 197 | "require-dev": { 198 | "composer/composer": "^1.9.3 || ^2.0@dev", 199 | "ext-zip": "^1.13", 200 | "phpunit/phpunit": "^6.5 || ^7" 201 | }, 202 | "default-branch": true, 203 | "type": "composer-plugin", 204 | "extra": { 205 | "class": "PackageVersions\\Installer", 206 | "branch-alias": { 207 | "dev-master": "1.x-dev" 208 | } 209 | }, 210 | "autoload": { 211 | "psr-4": { 212 | "PackageVersions\\": "src/PackageVersions" 213 | } 214 | }, 215 | "notification-url": "https://packagist.org/downloads/", 216 | "license": [ 217 | "MIT" 218 | ], 219 | "authors": [ 220 | { 221 | "name": "Marco Pivetta", 222 | "email": "ocramius@gmail.com" 223 | }, 224 | { 225 | "name": "Jordi Boggiano", 226 | "email": "j.boggiano@seld.be" 227 | } 228 | ], 229 | "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", 230 | "support": { 231 | "issues": "https://github.com/composer/package-versions-deprecated/issues", 232 | "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" 233 | }, 234 | "funding": [ 235 | { 236 | "url": "https://packagist.com", 237 | "type": "custom" 238 | }, 239 | { 240 | "url": "https://github.com/composer", 241 | "type": "github" 242 | }, 243 | { 244 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 245 | "type": "tidelift" 246 | } 247 | ], 248 | "time": "2022-01-17T14:14:24+00:00" 249 | }, 250 | { 251 | "name": "composer/semver", 252 | "version": "dev-main", 253 | "source": { 254 | "type": "git", 255 | "url": "https://github.com/composer/semver.git", 256 | "reference": "fa1ec24f0ab1efe642671ec15c51a3ab879f59bf" 257 | }, 258 | "dist": { 259 | "type": "zip", 260 | "url": "https://api.github.com/repos/composer/semver/zipball/fa1ec24f0ab1efe642671ec15c51a3ab879f59bf", 261 | "reference": "fa1ec24f0ab1efe642671ec15c51a3ab879f59bf", 262 | "shasum": "" 263 | }, 264 | "require": { 265 | "php": "^5.3.2 || ^7.0 || ^8.0" 266 | }, 267 | "require-dev": { 268 | "phpstan/phpstan": "^1.4", 269 | "symfony/phpunit-bridge": "^4.2 || ^5" 270 | }, 271 | "default-branch": true, 272 | "type": "library", 273 | "extra": { 274 | "branch-alias": { 275 | "dev-main": "3.x-dev" 276 | } 277 | }, 278 | "autoload": { 279 | "psr-4": { 280 | "Composer\\Semver\\": "src" 281 | } 282 | }, 283 | "notification-url": "https://packagist.org/downloads/", 284 | "license": [ 285 | "MIT" 286 | ], 287 | "authors": [ 288 | { 289 | "name": "Nils Adermann", 290 | "email": "naderman@naderman.de", 291 | "homepage": "http://www.naderman.de" 292 | }, 293 | { 294 | "name": "Jordi Boggiano", 295 | "email": "j.boggiano@seld.be", 296 | "homepage": "http://seld.be" 297 | }, 298 | { 299 | "name": "Rob Bast", 300 | "email": "rob.bast@gmail.com", 301 | "homepage": "http://robbast.nl" 302 | } 303 | ], 304 | "description": "Semver library that offers utilities, version constraint parsing and validation.", 305 | "keywords": [ 306 | "semantic", 307 | "semver", 308 | "validation", 309 | "versioning" 310 | ], 311 | "support": { 312 | "irc": "ircs://irc.libera.chat:6697/composer", 313 | "issues": "https://github.com/composer/semver/issues", 314 | "source": "https://github.com/composer/semver/tree/main" 315 | }, 316 | "funding": [ 317 | { 318 | "url": "https://packagist.com", 319 | "type": "custom" 320 | }, 321 | { 322 | "url": "https://github.com/composer", 323 | "type": "github" 324 | }, 325 | { 326 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 327 | "type": "tidelift" 328 | } 329 | ], 330 | "time": "2023-01-13T15:47:53+00:00" 331 | }, 332 | { 333 | "name": "composer/xdebug-handler", 334 | "version": "1.4.x-dev", 335 | "source": { 336 | "type": "git", 337 | "url": "https://github.com/composer/xdebug-handler.git", 338 | "reference": "dee81bf97571cb7168019825ee9522e8dc2a5936" 339 | }, 340 | "dist": { 341 | "type": "zip", 342 | "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/dee81bf97571cb7168019825ee9522e8dc2a5936", 343 | "reference": "dee81bf97571cb7168019825ee9522e8dc2a5936", 344 | "shasum": "" 345 | }, 346 | "require": { 347 | "php": "^5.3.2 || ^7.0 || ^8.0", 348 | "psr/log": "^1.0" 349 | }, 350 | "require-dev": { 351 | "phpstan/phpstan": "^0.12.55", 352 | "symfony/phpunit-bridge": "^4.2 || ^5" 353 | }, 354 | "type": "library", 355 | "autoload": { 356 | "psr-4": { 357 | "Composer\\XdebugHandler\\": "src" 358 | } 359 | }, 360 | "notification-url": "https://packagist.org/downloads/", 361 | "license": [ 362 | "MIT" 363 | ], 364 | "authors": [ 365 | { 366 | "name": "John Stevenson", 367 | "email": "john-stevenson@blueyonder.co.uk" 368 | } 369 | ], 370 | "description": "Restarts a process without Xdebug.", 371 | "keywords": [ 372 | "Xdebug", 373 | "performance" 374 | ], 375 | "support": { 376 | "irc": "irc://irc.freenode.org/composer", 377 | "issues": "https://github.com/composer/xdebug-handler/issues", 378 | "source": "https://github.com/composer/xdebug-handler/tree/1.4" 379 | }, 380 | "funding": [ 381 | { 382 | "url": "https://packagist.com", 383 | "type": "custom" 384 | }, 385 | { 386 | "url": "https://github.com/composer", 387 | "type": "github" 388 | }, 389 | { 390 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 391 | "type": "tidelift" 392 | } 393 | ], 394 | "time": "2022-01-05T14:26:21+00:00" 395 | }, 396 | { 397 | "name": "dnoegel/php-xdg-base-dir", 398 | "version": "v0.1.1", 399 | "source": { 400 | "type": "git", 401 | "url": "https://github.com/dnoegel/php-xdg-base-dir.git", 402 | "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" 403 | }, 404 | "dist": { 405 | "type": "zip", 406 | "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", 407 | "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", 408 | "shasum": "" 409 | }, 410 | "require": { 411 | "php": ">=5.3.2" 412 | }, 413 | "require-dev": { 414 | "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" 415 | }, 416 | "type": "library", 417 | "autoload": { 418 | "psr-4": { 419 | "XdgBaseDir\\": "src/" 420 | } 421 | }, 422 | "notification-url": "https://packagist.org/downloads/", 423 | "license": [ 424 | "MIT" 425 | ], 426 | "description": "implementation of xdg base directory specification for php", 427 | "support": { 428 | "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues", 429 | "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1" 430 | }, 431 | "time": "2019-12-04T15:06:13+00:00" 432 | }, 433 | { 434 | "name": "doctrine/deprecations", 435 | "version": "v1.0.0", 436 | "source": { 437 | "type": "git", 438 | "url": "https://github.com/doctrine/deprecations.git", 439 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" 440 | }, 441 | "dist": { 442 | "type": "zip", 443 | "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", 444 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", 445 | "shasum": "" 446 | }, 447 | "require": { 448 | "php": "^7.1|^8.0" 449 | }, 450 | "require-dev": { 451 | "doctrine/coding-standard": "^9", 452 | "phpunit/phpunit": "^7.5|^8.5|^9.5", 453 | "psr/log": "^1|^2|^3" 454 | }, 455 | "suggest": { 456 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" 457 | }, 458 | "type": "library", 459 | "autoload": { 460 | "psr-4": { 461 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" 462 | } 463 | }, 464 | "notification-url": "https://packagist.org/downloads/", 465 | "license": [ 466 | "MIT" 467 | ], 468 | "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", 469 | "homepage": "https://www.doctrine-project.org/", 470 | "support": { 471 | "issues": "https://github.com/doctrine/deprecations/issues", 472 | "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" 473 | }, 474 | "time": "2022-05-02T15:47:09+00:00" 475 | }, 476 | { 477 | "name": "doctrine/instantiator", 478 | "version": "2.0.x-dev", 479 | "source": { 480 | "type": "git", 481 | "url": "https://github.com/doctrine/instantiator.git", 482 | "reference": "d6eef505a6c46e963e54bf73bb9de43cdea70821" 483 | }, 484 | "dist": { 485 | "type": "zip", 486 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d6eef505a6c46e963e54bf73bb9de43cdea70821", 487 | "reference": "d6eef505a6c46e963e54bf73bb9de43cdea70821", 488 | "shasum": "" 489 | }, 490 | "require": { 491 | "php": "^8.1" 492 | }, 493 | "require-dev": { 494 | "doctrine/coding-standard": "^11", 495 | "ext-pdo": "*", 496 | "ext-phar": "*", 497 | "phpbench/phpbench": "^1.2", 498 | "phpstan/phpstan": "^1.9.4", 499 | "phpstan/phpstan-phpunit": "^1.3", 500 | "phpunit/phpunit": "^9.5.27", 501 | "vimeo/psalm": "^5.4" 502 | }, 503 | "default-branch": true, 504 | "type": "library", 505 | "autoload": { 506 | "psr-4": { 507 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 508 | } 509 | }, 510 | "notification-url": "https://packagist.org/downloads/", 511 | "license": [ 512 | "MIT" 513 | ], 514 | "authors": [ 515 | { 516 | "name": "Marco Pivetta", 517 | "email": "ocramius@gmail.com", 518 | "homepage": "https://ocramius.github.io/" 519 | } 520 | ], 521 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 522 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", 523 | "keywords": [ 524 | "constructor", 525 | "instantiate" 526 | ], 527 | "support": { 528 | "issues": "https://github.com/doctrine/instantiator/issues", 529 | "source": "https://github.com/doctrine/instantiator/tree/2.0.x" 530 | }, 531 | "funding": [ 532 | { 533 | "url": "https://www.doctrine-project.org/sponsorship.html", 534 | "type": "custom" 535 | }, 536 | { 537 | "url": "https://www.patreon.com/phpdoctrine", 538 | "type": "patreon" 539 | }, 540 | { 541 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", 542 | "type": "tidelift" 543 | } 544 | ], 545 | "time": "2023-01-04T15:42:40+00:00" 546 | }, 547 | { 548 | "name": "felixfbecker/advanced-json-rpc", 549 | "version": "v3.2.1", 550 | "source": { 551 | "type": "git", 552 | "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", 553 | "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447" 554 | }, 555 | "dist": { 556 | "type": "zip", 557 | "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447", 558 | "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447", 559 | "shasum": "" 560 | }, 561 | "require": { 562 | "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", 563 | "php": "^7.1 || ^8.0", 564 | "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0" 565 | }, 566 | "require-dev": { 567 | "phpunit/phpunit": "^7.0 || ^8.0" 568 | }, 569 | "type": "library", 570 | "autoload": { 571 | "psr-4": { 572 | "AdvancedJsonRpc\\": "lib/" 573 | } 574 | }, 575 | "notification-url": "https://packagist.org/downloads/", 576 | "license": [ 577 | "ISC" 578 | ], 579 | "authors": [ 580 | { 581 | "name": "Felix Becker", 582 | "email": "felix.b@outlook.com" 583 | } 584 | ], 585 | "description": "A more advanced JSONRPC implementation", 586 | "support": { 587 | "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues", 588 | "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1" 589 | }, 590 | "time": "2021-06-11T22:34:44+00:00" 591 | }, 592 | { 593 | "name": "felixfbecker/language-server-protocol", 594 | "version": "dev-master", 595 | "source": { 596 | "type": "git", 597 | "url": "https://github.com/felixfbecker/php-language-server-protocol.git", 598 | "reference": "ae4c490773bb0d21ca6f5e08a737506f44e175ea" 599 | }, 600 | "dist": { 601 | "type": "zip", 602 | "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/ae4c490773bb0d21ca6f5e08a737506f44e175ea", 603 | "reference": "ae4c490773bb0d21ca6f5e08a737506f44e175ea", 604 | "shasum": "" 605 | }, 606 | "require": { 607 | "php": ">=7.1" 608 | }, 609 | "require-dev": { 610 | "phpstan/phpstan": "*", 611 | "squizlabs/php_codesniffer": "^3.1", 612 | "vimeo/psalm": "^4.0" 613 | }, 614 | "default-branch": true, 615 | "type": "library", 616 | "extra": { 617 | "branch-alias": { 618 | "dev-master": "1.x-dev" 619 | } 620 | }, 621 | "autoload": { 622 | "psr-4": { 623 | "LanguageServerProtocol\\": "src/" 624 | } 625 | }, 626 | "notification-url": "https://packagist.org/downloads/", 627 | "license": [ 628 | "ISC" 629 | ], 630 | "authors": [ 631 | { 632 | "name": "Felix Becker", 633 | "email": "felix.b@outlook.com" 634 | } 635 | ], 636 | "description": "PHP classes for the Language Server Protocol", 637 | "keywords": [ 638 | "language", 639 | "microsoft", 640 | "php", 641 | "server" 642 | ], 643 | "support": { 644 | "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues", 645 | "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/master" 646 | }, 647 | "time": "2022-06-19T17:15:06+00:00" 648 | }, 649 | { 650 | "name": "laravel/pint", 651 | "version": "v1.2.1", 652 | "source": { 653 | "type": "git", 654 | "url": "https://github.com/laravel/pint.git", 655 | "reference": "e60e2112ee779ce60f253695b273d1646a17d6f1" 656 | }, 657 | "dist": { 658 | "type": "zip", 659 | "url": "https://api.github.com/repos/laravel/pint/zipball/e60e2112ee779ce60f253695b273d1646a17d6f1", 660 | "reference": "e60e2112ee779ce60f253695b273d1646a17d6f1", 661 | "shasum": "" 662 | }, 663 | "require": { 664 | "ext-json": "*", 665 | "ext-mbstring": "*", 666 | "ext-tokenizer": "*", 667 | "ext-xml": "*", 668 | "php": "^8.0" 669 | }, 670 | "require-dev": { 671 | "friendsofphp/php-cs-fixer": "^3.11.0", 672 | "illuminate/view": "^9.32.0", 673 | "laravel-zero/framework": "^9.2.0", 674 | "mockery/mockery": "^1.5.1", 675 | "nunomaduro/larastan": "^2.2.0", 676 | "nunomaduro/termwind": "^1.14.0", 677 | "pestphp/pest": "^1.22.1" 678 | }, 679 | "bin": [ 680 | "builds/pint" 681 | ], 682 | "type": "project", 683 | "autoload": { 684 | "psr-4": { 685 | "App\\": "app/", 686 | "Database\\Seeders\\": "database/seeders/", 687 | "Database\\Factories\\": "database/factories/" 688 | } 689 | }, 690 | "notification-url": "https://packagist.org/downloads/", 691 | "license": [ 692 | "MIT" 693 | ], 694 | "authors": [ 695 | { 696 | "name": "Nuno Maduro", 697 | "email": "enunomaduro@gmail.com" 698 | } 699 | ], 700 | "description": "An opinionated code formatter for PHP.", 701 | "homepage": "https://laravel.com", 702 | "keywords": [ 703 | "format", 704 | "formatter", 705 | "lint", 706 | "linter", 707 | "php" 708 | ], 709 | "support": { 710 | "issues": "https://github.com/laravel/pint/issues", 711 | "source": "https://github.com/laravel/pint" 712 | }, 713 | "time": "2022-11-29T16:25:20+00:00" 714 | }, 715 | { 716 | "name": "myclabs/deep-copy", 717 | "version": "1.x-dev", 718 | "source": { 719 | "type": "git", 720 | "url": "https://github.com/myclabs/DeepCopy.git", 721 | "reference": "928a96f585b86224ebc78f8f09d0482cf15b04f5" 722 | }, 723 | "dist": { 724 | "type": "zip", 725 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/928a96f585b86224ebc78f8f09d0482cf15b04f5", 726 | "reference": "928a96f585b86224ebc78f8f09d0482cf15b04f5", 727 | "shasum": "" 728 | }, 729 | "require": { 730 | "php": "^7.1 || ^8.0" 731 | }, 732 | "conflict": { 733 | "doctrine/collections": "<1.6.8", 734 | "doctrine/common": "<2.13.3 || >=3 <3.2.2" 735 | }, 736 | "require-dev": { 737 | "doctrine/collections": "^1.6.8", 738 | "doctrine/common": "^2.13.3 || ^3.2.2", 739 | "phpspec/prophecy": "^1.10", 740 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" 741 | }, 742 | "default-branch": true, 743 | "type": "library", 744 | "autoload": { 745 | "files": [ 746 | "src/DeepCopy/deep_copy.php" 747 | ], 748 | "psr-4": { 749 | "DeepCopy\\": "src/DeepCopy/" 750 | } 751 | }, 752 | "notification-url": "https://packagist.org/downloads/", 753 | "license": [ 754 | "MIT" 755 | ], 756 | "description": "Create deep copies (clones) of your objects", 757 | "keywords": [ 758 | "clone", 759 | "copy", 760 | "duplicate", 761 | "object", 762 | "object graph" 763 | ], 764 | "support": { 765 | "issues": "https://github.com/myclabs/DeepCopy/issues", 766 | "source": "https://github.com/myclabs/DeepCopy/tree/1.x" 767 | }, 768 | "funding": [ 769 | { 770 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", 771 | "type": "tidelift" 772 | } 773 | ], 774 | "time": "2023-03-08T17:24:01+00:00" 775 | }, 776 | { 777 | "name": "netresearch/jsonmapper", 778 | "version": "v3.1.1", 779 | "source": { 780 | "type": "git", 781 | "url": "https://github.com/cweiske/jsonmapper.git", 782 | "reference": "ba09f0e456d4f00cef84e012da5715625594407c" 783 | }, 784 | "dist": { 785 | "type": "zip", 786 | "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/ba09f0e456d4f00cef84e012da5715625594407c", 787 | "reference": "ba09f0e456d4f00cef84e012da5715625594407c", 788 | "shasum": "" 789 | }, 790 | "require": { 791 | "ext-json": "*", 792 | "ext-pcre": "*", 793 | "ext-reflection": "*", 794 | "ext-spl": "*", 795 | "php": ">=5.6" 796 | }, 797 | "require-dev": { 798 | "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0", 799 | "squizlabs/php_codesniffer": "~3.5" 800 | }, 801 | "type": "library", 802 | "autoload": { 803 | "psr-0": { 804 | "JsonMapper": "src/" 805 | } 806 | }, 807 | "notification-url": "https://packagist.org/downloads/", 808 | "license": [ 809 | "OSL-3.0" 810 | ], 811 | "authors": [ 812 | { 813 | "name": "Christian Weiske", 814 | "email": "cweiske@cweiske.de", 815 | "homepage": "http://github.com/cweiske/jsonmapper/", 816 | "role": "Developer" 817 | } 818 | ], 819 | "description": "Map nested JSON structures onto PHP classes", 820 | "support": { 821 | "email": "cweiske@cweiske.de", 822 | "issues": "https://github.com/cweiske/jsonmapper/issues", 823 | "source": "https://github.com/cweiske/jsonmapper/tree/v3.1.1" 824 | }, 825 | "time": "2020-11-02T19:19:54+00:00" 826 | }, 827 | { 828 | "name": "nikic/php-parser", 829 | "version": "4.x-dev", 830 | "source": { 831 | "type": "git", 832 | "url": "https://github.com/nikic/PHP-Parser.git", 833 | "reference": "0ffddce52d816f72d0efc4d9b02e276d3309ef01" 834 | }, 835 | "dist": { 836 | "type": "zip", 837 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ffddce52d816f72d0efc4d9b02e276d3309ef01", 838 | "reference": "0ffddce52d816f72d0efc4d9b02e276d3309ef01", 839 | "shasum": "" 840 | }, 841 | "require": { 842 | "ext-tokenizer": "*", 843 | "php": ">=7.0" 844 | }, 845 | "require-dev": { 846 | "ircmaxell/php-yacc": "^0.0.7", 847 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" 848 | }, 849 | "default-branch": true, 850 | "bin": [ 851 | "bin/php-parse" 852 | ], 853 | "type": "library", 854 | "extra": { 855 | "branch-alias": { 856 | "dev-master": "4.9-dev" 857 | } 858 | }, 859 | "autoload": { 860 | "psr-4": { 861 | "PhpParser\\": "lib/PhpParser" 862 | } 863 | }, 864 | "notification-url": "https://packagist.org/downloads/", 865 | "license": [ 866 | "BSD-3-Clause" 867 | ], 868 | "authors": [ 869 | { 870 | "name": "Nikita Popov" 871 | } 872 | ], 873 | "description": "A PHP parser written in PHP", 874 | "keywords": [ 875 | "parser", 876 | "php" 877 | ], 878 | "support": { 879 | "issues": "https://github.com/nikic/PHP-Parser/issues", 880 | "source": "https://github.com/nikic/PHP-Parser/tree/4.x" 881 | }, 882 | "time": "2023-03-06T22:12:36+00:00" 883 | }, 884 | { 885 | "name": "openlss/lib-array2xml", 886 | "version": "1.0.0", 887 | "source": { 888 | "type": "git", 889 | "url": "https://github.com/nullivex/lib-array2xml.git", 890 | "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90" 891 | }, 892 | "dist": { 893 | "type": "zip", 894 | "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", 895 | "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", 896 | "shasum": "" 897 | }, 898 | "require": { 899 | "php": ">=5.3.2" 900 | }, 901 | "type": "library", 902 | "autoload": { 903 | "psr-0": { 904 | "LSS": "" 905 | } 906 | }, 907 | "notification-url": "https://packagist.org/downloads/", 908 | "license": [ 909 | "Apache-2.0" 910 | ], 911 | "authors": [ 912 | { 913 | "name": "Bryan Tong", 914 | "email": "bryan@nullivex.com", 915 | "homepage": "https://www.nullivex.com" 916 | }, 917 | { 918 | "name": "Tony Butler", 919 | "email": "spudz76@gmail.com", 920 | "homepage": "https://www.nullivex.com" 921 | } 922 | ], 923 | "description": "Array2XML conversion library credit to lalit.org", 924 | "homepage": "https://www.nullivex.com", 925 | "keywords": [ 926 | "array", 927 | "array conversion", 928 | "xml", 929 | "xml conversion" 930 | ], 931 | "support": { 932 | "issues": "https://github.com/nullivex/lib-array2xml/issues", 933 | "source": "https://github.com/nullivex/lib-array2xml/tree/master" 934 | }, 935 | "time": "2019-03-29T20:06:56+00:00" 936 | }, 937 | { 938 | "name": "phar-io/manifest", 939 | "version": "dev-master", 940 | "source": { 941 | "type": "git", 942 | "url": "https://github.com/phar-io/manifest.git", 943 | "reference": "36d8a21e851a9512db2b086dc5ac2c61308f0138" 944 | }, 945 | "dist": { 946 | "type": "zip", 947 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/36d8a21e851a9512db2b086dc5ac2c61308f0138", 948 | "reference": "36d8a21e851a9512db2b086dc5ac2c61308f0138", 949 | "shasum": "" 950 | }, 951 | "require": { 952 | "ext-dom": "*", 953 | "ext-libxml": "*", 954 | "ext-phar": "*", 955 | "ext-xmlwriter": "*", 956 | "phar-io/version": "^3.0.1", 957 | "php": "^7.2 || ^8.0" 958 | }, 959 | "default-branch": true, 960 | "type": "library", 961 | "extra": { 962 | "branch-alias": { 963 | "dev-master": "2.0.x-dev" 964 | } 965 | }, 966 | "autoload": { 967 | "classmap": [ 968 | "src/" 969 | ] 970 | }, 971 | "notification-url": "https://packagist.org/downloads/", 972 | "license": [ 973 | "BSD-3-Clause" 974 | ], 975 | "authors": [ 976 | { 977 | "name": "Arne Blankerts", 978 | "email": "arne@blankerts.de", 979 | "role": "Developer" 980 | }, 981 | { 982 | "name": "Sebastian Heuer", 983 | "email": "sebastian@phpeople.de", 984 | "role": "Developer" 985 | }, 986 | { 987 | "name": "Sebastian Bergmann", 988 | "email": "sebastian@phpunit.de", 989 | "role": "Developer" 990 | } 991 | ], 992 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", 993 | "support": { 994 | "issues": "https://github.com/phar-io/manifest/issues", 995 | "source": "https://github.com/phar-io/manifest/tree/master" 996 | }, 997 | "funding": [ 998 | { 999 | "url": "https://github.com/theseer", 1000 | "type": "github" 1001 | } 1002 | ], 1003 | "time": "2022-02-21T19:55:33+00:00" 1004 | }, 1005 | { 1006 | "name": "phar-io/version", 1007 | "version": "3.2.1", 1008 | "source": { 1009 | "type": "git", 1010 | "url": "https://github.com/phar-io/version.git", 1011 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" 1012 | }, 1013 | "dist": { 1014 | "type": "zip", 1015 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 1016 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", 1017 | "shasum": "" 1018 | }, 1019 | "require": { 1020 | "php": "^7.2 || ^8.0" 1021 | }, 1022 | "type": "library", 1023 | "autoload": { 1024 | "classmap": [ 1025 | "src/" 1026 | ] 1027 | }, 1028 | "notification-url": "https://packagist.org/downloads/", 1029 | "license": [ 1030 | "BSD-3-Clause" 1031 | ], 1032 | "authors": [ 1033 | { 1034 | "name": "Arne Blankerts", 1035 | "email": "arne@blankerts.de", 1036 | "role": "Developer" 1037 | }, 1038 | { 1039 | "name": "Sebastian Heuer", 1040 | "email": "sebastian@phpeople.de", 1041 | "role": "Developer" 1042 | }, 1043 | { 1044 | "name": "Sebastian Bergmann", 1045 | "email": "sebastian@phpunit.de", 1046 | "role": "Developer" 1047 | } 1048 | ], 1049 | "description": "Library for handling version information and constraints", 1050 | "support": { 1051 | "issues": "https://github.com/phar-io/version/issues", 1052 | "source": "https://github.com/phar-io/version/tree/3.2.1" 1053 | }, 1054 | "time": "2022-02-21T01:04:05+00:00" 1055 | }, 1056 | { 1057 | "name": "phpdocumentor/reflection-common", 1058 | "version": "dev-master", 1059 | "source": { 1060 | "type": "git", 1061 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git", 1062 | "reference": "a0eeab580cbdf4414fef6978732510a36ed0a9d6" 1063 | }, 1064 | "dist": { 1065 | "type": "zip", 1066 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/a0eeab580cbdf4414fef6978732510a36ed0a9d6", 1067 | "reference": "a0eeab580cbdf4414fef6978732510a36ed0a9d6", 1068 | "shasum": "" 1069 | }, 1070 | "require": { 1071 | "php": ">=7.1" 1072 | }, 1073 | "type": "library", 1074 | "extra": { 1075 | "branch-alias": { 1076 | "dev-master": "2.x-dev" 1077 | } 1078 | }, 1079 | "autoload": { 1080 | "psr-4": { 1081 | "phpDocumentor\\Reflection\\": "src/" 1082 | } 1083 | }, 1084 | "notification-url": "https://packagist.org/downloads/", 1085 | "license": [ 1086 | "MIT" 1087 | ], 1088 | "authors": [ 1089 | { 1090 | "name": "Jaap van Otterdijk", 1091 | "email": "opensource@ijaap.nl" 1092 | } 1093 | ], 1094 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure", 1095 | "homepage": "http://www.phpdoc.org", 1096 | "keywords": [ 1097 | "FQSEN", 1098 | "phpDocumentor", 1099 | "phpdoc", 1100 | "reflection", 1101 | "static analysis" 1102 | ], 1103 | "support": { 1104 | "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", 1105 | "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/master" 1106 | }, 1107 | "time": "2021-06-25T13:47:51+00:00" 1108 | }, 1109 | { 1110 | "name": "phpdocumentor/reflection-docblock", 1111 | "version": "dev-master", 1112 | "source": { 1113 | "type": "git", 1114 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 1115 | "reference": "7b217217725dc991a0ae7b995041cee1d5019561" 1116 | }, 1117 | "dist": { 1118 | "type": "zip", 1119 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/7b217217725dc991a0ae7b995041cee1d5019561", 1120 | "reference": "7b217217725dc991a0ae7b995041cee1d5019561", 1121 | "shasum": "" 1122 | }, 1123 | "require": { 1124 | "ext-filter": "*", 1125 | "php": "^7.2 || ^8.0", 1126 | "phpdocumentor/reflection-common": "^2.2", 1127 | "phpdocumentor/type-resolver": "1.x-dev@dev", 1128 | "phpstan/phpdoc-parser": "^1.7", 1129 | "webmozart/assert": "^1.9.1" 1130 | }, 1131 | "require-dev": { 1132 | "mockery/mockery": "~1.3.5", 1133 | "phpstan/extension-installer": "^1.1", 1134 | "phpstan/phpstan": "^1.8", 1135 | "phpstan/phpstan-mockery": "^1.1", 1136 | "phpstan/phpstan-webmozart-assert": "^1.2", 1137 | "phpunit/phpunit": "^9.5", 1138 | "vimeo/psalm": "^4.26" 1139 | }, 1140 | "default-branch": true, 1141 | "type": "library", 1142 | "extra": { 1143 | "branch-alias": { 1144 | "dev-master": "5.x-dev" 1145 | } 1146 | }, 1147 | "autoload": { 1148 | "psr-4": { 1149 | "phpDocumentor\\Reflection\\": "src" 1150 | } 1151 | }, 1152 | "notification-url": "https://packagist.org/downloads/", 1153 | "license": [ 1154 | "MIT" 1155 | ], 1156 | "authors": [ 1157 | { 1158 | "name": "Mike van Riel", 1159 | "email": "me@mikevanriel.com" 1160 | }, 1161 | { 1162 | "name": "Jaap van Otterdijk", 1163 | "email": "account@ijaap.nl" 1164 | } 1165 | ], 1166 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", 1167 | "support": { 1168 | "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", 1169 | "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" 1170 | }, 1171 | "time": "2023-03-12T10:50:44+00:00" 1172 | }, 1173 | { 1174 | "name": "phpdocumentor/type-resolver", 1175 | "version": "1.x-dev", 1176 | "source": { 1177 | "type": "git", 1178 | "url": "https://github.com/phpDocumentor/TypeResolver.git", 1179 | "reference": "dfc078e8af9c99210337325ff5aa152872c98714" 1180 | }, 1181 | "dist": { 1182 | "type": "zip", 1183 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714", 1184 | "reference": "dfc078e8af9c99210337325ff5aa152872c98714", 1185 | "shasum": "" 1186 | }, 1187 | "require": { 1188 | "doctrine/deprecations": "^1.0", 1189 | "php": "^7.4 || ^8.0", 1190 | "phpdocumentor/reflection-common": "^2.0", 1191 | "phpstan/phpdoc-parser": "^1.13" 1192 | }, 1193 | "require-dev": { 1194 | "ext-tokenizer": "*", 1195 | "phpbench/phpbench": "^1.2", 1196 | "phpstan/extension-installer": "^1.1", 1197 | "phpstan/phpstan": "^1.8", 1198 | "phpstan/phpstan-phpunit": "^1.1", 1199 | "phpunit/phpunit": "^9.5", 1200 | "rector/rector": "^0.13.9", 1201 | "vimeo/psalm": "^4.25" 1202 | }, 1203 | "default-branch": true, 1204 | "type": "library", 1205 | "extra": { 1206 | "branch-alias": { 1207 | "dev-1.x": "1.x-dev" 1208 | } 1209 | }, 1210 | "autoload": { 1211 | "psr-4": { 1212 | "phpDocumentor\\Reflection\\": "src" 1213 | } 1214 | }, 1215 | "notification-url": "https://packagist.org/downloads/", 1216 | "license": [ 1217 | "MIT" 1218 | ], 1219 | "authors": [ 1220 | { 1221 | "name": "Mike van Riel", 1222 | "email": "me@mikevanriel.com" 1223 | } 1224 | ], 1225 | "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", 1226 | "support": { 1227 | "issues": "https://github.com/phpDocumentor/TypeResolver/issues", 1228 | "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1" 1229 | }, 1230 | "time": "2023-03-27T19:02:04+00:00" 1231 | }, 1232 | { 1233 | "name": "phpstan/phpdoc-parser", 1234 | "version": "1.18.0", 1235 | "source": { 1236 | "type": "git", 1237 | "url": "https://github.com/phpstan/phpdoc-parser.git", 1238 | "reference": "882eabc9b6a12e25c27091a261397f9c8792e722" 1239 | }, 1240 | "dist": { 1241 | "type": "zip", 1242 | "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/882eabc9b6a12e25c27091a261397f9c8792e722", 1243 | "reference": "882eabc9b6a12e25c27091a261397f9c8792e722", 1244 | "shasum": "" 1245 | }, 1246 | "require": { 1247 | "php": "^7.2 || ^8.0" 1248 | }, 1249 | "require-dev": { 1250 | "php-parallel-lint/php-parallel-lint": "^1.2", 1251 | "phpstan/extension-installer": "^1.0", 1252 | "phpstan/phpstan": "^1.5", 1253 | "phpstan/phpstan-phpunit": "^1.1", 1254 | "phpstan/phpstan-strict-rules": "^1.0", 1255 | "phpunit/phpunit": "^9.5", 1256 | "symfony/process": "^5.2" 1257 | }, 1258 | "type": "library", 1259 | "autoload": { 1260 | "psr-4": { 1261 | "PHPStan\\PhpDocParser\\": [ 1262 | "src/" 1263 | ] 1264 | } 1265 | }, 1266 | "notification-url": "https://packagist.org/downloads/", 1267 | "license": [ 1268 | "MIT" 1269 | ], 1270 | "description": "PHPDoc parser with support for nullable, intersection and generic types", 1271 | "support": { 1272 | "issues": "https://github.com/phpstan/phpdoc-parser/issues", 1273 | "source": "https://github.com/phpstan/phpdoc-parser/tree/1.18.0" 1274 | }, 1275 | "time": "2023-04-06T07:26:43+00:00" 1276 | }, 1277 | { 1278 | "name": "phpstan/phpstan", 1279 | "version": "1.9.x-dev", 1280 | "source": { 1281 | "type": "git", 1282 | "url": "https://github.com/phpstan/phpstan.git", 1283 | "reference": "6c0217aa2b146c3e28474e8be3e87188fac55dac" 1284 | }, 1285 | "dist": { 1286 | "type": "zip", 1287 | "url": "https://api.github.com/repos/phpstan/phpstan/zipball/6c0217aa2b146c3e28474e8be3e87188fac55dac", 1288 | "reference": "6c0217aa2b146c3e28474e8be3e87188fac55dac", 1289 | "shasum": "" 1290 | }, 1291 | "require": { 1292 | "php": "^7.2|^8.0" 1293 | }, 1294 | "conflict": { 1295 | "phpstan/phpstan-shim": "*" 1296 | }, 1297 | "bin": [ 1298 | "phpstan", 1299 | "phpstan.phar" 1300 | ], 1301 | "type": "library", 1302 | "autoload": { 1303 | "files": [ 1304 | "bootstrap.php" 1305 | ] 1306 | }, 1307 | "notification-url": "https://packagist.org/downloads/", 1308 | "license": [ 1309 | "MIT" 1310 | ], 1311 | "description": "PHPStan - PHP Static Analysis Tool", 1312 | "keywords": [ 1313 | "dev", 1314 | "static analysis" 1315 | ], 1316 | "support": { 1317 | "issues": "https://github.com/phpstan/phpstan/issues", 1318 | "source": "https://github.com/phpstan/phpstan/tree/1.9.x" 1319 | }, 1320 | "funding": [ 1321 | { 1322 | "url": "https://github.com/ondrejmirtes", 1323 | "type": "github" 1324 | }, 1325 | { 1326 | "url": "https://github.com/phpstan", 1327 | "type": "github" 1328 | }, 1329 | { 1330 | "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", 1331 | "type": "tidelift" 1332 | } 1333 | ], 1334 | "time": "2023-02-18T15:01:46+00:00" 1335 | }, 1336 | { 1337 | "name": "phpunit/php-code-coverage", 1338 | "version": "9.2.x-dev", 1339 | "source": { 1340 | "type": "git", 1341 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 1342 | "reference": "db887088b40ae43d17b9913886df860a7035145d" 1343 | }, 1344 | "dist": { 1345 | "type": "zip", 1346 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/db887088b40ae43d17b9913886df860a7035145d", 1347 | "reference": "db887088b40ae43d17b9913886df860a7035145d", 1348 | "shasum": "" 1349 | }, 1350 | "require": { 1351 | "ext-dom": "*", 1352 | "ext-libxml": "*", 1353 | "ext-xmlwriter": "*", 1354 | "nikic/php-parser": "^4.15", 1355 | "php": ">=7.3", 1356 | "phpunit/php-file-iterator": "^3.0.3", 1357 | "phpunit/php-text-template": "^2.0.2", 1358 | "sebastian/code-unit-reverse-lookup": "^2.0.2", 1359 | "sebastian/complexity": "^2.0", 1360 | "sebastian/environment": "^5.1.2", 1361 | "sebastian/lines-of-code": "^1.0.3", 1362 | "sebastian/version": "^3.0.1", 1363 | "theseer/tokenizer": "^1.2.0" 1364 | }, 1365 | "require-dev": { 1366 | "phpunit/phpunit": "^9.3" 1367 | }, 1368 | "suggest": { 1369 | "ext-pcov": "PHP extension that provides line coverage", 1370 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" 1371 | }, 1372 | "type": "library", 1373 | "extra": { 1374 | "branch-alias": { 1375 | "dev-master": "9.2-dev" 1376 | } 1377 | }, 1378 | "autoload": { 1379 | "classmap": [ 1380 | "src/" 1381 | ] 1382 | }, 1383 | "notification-url": "https://packagist.org/downloads/", 1384 | "license": [ 1385 | "BSD-3-Clause" 1386 | ], 1387 | "authors": [ 1388 | { 1389 | "name": "Sebastian Bergmann", 1390 | "email": "sebastian@phpunit.de", 1391 | "role": "lead" 1392 | } 1393 | ], 1394 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 1395 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 1396 | "keywords": [ 1397 | "coverage", 1398 | "testing", 1399 | "xunit" 1400 | ], 1401 | "support": { 1402 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 1403 | "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", 1404 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2" 1405 | }, 1406 | "funding": [ 1407 | { 1408 | "url": "https://github.com/sebastianbergmann", 1409 | "type": "github" 1410 | } 1411 | ], 1412 | "time": "2023-04-04T09:22:25+00:00" 1413 | }, 1414 | { 1415 | "name": "phpunit/php-file-iterator", 1416 | "version": "3.0.x-dev", 1417 | "source": { 1418 | "type": "git", 1419 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 1420 | "reference": "38b24367e1b340aa78b96d7cab042942d917bb84" 1421 | }, 1422 | "dist": { 1423 | "type": "zip", 1424 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/38b24367e1b340aa78b96d7cab042942d917bb84", 1425 | "reference": "38b24367e1b340aa78b96d7cab042942d917bb84", 1426 | "shasum": "" 1427 | }, 1428 | "require": { 1429 | "php": ">=7.3" 1430 | }, 1431 | "require-dev": { 1432 | "phpunit/phpunit": "^9.3" 1433 | }, 1434 | "type": "library", 1435 | "extra": { 1436 | "branch-alias": { 1437 | "dev-master": "3.0-dev" 1438 | } 1439 | }, 1440 | "autoload": { 1441 | "classmap": [ 1442 | "src/" 1443 | ] 1444 | }, 1445 | "notification-url": "https://packagist.org/downloads/", 1446 | "license": [ 1447 | "BSD-3-Clause" 1448 | ], 1449 | "authors": [ 1450 | { 1451 | "name": "Sebastian Bergmann", 1452 | "email": "sebastian@phpunit.de", 1453 | "role": "lead" 1454 | } 1455 | ], 1456 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 1457 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 1458 | "keywords": [ 1459 | "filesystem", 1460 | "iterator" 1461 | ], 1462 | "support": { 1463 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", 1464 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0" 1465 | }, 1466 | "funding": [ 1467 | { 1468 | "url": "https://github.com/sebastianbergmann", 1469 | "type": "github" 1470 | } 1471 | ], 1472 | "time": "2022-02-11T16:23:04+00:00" 1473 | }, 1474 | { 1475 | "name": "phpunit/php-invoker", 1476 | "version": "3.1.1", 1477 | "source": { 1478 | "type": "git", 1479 | "url": "https://github.com/sebastianbergmann/php-invoker.git", 1480 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" 1481 | }, 1482 | "dist": { 1483 | "type": "zip", 1484 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 1485 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", 1486 | "shasum": "" 1487 | }, 1488 | "require": { 1489 | "php": ">=7.3" 1490 | }, 1491 | "require-dev": { 1492 | "ext-pcntl": "*", 1493 | "phpunit/phpunit": "^9.3" 1494 | }, 1495 | "suggest": { 1496 | "ext-pcntl": "*" 1497 | }, 1498 | "type": "library", 1499 | "extra": { 1500 | "branch-alias": { 1501 | "dev-master": "3.1-dev" 1502 | } 1503 | }, 1504 | "autoload": { 1505 | "classmap": [ 1506 | "src/" 1507 | ] 1508 | }, 1509 | "notification-url": "https://packagist.org/downloads/", 1510 | "license": [ 1511 | "BSD-3-Clause" 1512 | ], 1513 | "authors": [ 1514 | { 1515 | "name": "Sebastian Bergmann", 1516 | "email": "sebastian@phpunit.de", 1517 | "role": "lead" 1518 | } 1519 | ], 1520 | "description": "Invoke callables with a timeout", 1521 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", 1522 | "keywords": [ 1523 | "process" 1524 | ], 1525 | "support": { 1526 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", 1527 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" 1528 | }, 1529 | "funding": [ 1530 | { 1531 | "url": "https://github.com/sebastianbergmann", 1532 | "type": "github" 1533 | } 1534 | ], 1535 | "time": "2020-09-28T05:58:55+00:00" 1536 | }, 1537 | { 1538 | "name": "phpunit/php-text-template", 1539 | "version": "2.0.4", 1540 | "source": { 1541 | "type": "git", 1542 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 1543 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" 1544 | }, 1545 | "dist": { 1546 | "type": "zip", 1547 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 1548 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", 1549 | "shasum": "" 1550 | }, 1551 | "require": { 1552 | "php": ">=7.3" 1553 | }, 1554 | "require-dev": { 1555 | "phpunit/phpunit": "^9.3" 1556 | }, 1557 | "type": "library", 1558 | "extra": { 1559 | "branch-alias": { 1560 | "dev-master": "2.0-dev" 1561 | } 1562 | }, 1563 | "autoload": { 1564 | "classmap": [ 1565 | "src/" 1566 | ] 1567 | }, 1568 | "notification-url": "https://packagist.org/downloads/", 1569 | "license": [ 1570 | "BSD-3-Clause" 1571 | ], 1572 | "authors": [ 1573 | { 1574 | "name": "Sebastian Bergmann", 1575 | "email": "sebastian@phpunit.de", 1576 | "role": "lead" 1577 | } 1578 | ], 1579 | "description": "Simple template engine.", 1580 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 1581 | "keywords": [ 1582 | "template" 1583 | ], 1584 | "support": { 1585 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", 1586 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" 1587 | }, 1588 | "funding": [ 1589 | { 1590 | "url": "https://github.com/sebastianbergmann", 1591 | "type": "github" 1592 | } 1593 | ], 1594 | "time": "2020-10-26T05:33:50+00:00" 1595 | }, 1596 | { 1597 | "name": "phpunit/php-timer", 1598 | "version": "5.0.3", 1599 | "source": { 1600 | "type": "git", 1601 | "url": "https://github.com/sebastianbergmann/php-timer.git", 1602 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" 1603 | }, 1604 | "dist": { 1605 | "type": "zip", 1606 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 1607 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", 1608 | "shasum": "" 1609 | }, 1610 | "require": { 1611 | "php": ">=7.3" 1612 | }, 1613 | "require-dev": { 1614 | "phpunit/phpunit": "^9.3" 1615 | }, 1616 | "type": "library", 1617 | "extra": { 1618 | "branch-alias": { 1619 | "dev-master": "5.0-dev" 1620 | } 1621 | }, 1622 | "autoload": { 1623 | "classmap": [ 1624 | "src/" 1625 | ] 1626 | }, 1627 | "notification-url": "https://packagist.org/downloads/", 1628 | "license": [ 1629 | "BSD-3-Clause" 1630 | ], 1631 | "authors": [ 1632 | { 1633 | "name": "Sebastian Bergmann", 1634 | "email": "sebastian@phpunit.de", 1635 | "role": "lead" 1636 | } 1637 | ], 1638 | "description": "Utility class for timing", 1639 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 1640 | "keywords": [ 1641 | "timer" 1642 | ], 1643 | "support": { 1644 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", 1645 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" 1646 | }, 1647 | "funding": [ 1648 | { 1649 | "url": "https://github.com/sebastianbergmann", 1650 | "type": "github" 1651 | } 1652 | ], 1653 | "time": "2020-10-26T13:16:10+00:00" 1654 | }, 1655 | { 1656 | "name": "phpunit/phpunit", 1657 | "version": "9.6.x-dev", 1658 | "source": { 1659 | "type": "git", 1660 | "url": "https://github.com/sebastianbergmann/phpunit.git", 1661 | "reference": "b754747169d4d5854ea71c7ffce16bcde0be9b59" 1662 | }, 1663 | "dist": { 1664 | "type": "zip", 1665 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b754747169d4d5854ea71c7ffce16bcde0be9b59", 1666 | "reference": "b754747169d4d5854ea71c7ffce16bcde0be9b59", 1667 | "shasum": "" 1668 | }, 1669 | "require": { 1670 | "doctrine/instantiator": "^1.3.1 || ^2", 1671 | "ext-dom": "*", 1672 | "ext-json": "*", 1673 | "ext-libxml": "*", 1674 | "ext-mbstring": "*", 1675 | "ext-xml": "*", 1676 | "ext-xmlwriter": "*", 1677 | "myclabs/deep-copy": "^1.10.1", 1678 | "phar-io/manifest": "^2.0.3", 1679 | "phar-io/version": "^3.0.2", 1680 | "php": ">=7.3", 1681 | "phpunit/php-code-coverage": "^9.2.13", 1682 | "phpunit/php-file-iterator": "^3.0.5", 1683 | "phpunit/php-invoker": "^3.1.1", 1684 | "phpunit/php-text-template": "^2.0.3", 1685 | "phpunit/php-timer": "^5.0.2", 1686 | "sebastian/cli-parser": "^1.0.1", 1687 | "sebastian/code-unit": "^1.0.6", 1688 | "sebastian/comparator": "^4.0.8", 1689 | "sebastian/diff": "^4.0.3", 1690 | "sebastian/environment": "^5.1.3", 1691 | "sebastian/exporter": "^4.0.5", 1692 | "sebastian/global-state": "^5.0.1", 1693 | "sebastian/object-enumerator": "^4.0.3", 1694 | "sebastian/resource-operations": "^3.0.3", 1695 | "sebastian/type": "^3.2", 1696 | "sebastian/version": "^3.0.2" 1697 | }, 1698 | "suggest": { 1699 | "ext-soap": "To be able to generate mocks based on WSDL files", 1700 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" 1701 | }, 1702 | "bin": [ 1703 | "phpunit" 1704 | ], 1705 | "type": "library", 1706 | "extra": { 1707 | "branch-alias": { 1708 | "dev-master": "9.6-dev" 1709 | } 1710 | }, 1711 | "autoload": { 1712 | "files": [ 1713 | "src/Framework/Assert/Functions.php" 1714 | ], 1715 | "classmap": [ 1716 | "src/" 1717 | ] 1718 | }, 1719 | "notification-url": "https://packagist.org/downloads/", 1720 | "license": [ 1721 | "BSD-3-Clause" 1722 | ], 1723 | "authors": [ 1724 | { 1725 | "name": "Sebastian Bergmann", 1726 | "email": "sebastian@phpunit.de", 1727 | "role": "lead" 1728 | } 1729 | ], 1730 | "description": "The PHP Unit Testing framework.", 1731 | "homepage": "https://phpunit.de/", 1732 | "keywords": [ 1733 | "phpunit", 1734 | "testing", 1735 | "xunit" 1736 | ], 1737 | "support": { 1738 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", 1739 | "security": "https://github.com/sebastianbergmann/phpunit/security/policy", 1740 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6" 1741 | }, 1742 | "funding": [ 1743 | { 1744 | "url": "https://phpunit.de/sponsors.html", 1745 | "type": "custom" 1746 | }, 1747 | { 1748 | "url": "https://github.com/sebastianbergmann", 1749 | "type": "github" 1750 | }, 1751 | { 1752 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", 1753 | "type": "tidelift" 1754 | } 1755 | ], 1756 | "time": "2023-04-04T09:12:50+00:00" 1757 | }, 1758 | { 1759 | "name": "psr/container", 1760 | "version": "dev-master", 1761 | "source": { 1762 | "type": "git", 1763 | "url": "https://github.com/php-fig/container.git", 1764 | "reference": "90db7b9ac2a2c5b849fcb69dde58f3ae182c68f5" 1765 | }, 1766 | "dist": { 1767 | "type": "zip", 1768 | "url": "https://api.github.com/repos/php-fig/container/zipball/90db7b9ac2a2c5b849fcb69dde58f3ae182c68f5", 1769 | "reference": "90db7b9ac2a2c5b849fcb69dde58f3ae182c68f5", 1770 | "shasum": "" 1771 | }, 1772 | "require": { 1773 | "php": ">=7.4.0" 1774 | }, 1775 | "default-branch": true, 1776 | "type": "library", 1777 | "extra": { 1778 | "branch-alias": { 1779 | "dev-master": "2.0.x-dev" 1780 | } 1781 | }, 1782 | "autoload": { 1783 | "psr-4": { 1784 | "Psr\\Container\\": "src/" 1785 | } 1786 | }, 1787 | "notification-url": "https://packagist.org/downloads/", 1788 | "license": [ 1789 | "MIT" 1790 | ], 1791 | "authors": [ 1792 | { 1793 | "name": "PHP-FIG", 1794 | "homepage": "https://www.php-fig.org/" 1795 | } 1796 | ], 1797 | "description": "Common Container Interface (PHP FIG PSR-11)", 1798 | "homepage": "https://github.com/php-fig/container", 1799 | "keywords": [ 1800 | "PSR-11", 1801 | "container", 1802 | "container-interface", 1803 | "container-interop", 1804 | "psr" 1805 | ], 1806 | "support": { 1807 | "issues": "https://github.com/php-fig/container/issues", 1808 | "source": "https://github.com/php-fig/container/tree/master" 1809 | }, 1810 | "time": "2022-07-19T17:36:59+00:00" 1811 | }, 1812 | { 1813 | "name": "psr/log", 1814 | "version": "1.1.4", 1815 | "source": { 1816 | "type": "git", 1817 | "url": "https://github.com/php-fig/log.git", 1818 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11" 1819 | }, 1820 | "dist": { 1821 | "type": "zip", 1822 | "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", 1823 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11", 1824 | "shasum": "" 1825 | }, 1826 | "require": { 1827 | "php": ">=5.3.0" 1828 | }, 1829 | "type": "library", 1830 | "extra": { 1831 | "branch-alias": { 1832 | "dev-master": "1.1.x-dev" 1833 | } 1834 | }, 1835 | "autoload": { 1836 | "psr-4": { 1837 | "Psr\\Log\\": "Psr/Log/" 1838 | } 1839 | }, 1840 | "notification-url": "https://packagist.org/downloads/", 1841 | "license": [ 1842 | "MIT" 1843 | ], 1844 | "authors": [ 1845 | { 1846 | "name": "PHP-FIG", 1847 | "homepage": "https://www.php-fig.org/" 1848 | } 1849 | ], 1850 | "description": "Common interface for logging libraries", 1851 | "homepage": "https://github.com/php-fig/log", 1852 | "keywords": [ 1853 | "log", 1854 | "psr", 1855 | "psr-3" 1856 | ], 1857 | "support": { 1858 | "source": "https://github.com/php-fig/log/tree/1.1.4" 1859 | }, 1860 | "time": "2021-05-03T11:20:27+00:00" 1861 | }, 1862 | { 1863 | "name": "sebastian/cli-parser", 1864 | "version": "1.0.1", 1865 | "source": { 1866 | "type": "git", 1867 | "url": "https://github.com/sebastianbergmann/cli-parser.git", 1868 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" 1869 | }, 1870 | "dist": { 1871 | "type": "zip", 1872 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", 1873 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", 1874 | "shasum": "" 1875 | }, 1876 | "require": { 1877 | "php": ">=7.3" 1878 | }, 1879 | "require-dev": { 1880 | "phpunit/phpunit": "^9.3" 1881 | }, 1882 | "type": "library", 1883 | "extra": { 1884 | "branch-alias": { 1885 | "dev-master": "1.0-dev" 1886 | } 1887 | }, 1888 | "autoload": { 1889 | "classmap": [ 1890 | "src/" 1891 | ] 1892 | }, 1893 | "notification-url": "https://packagist.org/downloads/", 1894 | "license": [ 1895 | "BSD-3-Clause" 1896 | ], 1897 | "authors": [ 1898 | { 1899 | "name": "Sebastian Bergmann", 1900 | "email": "sebastian@phpunit.de", 1901 | "role": "lead" 1902 | } 1903 | ], 1904 | "description": "Library for parsing CLI options", 1905 | "homepage": "https://github.com/sebastianbergmann/cli-parser", 1906 | "support": { 1907 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", 1908 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" 1909 | }, 1910 | "funding": [ 1911 | { 1912 | "url": "https://github.com/sebastianbergmann", 1913 | "type": "github" 1914 | } 1915 | ], 1916 | "time": "2020-09-28T06:08:49+00:00" 1917 | }, 1918 | { 1919 | "name": "sebastian/code-unit", 1920 | "version": "1.0.8", 1921 | "source": { 1922 | "type": "git", 1923 | "url": "https://github.com/sebastianbergmann/code-unit.git", 1924 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" 1925 | }, 1926 | "dist": { 1927 | "type": "zip", 1928 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", 1929 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", 1930 | "shasum": "" 1931 | }, 1932 | "require": { 1933 | "php": ">=7.3" 1934 | }, 1935 | "require-dev": { 1936 | "phpunit/phpunit": "^9.3" 1937 | }, 1938 | "type": "library", 1939 | "extra": { 1940 | "branch-alias": { 1941 | "dev-master": "1.0-dev" 1942 | } 1943 | }, 1944 | "autoload": { 1945 | "classmap": [ 1946 | "src/" 1947 | ] 1948 | }, 1949 | "notification-url": "https://packagist.org/downloads/", 1950 | "license": [ 1951 | "BSD-3-Clause" 1952 | ], 1953 | "authors": [ 1954 | { 1955 | "name": "Sebastian Bergmann", 1956 | "email": "sebastian@phpunit.de", 1957 | "role": "lead" 1958 | } 1959 | ], 1960 | "description": "Collection of value objects that represent the PHP code units", 1961 | "homepage": "https://github.com/sebastianbergmann/code-unit", 1962 | "support": { 1963 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", 1964 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" 1965 | }, 1966 | "funding": [ 1967 | { 1968 | "url": "https://github.com/sebastianbergmann", 1969 | "type": "github" 1970 | } 1971 | ], 1972 | "time": "2020-10-26T13:08:54+00:00" 1973 | }, 1974 | { 1975 | "name": "sebastian/code-unit-reverse-lookup", 1976 | "version": "2.0.3", 1977 | "source": { 1978 | "type": "git", 1979 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", 1980 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" 1981 | }, 1982 | "dist": { 1983 | "type": "zip", 1984 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 1985 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", 1986 | "shasum": "" 1987 | }, 1988 | "require": { 1989 | "php": ">=7.3" 1990 | }, 1991 | "require-dev": { 1992 | "phpunit/phpunit": "^9.3" 1993 | }, 1994 | "type": "library", 1995 | "extra": { 1996 | "branch-alias": { 1997 | "dev-master": "2.0-dev" 1998 | } 1999 | }, 2000 | "autoload": { 2001 | "classmap": [ 2002 | "src/" 2003 | ] 2004 | }, 2005 | "notification-url": "https://packagist.org/downloads/", 2006 | "license": [ 2007 | "BSD-3-Clause" 2008 | ], 2009 | "authors": [ 2010 | { 2011 | "name": "Sebastian Bergmann", 2012 | "email": "sebastian@phpunit.de" 2013 | } 2014 | ], 2015 | "description": "Looks up which function or method a line of code belongs to", 2016 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", 2017 | "support": { 2018 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", 2019 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" 2020 | }, 2021 | "funding": [ 2022 | { 2023 | "url": "https://github.com/sebastianbergmann", 2024 | "type": "github" 2025 | } 2026 | ], 2027 | "time": "2020-09-28T05:30:19+00:00" 2028 | }, 2029 | { 2030 | "name": "sebastian/comparator", 2031 | "version": "4.0.x-dev", 2032 | "source": { 2033 | "type": "git", 2034 | "url": "https://github.com/sebastianbergmann/comparator.git", 2035 | "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1" 2036 | }, 2037 | "dist": { 2038 | "type": "zip", 2039 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/b247957a1c8dc81a671770f74b479c0a78a818f1", 2040 | "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1", 2041 | "shasum": "" 2042 | }, 2043 | "require": { 2044 | "php": ">=7.3", 2045 | "sebastian/diff": "^4.0", 2046 | "sebastian/exporter": "^4.0" 2047 | }, 2048 | "require-dev": { 2049 | "phpunit/phpunit": "^9.3" 2050 | }, 2051 | "type": "library", 2052 | "extra": { 2053 | "branch-alias": { 2054 | "dev-master": "4.0-dev" 2055 | } 2056 | }, 2057 | "autoload": { 2058 | "classmap": [ 2059 | "src/" 2060 | ] 2061 | }, 2062 | "notification-url": "https://packagist.org/downloads/", 2063 | "license": [ 2064 | "BSD-3-Clause" 2065 | ], 2066 | "authors": [ 2067 | { 2068 | "name": "Sebastian Bergmann", 2069 | "email": "sebastian@phpunit.de" 2070 | }, 2071 | { 2072 | "name": "Jeff Welch", 2073 | "email": "whatthejeff@gmail.com" 2074 | }, 2075 | { 2076 | "name": "Volker Dusch", 2077 | "email": "github@wallbash.com" 2078 | }, 2079 | { 2080 | "name": "Bernhard Schussek", 2081 | "email": "bschussek@2bepublished.at" 2082 | } 2083 | ], 2084 | "description": "Provides the functionality to compare PHP values for equality", 2085 | "homepage": "https://github.com/sebastianbergmann/comparator", 2086 | "keywords": [ 2087 | "comparator", 2088 | "compare", 2089 | "equality" 2090 | ], 2091 | "support": { 2092 | "issues": "https://github.com/sebastianbergmann/comparator/issues", 2093 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0" 2094 | }, 2095 | "funding": [ 2096 | { 2097 | "url": "https://github.com/sebastianbergmann", 2098 | "type": "github" 2099 | } 2100 | ], 2101 | "time": "2022-09-14T12:46:14+00:00" 2102 | }, 2103 | { 2104 | "name": "sebastian/complexity", 2105 | "version": "2.0.2", 2106 | "source": { 2107 | "type": "git", 2108 | "url": "https://github.com/sebastianbergmann/complexity.git", 2109 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" 2110 | }, 2111 | "dist": { 2112 | "type": "zip", 2113 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", 2114 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", 2115 | "shasum": "" 2116 | }, 2117 | "require": { 2118 | "nikic/php-parser": "^4.7", 2119 | "php": ">=7.3" 2120 | }, 2121 | "require-dev": { 2122 | "phpunit/phpunit": "^9.3" 2123 | }, 2124 | "type": "library", 2125 | "extra": { 2126 | "branch-alias": { 2127 | "dev-master": "2.0-dev" 2128 | } 2129 | }, 2130 | "autoload": { 2131 | "classmap": [ 2132 | "src/" 2133 | ] 2134 | }, 2135 | "notification-url": "https://packagist.org/downloads/", 2136 | "license": [ 2137 | "BSD-3-Clause" 2138 | ], 2139 | "authors": [ 2140 | { 2141 | "name": "Sebastian Bergmann", 2142 | "email": "sebastian@phpunit.de", 2143 | "role": "lead" 2144 | } 2145 | ], 2146 | "description": "Library for calculating the complexity of PHP code units", 2147 | "homepage": "https://github.com/sebastianbergmann/complexity", 2148 | "support": { 2149 | "issues": "https://github.com/sebastianbergmann/complexity/issues", 2150 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" 2151 | }, 2152 | "funding": [ 2153 | { 2154 | "url": "https://github.com/sebastianbergmann", 2155 | "type": "github" 2156 | } 2157 | ], 2158 | "time": "2020-10-26T15:52:27+00:00" 2159 | }, 2160 | { 2161 | "name": "sebastian/diff", 2162 | "version": "4.0.4", 2163 | "source": { 2164 | "type": "git", 2165 | "url": "https://github.com/sebastianbergmann/diff.git", 2166 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" 2167 | }, 2168 | "dist": { 2169 | "type": "zip", 2170 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", 2171 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", 2172 | "shasum": "" 2173 | }, 2174 | "require": { 2175 | "php": ">=7.3" 2176 | }, 2177 | "require-dev": { 2178 | "phpunit/phpunit": "^9.3", 2179 | "symfony/process": "^4.2 || ^5" 2180 | }, 2181 | "type": "library", 2182 | "extra": { 2183 | "branch-alias": { 2184 | "dev-master": "4.0-dev" 2185 | } 2186 | }, 2187 | "autoload": { 2188 | "classmap": [ 2189 | "src/" 2190 | ] 2191 | }, 2192 | "notification-url": "https://packagist.org/downloads/", 2193 | "license": [ 2194 | "BSD-3-Clause" 2195 | ], 2196 | "authors": [ 2197 | { 2198 | "name": "Sebastian Bergmann", 2199 | "email": "sebastian@phpunit.de" 2200 | }, 2201 | { 2202 | "name": "Kore Nordmann", 2203 | "email": "mail@kore-nordmann.de" 2204 | } 2205 | ], 2206 | "description": "Diff implementation", 2207 | "homepage": "https://github.com/sebastianbergmann/diff", 2208 | "keywords": [ 2209 | "diff", 2210 | "udiff", 2211 | "unidiff", 2212 | "unified diff" 2213 | ], 2214 | "support": { 2215 | "issues": "https://github.com/sebastianbergmann/diff/issues", 2216 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" 2217 | }, 2218 | "funding": [ 2219 | { 2220 | "url": "https://github.com/sebastianbergmann", 2221 | "type": "github" 2222 | } 2223 | ], 2224 | "time": "2020-10-26T13:10:38+00:00" 2225 | }, 2226 | { 2227 | "name": "sebastian/environment", 2228 | "version": "5.1.x-dev", 2229 | "source": { 2230 | "type": "git", 2231 | "url": "https://github.com/sebastianbergmann/environment.git", 2232 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" 2233 | }, 2234 | "dist": { 2235 | "type": "zip", 2236 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", 2237 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", 2238 | "shasum": "" 2239 | }, 2240 | "require": { 2241 | "php": ">=7.3" 2242 | }, 2243 | "require-dev": { 2244 | "phpunit/phpunit": "^9.3" 2245 | }, 2246 | "suggest": { 2247 | "ext-posix": "*" 2248 | }, 2249 | "type": "library", 2250 | "extra": { 2251 | "branch-alias": { 2252 | "dev-master": "5.1-dev" 2253 | } 2254 | }, 2255 | "autoload": { 2256 | "classmap": [ 2257 | "src/" 2258 | ] 2259 | }, 2260 | "notification-url": "https://packagist.org/downloads/", 2261 | "license": [ 2262 | "BSD-3-Clause" 2263 | ], 2264 | "authors": [ 2265 | { 2266 | "name": "Sebastian Bergmann", 2267 | "email": "sebastian@phpunit.de" 2268 | } 2269 | ], 2270 | "description": "Provides functionality to handle HHVM/PHP environments", 2271 | "homepage": "http://www.github.com/sebastianbergmann/environment", 2272 | "keywords": [ 2273 | "Xdebug", 2274 | "environment", 2275 | "hhvm" 2276 | ], 2277 | "support": { 2278 | "issues": "https://github.com/sebastianbergmann/environment/issues", 2279 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1" 2280 | }, 2281 | "funding": [ 2282 | { 2283 | "url": "https://github.com/sebastianbergmann", 2284 | "type": "github" 2285 | } 2286 | ], 2287 | "time": "2023-02-03T06:03:51+00:00" 2288 | }, 2289 | { 2290 | "name": "sebastian/exporter", 2291 | "version": "4.0.x-dev", 2292 | "source": { 2293 | "type": "git", 2294 | "url": "https://github.com/sebastianbergmann/exporter.git", 2295 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" 2296 | }, 2297 | "dist": { 2298 | "type": "zip", 2299 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", 2300 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", 2301 | "shasum": "" 2302 | }, 2303 | "require": { 2304 | "php": ">=7.3", 2305 | "sebastian/recursion-context": "^4.0" 2306 | }, 2307 | "require-dev": { 2308 | "ext-mbstring": "*", 2309 | "phpunit/phpunit": "^9.3" 2310 | }, 2311 | "type": "library", 2312 | "extra": { 2313 | "branch-alias": { 2314 | "dev-master": "4.0-dev" 2315 | } 2316 | }, 2317 | "autoload": { 2318 | "classmap": [ 2319 | "src/" 2320 | ] 2321 | }, 2322 | "notification-url": "https://packagist.org/downloads/", 2323 | "license": [ 2324 | "BSD-3-Clause" 2325 | ], 2326 | "authors": [ 2327 | { 2328 | "name": "Sebastian Bergmann", 2329 | "email": "sebastian@phpunit.de" 2330 | }, 2331 | { 2332 | "name": "Jeff Welch", 2333 | "email": "whatthejeff@gmail.com" 2334 | }, 2335 | { 2336 | "name": "Volker Dusch", 2337 | "email": "github@wallbash.com" 2338 | }, 2339 | { 2340 | "name": "Adam Harvey", 2341 | "email": "aharvey@php.net" 2342 | }, 2343 | { 2344 | "name": "Bernhard Schussek", 2345 | "email": "bschussek@gmail.com" 2346 | } 2347 | ], 2348 | "description": "Provides the functionality to export PHP variables for visualization", 2349 | "homepage": "https://www.github.com/sebastianbergmann/exporter", 2350 | "keywords": [ 2351 | "export", 2352 | "exporter" 2353 | ], 2354 | "support": { 2355 | "issues": "https://github.com/sebastianbergmann/exporter/issues", 2356 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0" 2357 | }, 2358 | "funding": [ 2359 | { 2360 | "url": "https://github.com/sebastianbergmann", 2361 | "type": "github" 2362 | } 2363 | ], 2364 | "time": "2022-09-14T06:03:37+00:00" 2365 | }, 2366 | { 2367 | "name": "sebastian/global-state", 2368 | "version": "5.0.x-dev", 2369 | "source": { 2370 | "type": "git", 2371 | "url": "https://github.com/sebastianbergmann/global-state.git", 2372 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" 2373 | }, 2374 | "dist": { 2375 | "type": "zip", 2376 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", 2377 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", 2378 | "shasum": "" 2379 | }, 2380 | "require": { 2381 | "php": ">=7.3", 2382 | "sebastian/object-reflector": "^2.0", 2383 | "sebastian/recursion-context": "^4.0" 2384 | }, 2385 | "require-dev": { 2386 | "ext-dom": "*", 2387 | "phpunit/phpunit": "^9.3" 2388 | }, 2389 | "suggest": { 2390 | "ext-uopz": "*" 2391 | }, 2392 | "type": "library", 2393 | "extra": { 2394 | "branch-alias": { 2395 | "dev-master": "5.0-dev" 2396 | } 2397 | }, 2398 | "autoload": { 2399 | "classmap": [ 2400 | "src/" 2401 | ] 2402 | }, 2403 | "notification-url": "https://packagist.org/downloads/", 2404 | "license": [ 2405 | "BSD-3-Clause" 2406 | ], 2407 | "authors": [ 2408 | { 2409 | "name": "Sebastian Bergmann", 2410 | "email": "sebastian@phpunit.de" 2411 | } 2412 | ], 2413 | "description": "Snapshotting of global state", 2414 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 2415 | "keywords": [ 2416 | "global state" 2417 | ], 2418 | "support": { 2419 | "issues": "https://github.com/sebastianbergmann/global-state/issues", 2420 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" 2421 | }, 2422 | "funding": [ 2423 | { 2424 | "url": "https://github.com/sebastianbergmann", 2425 | "type": "github" 2426 | } 2427 | ], 2428 | "time": "2022-02-14T08:28:10+00:00" 2429 | }, 2430 | { 2431 | "name": "sebastian/lines-of-code", 2432 | "version": "1.0.3", 2433 | "source": { 2434 | "type": "git", 2435 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", 2436 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" 2437 | }, 2438 | "dist": { 2439 | "type": "zip", 2440 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", 2441 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", 2442 | "shasum": "" 2443 | }, 2444 | "require": { 2445 | "nikic/php-parser": "^4.6", 2446 | "php": ">=7.3" 2447 | }, 2448 | "require-dev": { 2449 | "phpunit/phpunit": "^9.3" 2450 | }, 2451 | "type": "library", 2452 | "extra": { 2453 | "branch-alias": { 2454 | "dev-master": "1.0-dev" 2455 | } 2456 | }, 2457 | "autoload": { 2458 | "classmap": [ 2459 | "src/" 2460 | ] 2461 | }, 2462 | "notification-url": "https://packagist.org/downloads/", 2463 | "license": [ 2464 | "BSD-3-Clause" 2465 | ], 2466 | "authors": [ 2467 | { 2468 | "name": "Sebastian Bergmann", 2469 | "email": "sebastian@phpunit.de", 2470 | "role": "lead" 2471 | } 2472 | ], 2473 | "description": "Library for counting the lines of code in PHP source code", 2474 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", 2475 | "support": { 2476 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", 2477 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" 2478 | }, 2479 | "funding": [ 2480 | { 2481 | "url": "https://github.com/sebastianbergmann", 2482 | "type": "github" 2483 | } 2484 | ], 2485 | "time": "2020-11-28T06:42:11+00:00" 2486 | }, 2487 | { 2488 | "name": "sebastian/object-enumerator", 2489 | "version": "4.0.4", 2490 | "source": { 2491 | "type": "git", 2492 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", 2493 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" 2494 | }, 2495 | "dist": { 2496 | "type": "zip", 2497 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", 2498 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", 2499 | "shasum": "" 2500 | }, 2501 | "require": { 2502 | "php": ">=7.3", 2503 | "sebastian/object-reflector": "^2.0", 2504 | "sebastian/recursion-context": "^4.0" 2505 | }, 2506 | "require-dev": { 2507 | "phpunit/phpunit": "^9.3" 2508 | }, 2509 | "type": "library", 2510 | "extra": { 2511 | "branch-alias": { 2512 | "dev-master": "4.0-dev" 2513 | } 2514 | }, 2515 | "autoload": { 2516 | "classmap": [ 2517 | "src/" 2518 | ] 2519 | }, 2520 | "notification-url": "https://packagist.org/downloads/", 2521 | "license": [ 2522 | "BSD-3-Clause" 2523 | ], 2524 | "authors": [ 2525 | { 2526 | "name": "Sebastian Bergmann", 2527 | "email": "sebastian@phpunit.de" 2528 | } 2529 | ], 2530 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", 2531 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", 2532 | "support": { 2533 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", 2534 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" 2535 | }, 2536 | "funding": [ 2537 | { 2538 | "url": "https://github.com/sebastianbergmann", 2539 | "type": "github" 2540 | } 2541 | ], 2542 | "time": "2020-10-26T13:12:34+00:00" 2543 | }, 2544 | { 2545 | "name": "sebastian/object-reflector", 2546 | "version": "2.0.4", 2547 | "source": { 2548 | "type": "git", 2549 | "url": "https://github.com/sebastianbergmann/object-reflector.git", 2550 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" 2551 | }, 2552 | "dist": { 2553 | "type": "zip", 2554 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 2555 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", 2556 | "shasum": "" 2557 | }, 2558 | "require": { 2559 | "php": ">=7.3" 2560 | }, 2561 | "require-dev": { 2562 | "phpunit/phpunit": "^9.3" 2563 | }, 2564 | "type": "library", 2565 | "extra": { 2566 | "branch-alias": { 2567 | "dev-master": "2.0-dev" 2568 | } 2569 | }, 2570 | "autoload": { 2571 | "classmap": [ 2572 | "src/" 2573 | ] 2574 | }, 2575 | "notification-url": "https://packagist.org/downloads/", 2576 | "license": [ 2577 | "BSD-3-Clause" 2578 | ], 2579 | "authors": [ 2580 | { 2581 | "name": "Sebastian Bergmann", 2582 | "email": "sebastian@phpunit.de" 2583 | } 2584 | ], 2585 | "description": "Allows reflection of object attributes, including inherited and non-public ones", 2586 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", 2587 | "support": { 2588 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", 2589 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" 2590 | }, 2591 | "funding": [ 2592 | { 2593 | "url": "https://github.com/sebastianbergmann", 2594 | "type": "github" 2595 | } 2596 | ], 2597 | "time": "2020-10-26T13:14:26+00:00" 2598 | }, 2599 | { 2600 | "name": "sebastian/recursion-context", 2601 | "version": "4.0.x-dev", 2602 | "source": { 2603 | "type": "git", 2604 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 2605 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" 2606 | }, 2607 | "dist": { 2608 | "type": "zip", 2609 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", 2610 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", 2611 | "shasum": "" 2612 | }, 2613 | "require": { 2614 | "php": ">=7.3" 2615 | }, 2616 | "require-dev": { 2617 | "phpunit/phpunit": "^9.3" 2618 | }, 2619 | "type": "library", 2620 | "extra": { 2621 | "branch-alias": { 2622 | "dev-master": "4.0-dev" 2623 | } 2624 | }, 2625 | "autoload": { 2626 | "classmap": [ 2627 | "src/" 2628 | ] 2629 | }, 2630 | "notification-url": "https://packagist.org/downloads/", 2631 | "license": [ 2632 | "BSD-3-Clause" 2633 | ], 2634 | "authors": [ 2635 | { 2636 | "name": "Sebastian Bergmann", 2637 | "email": "sebastian@phpunit.de" 2638 | }, 2639 | { 2640 | "name": "Jeff Welch", 2641 | "email": "whatthejeff@gmail.com" 2642 | }, 2643 | { 2644 | "name": "Adam Harvey", 2645 | "email": "aharvey@php.net" 2646 | } 2647 | ], 2648 | "description": "Provides functionality to recursively process PHP variables", 2649 | "homepage": "https://github.com/sebastianbergmann/recursion-context", 2650 | "support": { 2651 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", 2652 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" 2653 | }, 2654 | "funding": [ 2655 | { 2656 | "url": "https://github.com/sebastianbergmann", 2657 | "type": "github" 2658 | } 2659 | ], 2660 | "time": "2023-02-03T06:07:39+00:00" 2661 | }, 2662 | { 2663 | "name": "sebastian/resource-operations", 2664 | "version": "dev-main", 2665 | "source": { 2666 | "type": "git", 2667 | "url": "https://github.com/sebastianbergmann/resource-operations.git", 2668 | "reference": "20bdda85c7c585ab265c0c37ec052a019bae29c4" 2669 | }, 2670 | "dist": { 2671 | "type": "zip", 2672 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/20bdda85c7c585ab265c0c37ec052a019bae29c4", 2673 | "reference": "20bdda85c7c585ab265c0c37ec052a019bae29c4", 2674 | "shasum": "" 2675 | }, 2676 | "require": { 2677 | "php": ">=7.3" 2678 | }, 2679 | "require-dev": { 2680 | "phpunit/phpunit": "^9.0" 2681 | }, 2682 | "default-branch": true, 2683 | "type": "library", 2684 | "extra": { 2685 | "branch-alias": { 2686 | "dev-main": "3.0-dev" 2687 | } 2688 | }, 2689 | "autoload": { 2690 | "classmap": [ 2691 | "src/" 2692 | ] 2693 | }, 2694 | "notification-url": "https://packagist.org/downloads/", 2695 | "license": [ 2696 | "BSD-3-Clause" 2697 | ], 2698 | "authors": [ 2699 | { 2700 | "name": "Sebastian Bergmann", 2701 | "email": "sebastian@phpunit.de" 2702 | } 2703 | ], 2704 | "description": "Provides a list of PHP built-in functions that operate on resources", 2705 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", 2706 | "support": { 2707 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/main" 2708 | }, 2709 | "funding": [ 2710 | { 2711 | "url": "https://github.com/sebastianbergmann", 2712 | "type": "github" 2713 | } 2714 | ], 2715 | "time": "2023-03-25T08:11:39+00:00" 2716 | }, 2717 | { 2718 | "name": "sebastian/type", 2719 | "version": "3.2.x-dev", 2720 | "source": { 2721 | "type": "git", 2722 | "url": "https://github.com/sebastianbergmann/type.git", 2723 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" 2724 | }, 2725 | "dist": { 2726 | "type": "zip", 2727 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", 2728 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", 2729 | "shasum": "" 2730 | }, 2731 | "require": { 2732 | "php": ">=7.3" 2733 | }, 2734 | "require-dev": { 2735 | "phpunit/phpunit": "^9.5" 2736 | }, 2737 | "type": "library", 2738 | "extra": { 2739 | "branch-alias": { 2740 | "dev-master": "3.2-dev" 2741 | } 2742 | }, 2743 | "autoload": { 2744 | "classmap": [ 2745 | "src/" 2746 | ] 2747 | }, 2748 | "notification-url": "https://packagist.org/downloads/", 2749 | "license": [ 2750 | "BSD-3-Clause" 2751 | ], 2752 | "authors": [ 2753 | { 2754 | "name": "Sebastian Bergmann", 2755 | "email": "sebastian@phpunit.de", 2756 | "role": "lead" 2757 | } 2758 | ], 2759 | "description": "Collection of value objects that represent the types of the PHP type system", 2760 | "homepage": "https://github.com/sebastianbergmann/type", 2761 | "support": { 2762 | "issues": "https://github.com/sebastianbergmann/type/issues", 2763 | "source": "https://github.com/sebastianbergmann/type/tree/3.2" 2764 | }, 2765 | "funding": [ 2766 | { 2767 | "url": "https://github.com/sebastianbergmann", 2768 | "type": "github" 2769 | } 2770 | ], 2771 | "time": "2023-02-03T06:13:03+00:00" 2772 | }, 2773 | { 2774 | "name": "sebastian/version", 2775 | "version": "3.0.x-dev", 2776 | "source": { 2777 | "type": "git", 2778 | "url": "https://github.com/sebastianbergmann/version.git", 2779 | "reference": "c6c1022351a901512170118436c764e473f6de8c" 2780 | }, 2781 | "dist": { 2782 | "type": "zip", 2783 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", 2784 | "reference": "c6c1022351a901512170118436c764e473f6de8c", 2785 | "shasum": "" 2786 | }, 2787 | "require": { 2788 | "php": ">=7.3" 2789 | }, 2790 | "type": "library", 2791 | "extra": { 2792 | "branch-alias": { 2793 | "dev-master": "3.0-dev" 2794 | } 2795 | }, 2796 | "autoload": { 2797 | "classmap": [ 2798 | "src/" 2799 | ] 2800 | }, 2801 | "notification-url": "https://packagist.org/downloads/", 2802 | "license": [ 2803 | "BSD-3-Clause" 2804 | ], 2805 | "authors": [ 2806 | { 2807 | "name": "Sebastian Bergmann", 2808 | "email": "sebastian@phpunit.de", 2809 | "role": "lead" 2810 | } 2811 | ], 2812 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 2813 | "homepage": "https://github.com/sebastianbergmann/version", 2814 | "support": { 2815 | "issues": "https://github.com/sebastianbergmann/version/issues", 2816 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" 2817 | }, 2818 | "funding": [ 2819 | { 2820 | "url": "https://github.com/sebastianbergmann", 2821 | "type": "github" 2822 | } 2823 | ], 2824 | "time": "2020-09-28T06:39:44+00:00" 2825 | }, 2826 | { 2827 | "name": "symfony/console", 2828 | "version": "5.4.x-dev", 2829 | "source": { 2830 | "type": "git", 2831 | "url": "https://github.com/symfony/console.git", 2832 | "reference": "3cd51fd2e6c461ca678f84d419461281bd87a0a8" 2833 | }, 2834 | "dist": { 2835 | "type": "zip", 2836 | "url": "https://api.github.com/repos/symfony/console/zipball/3cd51fd2e6c461ca678f84d419461281bd87a0a8", 2837 | "reference": "3cd51fd2e6c461ca678f84d419461281bd87a0a8", 2838 | "shasum": "" 2839 | }, 2840 | "require": { 2841 | "php": ">=7.2.5", 2842 | "symfony/deprecation-contracts": "^2.1|^3", 2843 | "symfony/polyfill-mbstring": "~1.0", 2844 | "symfony/polyfill-php73": "^1.9", 2845 | "symfony/polyfill-php80": "^1.16", 2846 | "symfony/service-contracts": "^1.1|^2|^3", 2847 | "symfony/string": "^5.1|^6.0" 2848 | }, 2849 | "conflict": { 2850 | "psr/log": ">=3", 2851 | "symfony/dependency-injection": "<4.4", 2852 | "symfony/dotenv": "<5.1", 2853 | "symfony/event-dispatcher": "<4.4", 2854 | "symfony/lock": "<4.4", 2855 | "symfony/process": "<4.4" 2856 | }, 2857 | "provide": { 2858 | "psr/log-implementation": "1.0|2.0" 2859 | }, 2860 | "require-dev": { 2861 | "psr/log": "^1|^2", 2862 | "symfony/config": "^4.4|^5.0|^6.0", 2863 | "symfony/dependency-injection": "^4.4|^5.0|^6.0", 2864 | "symfony/event-dispatcher": "^4.4|^5.0|^6.0", 2865 | "symfony/lock": "^4.4|^5.0|^6.0", 2866 | "symfony/process": "^4.4|^5.0|^6.0", 2867 | "symfony/var-dumper": "^4.4|^5.0|^6.0" 2868 | }, 2869 | "suggest": { 2870 | "psr/log": "For using the console logger", 2871 | "symfony/event-dispatcher": "", 2872 | "symfony/lock": "", 2873 | "symfony/process": "" 2874 | }, 2875 | "type": "library", 2876 | "autoload": { 2877 | "psr-4": { 2878 | "Symfony\\Component\\Console\\": "" 2879 | }, 2880 | "exclude-from-classmap": [ 2881 | "/Tests/" 2882 | ] 2883 | }, 2884 | "notification-url": "https://packagist.org/downloads/", 2885 | "license": [ 2886 | "MIT" 2887 | ], 2888 | "authors": [ 2889 | { 2890 | "name": "Fabien Potencier", 2891 | "email": "fabien@symfony.com" 2892 | }, 2893 | { 2894 | "name": "Symfony Community", 2895 | "homepage": "https://symfony.com/contributors" 2896 | } 2897 | ], 2898 | "description": "Eases the creation of beautiful and testable command line interfaces", 2899 | "homepage": "https://symfony.com", 2900 | "keywords": [ 2901 | "cli", 2902 | "command-line", 2903 | "console", 2904 | "terminal" 2905 | ], 2906 | "support": { 2907 | "source": "https://github.com/symfony/console/tree/5.4" 2908 | }, 2909 | "funding": [ 2910 | { 2911 | "url": "https://symfony.com/sponsor", 2912 | "type": "custom" 2913 | }, 2914 | { 2915 | "url": "https://github.com/fabpot", 2916 | "type": "github" 2917 | }, 2918 | { 2919 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2920 | "type": "tidelift" 2921 | } 2922 | ], 2923 | "time": "2023-03-25T09:27:28+00:00" 2924 | }, 2925 | { 2926 | "name": "symfony/deprecation-contracts", 2927 | "version": "dev-main", 2928 | "source": { 2929 | "type": "git", 2930 | "url": "https://github.com/symfony/deprecation-contracts.git", 2931 | "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e" 2932 | }, 2933 | "dist": { 2934 | "type": "zip", 2935 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", 2936 | "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", 2937 | "shasum": "" 2938 | }, 2939 | "require": { 2940 | "php": ">=8.1" 2941 | }, 2942 | "default-branch": true, 2943 | "type": "library", 2944 | "extra": { 2945 | "branch-alias": { 2946 | "dev-main": "3.3-dev" 2947 | }, 2948 | "thanks": { 2949 | "name": "symfony/contracts", 2950 | "url": "https://github.com/symfony/contracts" 2951 | } 2952 | }, 2953 | "autoload": { 2954 | "files": [ 2955 | "function.php" 2956 | ] 2957 | }, 2958 | "notification-url": "https://packagist.org/downloads/", 2959 | "license": [ 2960 | "MIT" 2961 | ], 2962 | "authors": [ 2963 | { 2964 | "name": "Nicolas Grekas", 2965 | "email": "p@tchwork.com" 2966 | }, 2967 | { 2968 | "name": "Symfony Community", 2969 | "homepage": "https://symfony.com/contributors" 2970 | } 2971 | ], 2972 | "description": "A generic function and convention to trigger deprecation notices", 2973 | "homepage": "https://symfony.com", 2974 | "support": { 2975 | "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1" 2976 | }, 2977 | "funding": [ 2978 | { 2979 | "url": "https://symfony.com/sponsor", 2980 | "type": "custom" 2981 | }, 2982 | { 2983 | "url": "https://github.com/fabpot", 2984 | "type": "github" 2985 | }, 2986 | { 2987 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2988 | "type": "tidelift" 2989 | } 2990 | ], 2991 | "time": "2023-03-01T10:25:55+00:00" 2992 | }, 2993 | { 2994 | "name": "symfony/polyfill-ctype", 2995 | "version": "dev-main", 2996 | "source": { 2997 | "type": "git", 2998 | "url": "https://github.com/symfony/polyfill-ctype.git", 2999 | "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" 3000 | }, 3001 | "dist": { 3002 | "type": "zip", 3003 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", 3004 | "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", 3005 | "shasum": "" 3006 | }, 3007 | "require": { 3008 | "php": ">=7.1" 3009 | }, 3010 | "provide": { 3011 | "ext-ctype": "*" 3012 | }, 3013 | "suggest": { 3014 | "ext-ctype": "For best performance" 3015 | }, 3016 | "default-branch": true, 3017 | "type": "library", 3018 | "extra": { 3019 | "branch-alias": { 3020 | "dev-main": "1.28-dev" 3021 | }, 3022 | "thanks": { 3023 | "name": "symfony/polyfill", 3024 | "url": "https://github.com/symfony/polyfill" 3025 | } 3026 | }, 3027 | "autoload": { 3028 | "files": [ 3029 | "bootstrap.php" 3030 | ], 3031 | "psr-4": { 3032 | "Symfony\\Polyfill\\Ctype\\": "" 3033 | } 3034 | }, 3035 | "notification-url": "https://packagist.org/downloads/", 3036 | "license": [ 3037 | "MIT" 3038 | ], 3039 | "authors": [ 3040 | { 3041 | "name": "Gert de Pagter", 3042 | "email": "BackEndTea@gmail.com" 3043 | }, 3044 | { 3045 | "name": "Symfony Community", 3046 | "homepage": "https://symfony.com/contributors" 3047 | } 3048 | ], 3049 | "description": "Symfony polyfill for ctype functions", 3050 | "homepage": "https://symfony.com", 3051 | "keywords": [ 3052 | "compatibility", 3053 | "ctype", 3054 | "polyfill", 3055 | "portable" 3056 | ], 3057 | "support": { 3058 | "source": "https://github.com/symfony/polyfill-ctype/tree/main" 3059 | }, 3060 | "funding": [ 3061 | { 3062 | "url": "https://symfony.com/sponsor", 3063 | "type": "custom" 3064 | }, 3065 | { 3066 | "url": "https://github.com/fabpot", 3067 | "type": "github" 3068 | }, 3069 | { 3070 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3071 | "type": "tidelift" 3072 | } 3073 | ], 3074 | "time": "2023-01-26T09:26:14+00:00" 3075 | }, 3076 | { 3077 | "name": "symfony/polyfill-intl-grapheme", 3078 | "version": "dev-main", 3079 | "source": { 3080 | "type": "git", 3081 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 3082 | "reference": "875e90aeea2777b6f135677f618529449334a612" 3083 | }, 3084 | "dist": { 3085 | "type": "zip", 3086 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", 3087 | "reference": "875e90aeea2777b6f135677f618529449334a612", 3088 | "shasum": "" 3089 | }, 3090 | "require": { 3091 | "php": ">=7.1" 3092 | }, 3093 | "suggest": { 3094 | "ext-intl": "For best performance" 3095 | }, 3096 | "default-branch": true, 3097 | "type": "library", 3098 | "extra": { 3099 | "branch-alias": { 3100 | "dev-main": "1.28-dev" 3101 | }, 3102 | "thanks": { 3103 | "name": "symfony/polyfill", 3104 | "url": "https://github.com/symfony/polyfill" 3105 | } 3106 | }, 3107 | "autoload": { 3108 | "files": [ 3109 | "bootstrap.php" 3110 | ], 3111 | "psr-4": { 3112 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" 3113 | } 3114 | }, 3115 | "notification-url": "https://packagist.org/downloads/", 3116 | "license": [ 3117 | "MIT" 3118 | ], 3119 | "authors": [ 3120 | { 3121 | "name": "Nicolas Grekas", 3122 | "email": "p@tchwork.com" 3123 | }, 3124 | { 3125 | "name": "Symfony Community", 3126 | "homepage": "https://symfony.com/contributors" 3127 | } 3128 | ], 3129 | "description": "Symfony polyfill for intl's grapheme_* functions", 3130 | "homepage": "https://symfony.com", 3131 | "keywords": [ 3132 | "compatibility", 3133 | "grapheme", 3134 | "intl", 3135 | "polyfill", 3136 | "portable", 3137 | "shim" 3138 | ], 3139 | "support": { 3140 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/main" 3141 | }, 3142 | "funding": [ 3143 | { 3144 | "url": "https://symfony.com/sponsor", 3145 | "type": "custom" 3146 | }, 3147 | { 3148 | "url": "https://github.com/fabpot", 3149 | "type": "github" 3150 | }, 3151 | { 3152 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3153 | "type": "tidelift" 3154 | } 3155 | ], 3156 | "time": "2023-01-26T09:26:14+00:00" 3157 | }, 3158 | { 3159 | "name": "symfony/polyfill-intl-normalizer", 3160 | "version": "dev-main", 3161 | "source": { 3162 | "type": "git", 3163 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 3164 | "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" 3165 | }, 3166 | "dist": { 3167 | "type": "zip", 3168 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", 3169 | "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", 3170 | "shasum": "" 3171 | }, 3172 | "require": { 3173 | "php": ">=7.1" 3174 | }, 3175 | "suggest": { 3176 | "ext-intl": "For best performance" 3177 | }, 3178 | "default-branch": true, 3179 | "type": "library", 3180 | "extra": { 3181 | "branch-alias": { 3182 | "dev-main": "1.28-dev" 3183 | }, 3184 | "thanks": { 3185 | "name": "symfony/polyfill", 3186 | "url": "https://github.com/symfony/polyfill" 3187 | } 3188 | }, 3189 | "autoload": { 3190 | "files": [ 3191 | "bootstrap.php" 3192 | ], 3193 | "psr-4": { 3194 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" 3195 | }, 3196 | "classmap": [ 3197 | "Resources/stubs" 3198 | ] 3199 | }, 3200 | "notification-url": "https://packagist.org/downloads/", 3201 | "license": [ 3202 | "MIT" 3203 | ], 3204 | "authors": [ 3205 | { 3206 | "name": "Nicolas Grekas", 3207 | "email": "p@tchwork.com" 3208 | }, 3209 | { 3210 | "name": "Symfony Community", 3211 | "homepage": "https://symfony.com/contributors" 3212 | } 3213 | ], 3214 | "description": "Symfony polyfill for intl's Normalizer class and related functions", 3215 | "homepage": "https://symfony.com", 3216 | "keywords": [ 3217 | "compatibility", 3218 | "intl", 3219 | "normalizer", 3220 | "polyfill", 3221 | "portable", 3222 | "shim" 3223 | ], 3224 | "support": { 3225 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/main" 3226 | }, 3227 | "funding": [ 3228 | { 3229 | "url": "https://symfony.com/sponsor", 3230 | "type": "custom" 3231 | }, 3232 | { 3233 | "url": "https://github.com/fabpot", 3234 | "type": "github" 3235 | }, 3236 | { 3237 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3238 | "type": "tidelift" 3239 | } 3240 | ], 3241 | "time": "2023-01-26T09:26:14+00:00" 3242 | }, 3243 | { 3244 | "name": "symfony/polyfill-mbstring", 3245 | "version": "dev-main", 3246 | "source": { 3247 | "type": "git", 3248 | "url": "https://github.com/symfony/polyfill-mbstring.git", 3249 | "reference": "f9c7affe77a00ae32ca127ca6833d034e6d33f25" 3250 | }, 3251 | "dist": { 3252 | "type": "zip", 3253 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f9c7affe77a00ae32ca127ca6833d034e6d33f25", 3254 | "reference": "f9c7affe77a00ae32ca127ca6833d034e6d33f25", 3255 | "shasum": "" 3256 | }, 3257 | "require": { 3258 | "php": ">=7.1" 3259 | }, 3260 | "provide": { 3261 | "ext-mbstring": "*" 3262 | }, 3263 | "suggest": { 3264 | "ext-mbstring": "For best performance" 3265 | }, 3266 | "default-branch": true, 3267 | "type": "library", 3268 | "extra": { 3269 | "branch-alias": { 3270 | "dev-main": "1.28-dev" 3271 | }, 3272 | "thanks": { 3273 | "name": "symfony/polyfill", 3274 | "url": "https://github.com/symfony/polyfill" 3275 | } 3276 | }, 3277 | "autoload": { 3278 | "files": [ 3279 | "bootstrap.php" 3280 | ], 3281 | "psr-4": { 3282 | "Symfony\\Polyfill\\Mbstring\\": "" 3283 | } 3284 | }, 3285 | "notification-url": "https://packagist.org/downloads/", 3286 | "license": [ 3287 | "MIT" 3288 | ], 3289 | "authors": [ 3290 | { 3291 | "name": "Nicolas Grekas", 3292 | "email": "p@tchwork.com" 3293 | }, 3294 | { 3295 | "name": "Symfony Community", 3296 | "homepage": "https://symfony.com/contributors" 3297 | } 3298 | ], 3299 | "description": "Symfony polyfill for the Mbstring extension", 3300 | "homepage": "https://symfony.com", 3301 | "keywords": [ 3302 | "compatibility", 3303 | "mbstring", 3304 | "polyfill", 3305 | "portable", 3306 | "shim" 3307 | ], 3308 | "support": { 3309 | "source": "https://github.com/symfony/polyfill-mbstring/tree/main" 3310 | }, 3311 | "funding": [ 3312 | { 3313 | "url": "https://symfony.com/sponsor", 3314 | "type": "custom" 3315 | }, 3316 | { 3317 | "url": "https://github.com/fabpot", 3318 | "type": "github" 3319 | }, 3320 | { 3321 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3322 | "type": "tidelift" 3323 | } 3324 | ], 3325 | "time": "2023-01-30T17:25:47+00:00" 3326 | }, 3327 | { 3328 | "name": "symfony/polyfill-php73", 3329 | "version": "dev-main", 3330 | "source": { 3331 | "type": "git", 3332 | "url": "https://github.com/symfony/polyfill-php73.git", 3333 | "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5" 3334 | }, 3335 | "dist": { 3336 | "type": "zip", 3337 | "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5", 3338 | "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5", 3339 | "shasum": "" 3340 | }, 3341 | "require": { 3342 | "php": ">=7.1" 3343 | }, 3344 | "default-branch": true, 3345 | "type": "library", 3346 | "extra": { 3347 | "branch-alias": { 3348 | "dev-main": "1.28-dev" 3349 | }, 3350 | "thanks": { 3351 | "name": "symfony/polyfill", 3352 | "url": "https://github.com/symfony/polyfill" 3353 | } 3354 | }, 3355 | "autoload": { 3356 | "files": [ 3357 | "bootstrap.php" 3358 | ], 3359 | "psr-4": { 3360 | "Symfony\\Polyfill\\Php73\\": "" 3361 | }, 3362 | "classmap": [ 3363 | "Resources/stubs" 3364 | ] 3365 | }, 3366 | "notification-url": "https://packagist.org/downloads/", 3367 | "license": [ 3368 | "MIT" 3369 | ], 3370 | "authors": [ 3371 | { 3372 | "name": "Nicolas Grekas", 3373 | "email": "p@tchwork.com" 3374 | }, 3375 | { 3376 | "name": "Symfony Community", 3377 | "homepage": "https://symfony.com/contributors" 3378 | } 3379 | ], 3380 | "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", 3381 | "homepage": "https://symfony.com", 3382 | "keywords": [ 3383 | "compatibility", 3384 | "polyfill", 3385 | "portable", 3386 | "shim" 3387 | ], 3388 | "support": { 3389 | "source": "https://github.com/symfony/polyfill-php73/tree/main" 3390 | }, 3391 | "funding": [ 3392 | { 3393 | "url": "https://symfony.com/sponsor", 3394 | "type": "custom" 3395 | }, 3396 | { 3397 | "url": "https://github.com/fabpot", 3398 | "type": "github" 3399 | }, 3400 | { 3401 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3402 | "type": "tidelift" 3403 | } 3404 | ], 3405 | "time": "2023-01-26T09:26:14+00:00" 3406 | }, 3407 | { 3408 | "name": "symfony/polyfill-php80", 3409 | "version": "dev-main", 3410 | "source": { 3411 | "type": "git", 3412 | "url": "https://github.com/symfony/polyfill-php80.git", 3413 | "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" 3414 | }, 3415 | "dist": { 3416 | "type": "zip", 3417 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", 3418 | "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", 3419 | "shasum": "" 3420 | }, 3421 | "require": { 3422 | "php": ">=7.1" 3423 | }, 3424 | "default-branch": true, 3425 | "type": "library", 3426 | "extra": { 3427 | "branch-alias": { 3428 | "dev-main": "1.28-dev" 3429 | }, 3430 | "thanks": { 3431 | "name": "symfony/polyfill", 3432 | "url": "https://github.com/symfony/polyfill" 3433 | } 3434 | }, 3435 | "autoload": { 3436 | "files": [ 3437 | "bootstrap.php" 3438 | ], 3439 | "psr-4": { 3440 | "Symfony\\Polyfill\\Php80\\": "" 3441 | }, 3442 | "classmap": [ 3443 | "Resources/stubs" 3444 | ] 3445 | }, 3446 | "notification-url": "https://packagist.org/downloads/", 3447 | "license": [ 3448 | "MIT" 3449 | ], 3450 | "authors": [ 3451 | { 3452 | "name": "Ion Bazan", 3453 | "email": "ion.bazan@gmail.com" 3454 | }, 3455 | { 3456 | "name": "Nicolas Grekas", 3457 | "email": "p@tchwork.com" 3458 | }, 3459 | { 3460 | "name": "Symfony Community", 3461 | "homepage": "https://symfony.com/contributors" 3462 | } 3463 | ], 3464 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 3465 | "homepage": "https://symfony.com", 3466 | "keywords": [ 3467 | "compatibility", 3468 | "polyfill", 3469 | "portable", 3470 | "shim" 3471 | ], 3472 | "support": { 3473 | "source": "https://github.com/symfony/polyfill-php80/tree/main" 3474 | }, 3475 | "funding": [ 3476 | { 3477 | "url": "https://symfony.com/sponsor", 3478 | "type": "custom" 3479 | }, 3480 | { 3481 | "url": "https://github.com/fabpot", 3482 | "type": "github" 3483 | }, 3484 | { 3485 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3486 | "type": "tidelift" 3487 | } 3488 | ], 3489 | "time": "2023-01-26T09:26:14+00:00" 3490 | }, 3491 | { 3492 | "name": "symfony/service-contracts", 3493 | "version": "dev-main", 3494 | "source": { 3495 | "type": "git", 3496 | "url": "https://github.com/symfony/service-contracts.git", 3497 | "reference": "a8c9cedf55f314f3a186041d19537303766df09a" 3498 | }, 3499 | "dist": { 3500 | "type": "zip", 3501 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a", 3502 | "reference": "a8c9cedf55f314f3a186041d19537303766df09a", 3503 | "shasum": "" 3504 | }, 3505 | "require": { 3506 | "php": ">=8.1", 3507 | "psr/container": "^2.0" 3508 | }, 3509 | "conflict": { 3510 | "ext-psr": "<1.1|>=2" 3511 | }, 3512 | "suggest": { 3513 | "symfony/service-implementation": "" 3514 | }, 3515 | "default-branch": true, 3516 | "type": "library", 3517 | "extra": { 3518 | "branch-alias": { 3519 | "dev-main": "3.3-dev" 3520 | }, 3521 | "thanks": { 3522 | "name": "symfony/contracts", 3523 | "url": "https://github.com/symfony/contracts" 3524 | } 3525 | }, 3526 | "autoload": { 3527 | "psr-4": { 3528 | "Symfony\\Contracts\\Service\\": "" 3529 | }, 3530 | "exclude-from-classmap": [ 3531 | "/Test/" 3532 | ] 3533 | }, 3534 | "notification-url": "https://packagist.org/downloads/", 3535 | "license": [ 3536 | "MIT" 3537 | ], 3538 | "authors": [ 3539 | { 3540 | "name": "Nicolas Grekas", 3541 | "email": "p@tchwork.com" 3542 | }, 3543 | { 3544 | "name": "Symfony Community", 3545 | "homepage": "https://symfony.com/contributors" 3546 | } 3547 | ], 3548 | "description": "Generic abstractions related to writing services", 3549 | "homepage": "https://symfony.com", 3550 | "keywords": [ 3551 | "abstractions", 3552 | "contracts", 3553 | "decoupling", 3554 | "interfaces", 3555 | "interoperability", 3556 | "standards" 3557 | ], 3558 | "support": { 3559 | "source": "https://github.com/symfony/service-contracts/tree/v3.2.1" 3560 | }, 3561 | "funding": [ 3562 | { 3563 | "url": "https://symfony.com/sponsor", 3564 | "type": "custom" 3565 | }, 3566 | { 3567 | "url": "https://github.com/fabpot", 3568 | "type": "github" 3569 | }, 3570 | { 3571 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3572 | "type": "tidelift" 3573 | } 3574 | ], 3575 | "time": "2023-03-01T10:32:47+00:00" 3576 | }, 3577 | { 3578 | "name": "symfony/string", 3579 | "version": "6.3.x-dev", 3580 | "source": { 3581 | "type": "git", 3582 | "url": "https://github.com/symfony/string.git", 3583 | "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f" 3584 | }, 3585 | "dist": { 3586 | "type": "zip", 3587 | "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f", 3588 | "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f", 3589 | "shasum": "" 3590 | }, 3591 | "require": { 3592 | "php": ">=8.1", 3593 | "symfony/polyfill-ctype": "~1.8", 3594 | "symfony/polyfill-intl-grapheme": "~1.0", 3595 | "symfony/polyfill-intl-normalizer": "~1.0", 3596 | "symfony/polyfill-mbstring": "~1.0" 3597 | }, 3598 | "conflict": { 3599 | "symfony/translation-contracts": "<2.5" 3600 | }, 3601 | "require-dev": { 3602 | "symfony/error-handler": "^5.4|^6.0", 3603 | "symfony/http-client": "^5.4|^6.0", 3604 | "symfony/intl": "^6.2", 3605 | "symfony/translation-contracts": "^2.5|^3.0", 3606 | "symfony/var-exporter": "^5.4|^6.0" 3607 | }, 3608 | "type": "library", 3609 | "autoload": { 3610 | "files": [ 3611 | "Resources/functions.php" 3612 | ], 3613 | "psr-4": { 3614 | "Symfony\\Component\\String\\": "" 3615 | }, 3616 | "exclude-from-classmap": [ 3617 | "/Tests/" 3618 | ] 3619 | }, 3620 | "notification-url": "https://packagist.org/downloads/", 3621 | "license": [ 3622 | "MIT" 3623 | ], 3624 | "authors": [ 3625 | { 3626 | "name": "Nicolas Grekas", 3627 | "email": "p@tchwork.com" 3628 | }, 3629 | { 3630 | "name": "Symfony Community", 3631 | "homepage": "https://symfony.com/contributors" 3632 | } 3633 | ], 3634 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", 3635 | "homepage": "https://symfony.com", 3636 | "keywords": [ 3637 | "grapheme", 3638 | "i18n", 3639 | "string", 3640 | "unicode", 3641 | "utf-8", 3642 | "utf8" 3643 | ], 3644 | "support": { 3645 | "source": "https://github.com/symfony/string/tree/6.3" 3646 | }, 3647 | "funding": [ 3648 | { 3649 | "url": "https://symfony.com/sponsor", 3650 | "type": "custom" 3651 | }, 3652 | { 3653 | "url": "https://github.com/fabpot", 3654 | "type": "github" 3655 | }, 3656 | { 3657 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 3658 | "type": "tidelift" 3659 | } 3660 | ], 3661 | "time": "2023-03-21T21:06:29+00:00" 3662 | }, 3663 | { 3664 | "name": "theseer/tokenizer", 3665 | "version": "1.2.1", 3666 | "source": { 3667 | "type": "git", 3668 | "url": "https://github.com/theseer/tokenizer.git", 3669 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" 3670 | }, 3671 | "dist": { 3672 | "type": "zip", 3673 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", 3674 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", 3675 | "shasum": "" 3676 | }, 3677 | "require": { 3678 | "ext-dom": "*", 3679 | "ext-tokenizer": "*", 3680 | "ext-xmlwriter": "*", 3681 | "php": "^7.2 || ^8.0" 3682 | }, 3683 | "type": "library", 3684 | "autoload": { 3685 | "classmap": [ 3686 | "src/" 3687 | ] 3688 | }, 3689 | "notification-url": "https://packagist.org/downloads/", 3690 | "license": [ 3691 | "BSD-3-Clause" 3692 | ], 3693 | "authors": [ 3694 | { 3695 | "name": "Arne Blankerts", 3696 | "email": "arne@blankerts.de", 3697 | "role": "Developer" 3698 | } 3699 | ], 3700 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", 3701 | "support": { 3702 | "issues": "https://github.com/theseer/tokenizer/issues", 3703 | "source": "https://github.com/theseer/tokenizer/tree/1.2.1" 3704 | }, 3705 | "funding": [ 3706 | { 3707 | "url": "https://github.com/theseer", 3708 | "type": "github" 3709 | } 3710 | ], 3711 | "time": "2021-07-28T10:34:58+00:00" 3712 | }, 3713 | { 3714 | "name": "vimeo/psalm", 3715 | "version": "4.0.1", 3716 | "source": { 3717 | "type": "git", 3718 | "url": "https://github.com/vimeo/psalm.git", 3719 | "reference": "b1e2e30026936ef8d5bf6a354d1c3959b6231f44" 3720 | }, 3721 | "dist": { 3722 | "type": "zip", 3723 | "url": "https://api.github.com/repos/vimeo/psalm/zipball/b1e2e30026936ef8d5bf6a354d1c3959b6231f44", 3724 | "reference": "b1e2e30026936ef8d5bf6a354d1c3959b6231f44", 3725 | "shasum": "" 3726 | }, 3727 | "require": { 3728 | "amphp/amp": "^2.1", 3729 | "amphp/byte-stream": "^1.5", 3730 | "composer/package-versions-deprecated": "^1.8.0", 3731 | "composer/semver": "^1.4 || ^2.0 || ^3.0", 3732 | "composer/xdebug-handler": "^1.1", 3733 | "dnoegel/php-xdg-base-dir": "^0.1.1", 3734 | "ext-dom": "*", 3735 | "ext-json": "*", 3736 | "ext-libxml": "*", 3737 | "ext-mbstring": "*", 3738 | "ext-simplexml": "*", 3739 | "ext-tokenizer": "*", 3740 | "felixfbecker/advanced-json-rpc": "^3.0.3", 3741 | "felixfbecker/language-server-protocol": "^1.4", 3742 | "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0", 3743 | "nikic/php-parser": "^4.10.1", 3744 | "openlss/lib-array2xml": "^1.0", 3745 | "php": "^7.3|^8", 3746 | "sebastian/diff": "^3.0 || ^4.0", 3747 | "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0", 3748 | "webmozart/glob": "^4.1", 3749 | "webmozart/path-util": "^2.3" 3750 | }, 3751 | "provide": { 3752 | "psalm/psalm": "self.version" 3753 | }, 3754 | "require-dev": { 3755 | "amphp/amp": "^2.4.2", 3756 | "bamarni/composer-bin-plugin": "^1.2", 3757 | "brianium/paratest": "^4.0.0", 3758 | "ext-curl": "*", 3759 | "phpdocumentor/reflection-docblock": "^5", 3760 | "phpmyadmin/sql-parser": "5.1.0", 3761 | "phpspec/prophecy": ">=1.9.0", 3762 | "phpunit/phpunit": "^9.0", 3763 | "psalm/plugin-phpunit": "^0.13", 3764 | "slevomat/coding-standard": "^5.0", 3765 | "squizlabs/php_codesniffer": "^3.5", 3766 | "symfony/process": "^4.3", 3767 | "weirdan/prophecy-shim": "^1.0 || ^2.0" 3768 | }, 3769 | "suggest": { 3770 | "ext-igbinary": "^2.0.5" 3771 | }, 3772 | "bin": [ 3773 | "psalm", 3774 | "psalm-language-server", 3775 | "psalm-plugin", 3776 | "psalm-refactor", 3777 | "psalter" 3778 | ], 3779 | "type": "library", 3780 | "extra": { 3781 | "branch-alias": { 3782 | "dev-master": "4.x-dev", 3783 | "dev-3.x": "3.x-dev", 3784 | "dev-2.x": "2.x-dev", 3785 | "dev-1.x": "1.x-dev" 3786 | } 3787 | }, 3788 | "autoload": { 3789 | "files": [ 3790 | "src/functions.php", 3791 | "src/spl_object_id.php" 3792 | ], 3793 | "psr-4": { 3794 | "Psalm\\": "src/Psalm/" 3795 | } 3796 | }, 3797 | "notification-url": "https://packagist.org/downloads/", 3798 | "license": [ 3799 | "MIT" 3800 | ], 3801 | "authors": [ 3802 | { 3803 | "name": "Matthew Brown" 3804 | } 3805 | ], 3806 | "description": "A static analysis tool for finding errors in PHP applications", 3807 | "keywords": [ 3808 | "code", 3809 | "inspection", 3810 | "php" 3811 | ], 3812 | "support": { 3813 | "issues": "https://github.com/vimeo/psalm/issues", 3814 | "source": "https://github.com/vimeo/psalm/tree/4.0.1" 3815 | }, 3816 | "time": "2020-10-20T13:40:17+00:00" 3817 | }, 3818 | { 3819 | "name": "webmozart/assert", 3820 | "version": "1.9.1", 3821 | "source": { 3822 | "type": "git", 3823 | "url": "https://github.com/webmozarts/assert.git", 3824 | "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" 3825 | }, 3826 | "dist": { 3827 | "type": "zip", 3828 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", 3829 | "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", 3830 | "shasum": "" 3831 | }, 3832 | "require": { 3833 | "php": "^5.3.3 || ^7.0 || ^8.0", 3834 | "symfony/polyfill-ctype": "^1.8" 3835 | }, 3836 | "conflict": { 3837 | "phpstan/phpstan": "<0.12.20", 3838 | "vimeo/psalm": "<3.9.1" 3839 | }, 3840 | "require-dev": { 3841 | "phpunit/phpunit": "^4.8.36 || ^7.5.13" 3842 | }, 3843 | "type": "library", 3844 | "autoload": { 3845 | "psr-4": { 3846 | "Webmozart\\Assert\\": "src/" 3847 | } 3848 | }, 3849 | "notification-url": "https://packagist.org/downloads/", 3850 | "license": [ 3851 | "MIT" 3852 | ], 3853 | "authors": [ 3854 | { 3855 | "name": "Bernhard Schussek", 3856 | "email": "bschussek@gmail.com" 3857 | } 3858 | ], 3859 | "description": "Assertions to validate method input/output with nice error messages.", 3860 | "keywords": [ 3861 | "assert", 3862 | "check", 3863 | "validate" 3864 | ], 3865 | "support": { 3866 | "issues": "https://github.com/webmozarts/assert/issues", 3867 | "source": "https://github.com/webmozarts/assert/tree/1.9.1" 3868 | }, 3869 | "time": "2020-07-08T17:02:28+00:00" 3870 | }, 3871 | { 3872 | "name": "webmozart/glob", 3873 | "version": "4.7.x-dev", 3874 | "source": { 3875 | "type": "git", 3876 | "url": "https://github.com/webmozarts/glob.git", 3877 | "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655" 3878 | }, 3879 | "dist": { 3880 | "type": "zip", 3881 | "url": "https://api.github.com/repos/webmozarts/glob/zipball/3c17f7dec3d9d0e87b575026011f2e75a56ed655", 3882 | "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655", 3883 | "shasum": "" 3884 | }, 3885 | "require": { 3886 | "php": "^7.3 || ^8.0.0" 3887 | }, 3888 | "require-dev": { 3889 | "phpunit/phpunit": "^9.5", 3890 | "symfony/filesystem": "^5.3" 3891 | }, 3892 | "default-branch": true, 3893 | "type": "library", 3894 | "extra": { 3895 | "branch-alias": { 3896 | "dev-master": "4.1-dev" 3897 | } 3898 | }, 3899 | "autoload": { 3900 | "psr-4": { 3901 | "Webmozart\\Glob\\": "src/" 3902 | } 3903 | }, 3904 | "notification-url": "https://packagist.org/downloads/", 3905 | "license": [ 3906 | "MIT" 3907 | ], 3908 | "authors": [ 3909 | { 3910 | "name": "Bernhard Schussek", 3911 | "email": "bschussek@gmail.com" 3912 | } 3913 | ], 3914 | "description": "A PHP implementation of Ant's glob.", 3915 | "support": { 3916 | "issues": "https://github.com/webmozarts/glob/issues", 3917 | "source": "https://github.com/webmozarts/glob/tree/4.6.0" 3918 | }, 3919 | "time": "2022-05-24T19:45:58+00:00" 3920 | }, 3921 | { 3922 | "name": "webmozart/path-util", 3923 | "version": "dev-master", 3924 | "source": { 3925 | "type": "git", 3926 | "url": "https://github.com/webmozart/path-util.git", 3927 | "reference": "6099b5238073f87f246863fd58c2e447acfc0d24" 3928 | }, 3929 | "dist": { 3930 | "type": "zip", 3931 | "url": "https://api.github.com/repos/webmozart/path-util/zipball/6099b5238073f87f246863fd58c2e447acfc0d24", 3932 | "reference": "6099b5238073f87f246863fd58c2e447acfc0d24", 3933 | "shasum": "" 3934 | }, 3935 | "require": { 3936 | "php": "^5.3.3|^7.0", 3937 | "webmozart/assert": "~1.0" 3938 | }, 3939 | "require-dev": { 3940 | "phpunit/phpunit": "^4.6", 3941 | "sebastian/version": "^1.0.1" 3942 | }, 3943 | "default-branch": true, 3944 | "type": "library", 3945 | "extra": { 3946 | "branch-alias": { 3947 | "dev-master": "2.3-dev" 3948 | } 3949 | }, 3950 | "autoload": { 3951 | "psr-4": { 3952 | "Webmozart\\PathUtil\\": "src/" 3953 | } 3954 | }, 3955 | "notification-url": "https://packagist.org/downloads/", 3956 | "license": [ 3957 | "MIT" 3958 | ], 3959 | "authors": [ 3960 | { 3961 | "name": "Bernhard Schussek", 3962 | "email": "bschussek@gmail.com" 3963 | } 3964 | ], 3965 | "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", 3966 | "support": { 3967 | "issues": "https://github.com/webmozart/path-util/issues", 3968 | "source": "https://github.com/webmozart/path-util/tree/master" 3969 | }, 3970 | "abandoned": "symfony/filesystem", 3971 | "time": "2021-11-08T08:17:20+00:00" 3972 | } 3973 | ], 3974 | "aliases": [], 3975 | "minimum-stability": "dev", 3976 | "stability-flags": { 3977 | "phpstan/phpstan": 20 3978 | }, 3979 | "prefer-stable": false, 3980 | "prefer-lowest": false, 3981 | "platform": { 3982 | "php": ">=8.0" 3983 | }, 3984 | "platform-dev": [], 3985 | "plugin-api-version": "2.3.0" 3986 | } 3987 | --------------------------------------------------------------------------------