Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
onyx/composer.lock
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2502 lines (2502 sloc)
87.9 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_readme": [ | |
"This file locks the dependencies of your project to a known state", | |
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", | |
"This file is @generated automatically" | |
], | |
"content-hash": "754fe25bac7361b23854c65a08aa4869", | |
"packages": [ | |
{ | |
"name": "doctrine/cache", | |
"version": "2.2.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/doctrine/cache.git", | |
"reference": "1ca8f21980e770095a31456042471a57bc4c68fb" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb", | |
"reference": "1ca8f21980e770095a31456042471a57bc4c68fb", | |
"shasum": "" | |
}, | |
"require": { | |
"php": "~7.1 || ^8.0" | |
}, | |
"conflict": { | |
"doctrine/common": ">2.2,<2.4" | |
}, | |
"require-dev": { | |
"cache/integration-tests": "dev-master", | |
"doctrine/coding-standard": "^9", | |
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | |
"psr/cache": "^1.0 || ^2.0 || ^3.0", | |
"symfony/cache": "^4.4 || ^5.4 || ^6", | |
"symfony/var-exporter": "^4.4 || ^5.4 || ^6" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Guilherme Blanco", | |
"email": "guilhermeblanco@gmail.com" | |
}, | |
{ | |
"name": "Roman Borschel", | |
"email": "roman@code-factory.org" | |
}, | |
{ | |
"name": "Benjamin Eberlei", | |
"email": "kontakt@beberlei.de" | |
}, | |
{ | |
"name": "Jonathan Wage", | |
"email": "jonwage@gmail.com" | |
}, | |
{ | |
"name": "Johannes Schmitt", | |
"email": "schmittjoh@gmail.com" | |
} | |
], | |
"description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", | |
"homepage": "https://www.doctrine-project.org/projects/cache.html", | |
"keywords": [ | |
"abstraction", | |
"apcu", | |
"cache", | |
"caching", | |
"couchdb", | |
"memcached", | |
"php", | |
"redis", | |
"xcache" | |
], | |
"support": { | |
"issues": "https://github.com/doctrine/cache/issues", | |
"source": "https://github.com/doctrine/cache/tree/2.2.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://www.doctrine-project.org/sponsorship.html", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://www.patreon.com/phpdoctrine", | |
"type": "patreon" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-05-20T20:07:39+00:00" | |
}, | |
{ | |
"name": "doctrine/dbal", | |
"version": "3.3.8", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/doctrine/dbal.git", | |
"reference": "f873a820227bc352d023791775a01f078a30dfe1" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/doctrine/dbal/zipball/f873a820227bc352d023791775a01f078a30dfe1", | |
"reference": "f873a820227bc352d023791775a01f078a30dfe1", | |
"shasum": "" | |
}, | |
"require": { | |
"composer-runtime-api": "^2", | |
"doctrine/cache": "^1.11|^2.0", | |
"doctrine/deprecations": "^0.5.3|^1", | |
"doctrine/event-manager": "^1.0", | |
"php": "^7.3 || ^8.0", | |
"psr/cache": "^1|^2|^3", | |
"psr/log": "^1|^2|^3" | |
}, | |
"require-dev": { | |
"doctrine/coding-standard": "9.0.0", | |
"jetbrains/phpstorm-stubs": "2022.1", | |
"phpstan/phpstan": "1.8.2", | |
"phpstan/phpstan-strict-rules": "^1.3", | |
"phpunit/phpunit": "9.5.21", | |
"psalm/plugin-phpunit": "0.17.0", | |
"squizlabs/php_codesniffer": "3.7.1", | |
"symfony/cache": "^5.2|^6.0", | |
"symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0", | |
"vimeo/psalm": "4.24.0" | |
}, | |
"suggest": { | |
"symfony/console": "For helpful console commands such as SQL execution and import of files." | |
}, | |
"bin": [ | |
"bin/doctrine-dbal" | |
], | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Doctrine\\DBAL\\": "src" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Guilherme Blanco", | |
"email": "guilhermeblanco@gmail.com" | |
}, | |
{ | |
"name": "Roman Borschel", | |
"email": "roman@code-factory.org" | |
}, | |
{ | |
"name": "Benjamin Eberlei", | |
"email": "kontakt@beberlei.de" | |
}, | |
{ | |
"name": "Jonathan Wage", | |
"email": "jonwage@gmail.com" | |
} | |
], | |
"description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", | |
"homepage": "https://www.doctrine-project.org/projects/dbal.html", | |
"keywords": [ | |
"abstraction", | |
"database", | |
"db2", | |
"dbal", | |
"mariadb", | |
"mssql", | |
"mysql", | |
"oci8", | |
"oracle", | |
"pdo", | |
"pgsql", | |
"postgresql", | |
"queryobject", | |
"sasql", | |
"sql", | |
"sqlite", | |
"sqlserver", | |
"sqlsrv" | |
], | |
"support": { | |
"issues": "https://github.com/doctrine/dbal/issues", | |
"source": "https://github.com/doctrine/dbal/tree/3.3.8" | |
}, | |
"funding": [ | |
{ | |
"url": "https://www.doctrine-project.org/sponsorship.html", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://www.patreon.com/phpdoctrine", | |
"type": "patreon" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-08-05T15:35:35+00:00" | |
}, | |
{ | |
"name": "doctrine/deprecations", | |
"version": "v1.1.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/doctrine/deprecations.git", | |
"reference": "8cffffb2218e01f3b370bf763e00e81697725259" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/8cffffb2218e01f3b370bf763e00e81697725259", | |
"reference": "8cffffb2218e01f3b370bf763e00e81697725259", | |
"shasum": "" | |
}, | |
"require": { | |
"php": "^7.1|^8.0" | |
}, | |
"require-dev": { | |
"doctrine/coding-standard": "^9", | |
"phpunit/phpunit": "^7.5|^8.5|^9.5", | |
"psr/log": "^1|^2|^3" | |
}, | |
"suggest": { | |
"psr/log": "Allows logging deprecations via PSR-3 logger implementation" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", | |
"homepage": "https://www.doctrine-project.org/", | |
"support": { | |
"issues": "https://github.com/doctrine/deprecations/issues", | |
"source": "https://github.com/doctrine/deprecations/tree/v1.1.0" | |
}, | |
"time": "2023-05-29T18:55:17+00:00" | |
}, | |
{ | |
"name": "doctrine/event-manager", | |
"version": "1.2.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/doctrine/event-manager.git", | |
"reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", | |
"reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", | |
"shasum": "" | |
}, | |
"require": { | |
"doctrine/deprecations": "^0.5.3 || ^1", | |
"php": "^7.1 || ^8.0" | |
}, | |
"conflict": { | |
"doctrine/common": "<2.9" | |
}, | |
"require-dev": { | |
"doctrine/coding-standard": "^9 || ^10", | |
"phpstan/phpstan": "~1.4.10 || ^1.8.8", | |
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | |
"vimeo/psalm": "^4.24" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Doctrine\\Common\\": "src" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Guilherme Blanco", | |
"email": "guilhermeblanco@gmail.com" | |
}, | |
{ | |
"name": "Roman Borschel", | |
"email": "roman@code-factory.org" | |
}, | |
{ | |
"name": "Benjamin Eberlei", | |
"email": "kontakt@beberlei.de" | |
}, | |
{ | |
"name": "Jonathan Wage", | |
"email": "jonwage@gmail.com" | |
}, | |
{ | |
"name": "Johannes Schmitt", | |
"email": "schmittjoh@gmail.com" | |
}, | |
{ | |
"name": "Marco Pivetta", | |
"email": "ocramius@gmail.com" | |
} | |
], | |
"description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", | |
"homepage": "https://www.doctrine-project.org/projects/event-manager.html", | |
"keywords": [ | |
"event", | |
"event dispatcher", | |
"event manager", | |
"event system", | |
"events" | |
], | |
"support": { | |
"issues": "https://github.com/doctrine/event-manager/issues", | |
"source": "https://github.com/doctrine/event-manager/tree/1.2.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://www.doctrine-project.org/sponsorship.html", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://www.patreon.com/phpdoctrine", | |
"type": "patreon" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-10-12T20:51:15+00:00" | |
}, | |
{ | |
"name": "doctrine/lexer", | |
"version": "2.1.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/doctrine/lexer.git", | |
"reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | |
"reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | |
"shasum": "" | |
}, | |
"require": { | |
"doctrine/deprecations": "^1.0", | |
"php": "^7.1 || ^8.0" | |
}, | |
"require-dev": { | |
"doctrine/coding-standard": "^9 || ^10", | |
"phpstan/phpstan": "^1.3", | |
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | |
"psalm/plugin-phpunit": "^0.18.3", | |
"vimeo/psalm": "^4.11 || ^5.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Doctrine\\Common\\Lexer\\": "src" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Guilherme Blanco", | |
"email": "guilhermeblanco@gmail.com" | |
}, | |
{ | |
"name": "Roman Borschel", | |
"email": "roman@code-factory.org" | |
}, | |
{ | |
"name": "Johannes Schmitt", | |
"email": "schmittjoh@gmail.com" | |
} | |
], | |
"description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", | |
"homepage": "https://www.doctrine-project.org/projects/lexer.html", | |
"keywords": [ | |
"annotations", | |
"docblock", | |
"lexer", | |
"parser", | |
"php" | |
], | |
"support": { | |
"issues": "https://github.com/doctrine/lexer/issues", | |
"source": "https://github.com/doctrine/lexer/tree/2.1.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://www.doctrine-project.org/sponsorship.html", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://www.patreon.com/phpdoctrine", | |
"type": "patreon" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-12-14T08:49:07+00:00" | |
}, | |
{ | |
"name": "egulias/email-validator", | |
"version": "3.2.5", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/egulias/EmailValidator.git", | |
"reference": "b531a2311709443320c786feb4519cfaf94af796" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", | |
"reference": "b531a2311709443320c786feb4519cfaf94af796", | |
"shasum": "" | |
}, | |
"require": { | |
"doctrine/lexer": "^1.2|^2", | |
"php": ">=7.2", | |
"symfony/polyfill-intl-idn": "^1.15" | |
}, | |
"require-dev": { | |
"phpunit/phpunit": "^8.5.8|^9.3.3", | |
"vimeo/psalm": "^4" | |
}, | |
"suggest": { | |
"ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "3.0.x-dev" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Egulias\\EmailValidator\\": "src" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Eduardo Gulias Davis" | |
} | |
], | |
"description": "A library for validating emails against several RFCs", | |
"homepage": "https://github.com/egulias/EmailValidator", | |
"keywords": [ | |
"email", | |
"emailvalidation", | |
"emailvalidator", | |
"validation", | |
"validator" | |
], | |
"support": { | |
"issues": "https://github.com/egulias/EmailValidator/issues", | |
"source": "https://github.com/egulias/EmailValidator/tree/3.2.5" | |
}, | |
"funding": [ | |
{ | |
"url": "https://github.com/egulias", | |
"type": "github" | |
} | |
], | |
"time": "2023-01-02T17:26:14+00:00" | |
}, | |
{ | |
"name": "html2text/html2text", | |
"version": "4.3.1", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/mtibben/html2text.git", | |
"reference": "61ad68e934066a6f8df29a3d23a6460536d0855c" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/mtibben/html2text/zipball/61ad68e934066a6f8df29a3d23a6460536d0855c", | |
"reference": "61ad68e934066a6f8df29a3d23a6460536d0855c", | |
"shasum": "" | |
}, | |
"require-dev": { | |
"phpunit/phpunit": "~4" | |
}, | |
"suggest": { | |
"ext-mbstring": "For best performance", | |
"symfony/polyfill-mbstring": "If you can't install ext-mbstring" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Html2Text\\": [ | |
"src/", | |
"test/" | |
] | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"GPL-2.0-or-later" | |
], | |
"description": "Converts HTML to formatted plain text", | |
"support": { | |
"issues": "https://github.com/mtibben/html2text/issues", | |
"source": "https://github.com/mtibben/html2text/tree/4.3.1" | |
}, | |
"time": "2020-04-16T23:44:31+00:00" | |
}, | |
{ | |
"name": "jdorn/sql-formatter", | |
"version": "v1.2.17", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/jdorn/sql-formatter.git", | |
"reference": "64990d96e0959dff8e059dfcdc1af130728d92bc" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc", | |
"reference": "64990d96e0959dff8e059dfcdc1af130728d92bc", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=5.2.4" | |
}, | |
"require-dev": { | |
"phpunit/phpunit": "3.7.*" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "1.3.x-dev" | |
} | |
}, | |
"autoload": { | |
"classmap": [ | |
"lib" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Jeremy Dorn", | |
"email": "jeremy@jeremydorn.com", | |
"homepage": "http://jeremydorn.com/" | |
} | |
], | |
"description": "a PHP SQL highlighting library", | |
"homepage": "https://github.com/jdorn/sql-formatter/", | |
"keywords": [ | |
"highlight", | |
"sql" | |
], | |
"support": { | |
"issues": "https://github.com/jdorn/sql-formatter/issues", | |
"source": "https://github.com/jdorn/sql-formatter/tree/v1.2.17" | |
}, | |
"time": "2014-01-12T16:20:24+00:00" | |
}, | |
{ | |
"name": "psr/cache", | |
"version": "1.0.1", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/php-fig/cache.git", | |
"reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", | |
"reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=5.3.0" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "1.0.x-dev" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Psr\\Cache\\": "src/" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "PHP-FIG", | |
"homepage": "http://www.php-fig.org/" | |
} | |
], | |
"description": "Common interface for caching libraries", | |
"keywords": [ | |
"cache", | |
"psr", | |
"psr-6" | |
], | |
"support": { | |
"source": "https://github.com/php-fig/cache/tree/master" | |
}, | |
"time": "2016-08-06T20:24:11+00:00" | |
}, | |
{ | |
"name": "psr/container", | |
"version": "1.1.1", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/php-fig/container.git", | |
"reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", | |
"reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Psr\\Container\\": "src/" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "PHP-FIG", | |
"homepage": "https://www.php-fig.org/" | |
} | |
], | |
"description": "Common Container Interface (PHP FIG PSR-11)", | |
"homepage": "https://github.com/php-fig/container", | |
"keywords": [ | |
"PSR-11", | |
"container", | |
"container-interface", | |
"container-interop", | |
"psr" | |
], | |
"support": { | |
"issues": "https://github.com/php-fig/container/issues", | |
"source": "https://github.com/php-fig/container/tree/1.1.1" | |
}, | |
"time": "2021-03-05T17:36:06+00:00" | |
}, | |
{ | |
"name": "psr/event-dispatcher", | |
"version": "1.0.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/php-fig/event-dispatcher.git", | |
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", | |
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.0" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "1.0.x-dev" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Psr\\EventDispatcher\\": "src/" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "PHP-FIG", | |
"homepage": "http://www.php-fig.org/" | |
} | |
], | |
"description": "Standard interfaces for event handling.", | |
"keywords": [ | |
"events", | |
"psr", | |
"psr-14" | |
], | |
"support": { | |
"issues": "https://github.com/php-fig/event-dispatcher/issues", | |
"source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" | |
}, | |
"time": "2019-01-08T18:20:26+00:00" | |
}, | |
{ | |
"name": "psr/log", | |
"version": "1.1.4", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/php-fig/log.git", | |
"reference": "d49695b909c3b7628b6289db5479a1c204601f11" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", | |
"reference": "d49695b909c3b7628b6289db5479a1c204601f11", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=5.3.0" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "1.1.x-dev" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Psr\\Log\\": "Psr/Log/" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "PHP-FIG", | |
"homepage": "https://www.php-fig.org/" | |
} | |
], | |
"description": "Common interface for logging libraries", | |
"homepage": "https://github.com/php-fig/log", | |
"keywords": [ | |
"log", | |
"psr", | |
"psr-3" | |
], | |
"support": { | |
"source": "https://github.com/php-fig/log/tree/1.1.4" | |
}, | |
"time": "2021-05-03T11:20:27+00:00" | |
}, | |
{ | |
"name": "symfony/cache", | |
"version": "v5.4.23", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/cache.git", | |
"reference": "983c79ff28612cdfd66d8e44e1a06e5afc87e107" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/cache/zipball/983c79ff28612cdfd66d8e44e1a06e5afc87e107", | |
"reference": "983c79ff28612cdfd66d8e44e1a06e5afc87e107", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/cache": "^1.0|^2.0", | |
"psr/log": "^1.1|^2|^3", | |
"symfony/cache-contracts": "^1.1.7|^2", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/polyfill-php73": "^1.9", | |
"symfony/polyfill-php80": "^1.16", | |
"symfony/service-contracts": "^1.1|^2|^3", | |
"symfony/var-exporter": "^4.4|^5.0|^6.0" | |
}, | |
"conflict": { | |
"doctrine/dbal": "<2.13.1", | |
"symfony/dependency-injection": "<4.4", | |
"symfony/http-kernel": "<4.4", | |
"symfony/var-dumper": "<4.4" | |
}, | |
"provide": { | |
"psr/cache-implementation": "1.0|2.0", | |
"psr/simple-cache-implementation": "1.0|2.0", | |
"symfony/cache-implementation": "1.0|2.0" | |
}, | |
"require-dev": { | |
"cache/integration-tests": "dev-master", | |
"doctrine/cache": "^1.6|^2.0", | |
"doctrine/dbal": "^2.13.1|^3.0", | |
"predis/predis": "^1.1", | |
"psr/simple-cache": "^1.0|^2.0", | |
"symfony/config": "^4.4|^5.0|^6.0", | |
"symfony/dependency-injection": "^4.4|^5.0|^6.0", | |
"symfony/filesystem": "^4.4|^5.0|^6.0", | |
"symfony/http-kernel": "^4.4|^5.0|^6.0", | |
"symfony/messenger": "^4.4|^5.0|^6.0", | |
"symfony/var-dumper": "^4.4|^5.0|^6.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\Cache\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Provides extended PSR-6, PSR-16 (and tags) implementations", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"caching", | |
"psr6" | |
], | |
"support": { | |
"source": "https://github.com/symfony/cache/tree/v5.4.23" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-04-21T15:38:51+00:00" | |
}, | |
{ | |
"name": "symfony/cache-contracts", | |
"version": "v2.5.2", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/cache-contracts.git", | |
"reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc", | |
"reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/cache": "^1.0|^2.0|^3.0" | |
}, | |
"suggest": { | |
"symfony/cache-implementation": "" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "2.5-dev" | |
}, | |
"thanks": { | |
"name": "symfony/contracts", | |
"url": "https://github.com/symfony/contracts" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Contracts\\Cache\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Generic abstractions related to caching", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"abstractions", | |
"contracts", | |
"decoupling", | |
"interfaces", | |
"interoperability", | |
"standards" | |
], | |
"support": { | |
"source": "https://github.com/symfony/cache-contracts/tree/v2.5.2" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-01-02T09:53:40+00:00" | |
}, | |
{ | |
"name": "symfony/dependency-injection", | |
"version": "v5.4.24", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/dependency-injection.git", | |
"reference": "4645e032d0963fb614969398ca28e47605b1a7da" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4645e032d0963fb614969398ca28e47605b1a7da", | |
"reference": "4645e032d0963fb614969398ca28e47605b1a7da", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/container": "^1.1.1", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/polyfill-php80": "^1.16", | |
"symfony/polyfill-php81": "^1.22", | |
"symfony/service-contracts": "^1.1.6|^2" | |
}, | |
"conflict": { | |
"ext-psr": "<1.1|>=2", | |
"symfony/config": "<5.3", | |
"symfony/finder": "<4.4", | |
"symfony/proxy-manager-bridge": "<4.4", | |
"symfony/yaml": "<4.4.26" | |
}, | |
"provide": { | |
"psr/container-implementation": "1.0", | |
"symfony/service-implementation": "1.0|2.0" | |
}, | |
"require-dev": { | |
"symfony/config": "^5.3|^6.0", | |
"symfony/expression-language": "^4.4|^5.0|^6.0", | |
"symfony/yaml": "^4.4.26|^5.0|^6.0" | |
}, | |
"suggest": { | |
"symfony/config": "", | |
"symfony/expression-language": "For using expressions in service container configuration", | |
"symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", | |
"symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", | |
"symfony/yaml": "" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\DependencyInjection\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Fabien Potencier", | |
"email": "fabien@symfony.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Allows you to standardize and centralize the way objects are constructed in your application", | |
"homepage": "https://symfony.com", | |
"support": { | |
"source": "https://github.com/symfony/dependency-injection/tree/v5.4.24" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-05-05T14:42:55+00:00" | |
}, | |
{ | |
"name": "symfony/deprecation-contracts", | |
"version": "v2.5.2", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/deprecation-contracts.git", | |
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", | |
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "2.5-dev" | |
}, | |
"thanks": { | |
"name": "symfony/contracts", | |
"url": "https://github.com/symfony/contracts" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"function.php" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "A generic function and convention to trigger deprecation notices", | |
"homepage": "https://symfony.com", | |
"support": { | |
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-01-02T09:53:40+00:00" | |
}, | |
{ | |
"name": "symfony/event-dispatcher", | |
"version": "v5.4.22", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/event-dispatcher.git", | |
"reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1df20e45d56da29a4b1d8259dd6e950acbf1b13f", | |
"reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/event-dispatcher-contracts": "^2|^3", | |
"symfony/polyfill-php80": "^1.16" | |
}, | |
"conflict": { | |
"symfony/dependency-injection": "<4.4" | |
}, | |
"provide": { | |
"psr/event-dispatcher-implementation": "1.0", | |
"symfony/event-dispatcher-implementation": "2.0" | |
}, | |
"require-dev": { | |
"psr/log": "^1|^2|^3", | |
"symfony/config": "^4.4|^5.0|^6.0", | |
"symfony/dependency-injection": "^4.4|^5.0|^6.0", | |
"symfony/error-handler": "^4.4|^5.0|^6.0", | |
"symfony/expression-language": "^4.4|^5.0|^6.0", | |
"symfony/http-foundation": "^4.4|^5.0|^6.0", | |
"symfony/service-contracts": "^1.1|^2|^3", | |
"symfony/stopwatch": "^4.4|^5.0|^6.0" | |
}, | |
"suggest": { | |
"symfony/dependency-injection": "", | |
"symfony/http-kernel": "" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\EventDispatcher\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Fabien Potencier", | |
"email": "fabien@symfony.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", | |
"homepage": "https://symfony.com", | |
"support": { | |
"source": "https://github.com/symfony/event-dispatcher/tree/v5.4.22" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-03-17T11:31:58+00:00" | |
}, | |
{ | |
"name": "symfony/event-dispatcher-contracts", | |
"version": "v2.5.2", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/event-dispatcher-contracts.git", | |
"reference": "f98b54df6ad059855739db6fcbc2d36995283fe1" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1", | |
"reference": "f98b54df6ad059855739db6fcbc2d36995283fe1", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/event-dispatcher": "^1" | |
}, | |
"suggest": { | |
"symfony/event-dispatcher-implementation": "" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "2.5-dev" | |
}, | |
"thanks": { | |
"name": "symfony/contracts", | |
"url": "https://github.com/symfony/contracts" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Contracts\\EventDispatcher\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Generic abstractions related to dispatching event", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"abstractions", | |
"contracts", | |
"decoupling", | |
"interfaces", | |
"interoperability", | |
"standards" | |
], | |
"support": { | |
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-01-02T09:53:40+00:00" | |
}, | |
{ | |
"name": "symfony/http-client", | |
"version": "v5.4.24", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/http-client.git", | |
"reference": "9e89ac4c9dfe29f4ed2b10a36e62720286632ad6" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/http-client/zipball/9e89ac4c9dfe29f4ed2b10a36e62720286632ad6", | |
"reference": "9e89ac4c9dfe29f4ed2b10a36e62720286632ad6", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/log": "^1|^2|^3", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/http-client-contracts": "^2.4", | |
"symfony/polyfill-php73": "^1.11", | |
"symfony/polyfill-php80": "^1.16", | |
"symfony/service-contracts": "^1.0|^2|^3" | |
}, | |
"provide": { | |
"php-http/async-client-implementation": "*", | |
"php-http/client-implementation": "*", | |
"psr/http-client-implementation": "1.0", | |
"symfony/http-client-implementation": "2.4" | |
}, | |
"require-dev": { | |
"amphp/amp": "^2.5", | |
"amphp/http-client": "^4.2.1", | |
"amphp/http-tunnel": "^1.0", | |
"amphp/socket": "^1.1", | |
"guzzlehttp/promises": "^1.4", | |
"nyholm/psr7": "^1.0", | |
"php-http/httplug": "^1.0|^2.0", | |
"php-http/message-factory": "^1.0", | |
"psr/http-client": "^1.0", | |
"symfony/dependency-injection": "^4.4|^5.0|^6.0", | |
"symfony/http-kernel": "^4.4.13|^5.1.5|^6.0", | |
"symfony/process": "^4.4|^5.0|^6.0", | |
"symfony/stopwatch": "^4.4|^5.0|^6.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\HttpClient\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"http" | |
], | |
"support": { | |
"source": "https://github.com/symfony/http-client/tree/v5.4.24" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-05-07T13:11:28+00:00" | |
}, | |
{ | |
"name": "symfony/http-client-contracts", | |
"version": "v2.5.2", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/http-client-contracts.git", | |
"reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", | |
"reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5" | |
}, | |
"suggest": { | |
"symfony/http-client-implementation": "" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "2.5-dev" | |
}, | |
"thanks": { | |
"name": "symfony/contracts", | |
"url": "https://github.com/symfony/contracts" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Contracts\\HttpClient\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Generic abstractions related to HTTP clients", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"abstractions", | |
"contracts", | |
"decoupling", | |
"interfaces", | |
"interoperability", | |
"standards" | |
], | |
"support": { | |
"source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-04-12T15:48:08+00:00" | |
}, | |
{ | |
"name": "symfony/http-foundation", | |
"version": "v5.4.24", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/http-foundation.git", | |
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/3c59f97f6249ce552a44f01b93bfcbd786a954f5", | |
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/polyfill-mbstring": "~1.1", | |
"symfony/polyfill-php80": "^1.16" | |
}, | |
"require-dev": { | |
"predis/predis": "~1.0", | |
"symfony/cache": "^4.4|^5.0|^6.0", | |
"symfony/dependency-injection": "^5.4|^6.0", | |
"symfony/expression-language": "^4.4|^5.0|^6.0", | |
"symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", | |
"symfony/mime": "^4.4|^5.0|^6.0", | |
"symfony/rate-limiter": "^5.2|^6.0" | |
}, | |
"suggest": { | |
"symfony/mime": "To use the file extension guesser" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\HttpFoundation\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Fabien Potencier", | |
"email": "fabien@symfony.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Defines an object-oriented layer for the HTTP specification", | |
"homepage": "https://symfony.com", | |
"support": { | |
"source": "https://github.com/symfony/http-foundation/tree/v5.4.24" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-05-19T07:21:23+00:00" | |
}, | |
{ | |
"name": "symfony/mailer", | |
"version": "v5.4.22", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/mailer.git", | |
"reference": "6330cd465dfd8b7a07515757a1c37069075f7b0b" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/mailer/zipball/6330cd465dfd8b7a07515757a1c37069075f7b0b", | |
"reference": "6330cd465dfd8b7a07515757a1c37069075f7b0b", | |
"shasum": "" | |
}, | |
"require": { | |
"egulias/email-validator": "^2.1.10|^3|^4", | |
"php": ">=7.2.5", | |
"psr/event-dispatcher": "^1", | |
"psr/log": "^1|^2|^3", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/event-dispatcher": "^4.4|^5.0|^6.0", | |
"symfony/mime": "^5.2.6|^6.0", | |
"symfony/polyfill-php80": "^1.16", | |
"symfony/service-contracts": "^1.1|^2|^3" | |
}, | |
"conflict": { | |
"symfony/http-kernel": "<4.4" | |
}, | |
"require-dev": { | |
"symfony/http-client": "^4.4|^5.0|^6.0", | |
"symfony/messenger": "^4.4|^5.0|^6.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\Mailer\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Fabien Potencier", | |
"email": "fabien@symfony.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Helps sending emails", | |
"homepage": "https://symfony.com", | |
"support": { | |
"source": "https://github.com/symfony/mailer/tree/v5.4.22" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-03-10T10:15:32+00:00" | |
}, | |
{ | |
"name": "symfony/mime", | |
"version": "v5.4.23", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/mime.git", | |
"reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/mime/zipball/ae0a1032a450a3abf305ee44fc55ed423fbf16e3", | |
"reference": "ae0a1032a450a3abf305ee44fc55ed423fbf16e3", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"symfony/deprecation-contracts": "^2.1|^3", | |
"symfony/polyfill-intl-idn": "^1.10", | |
"symfony/polyfill-mbstring": "^1.0", | |
"symfony/polyfill-php80": "^1.16" | |
}, | |
"conflict": { | |
"egulias/email-validator": "~3.0.0", | |
"phpdocumentor/reflection-docblock": "<3.2.2", | |
"phpdocumentor/type-resolver": "<1.4.0", | |
"symfony/mailer": "<4.4", | |
"symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" | |
}, | |
"require-dev": { | |
"egulias/email-validator": "^2.1.10|^3.1|^4", | |
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", | |
"symfony/dependency-injection": "^4.4|^5.0|^6.0", | |
"symfony/property-access": "^4.4|^5.1|^6.0", | |
"symfony/property-info": "^4.4|^5.1|^6.0", | |
"symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\Mime\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Fabien Potencier", | |
"email": "fabien@symfony.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Allows manipulating MIME messages", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"mime", | |
"mime-type" | |
], | |
"support": { | |
"source": "https://github.com/symfony/mime/tree/v5.4.23" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-04-19T09:49:13+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-intl-idn", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-intl-idn.git", | |
"reference": "639084e360537a19f9ee352433b84ce831f3d2da" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", | |
"reference": "639084e360537a19f9ee352433b84ce831f3d2da", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1", | |
"symfony/polyfill-intl-normalizer": "^1.10", | |
"symfony/polyfill-php72": "^1.10" | |
}, | |
"suggest": { | |
"ext-intl": "For best performance" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Intl\\Idn\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Laurent Bassin", | |
"email": "laurent@bassin.info" | |
}, | |
{ | |
"name": "Trevor Rowbotham", | |
"email": "trevor.rowbotham@pm.me" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"idn", | |
"intl", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-intl-normalizer", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-intl-normalizer.git", | |
"reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", | |
"reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"suggest": { | |
"ext-intl": "For best performance" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Intl\\Normalizer\\": "" | |
}, | |
"classmap": [ | |
"Resources/stubs" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill for intl's Normalizer class and related functions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"intl", | |
"normalizer", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-mbstring", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-mbstring.git", | |
"reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | |
"reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"provide": { | |
"ext-mbstring": "*" | |
}, | |
"suggest": { | |
"ext-mbstring": "For best performance" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Mbstring\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill for the Mbstring extension", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"mbstring", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-php72", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-php72.git", | |
"reference": "869329b1e9894268a8a61dabb69153029b7a8c97" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", | |
"reference": "869329b1e9894268a8a61dabb69153029b7a8c97", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Php72\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-php73", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-php73.git", | |
"reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", | |
"reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Php73\\": "" | |
}, | |
"classmap": [ | |
"Resources/stubs" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-php80", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-php80.git", | |
"reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | |
"reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Php80\\": "" | |
}, | |
"classmap": [ | |
"Resources/stubs" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Ion Bazan", | |
"email": "ion.bazan@gmail.com" | |
}, | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/polyfill-php81", | |
"version": "v1.27.0", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/polyfill-php81.git", | |
"reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", | |
"reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.1" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "1.27-dev" | |
}, | |
"thanks": { | |
"name": "symfony/polyfill", | |
"url": "https://github.com/symfony/polyfill" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"bootstrap.php" | |
], | |
"psr-4": { | |
"Symfony\\Polyfill\\Php81\\": "" | |
}, | |
"classmap": [ | |
"Resources/stubs" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"compatibility", | |
"polyfill", | |
"portable", | |
"shim" | |
], | |
"support": { | |
"source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-11-03T14:55:06+00:00" | |
}, | |
{ | |
"name": "symfony/service-contracts", | |
"version": "v2.5.2", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/service-contracts.git", | |
"reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", | |
"reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"psr/container": "^1.1", | |
"symfony/deprecation-contracts": "^2.1|^3" | |
}, | |
"conflict": { | |
"ext-psr": "<1.1|>=2" | |
}, | |
"suggest": { | |
"symfony/service-implementation": "" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-main": "2.5-dev" | |
}, | |
"thanks": { | |
"name": "symfony/contracts", | |
"url": "https://github.com/symfony/contracts" | |
} | |
}, | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Contracts\\Service\\": "" | |
} | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Generic abstractions related to writing services", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"abstractions", | |
"contracts", | |
"decoupling", | |
"interfaces", | |
"interoperability", | |
"standards" | |
], | |
"support": { | |
"source": "https://github.com/symfony/service-contracts/tree/v2.5.2" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2022-05-30T19:17:29+00:00" | |
}, | |
{ | |
"name": "symfony/var-exporter", | |
"version": "v5.4.21", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/symfony/var-exporter.git", | |
"reference": "be74908a6942fdd331554b3cec27ff41b45ccad4" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/be74908a6942fdd331554b3cec27ff41b45ccad4", | |
"reference": "be74908a6942fdd331554b3cec27ff41b45ccad4", | |
"shasum": "" | |
}, | |
"require": { | |
"php": ">=7.2.5", | |
"symfony/polyfill-php80": "^1.16" | |
}, | |
"require-dev": { | |
"symfony/var-dumper": "^4.4.9|^5.0.9|^6.0" | |
}, | |
"type": "library", | |
"autoload": { | |
"psr-4": { | |
"Symfony\\Component\\VarExporter\\": "" | |
}, | |
"exclude-from-classmap": [ | |
"/Tests/" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"MIT" | |
], | |
"authors": [ | |
{ | |
"name": "Nicolas Grekas", | |
"email": "p@tchwork.com" | |
}, | |
{ | |
"name": "Symfony Community", | |
"homepage": "https://symfony.com/contributors" | |
} | |
], | |
"description": "Allows exporting any serializable PHP data structure to plain PHP code", | |
"homepage": "https://symfony.com", | |
"keywords": [ | |
"clone", | |
"construct", | |
"export", | |
"hydrate", | |
"instantiate", | |
"serialize" | |
], | |
"support": { | |
"source": "https://github.com/symfony/var-exporter/tree/v5.4.21" | |
}, | |
"funding": [ | |
{ | |
"url": "https://symfony.com/sponsor", | |
"type": "custom" | |
}, | |
{ | |
"url": "https://github.com/fabpot", | |
"type": "github" | |
}, | |
{ | |
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | |
"type": "tidelift" | |
} | |
], | |
"time": "2023-02-21T19:46:44+00:00" | |
}, | |
{ | |
"name": "tracy/tracy", | |
"version": "v2.9.7", | |
"source": { | |
"type": "git", | |
"url": "https://github.com/nette/tracy.git", | |
"reference": "1c6e9b5bad030fdf49194154c9674201fa6372bb" | |
}, | |
"dist": { | |
"type": "zip", | |
"url": "https://api.github.com/repos/nette/tracy/zipball/1c6e9b5bad030fdf49194154c9674201fa6372bb", | |
"reference": "1c6e9b5bad030fdf49194154c9674201fa6372bb", | |
"shasum": "" | |
}, | |
"require": { | |
"ext-json": "*", | |
"ext-session": "*", | |
"php": ">=7.2 <8.3" | |
}, | |
"conflict": { | |
"nette/di": "<3.0" | |
}, | |
"require-dev": { | |
"latte/latte": "^2.5", | |
"nette/di": "^3.0", | |
"nette/mail": "^3.0", | |
"nette/tester": "^2.2", | |
"nette/utils": "^3.0", | |
"phpstan/phpstan": "^1.0", | |
"psr/log": "^1.0 || ^2.0 || ^3.0" | |
}, | |
"type": "library", | |
"extra": { | |
"branch-alias": { | |
"dev-master": "2.9-dev" | |
} | |
}, | |
"autoload": { | |
"files": [ | |
"src/Tracy/functions.php" | |
], | |
"classmap": [ | |
"src" | |
] | |
}, | |
"notification-url": "https://packagist.org/downloads/", | |
"license": [ | |
"BSD-3-Clause" | |
], | |
"authors": [ | |
{ | |
"name": "David Grudl", | |
"homepage": "https://davidgrudl.com" | |
}, | |
{ | |
"name": "Nette Community", | |
"homepage": "https://nette.org/contributors" | |
} | |
], | |
"description": "😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.", | |
"homepage": "https://tracy.nette.org", | |
"keywords": [ | |
"Xdebug", | |
"debug", | |
"debugger", | |
"nette", | |
"profiler" | |
], | |
"support": { | |
"issues": "https://github.com/nette/tracy/issues", | |
"source": "https://github.com/nette/tracy/tree/v2.9.7" | |
}, | |
"time": "2023-02-28T13:01:54+00:00" | |
} | |
], | |
"packages-dev": [], | |
"aliases": [], | |
"minimum-stability": "stable", | |
"stability-flags": [], | |
"prefer-stable": false, | |
"prefer-lowest": false, | |
"platform": { | |
"php": "^7.3" | |
}, | |
"platform-dev": [], | |
"platform-overrides": { | |
"php": "7.3.31" | |
}, | |
"plugin-api-version": "2.3.0" | |
} |