| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,17 @@ |
| 1 |
+# EditorConfig is awesome: http://EditorConfig.org |
|
| 2 |
+ |
|
| 3 |
+# top-most EditorConfig file |
|
| 4 |
+root = true |
|
| 5 |
+ |
|
| 6 |
+# Unix-style newlines with a newline ending every file |
|
| 7 |
+[*] |
|
| 8 |
+end_of_line = lf |
|
| 9 |
+insert_final_newline = true |
|
| 10 |
+trim_trailing_whitespace = true |
|
| 11 |
+ |
|
| 12 |
+[*.{php,twig,yml,json}]
|
|
| 13 |
+indent_style = space |
|
| 14 |
+indent_size = 4 |
|
| 15 |
+ |
|
| 16 |
+[*.{html5,svg,min.css,min.js}]
|
|
| 17 |
+insert_final_newline = false |
| 0 | 4 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,72 @@ |
| 1 |
+{
|
|
| 2 |
+ "name": "luumicore/core-bundle", |
|
| 3 |
+ "description": "luumiCORE by vonRotenberg core bundle", |
|
| 4 |
+ "license": "proprietary", |
|
| 5 |
+ "type": "contao-bundle", |
|
| 6 |
+ "authors": [ |
|
| 7 |
+ {
|
|
| 8 |
+ "name": "Benjamin Roth", |
|
| 9 |
+ "homepage": "https://www.vonrotenberg.de" |
|
| 10 |
+ }, |
|
| 11 |
+ {
|
|
| 12 |
+ "name": "vonRotenberg", |
|
| 13 |
+ "homepage": "https://www.vonrotenberg.de" |
|
| 14 |
+ } |
|
| 15 |
+ ], |
|
| 16 |
+ "homepage": "https://www.luumicore.com", |
|
| 17 |
+ "support": {
|
|
| 18 |
+ "issues": "https://www.luumicore.com" |
|
| 19 |
+ }, |
|
| 20 |
+ "require": {
|
|
| 21 |
+ "php": "^8.2", |
|
| 22 |
+ "contao/core-bundle": "^5.6", |
|
| 23 |
+ "symfony/config": "^6.4 || ^7.0", |
|
| 24 |
+ "symfony/dependency-injection": "^6.4 || ^7.0", |
|
| 25 |
+ "symfony/http-kernel": "^6.4 || ^7.0", |
|
| 26 |
+ "symfony/serializer": "^6.4 || ^7.0", |
|
| 27 |
+ "symfony/property-access": "^6.4 || ^7.0" |
|
| 28 |
+ }, |
|
| 29 |
+ "require-dev": {
|
|
| 30 |
+ "bamarni/composer-bin-plugin": "^1.5", |
|
| 31 |
+ "contao/manager-plugin": "^2.3.1", |
|
| 32 |
+ "phpunit/phpunit": "^11.5", |
|
| 33 |
+ "symfony/phpunit-bridge": "^6.4 || ^7.0" |
|
| 34 |
+ }, |
|
| 35 |
+ "conflict": {
|
|
| 36 |
+ "contao/manager-plugin": "<2.0 || >=3.0" |
|
| 37 |
+ }, |
|
| 38 |
+ "autoload": {
|
|
| 39 |
+ "psr-4": {
|
|
| 40 |
+ "luumicore\\CoreBundle\\": "src/" |
|
| 41 |
+ } |
|
| 42 |
+ }, |
|
| 43 |
+ "autoload-dev": {
|
|
| 44 |
+ "psr-4": {
|
|
| 45 |
+ "luumicore\\CoreBundle\\Tests\\": "tests/" |
|
| 46 |
+ } |
|
| 47 |
+ }, |
|
| 48 |
+ "config": {
|
|
| 49 |
+ "allow-plugins": {
|
|
| 50 |
+ "bamarni/composer-bin-plugin": true, |
|
| 51 |
+ "contao-components/installer": true, |
|
| 52 |
+ "contao/manager-plugin": true |
|
| 53 |
+ } |
|
| 54 |
+ }, |
|
| 55 |
+ "extra": {
|
|
| 56 |
+ "bamarni-bin": {
|
|
| 57 |
+ "bin-links": false, |
|
| 58 |
+ "target-directory": "tools" |
|
| 59 |
+ }, |
|
| 60 |
+ "contao-manager-plugin": "luumicore\\CoreBundle\\ContaoManager\\Plugin" |
|
| 61 |
+ }, |
|
| 62 |
+ "scripts": {
|
|
| 63 |
+ "all": [ |
|
| 64 |
+ "@unit-tests", |
|
| 65 |
+ "@ecs", |
|
| 66 |
+ "@phpstan" |
|
| 67 |
+ ], |
|
| 68 |
+ "ecs": "@php tools/ecs/vendor/bin/ecs check src tests --config ecs.php --fix --ansi", |
|
| 69 |
+ "phpstan": "@php tools/phpstan/vendor/bin/phpstan analyze --ansi", |
|
| 70 |
+ "unit-tests": "@php vendor/bin/phpunit --colors=always" |
|
| 71 |
+ } |
|
| 72 |
+} |
|
| 0 | 73 |
\ No newline at end of file |
| 0 | 10 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,21 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+declare(strict_types=1); |
|
| 4 |
+ |
|
| 5 |
+use PhpCsFixer\Fixer\Comment\HeaderCommentFixer; |
|
| 6 |
+use Symplify\EasyCodingStandard\Config\ECSConfig; |
|
| 7 |
+ |
|
| 8 |
+return static function (ECSConfig $ecsConfig): void {
|
|
| 9 |
+ $ecsConfig->sets([__DIR__.'/tools/ecs/vendor/contao/easy-coding-standard/config/contao.php']); |
|
| 10 |
+ |
|
| 11 |
+ $ecsConfig->ruleWithConfiguration(HeaderCommentFixer::class, [ |
|
| 12 |
+ 'header' => "This file is part of vonRotenberg WMFGO Cevisio Bundle.\n\n(c) Benjamin Roth\n\n@license proprietary" |
|
| 13 |
+ ]); |
|
| 14 |
+ |
|
| 15 |
+ if (PHP_VERSION_ID < 80000) {
|
|
| 16 |
+ $ecsConfig->ruleWithConfiguration(\PhpCsFixer\Fixer\ControlStructure\TrailingCommaInMultilineFixer::class, ['elements' => ['arrays'], 'after_heredoc' => true]); |
|
| 17 |
+ $ecsConfig->skip([\PhpCsFixer\Fixer\PhpUnit\PhpUnitExpectationFixer::class]); // see https://github.com/symplify/symplify/issues/3130 |
|
| 18 |
+ } |
|
| 19 |
+ |
|
| 20 |
+ // Adjust the configuration according to your needs. |
|
| 21 |
+}; |
| 0 | 22 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,19 @@ |
| 1 |
+includes: |
|
| 2 |
+ - tools/phpstan/vendor/phpstan/phpstan-phpunit/extension.neon |
|
| 3 |
+ - tools/phpstan/vendor/phpstan/phpstan-phpunit/rules.neon |
|
| 4 |
+ - tools/phpstan/vendor/phpstan/phpstan-symfony/extension.neon |
|
| 5 |
+ - tools/phpstan/vendor/phpstan/phpstan-symfony/rules.neon |
|
| 6 |
+ |
|
| 7 |
+parameters: |
|
| 8 |
+ level: 6 |
|
| 9 |
+ |
|
| 10 |
+ paths: |
|
| 11 |
+ - %currentWorkingDirectory%/src |
|
| 12 |
+ - %currentWorkingDirectory%/tests |
|
| 13 |
+ |
|
| 14 |
+ universalObjectCratesClasses: |
|
| 15 |
+ - Contao\Model |
|
| 16 |
+ - Contao\Template |
|
| 17 |
+ |
|
| 18 |
+ excludePaths: |
|
| 19 |
+ - %currentWorkingDirectory%/src/Resources/* |
| 0 | 20 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,19 @@ |
| 1 |
+<?xml version="1.0" encoding="UTF-8"?> |
|
| 2 |
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true"> |
|
| 3 |
+ <coverage> |
|
| 4 |
+ <include> |
|
| 5 |
+ <directory>./src</directory> |
|
| 6 |
+ </include> |
|
| 7 |
+ <exclude> |
|
| 8 |
+ <directory>./src/Resources</directory> |
|
| 9 |
+ </exclude> |
|
| 10 |
+ </coverage> |
|
| 11 |
+ <php> |
|
| 12 |
+ <ini name="error_reporting" value="-1"/> |
|
| 13 |
+ </php> |
|
| 14 |
+ <testsuites> |
|
| 15 |
+ <testsuite name="vonRotenberg Coretools Bundle"> |
|
| 16 |
+ <directory>./tests</directory> |
|
| 17 |
+ </testsuite> |
|
| 18 |
+ </testsuites> |
|
| 19 |
+</phpunit> |
| 0 | 20 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,30 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+declare(strict_types=1); |
|
| 4 |
+ |
|
| 5 |
+/* |
|
| 6 |
+ * This file is part of luumiCORE Core Bundle. |
|
| 7 |
+ * |
|
| 8 |
+ * (c) vonRotenberg |
|
| 9 |
+ * |
|
| 10 |
+ * @license proprietary |
|
| 11 |
+ */ |
|
| 12 |
+ |
|
| 13 |
+namespace luumicore\CoreBundle\ContaoManager; |
|
| 14 |
+ |
|
| 15 |
+use Contao\CoreBundle\ContaoCoreBundle; |
|
| 16 |
+use Contao\ManagerPlugin\Bundle\BundlePluginInterface; |
|
| 17 |
+use Contao\ManagerPlugin\Bundle\Config\BundleConfig; |
|
| 18 |
+use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; |
|
| 19 |
+use luumicore\CoreBundle\LuumicoreCoreBundle; |
|
| 20 |
+ |
|
| 21 |
+class Plugin implements BundlePluginInterface |
|
| 22 |
+{
|
|
| 23 |
+ public function getBundles(ParserInterface $parser): array |
|
| 24 |
+ {
|
|
| 25 |
+ return [ |
|
| 26 |
+ BundleConfig::create(LuumicoreCoreBundle::class) |
|
| 27 |
+ ->setLoadAfter([ContaoCoreBundle::class]), |
|
| 28 |
+ ]; |
|
| 29 |
+ } |
|
| 30 |
+} |
| 0 | 31 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,27 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+declare(strict_types=1); |
|
| 4 |
+ |
|
| 5 |
+/* |
|
| 6 |
+ * This file is part of luumiCORE Core Bundle. |
|
| 7 |
+ * |
|
| 8 |
+ * (c) vonRotenberg |
|
| 9 |
+ * |
|
| 10 |
+ * @license proprietary |
|
| 11 |
+ */ |
|
| 12 |
+ |
|
| 13 |
+namespace luumicore\CoreBundle\DependencyInjection; |
|
| 14 |
+ |
|
| 15 |
+use Symfony\Component\Config\FileLocator; |
|
| 16 |
+use Symfony\Component\DependencyInjection\ContainerBuilder; |
|
| 17 |
+use Symfony\Component\DependencyInjection\Extension\Extension; |
|
| 18 |
+use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; |
|
| 19 |
+ |
|
| 20 |
+class LuumicoreCoreExtension extends Extension |
|
| 21 |
+{
|
|
| 22 |
+ public function load(array $configs, ContainerBuilder $container): void |
|
| 23 |
+ {
|
|
| 24 |
+ $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../../config')); |
|
| 25 |
+ $loader->load('services.yml');
|
|
| 26 |
+ } |
|
| 27 |
+} |
| 0 | 28 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,23 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+declare(strict_types=1); |
|
| 4 |
+ |
|
| 5 |
+/* |
|
| 6 |
+ * This file is part of luumiCORE Core Bundle. |
|
| 7 |
+ * |
|
| 8 |
+ * (c) vonRotenberg |
|
| 9 |
+ * |
|
| 10 |
+ * @license proprietary |
|
| 11 |
+ */ |
|
| 12 |
+ |
|
| 13 |
+namespace luumicore\CoreBundle; |
|
| 14 |
+ |
|
| 15 |
+use Symfony\Component\HttpKernel\Bundle\Bundle; |
|
| 16 |
+ |
|
| 17 |
+class LuumicoreCoreBundle extends Bundle |
|
| 18 |
+{
|
|
| 19 |
+ public function getPath(): string |
|
| 20 |
+ {
|
|
| 21 |
+ return \dirname(__DIR__); |
|
| 22 |
+ } |
|
| 23 |
+} |
| 0 | 11 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,3139 @@ |
| 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": "c7fcdc85e00254798c9f87fad29c1dcd", |
|
| 8 |
+ "packages": [ |
|
| 9 |
+ {
|
|
| 10 |
+ "name": "clue/ndjson-react", |
|
| 11 |
+ "version": "v1.3.0", |
|
| 12 |
+ "source": {
|
|
| 13 |
+ "type": "git", |
|
| 14 |
+ "url": "https://github.com/clue/reactphp-ndjson.git", |
|
| 15 |
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0" |
|
| 16 |
+ }, |
|
| 17 |
+ "dist": {
|
|
| 18 |
+ "type": "zip", |
|
| 19 |
+ "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0", |
|
| 20 |
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0", |
|
| 21 |
+ "shasum": "" |
|
| 22 |
+ }, |
|
| 23 |
+ "require": {
|
|
| 24 |
+ "php": ">=5.3", |
|
| 25 |
+ "react/stream": "^1.2" |
|
| 26 |
+ }, |
|
| 27 |
+ "require-dev": {
|
|
| 28 |
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35", |
|
| 29 |
+ "react/event-loop": "^1.2" |
|
| 30 |
+ }, |
|
| 31 |
+ "type": "library", |
|
| 32 |
+ "autoload": {
|
|
| 33 |
+ "psr-4": {
|
|
| 34 |
+ "Clue\\React\\NDJson\\": "src/" |
|
| 35 |
+ } |
|
| 36 |
+ }, |
|
| 37 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 38 |
+ "license": [ |
|
| 39 |
+ "MIT" |
|
| 40 |
+ ], |
|
| 41 |
+ "authors": [ |
|
| 42 |
+ {
|
|
| 43 |
+ "name": "Christian Lück", |
|
| 44 |
+ "email": "christian@clue.engineering" |
|
| 45 |
+ } |
|
| 46 |
+ ], |
|
| 47 |
+ "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.", |
|
| 48 |
+ "homepage": "https://github.com/clue/reactphp-ndjson", |
|
| 49 |
+ "keywords": [ |
|
| 50 |
+ "NDJSON", |
|
| 51 |
+ "json", |
|
| 52 |
+ "jsonlines", |
|
| 53 |
+ "newline", |
|
| 54 |
+ "reactphp", |
|
| 55 |
+ "streaming" |
|
| 56 |
+ ], |
|
| 57 |
+ "support": {
|
|
| 58 |
+ "issues": "https://github.com/clue/reactphp-ndjson/issues", |
|
| 59 |
+ "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0" |
|
| 60 |
+ }, |
|
| 61 |
+ "funding": [ |
|
| 62 |
+ {
|
|
| 63 |
+ "url": "https://clue.engineering/support", |
|
| 64 |
+ "type": "custom" |
|
| 65 |
+ }, |
|
| 66 |
+ {
|
|
| 67 |
+ "url": "https://github.com/clue", |
|
| 68 |
+ "type": "github" |
|
| 69 |
+ } |
|
| 70 |
+ ], |
|
| 71 |
+ "time": "2022-12-23T10:58:28+00:00" |
|
| 72 |
+ }, |
|
| 73 |
+ {
|
|
| 74 |
+ "name": "composer/pcre", |
|
| 75 |
+ "version": "3.3.2", |
|
| 76 |
+ "source": {
|
|
| 77 |
+ "type": "git", |
|
| 78 |
+ "url": "https://github.com/composer/pcre.git", |
|
| 79 |
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" |
|
| 80 |
+ }, |
|
| 81 |
+ "dist": {
|
|
| 82 |
+ "type": "zip", |
|
| 83 |
+ "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", |
|
| 84 |
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", |
|
| 85 |
+ "shasum": "" |
|
| 86 |
+ }, |
|
| 87 |
+ "require": {
|
|
| 88 |
+ "php": "^7.4 || ^8.0" |
|
| 89 |
+ }, |
|
| 90 |
+ "conflict": {
|
|
| 91 |
+ "phpstan/phpstan": "<1.11.10" |
|
| 92 |
+ }, |
|
| 93 |
+ "require-dev": {
|
|
| 94 |
+ "phpstan/phpstan": "^1.12 || ^2", |
|
| 95 |
+ "phpstan/phpstan-strict-rules": "^1 || ^2", |
|
| 96 |
+ "phpunit/phpunit": "^8 || ^9" |
|
| 97 |
+ }, |
|
| 98 |
+ "type": "library", |
|
| 99 |
+ "extra": {
|
|
| 100 |
+ "phpstan": {
|
|
| 101 |
+ "includes": [ |
|
| 102 |
+ "extension.neon" |
|
| 103 |
+ ] |
|
| 104 |
+ }, |
|
| 105 |
+ "branch-alias": {
|
|
| 106 |
+ "dev-main": "3.x-dev" |
|
| 107 |
+ } |
|
| 108 |
+ }, |
|
| 109 |
+ "autoload": {
|
|
| 110 |
+ "psr-4": {
|
|
| 111 |
+ "Composer\\Pcre\\": "src" |
|
| 112 |
+ } |
|
| 113 |
+ }, |
|
| 114 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 115 |
+ "license": [ |
|
| 116 |
+ "MIT" |
|
| 117 |
+ ], |
|
| 118 |
+ "authors": [ |
|
| 119 |
+ {
|
|
| 120 |
+ "name": "Jordi Boggiano", |
|
| 121 |
+ "email": "j.boggiano@seld.be", |
|
| 122 |
+ "homepage": "http://seld.be" |
|
| 123 |
+ } |
|
| 124 |
+ ], |
|
| 125 |
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.", |
|
| 126 |
+ "keywords": [ |
|
| 127 |
+ "PCRE", |
|
| 128 |
+ "preg", |
|
| 129 |
+ "regex", |
|
| 130 |
+ "regular expression" |
|
| 131 |
+ ], |
|
| 132 |
+ "support": {
|
|
| 133 |
+ "issues": "https://github.com/composer/pcre/issues", |
|
| 134 |
+ "source": "https://github.com/composer/pcre/tree/3.3.2" |
|
| 135 |
+ }, |
|
| 136 |
+ "funding": [ |
|
| 137 |
+ {
|
|
| 138 |
+ "url": "https://packagist.com", |
|
| 139 |
+ "type": "custom" |
|
| 140 |
+ }, |
|
| 141 |
+ {
|
|
| 142 |
+ "url": "https://github.com/composer", |
|
| 143 |
+ "type": "github" |
|
| 144 |
+ }, |
|
| 145 |
+ {
|
|
| 146 |
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer", |
|
| 147 |
+ "type": "tidelift" |
|
| 148 |
+ } |
|
| 149 |
+ ], |
|
| 150 |
+ "time": "2024-11-12T16:29:46+00:00" |
|
| 151 |
+ }, |
|
| 152 |
+ {
|
|
| 153 |
+ "name": "composer/semver", |
|
| 154 |
+ "version": "3.4.4", |
|
| 155 |
+ "source": {
|
|
| 156 |
+ "type": "git", |
|
| 157 |
+ "url": "https://github.com/composer/semver.git", |
|
| 158 |
+ "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95" |
|
| 159 |
+ }, |
|
| 160 |
+ "dist": {
|
|
| 161 |
+ "type": "zip", |
|
| 162 |
+ "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95", |
|
| 163 |
+ "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95", |
|
| 164 |
+ "shasum": "" |
|
| 165 |
+ }, |
|
| 166 |
+ "require": {
|
|
| 167 |
+ "php": "^5.3.2 || ^7.0 || ^8.0" |
|
| 168 |
+ }, |
|
| 169 |
+ "require-dev": {
|
|
| 170 |
+ "phpstan/phpstan": "^1.11", |
|
| 171 |
+ "symfony/phpunit-bridge": "^3 || ^7" |
|
| 172 |
+ }, |
|
| 173 |
+ "type": "library", |
|
| 174 |
+ "extra": {
|
|
| 175 |
+ "branch-alias": {
|
|
| 176 |
+ "dev-main": "3.x-dev" |
|
| 177 |
+ } |
|
| 178 |
+ }, |
|
| 179 |
+ "autoload": {
|
|
| 180 |
+ "psr-4": {
|
|
| 181 |
+ "Composer\\Semver\\": "src" |
|
| 182 |
+ } |
|
| 183 |
+ }, |
|
| 184 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 185 |
+ "license": [ |
|
| 186 |
+ "MIT" |
|
| 187 |
+ ], |
|
| 188 |
+ "authors": [ |
|
| 189 |
+ {
|
|
| 190 |
+ "name": "Nils Adermann", |
|
| 191 |
+ "email": "naderman@naderman.de", |
|
| 192 |
+ "homepage": "http://www.naderman.de" |
|
| 193 |
+ }, |
|
| 194 |
+ {
|
|
| 195 |
+ "name": "Jordi Boggiano", |
|
| 196 |
+ "email": "j.boggiano@seld.be", |
|
| 197 |
+ "homepage": "http://seld.be" |
|
| 198 |
+ }, |
|
| 199 |
+ {
|
|
| 200 |
+ "name": "Rob Bast", |
|
| 201 |
+ "email": "rob.bast@gmail.com", |
|
| 202 |
+ "homepage": "http://robbast.nl" |
|
| 203 |
+ } |
|
| 204 |
+ ], |
|
| 205 |
+ "description": "Semver library that offers utilities, version constraint parsing and validation.", |
|
| 206 |
+ "keywords": [ |
|
| 207 |
+ "semantic", |
|
| 208 |
+ "semver", |
|
| 209 |
+ "validation", |
|
| 210 |
+ "versioning" |
|
| 211 |
+ ], |
|
| 212 |
+ "support": {
|
|
| 213 |
+ "irc": "ircs://irc.libera.chat:6697/composer", |
|
| 214 |
+ "issues": "https://github.com/composer/semver/issues", |
|
| 215 |
+ "source": "https://github.com/composer/semver/tree/3.4.4" |
|
| 216 |
+ }, |
|
| 217 |
+ "funding": [ |
|
| 218 |
+ {
|
|
| 219 |
+ "url": "https://packagist.com", |
|
| 220 |
+ "type": "custom" |
|
| 221 |
+ }, |
|
| 222 |
+ {
|
|
| 223 |
+ "url": "https://github.com/composer", |
|
| 224 |
+ "type": "github" |
|
| 225 |
+ } |
|
| 226 |
+ ], |
|
| 227 |
+ "time": "2025-08-20T19:15:30+00:00" |
|
| 228 |
+ }, |
|
| 229 |
+ {
|
|
| 230 |
+ "name": "composer/xdebug-handler", |
|
| 231 |
+ "version": "3.0.5", |
|
| 232 |
+ "source": {
|
|
| 233 |
+ "type": "git", |
|
| 234 |
+ "url": "https://github.com/composer/xdebug-handler.git", |
|
| 235 |
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" |
|
| 236 |
+ }, |
|
| 237 |
+ "dist": {
|
|
| 238 |
+ "type": "zip", |
|
| 239 |
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", |
|
| 240 |
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", |
|
| 241 |
+ "shasum": "" |
|
| 242 |
+ }, |
|
| 243 |
+ "require": {
|
|
| 244 |
+ "composer/pcre": "^1 || ^2 || ^3", |
|
| 245 |
+ "php": "^7.2.5 || ^8.0", |
|
| 246 |
+ "psr/log": "^1 || ^2 || ^3" |
|
| 247 |
+ }, |
|
| 248 |
+ "require-dev": {
|
|
| 249 |
+ "phpstan/phpstan": "^1.0", |
|
| 250 |
+ "phpstan/phpstan-strict-rules": "^1.1", |
|
| 251 |
+ "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" |
|
| 252 |
+ }, |
|
| 253 |
+ "type": "library", |
|
| 254 |
+ "autoload": {
|
|
| 255 |
+ "psr-4": {
|
|
| 256 |
+ "Composer\\XdebugHandler\\": "src" |
|
| 257 |
+ } |
|
| 258 |
+ }, |
|
| 259 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 260 |
+ "license": [ |
|
| 261 |
+ "MIT" |
|
| 262 |
+ ], |
|
| 263 |
+ "authors": [ |
|
| 264 |
+ {
|
|
| 265 |
+ "name": "John Stevenson", |
|
| 266 |
+ "email": "john-stevenson@blueyonder.co.uk" |
|
| 267 |
+ } |
|
| 268 |
+ ], |
|
| 269 |
+ "description": "Restarts a process without Xdebug.", |
|
| 270 |
+ "keywords": [ |
|
| 271 |
+ "Xdebug", |
|
| 272 |
+ "performance" |
|
| 273 |
+ ], |
|
| 274 |
+ "support": {
|
|
| 275 |
+ "irc": "ircs://irc.libera.chat:6697/composer", |
|
| 276 |
+ "issues": "https://github.com/composer/xdebug-handler/issues", |
|
| 277 |
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" |
|
| 278 |
+ }, |
|
| 279 |
+ "funding": [ |
|
| 280 |
+ {
|
|
| 281 |
+ "url": "https://packagist.com", |
|
| 282 |
+ "type": "custom" |
|
| 283 |
+ }, |
|
| 284 |
+ {
|
|
| 285 |
+ "url": "https://github.com/composer", |
|
| 286 |
+ "type": "github" |
|
| 287 |
+ }, |
|
| 288 |
+ {
|
|
| 289 |
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer", |
|
| 290 |
+ "type": "tidelift" |
|
| 291 |
+ } |
|
| 292 |
+ ], |
|
| 293 |
+ "time": "2024-05-06T16:37:16+00:00" |
|
| 294 |
+ }, |
|
| 295 |
+ {
|
|
| 296 |
+ "name": "contao/easy-coding-standard", |
|
| 297 |
+ "version": "6.13.8", |
|
| 298 |
+ "source": {
|
|
| 299 |
+ "type": "git", |
|
| 300 |
+ "url": "https://github.com/contao/easy-coding-standard.git", |
|
| 301 |
+ "reference": "6e589aee080496b1b2c12402b5d666a91297d8b7" |
|
| 302 |
+ }, |
|
| 303 |
+ "dist": {
|
|
| 304 |
+ "type": "zip", |
|
| 305 |
+ "url": "https://api.github.com/repos/contao/easy-coding-standard/zipball/6e589aee080496b1b2c12402b5d666a91297d8b7", |
|
| 306 |
+ "reference": "6e589aee080496b1b2c12402b5d666a91297d8b7", |
|
| 307 |
+ "shasum": "" |
|
| 308 |
+ }, |
|
| 309 |
+ "require": {
|
|
| 310 |
+ "kubawerlos/php-cs-fixer-custom-fixers": "^3.14", |
|
| 311 |
+ "php": "^8.1", |
|
| 312 |
+ "slevomat/coding-standard": "^8.0", |
|
| 313 |
+ "symplify/easy-coding-standard": "^13.0" |
|
| 314 |
+ }, |
|
| 315 |
+ "require-dev": {
|
|
| 316 |
+ "contao/rector": "^1.2", |
|
| 317 |
+ "phpunit/phpunit": "^11.5" |
|
| 318 |
+ }, |
|
| 319 |
+ "type": "library", |
|
| 320 |
+ "autoload": {
|
|
| 321 |
+ "psr-4": {
|
|
| 322 |
+ "Contao\\EasyCodingStandard\\": "src/" |
|
| 323 |
+ } |
|
| 324 |
+ }, |
|
| 325 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 326 |
+ "license": [ |
|
| 327 |
+ "LGPL-3.0-or-later" |
|
| 328 |
+ ], |
|
| 329 |
+ "authors": [ |
|
| 330 |
+ {
|
|
| 331 |
+ "name": "Leo Feyer", |
|
| 332 |
+ "homepage": "https://github.com/leofeyer" |
|
| 333 |
+ } |
|
| 334 |
+ ], |
|
| 335 |
+ "description": "EasyCodingStandard configurations for Contao", |
|
| 336 |
+ "support": {
|
|
| 337 |
+ "issues": "https://github.com/contao/easy-coding-standard/issues", |
|
| 338 |
+ "source": "https://github.com/contao/easy-coding-standard/tree/6.13.8" |
|
| 339 |
+ }, |
|
| 340 |
+ "funding": [ |
|
| 341 |
+ {
|
|
| 342 |
+ "url": "https://to.contao.org/donate", |
|
| 343 |
+ "type": "custom" |
|
| 344 |
+ } |
|
| 345 |
+ ], |
|
| 346 |
+ "time": "2025-12-10T16:50:25+00:00" |
|
| 347 |
+ }, |
|
| 348 |
+ {
|
|
| 349 |
+ "name": "dealerdirect/phpcodesniffer-composer-installer", |
|
| 350 |
+ "version": "v1.2.0", |
|
| 351 |
+ "source": {
|
|
| 352 |
+ "type": "git", |
|
| 353 |
+ "url": "https://github.com/PHPCSStandards/composer-installer.git", |
|
| 354 |
+ "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1" |
|
| 355 |
+ }, |
|
| 356 |
+ "dist": {
|
|
| 357 |
+ "type": "zip", |
|
| 358 |
+ "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1", |
|
| 359 |
+ "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1", |
|
| 360 |
+ "shasum": "" |
|
| 361 |
+ }, |
|
| 362 |
+ "require": {
|
|
| 363 |
+ "composer-plugin-api": "^2.2", |
|
| 364 |
+ "php": ">=5.4", |
|
| 365 |
+ "squizlabs/php_codesniffer": "^3.1.0 || ^4.0" |
|
| 366 |
+ }, |
|
| 367 |
+ "require-dev": {
|
|
| 368 |
+ "composer/composer": "^2.2", |
|
| 369 |
+ "ext-json": "*", |
|
| 370 |
+ "ext-zip": "*", |
|
| 371 |
+ "php-parallel-lint/php-parallel-lint": "^1.4.0", |
|
| 372 |
+ "phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev", |
|
| 373 |
+ "yoast/phpunit-polyfills": "^1.0" |
|
| 374 |
+ }, |
|
| 375 |
+ "type": "composer-plugin", |
|
| 376 |
+ "extra": {
|
|
| 377 |
+ "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" |
|
| 378 |
+ }, |
|
| 379 |
+ "autoload": {
|
|
| 380 |
+ "psr-4": {
|
|
| 381 |
+ "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" |
|
| 382 |
+ } |
|
| 383 |
+ }, |
|
| 384 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 385 |
+ "license": [ |
|
| 386 |
+ "MIT" |
|
| 387 |
+ ], |
|
| 388 |
+ "authors": [ |
|
| 389 |
+ {
|
|
| 390 |
+ "name": "Franck Nijhof", |
|
| 391 |
+ "email": "opensource@frenck.dev", |
|
| 392 |
+ "homepage": "https://frenck.dev", |
|
| 393 |
+ "role": "Open source developer" |
|
| 394 |
+ }, |
|
| 395 |
+ {
|
|
| 396 |
+ "name": "Contributors", |
|
| 397 |
+ "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" |
|
| 398 |
+ } |
|
| 399 |
+ ], |
|
| 400 |
+ "description": "PHP_CodeSniffer Standards Composer Installer Plugin", |
|
| 401 |
+ "keywords": [ |
|
| 402 |
+ "PHPCodeSniffer", |
|
| 403 |
+ "PHP_CodeSniffer", |
|
| 404 |
+ "code quality", |
|
| 405 |
+ "codesniffer", |
|
| 406 |
+ "composer", |
|
| 407 |
+ "installer", |
|
| 408 |
+ "phpcbf", |
|
| 409 |
+ "phpcs", |
|
| 410 |
+ "plugin", |
|
| 411 |
+ "qa", |
|
| 412 |
+ "quality", |
|
| 413 |
+ "standard", |
|
| 414 |
+ "standards", |
|
| 415 |
+ "style guide", |
|
| 416 |
+ "stylecheck", |
|
| 417 |
+ "tests" |
|
| 418 |
+ ], |
|
| 419 |
+ "support": {
|
|
| 420 |
+ "issues": "https://github.com/PHPCSStandards/composer-installer/issues", |
|
| 421 |
+ "security": "https://github.com/PHPCSStandards/composer-installer/security/policy", |
|
| 422 |
+ "source": "https://github.com/PHPCSStandards/composer-installer" |
|
| 423 |
+ }, |
|
| 424 |
+ "funding": [ |
|
| 425 |
+ {
|
|
| 426 |
+ "url": "https://github.com/PHPCSStandards", |
|
| 427 |
+ "type": "github" |
|
| 428 |
+ }, |
|
| 429 |
+ {
|
|
| 430 |
+ "url": "https://github.com/jrfnl", |
|
| 431 |
+ "type": "github" |
|
| 432 |
+ }, |
|
| 433 |
+ {
|
|
| 434 |
+ "url": "https://opencollective.com/php_codesniffer", |
|
| 435 |
+ "type": "open_collective" |
|
| 436 |
+ }, |
|
| 437 |
+ {
|
|
| 438 |
+ "url": "https://thanks.dev/u/gh/phpcsstandards", |
|
| 439 |
+ "type": "thanks_dev" |
|
| 440 |
+ } |
|
| 441 |
+ ], |
|
| 442 |
+ "time": "2025-11-11T04:32:07+00:00" |
|
| 443 |
+ }, |
|
| 444 |
+ {
|
|
| 445 |
+ "name": "evenement/evenement", |
|
| 446 |
+ "version": "v3.0.2", |
|
| 447 |
+ "source": {
|
|
| 448 |
+ "type": "git", |
|
| 449 |
+ "url": "https://github.com/igorw/evenement.git", |
|
| 450 |
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" |
|
| 451 |
+ }, |
|
| 452 |
+ "dist": {
|
|
| 453 |
+ "type": "zip", |
|
| 454 |
+ "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", |
|
| 455 |
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", |
|
| 456 |
+ "shasum": "" |
|
| 457 |
+ }, |
|
| 458 |
+ "require": {
|
|
| 459 |
+ "php": ">=7.0" |
|
| 460 |
+ }, |
|
| 461 |
+ "require-dev": {
|
|
| 462 |
+ "phpunit/phpunit": "^9 || ^6" |
|
| 463 |
+ }, |
|
| 464 |
+ "type": "library", |
|
| 465 |
+ "autoload": {
|
|
| 466 |
+ "psr-4": {
|
|
| 467 |
+ "Evenement\\": "src/" |
|
| 468 |
+ } |
|
| 469 |
+ }, |
|
| 470 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 471 |
+ "license": [ |
|
| 472 |
+ "MIT" |
|
| 473 |
+ ], |
|
| 474 |
+ "authors": [ |
|
| 475 |
+ {
|
|
| 476 |
+ "name": "Igor Wiedler", |
|
| 477 |
+ "email": "igor@wiedler.ch" |
|
| 478 |
+ } |
|
| 479 |
+ ], |
|
| 480 |
+ "description": "Événement is a very simple event dispatching library for PHP", |
|
| 481 |
+ "keywords": [ |
|
| 482 |
+ "event-dispatcher", |
|
| 483 |
+ "event-emitter" |
|
| 484 |
+ ], |
|
| 485 |
+ "support": {
|
|
| 486 |
+ "issues": "https://github.com/igorw/evenement/issues", |
|
| 487 |
+ "source": "https://github.com/igorw/evenement/tree/v3.0.2" |
|
| 488 |
+ }, |
|
| 489 |
+ "time": "2023-08-08T05:53:35+00:00" |
|
| 490 |
+ }, |
|
| 491 |
+ {
|
|
| 492 |
+ "name": "fidry/cpu-core-counter", |
|
| 493 |
+ "version": "1.3.0", |
|
| 494 |
+ "source": {
|
|
| 495 |
+ "type": "git", |
|
| 496 |
+ "url": "https://github.com/theofidry/cpu-core-counter.git", |
|
| 497 |
+ "reference": "db9508f7b1474469d9d3c53b86f817e344732678" |
|
| 498 |
+ }, |
|
| 499 |
+ "dist": {
|
|
| 500 |
+ "type": "zip", |
|
| 501 |
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678", |
|
| 502 |
+ "reference": "db9508f7b1474469d9d3c53b86f817e344732678", |
|
| 503 |
+ "shasum": "" |
|
| 504 |
+ }, |
|
| 505 |
+ "require": {
|
|
| 506 |
+ "php": "^7.2 || ^8.0" |
|
| 507 |
+ }, |
|
| 508 |
+ "require-dev": {
|
|
| 509 |
+ "fidry/makefile": "^0.2.0", |
|
| 510 |
+ "fidry/php-cs-fixer-config": "^1.1.2", |
|
| 511 |
+ "phpstan/extension-installer": "^1.2.0", |
|
| 512 |
+ "phpstan/phpstan": "^2.0", |
|
| 513 |
+ "phpstan/phpstan-deprecation-rules": "^2.0.0", |
|
| 514 |
+ "phpstan/phpstan-phpunit": "^2.0", |
|
| 515 |
+ "phpstan/phpstan-strict-rules": "^2.0", |
|
| 516 |
+ "phpunit/phpunit": "^8.5.31 || ^9.5.26", |
|
| 517 |
+ "webmozarts/strict-phpunit": "^7.5" |
|
| 518 |
+ }, |
|
| 519 |
+ "type": "library", |
|
| 520 |
+ "autoload": {
|
|
| 521 |
+ "psr-4": {
|
|
| 522 |
+ "Fidry\\CpuCoreCounter\\": "src/" |
|
| 523 |
+ } |
|
| 524 |
+ }, |
|
| 525 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 526 |
+ "license": [ |
|
| 527 |
+ "MIT" |
|
| 528 |
+ ], |
|
| 529 |
+ "authors": [ |
|
| 530 |
+ {
|
|
| 531 |
+ "name": "Théo FIDRY", |
|
| 532 |
+ "email": "theo.fidry@gmail.com" |
|
| 533 |
+ } |
|
| 534 |
+ ], |
|
| 535 |
+ "description": "Tiny utility to get the number of CPU cores.", |
|
| 536 |
+ "keywords": [ |
|
| 537 |
+ "CPU", |
|
| 538 |
+ "core" |
|
| 539 |
+ ], |
|
| 540 |
+ "support": {
|
|
| 541 |
+ "issues": "https://github.com/theofidry/cpu-core-counter/issues", |
|
| 542 |
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0" |
|
| 543 |
+ }, |
|
| 544 |
+ "funding": [ |
|
| 545 |
+ {
|
|
| 546 |
+ "url": "https://github.com/theofidry", |
|
| 547 |
+ "type": "github" |
|
| 548 |
+ } |
|
| 549 |
+ ], |
|
| 550 |
+ "time": "2025-08-14T07:29:31+00:00" |
|
| 551 |
+ }, |
|
| 552 |
+ {
|
|
| 553 |
+ "name": "friendsofphp/php-cs-fixer", |
|
| 554 |
+ "version": "v3.92.3", |
|
| 555 |
+ "source": {
|
|
| 556 |
+ "type": "git", |
|
| 557 |
+ "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", |
|
| 558 |
+ "reference": "2ba8f5a60f6f42fb65758cfb3768434fa2d1c7e8" |
|
| 559 |
+ }, |
|
| 560 |
+ "dist": {
|
|
| 561 |
+ "type": "zip", |
|
| 562 |
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/2ba8f5a60f6f42fb65758cfb3768434fa2d1c7e8", |
|
| 563 |
+ "reference": "2ba8f5a60f6f42fb65758cfb3768434fa2d1c7e8", |
|
| 564 |
+ "shasum": "" |
|
| 565 |
+ }, |
|
| 566 |
+ "require": {
|
|
| 567 |
+ "clue/ndjson-react": "^1.3", |
|
| 568 |
+ "composer/semver": "^3.4", |
|
| 569 |
+ "composer/xdebug-handler": "^3.0.5", |
|
| 570 |
+ "ext-filter": "*", |
|
| 571 |
+ "ext-hash": "*", |
|
| 572 |
+ "ext-json": "*", |
|
| 573 |
+ "ext-tokenizer": "*", |
|
| 574 |
+ "fidry/cpu-core-counter": "^1.3", |
|
| 575 |
+ "php": "^7.4 || ^8.0", |
|
| 576 |
+ "react/child-process": "^0.6.6", |
|
| 577 |
+ "react/event-loop": "^1.5", |
|
| 578 |
+ "react/socket": "^1.16", |
|
| 579 |
+ "react/stream": "^1.4", |
|
| 580 |
+ "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0", |
|
| 581 |
+ "symfony/console": "^5.4.47 || ^6.4.24 || ^7.0 || ^8.0", |
|
| 582 |
+ "symfony/event-dispatcher": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", |
|
| 583 |
+ "symfony/filesystem": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", |
|
| 584 |
+ "symfony/finder": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", |
|
| 585 |
+ "symfony/options-resolver": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0", |
|
| 586 |
+ "symfony/polyfill-mbstring": "^1.33", |
|
| 587 |
+ "symfony/polyfill-php80": "^1.33", |
|
| 588 |
+ "symfony/polyfill-php81": "^1.33", |
|
| 589 |
+ "symfony/polyfill-php84": "^1.33", |
|
| 590 |
+ "symfony/process": "^5.4.47 || ^6.4.24 || ^7.2 || ^8.0", |
|
| 591 |
+ "symfony/stopwatch": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0" |
|
| 592 |
+ }, |
|
| 593 |
+ "require-dev": {
|
|
| 594 |
+ "facile-it/paraunit": "^1.3.1 || ^2.7", |
|
| 595 |
+ "infection/infection": "^0.31.0", |
|
| 596 |
+ "justinrainbow/json-schema": "^6.5", |
|
| 597 |
+ "keradus/cli-executor": "^2.2", |
|
| 598 |
+ "mikey179/vfsstream": "^1.6.12", |
|
| 599 |
+ "php-coveralls/php-coveralls": "^2.9", |
|
| 600 |
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6", |
|
| 601 |
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6", |
|
| 602 |
+ "phpunit/phpunit": "^9.6.25 || ^10.5.53 || ^11.5.34", |
|
| 603 |
+ "symfony/polyfill-php85": "^1.33", |
|
| 604 |
+ "symfony/var-dumper": "^5.4.48 || ^6.4.24 || ^7.3.2 || ^8.0", |
|
| 605 |
+ "symfony/yaml": "^5.4.45 || ^6.4.24 || ^7.3.2 || ^8.0" |
|
| 606 |
+ }, |
|
| 607 |
+ "suggest": {
|
|
| 608 |
+ "ext-dom": "For handling output formats in XML", |
|
| 609 |
+ "ext-mbstring": "For handling non-UTF8 characters." |
|
| 610 |
+ }, |
|
| 611 |
+ "bin": [ |
|
| 612 |
+ "php-cs-fixer" |
|
| 613 |
+ ], |
|
| 614 |
+ "type": "application", |
|
| 615 |
+ "autoload": {
|
|
| 616 |
+ "psr-4": {
|
|
| 617 |
+ "PhpCsFixer\\": "src/" |
|
| 618 |
+ }, |
|
| 619 |
+ "exclude-from-classmap": [ |
|
| 620 |
+ "src/**/Internal/" |
|
| 621 |
+ ] |
|
| 622 |
+ }, |
|
| 623 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 624 |
+ "license": [ |
|
| 625 |
+ "MIT" |
|
| 626 |
+ ], |
|
| 627 |
+ "authors": [ |
|
| 628 |
+ {
|
|
| 629 |
+ "name": "Fabien Potencier", |
|
| 630 |
+ "email": "fabien@symfony.com" |
|
| 631 |
+ }, |
|
| 632 |
+ {
|
|
| 633 |
+ "name": "Dariusz Rumiński", |
|
| 634 |
+ "email": "dariusz.ruminski@gmail.com" |
|
| 635 |
+ } |
|
| 636 |
+ ], |
|
| 637 |
+ "description": "A tool to automatically fix PHP code style", |
|
| 638 |
+ "keywords": [ |
|
| 639 |
+ "Static code analysis", |
|
| 640 |
+ "fixer", |
|
| 641 |
+ "standards", |
|
| 642 |
+ "static analysis" |
|
| 643 |
+ ], |
|
| 644 |
+ "support": {
|
|
| 645 |
+ "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", |
|
| 646 |
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.92.3" |
|
| 647 |
+ }, |
|
| 648 |
+ "funding": [ |
|
| 649 |
+ {
|
|
| 650 |
+ "url": "https://github.com/keradus", |
|
| 651 |
+ "type": "github" |
|
| 652 |
+ } |
|
| 653 |
+ ], |
|
| 654 |
+ "time": "2025-12-18T10:45:02+00:00" |
|
| 655 |
+ }, |
|
| 656 |
+ {
|
|
| 657 |
+ "name": "kubawerlos/php-cs-fixer-custom-fixers", |
|
| 658 |
+ "version": "v3.35.1", |
|
| 659 |
+ "source": {
|
|
| 660 |
+ "type": "git", |
|
| 661 |
+ "url": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers.git", |
|
| 662 |
+ "reference": "2a35f80ae24ca77443a7af1599c3a3db1b6bd395" |
|
| 663 |
+ }, |
|
| 664 |
+ "dist": {
|
|
| 665 |
+ "type": "zip", |
|
| 666 |
+ "url": "https://api.github.com/repos/kubawerlos/php-cs-fixer-custom-fixers/zipball/2a35f80ae24ca77443a7af1599c3a3db1b6bd395", |
|
| 667 |
+ "reference": "2a35f80ae24ca77443a7af1599c3a3db1b6bd395", |
|
| 668 |
+ "shasum": "" |
|
| 669 |
+ }, |
|
| 670 |
+ "require": {
|
|
| 671 |
+ "ext-filter": "*", |
|
| 672 |
+ "ext-tokenizer": "*", |
|
| 673 |
+ "friendsofphp/php-cs-fixer": "^3.87", |
|
| 674 |
+ "php": "^7.4 || ^8.0" |
|
| 675 |
+ }, |
|
| 676 |
+ "require-dev": {
|
|
| 677 |
+ "phpunit/phpunit": "^9.6.24 || ^10.5.51 || ^11.5.32" |
|
| 678 |
+ }, |
|
| 679 |
+ "type": "library", |
|
| 680 |
+ "autoload": {
|
|
| 681 |
+ "psr-4": {
|
|
| 682 |
+ "PhpCsFixerCustomFixers\\": "src" |
|
| 683 |
+ } |
|
| 684 |
+ }, |
|
| 685 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 686 |
+ "license": [ |
|
| 687 |
+ "MIT" |
|
| 688 |
+ ], |
|
| 689 |
+ "authors": [ |
|
| 690 |
+ {
|
|
| 691 |
+ "name": "Kuba Werłos", |
|
| 692 |
+ "email": "werlos@gmail.com" |
|
| 693 |
+ } |
|
| 694 |
+ ], |
|
| 695 |
+ "description": "A set of custom fixers for PHP CS Fixer", |
|
| 696 |
+ "support": {
|
|
| 697 |
+ "issues": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers/issues", |
|
| 698 |
+ "source": "https://github.com/kubawerlos/php-cs-fixer-custom-fixers/tree/v3.35.1" |
|
| 699 |
+ }, |
|
| 700 |
+ "funding": [ |
|
| 701 |
+ {
|
|
| 702 |
+ "url": "https://github.com/kubawerlos", |
|
| 703 |
+ "type": "github" |
|
| 704 |
+ } |
|
| 705 |
+ ], |
|
| 706 |
+ "time": "2025-09-28T18:43:35+00:00" |
|
| 707 |
+ }, |
|
| 708 |
+ {
|
|
| 709 |
+ "name": "phpstan/phpdoc-parser", |
|
| 710 |
+ "version": "2.3.0", |
|
| 711 |
+ "source": {
|
|
| 712 |
+ "type": "git", |
|
| 713 |
+ "url": "https://github.com/phpstan/phpdoc-parser.git", |
|
| 714 |
+ "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495" |
|
| 715 |
+ }, |
|
| 716 |
+ "dist": {
|
|
| 717 |
+ "type": "zip", |
|
| 718 |
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495", |
|
| 719 |
+ "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495", |
|
| 720 |
+ "shasum": "" |
|
| 721 |
+ }, |
|
| 722 |
+ "require": {
|
|
| 723 |
+ "php": "^7.4 || ^8.0" |
|
| 724 |
+ }, |
|
| 725 |
+ "require-dev": {
|
|
| 726 |
+ "doctrine/annotations": "^2.0", |
|
| 727 |
+ "nikic/php-parser": "^5.3.0", |
|
| 728 |
+ "php-parallel-lint/php-parallel-lint": "^1.2", |
|
| 729 |
+ "phpstan/extension-installer": "^1.0", |
|
| 730 |
+ "phpstan/phpstan": "^2.0", |
|
| 731 |
+ "phpstan/phpstan-phpunit": "^2.0", |
|
| 732 |
+ "phpstan/phpstan-strict-rules": "^2.0", |
|
| 733 |
+ "phpunit/phpunit": "^9.6", |
|
| 734 |
+ "symfony/process": "^5.2" |
|
| 735 |
+ }, |
|
| 736 |
+ "type": "library", |
|
| 737 |
+ "autoload": {
|
|
| 738 |
+ "psr-4": {
|
|
| 739 |
+ "PHPStan\\PhpDocParser\\": [ |
|
| 740 |
+ "src/" |
|
| 741 |
+ ] |
|
| 742 |
+ } |
|
| 743 |
+ }, |
|
| 744 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 745 |
+ "license": [ |
|
| 746 |
+ "MIT" |
|
| 747 |
+ ], |
|
| 748 |
+ "description": "PHPDoc parser with support for nullable, intersection and generic types", |
|
| 749 |
+ "support": {
|
|
| 750 |
+ "issues": "https://github.com/phpstan/phpdoc-parser/issues", |
|
| 751 |
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0" |
|
| 752 |
+ }, |
|
| 753 |
+ "time": "2025-08-30T15:50:23+00:00" |
|
| 754 |
+ }, |
|
| 755 |
+ {
|
|
| 756 |
+ "name": "psr/container", |
|
| 757 |
+ "version": "2.0.2", |
|
| 758 |
+ "source": {
|
|
| 759 |
+ "type": "git", |
|
| 760 |
+ "url": "https://github.com/php-fig/container.git", |
|
| 761 |
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" |
|
| 762 |
+ }, |
|
| 763 |
+ "dist": {
|
|
| 764 |
+ "type": "zip", |
|
| 765 |
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
|
| 766 |
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
|
| 767 |
+ "shasum": "" |
|
| 768 |
+ }, |
|
| 769 |
+ "require": {
|
|
| 770 |
+ "php": ">=7.4.0" |
|
| 771 |
+ }, |
|
| 772 |
+ "type": "library", |
|
| 773 |
+ "extra": {
|
|
| 774 |
+ "branch-alias": {
|
|
| 775 |
+ "dev-master": "2.0.x-dev" |
|
| 776 |
+ } |
|
| 777 |
+ }, |
|
| 778 |
+ "autoload": {
|
|
| 779 |
+ "psr-4": {
|
|
| 780 |
+ "Psr\\Container\\": "src/" |
|
| 781 |
+ } |
|
| 782 |
+ }, |
|
| 783 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 784 |
+ "license": [ |
|
| 785 |
+ "MIT" |
|
| 786 |
+ ], |
|
| 787 |
+ "authors": [ |
|
| 788 |
+ {
|
|
| 789 |
+ "name": "PHP-FIG", |
|
| 790 |
+ "homepage": "https://www.php-fig.org/" |
|
| 791 |
+ } |
|
| 792 |
+ ], |
|
| 793 |
+ "description": "Common Container Interface (PHP FIG PSR-11)", |
|
| 794 |
+ "homepage": "https://github.com/php-fig/container", |
|
| 795 |
+ "keywords": [ |
|
| 796 |
+ "PSR-11", |
|
| 797 |
+ "container", |
|
| 798 |
+ "container-interface", |
|
| 799 |
+ "container-interop", |
|
| 800 |
+ "psr" |
|
| 801 |
+ ], |
|
| 802 |
+ "support": {
|
|
| 803 |
+ "issues": "https://github.com/php-fig/container/issues", |
|
| 804 |
+ "source": "https://github.com/php-fig/container/tree/2.0.2" |
|
| 805 |
+ }, |
|
| 806 |
+ "time": "2021-11-05T16:47:00+00:00" |
|
| 807 |
+ }, |
|
| 808 |
+ {
|
|
| 809 |
+ "name": "psr/event-dispatcher", |
|
| 810 |
+ "version": "1.0.0", |
|
| 811 |
+ "source": {
|
|
| 812 |
+ "type": "git", |
|
| 813 |
+ "url": "https://github.com/php-fig/event-dispatcher.git", |
|
| 814 |
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" |
|
| 815 |
+ }, |
|
| 816 |
+ "dist": {
|
|
| 817 |
+ "type": "zip", |
|
| 818 |
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", |
|
| 819 |
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", |
|
| 820 |
+ "shasum": "" |
|
| 821 |
+ }, |
|
| 822 |
+ "require": {
|
|
| 823 |
+ "php": ">=7.2.0" |
|
| 824 |
+ }, |
|
| 825 |
+ "type": "library", |
|
| 826 |
+ "extra": {
|
|
| 827 |
+ "branch-alias": {
|
|
| 828 |
+ "dev-master": "1.0.x-dev" |
|
| 829 |
+ } |
|
| 830 |
+ }, |
|
| 831 |
+ "autoload": {
|
|
| 832 |
+ "psr-4": {
|
|
| 833 |
+ "Psr\\EventDispatcher\\": "src/" |
|
| 834 |
+ } |
|
| 835 |
+ }, |
|
| 836 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 837 |
+ "license": [ |
|
| 838 |
+ "MIT" |
|
| 839 |
+ ], |
|
| 840 |
+ "authors": [ |
|
| 841 |
+ {
|
|
| 842 |
+ "name": "PHP-FIG", |
|
| 843 |
+ "homepage": "http://www.php-fig.org/" |
|
| 844 |
+ } |
|
| 845 |
+ ], |
|
| 846 |
+ "description": "Standard interfaces for event handling.", |
|
| 847 |
+ "keywords": [ |
|
| 848 |
+ "events", |
|
| 849 |
+ "psr", |
|
| 850 |
+ "psr-14" |
|
| 851 |
+ ], |
|
| 852 |
+ "support": {
|
|
| 853 |
+ "issues": "https://github.com/php-fig/event-dispatcher/issues", |
|
| 854 |
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" |
|
| 855 |
+ }, |
|
| 856 |
+ "time": "2019-01-08T18:20:26+00:00" |
|
| 857 |
+ }, |
|
| 858 |
+ {
|
|
| 859 |
+ "name": "psr/log", |
|
| 860 |
+ "version": "3.0.2", |
|
| 861 |
+ "source": {
|
|
| 862 |
+ "type": "git", |
|
| 863 |
+ "url": "https://github.com/php-fig/log.git", |
|
| 864 |
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" |
|
| 865 |
+ }, |
|
| 866 |
+ "dist": {
|
|
| 867 |
+ "type": "zip", |
|
| 868 |
+ "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", |
|
| 869 |
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", |
|
| 870 |
+ "shasum": "" |
|
| 871 |
+ }, |
|
| 872 |
+ "require": {
|
|
| 873 |
+ "php": ">=8.0.0" |
|
| 874 |
+ }, |
|
| 875 |
+ "type": "library", |
|
| 876 |
+ "extra": {
|
|
| 877 |
+ "branch-alias": {
|
|
| 878 |
+ "dev-master": "3.x-dev" |
|
| 879 |
+ } |
|
| 880 |
+ }, |
|
| 881 |
+ "autoload": {
|
|
| 882 |
+ "psr-4": {
|
|
| 883 |
+ "Psr\\Log\\": "src" |
|
| 884 |
+ } |
|
| 885 |
+ }, |
|
| 886 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 887 |
+ "license": [ |
|
| 888 |
+ "MIT" |
|
| 889 |
+ ], |
|
| 890 |
+ "authors": [ |
|
| 891 |
+ {
|
|
| 892 |
+ "name": "PHP-FIG", |
|
| 893 |
+ "homepage": "https://www.php-fig.org/" |
|
| 894 |
+ } |
|
| 895 |
+ ], |
|
| 896 |
+ "description": "Common interface for logging libraries", |
|
| 897 |
+ "homepage": "https://github.com/php-fig/log", |
|
| 898 |
+ "keywords": [ |
|
| 899 |
+ "log", |
|
| 900 |
+ "psr", |
|
| 901 |
+ "psr-3" |
|
| 902 |
+ ], |
|
| 903 |
+ "support": {
|
|
| 904 |
+ "source": "https://github.com/php-fig/log/tree/3.0.2" |
|
| 905 |
+ }, |
|
| 906 |
+ "time": "2024-09-11T13:17:53+00:00" |
|
| 907 |
+ }, |
|
| 908 |
+ {
|
|
| 909 |
+ "name": "react/cache", |
|
| 910 |
+ "version": "v1.2.0", |
|
| 911 |
+ "source": {
|
|
| 912 |
+ "type": "git", |
|
| 913 |
+ "url": "https://github.com/reactphp/cache.git", |
|
| 914 |
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" |
|
| 915 |
+ }, |
|
| 916 |
+ "dist": {
|
|
| 917 |
+ "type": "zip", |
|
| 918 |
+ "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", |
|
| 919 |
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", |
|
| 920 |
+ "shasum": "" |
|
| 921 |
+ }, |
|
| 922 |
+ "require": {
|
|
| 923 |
+ "php": ">=5.3.0", |
|
| 924 |
+ "react/promise": "^3.0 || ^2.0 || ^1.1" |
|
| 925 |
+ }, |
|
| 926 |
+ "require-dev": {
|
|
| 927 |
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" |
|
| 928 |
+ }, |
|
| 929 |
+ "type": "library", |
|
| 930 |
+ "autoload": {
|
|
| 931 |
+ "psr-4": {
|
|
| 932 |
+ "React\\Cache\\": "src/" |
|
| 933 |
+ } |
|
| 934 |
+ }, |
|
| 935 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 936 |
+ "license": [ |
|
| 937 |
+ "MIT" |
|
| 938 |
+ ], |
|
| 939 |
+ "authors": [ |
|
| 940 |
+ {
|
|
| 941 |
+ "name": "Christian Lück", |
|
| 942 |
+ "email": "christian@clue.engineering", |
|
| 943 |
+ "homepage": "https://clue.engineering/" |
|
| 944 |
+ }, |
|
| 945 |
+ {
|
|
| 946 |
+ "name": "Cees-Jan Kiewiet", |
|
| 947 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 948 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 949 |
+ }, |
|
| 950 |
+ {
|
|
| 951 |
+ "name": "Jan Sorgalla", |
|
| 952 |
+ "email": "jsorgalla@gmail.com", |
|
| 953 |
+ "homepage": "https://sorgalla.com/" |
|
| 954 |
+ }, |
|
| 955 |
+ {
|
|
| 956 |
+ "name": "Chris Boden", |
|
| 957 |
+ "email": "cboden@gmail.com", |
|
| 958 |
+ "homepage": "https://cboden.dev/" |
|
| 959 |
+ } |
|
| 960 |
+ ], |
|
| 961 |
+ "description": "Async, Promise-based cache interface for ReactPHP", |
|
| 962 |
+ "keywords": [ |
|
| 963 |
+ "cache", |
|
| 964 |
+ "caching", |
|
| 965 |
+ "promise", |
|
| 966 |
+ "reactphp" |
|
| 967 |
+ ], |
|
| 968 |
+ "support": {
|
|
| 969 |
+ "issues": "https://github.com/reactphp/cache/issues", |
|
| 970 |
+ "source": "https://github.com/reactphp/cache/tree/v1.2.0" |
|
| 971 |
+ }, |
|
| 972 |
+ "funding": [ |
|
| 973 |
+ {
|
|
| 974 |
+ "url": "https://opencollective.com/reactphp", |
|
| 975 |
+ "type": "open_collective" |
|
| 976 |
+ } |
|
| 977 |
+ ], |
|
| 978 |
+ "time": "2022-11-30T15:59:55+00:00" |
|
| 979 |
+ }, |
|
| 980 |
+ {
|
|
| 981 |
+ "name": "react/child-process", |
|
| 982 |
+ "version": "v0.6.7", |
|
| 983 |
+ "source": {
|
|
| 984 |
+ "type": "git", |
|
| 985 |
+ "url": "https://github.com/reactphp/child-process.git", |
|
| 986 |
+ "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3" |
|
| 987 |
+ }, |
|
| 988 |
+ "dist": {
|
|
| 989 |
+ "type": "zip", |
|
| 990 |
+ "url": "https://api.github.com/repos/reactphp/child-process/zipball/970f0e71945556422ee4570ccbabaedc3cf04ad3", |
|
| 991 |
+ "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3", |
|
| 992 |
+ "shasum": "" |
|
| 993 |
+ }, |
|
| 994 |
+ "require": {
|
|
| 995 |
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0", |
|
| 996 |
+ "php": ">=5.3.0", |
|
| 997 |
+ "react/event-loop": "^1.2", |
|
| 998 |
+ "react/stream": "^1.4" |
|
| 999 |
+ }, |
|
| 1000 |
+ "require-dev": {
|
|
| 1001 |
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", |
|
| 1002 |
+ "react/socket": "^1.16", |
|
| 1003 |
+ "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" |
|
| 1004 |
+ }, |
|
| 1005 |
+ "type": "library", |
|
| 1006 |
+ "autoload": {
|
|
| 1007 |
+ "psr-4": {
|
|
| 1008 |
+ "React\\ChildProcess\\": "src/" |
|
| 1009 |
+ } |
|
| 1010 |
+ }, |
|
| 1011 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1012 |
+ "license": [ |
|
| 1013 |
+ "MIT" |
|
| 1014 |
+ ], |
|
| 1015 |
+ "authors": [ |
|
| 1016 |
+ {
|
|
| 1017 |
+ "name": "Christian Lück", |
|
| 1018 |
+ "email": "christian@clue.engineering", |
|
| 1019 |
+ "homepage": "https://clue.engineering/" |
|
| 1020 |
+ }, |
|
| 1021 |
+ {
|
|
| 1022 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1023 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1024 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1025 |
+ }, |
|
| 1026 |
+ {
|
|
| 1027 |
+ "name": "Jan Sorgalla", |
|
| 1028 |
+ "email": "jsorgalla@gmail.com", |
|
| 1029 |
+ "homepage": "https://sorgalla.com/" |
|
| 1030 |
+ }, |
|
| 1031 |
+ {
|
|
| 1032 |
+ "name": "Chris Boden", |
|
| 1033 |
+ "email": "cboden@gmail.com", |
|
| 1034 |
+ "homepage": "https://cboden.dev/" |
|
| 1035 |
+ } |
|
| 1036 |
+ ], |
|
| 1037 |
+ "description": "Event-driven library for executing child processes with ReactPHP.", |
|
| 1038 |
+ "keywords": [ |
|
| 1039 |
+ "event-driven", |
|
| 1040 |
+ "process", |
|
| 1041 |
+ "reactphp" |
|
| 1042 |
+ ], |
|
| 1043 |
+ "support": {
|
|
| 1044 |
+ "issues": "https://github.com/reactphp/child-process/issues", |
|
| 1045 |
+ "source": "https://github.com/reactphp/child-process/tree/v0.6.7" |
|
| 1046 |
+ }, |
|
| 1047 |
+ "funding": [ |
|
| 1048 |
+ {
|
|
| 1049 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1050 |
+ "type": "open_collective" |
|
| 1051 |
+ } |
|
| 1052 |
+ ], |
|
| 1053 |
+ "time": "2025-12-23T15:25:20+00:00" |
|
| 1054 |
+ }, |
|
| 1055 |
+ {
|
|
| 1056 |
+ "name": "react/dns", |
|
| 1057 |
+ "version": "v1.14.0", |
|
| 1058 |
+ "source": {
|
|
| 1059 |
+ "type": "git", |
|
| 1060 |
+ "url": "https://github.com/reactphp/dns.git", |
|
| 1061 |
+ "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3" |
|
| 1062 |
+ }, |
|
| 1063 |
+ "dist": {
|
|
| 1064 |
+ "type": "zip", |
|
| 1065 |
+ "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3", |
|
| 1066 |
+ "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3", |
|
| 1067 |
+ "shasum": "" |
|
| 1068 |
+ }, |
|
| 1069 |
+ "require": {
|
|
| 1070 |
+ "php": ">=5.3.0", |
|
| 1071 |
+ "react/cache": "^1.0 || ^0.6 || ^0.5", |
|
| 1072 |
+ "react/event-loop": "^1.2", |
|
| 1073 |
+ "react/promise": "^3.2 || ^2.7 || ^1.2.1" |
|
| 1074 |
+ }, |
|
| 1075 |
+ "require-dev": {
|
|
| 1076 |
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", |
|
| 1077 |
+ "react/async": "^4.3 || ^3 || ^2", |
|
| 1078 |
+ "react/promise-timer": "^1.11" |
|
| 1079 |
+ }, |
|
| 1080 |
+ "type": "library", |
|
| 1081 |
+ "autoload": {
|
|
| 1082 |
+ "psr-4": {
|
|
| 1083 |
+ "React\\Dns\\": "src/" |
|
| 1084 |
+ } |
|
| 1085 |
+ }, |
|
| 1086 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1087 |
+ "license": [ |
|
| 1088 |
+ "MIT" |
|
| 1089 |
+ ], |
|
| 1090 |
+ "authors": [ |
|
| 1091 |
+ {
|
|
| 1092 |
+ "name": "Christian Lück", |
|
| 1093 |
+ "email": "christian@clue.engineering", |
|
| 1094 |
+ "homepage": "https://clue.engineering/" |
|
| 1095 |
+ }, |
|
| 1096 |
+ {
|
|
| 1097 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1098 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1099 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1100 |
+ }, |
|
| 1101 |
+ {
|
|
| 1102 |
+ "name": "Jan Sorgalla", |
|
| 1103 |
+ "email": "jsorgalla@gmail.com", |
|
| 1104 |
+ "homepage": "https://sorgalla.com/" |
|
| 1105 |
+ }, |
|
| 1106 |
+ {
|
|
| 1107 |
+ "name": "Chris Boden", |
|
| 1108 |
+ "email": "cboden@gmail.com", |
|
| 1109 |
+ "homepage": "https://cboden.dev/" |
|
| 1110 |
+ } |
|
| 1111 |
+ ], |
|
| 1112 |
+ "description": "Async DNS resolver for ReactPHP", |
|
| 1113 |
+ "keywords": [ |
|
| 1114 |
+ "async", |
|
| 1115 |
+ "dns", |
|
| 1116 |
+ "dns-resolver", |
|
| 1117 |
+ "reactphp" |
|
| 1118 |
+ ], |
|
| 1119 |
+ "support": {
|
|
| 1120 |
+ "issues": "https://github.com/reactphp/dns/issues", |
|
| 1121 |
+ "source": "https://github.com/reactphp/dns/tree/v1.14.0" |
|
| 1122 |
+ }, |
|
| 1123 |
+ "funding": [ |
|
| 1124 |
+ {
|
|
| 1125 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1126 |
+ "type": "open_collective" |
|
| 1127 |
+ } |
|
| 1128 |
+ ], |
|
| 1129 |
+ "time": "2025-11-18T19:34:28+00:00" |
|
| 1130 |
+ }, |
|
| 1131 |
+ {
|
|
| 1132 |
+ "name": "react/event-loop", |
|
| 1133 |
+ "version": "v1.6.0", |
|
| 1134 |
+ "source": {
|
|
| 1135 |
+ "type": "git", |
|
| 1136 |
+ "url": "https://github.com/reactphp/event-loop.git", |
|
| 1137 |
+ "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a" |
|
| 1138 |
+ }, |
|
| 1139 |
+ "dist": {
|
|
| 1140 |
+ "type": "zip", |
|
| 1141 |
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a", |
|
| 1142 |
+ "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a", |
|
| 1143 |
+ "shasum": "" |
|
| 1144 |
+ }, |
|
| 1145 |
+ "require": {
|
|
| 1146 |
+ "php": ">=5.3.0" |
|
| 1147 |
+ }, |
|
| 1148 |
+ "require-dev": {
|
|
| 1149 |
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" |
|
| 1150 |
+ }, |
|
| 1151 |
+ "suggest": {
|
|
| 1152 |
+ "ext-pcntl": "For signal handling support when using the StreamSelectLoop" |
|
| 1153 |
+ }, |
|
| 1154 |
+ "type": "library", |
|
| 1155 |
+ "autoload": {
|
|
| 1156 |
+ "psr-4": {
|
|
| 1157 |
+ "React\\EventLoop\\": "src/" |
|
| 1158 |
+ } |
|
| 1159 |
+ }, |
|
| 1160 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1161 |
+ "license": [ |
|
| 1162 |
+ "MIT" |
|
| 1163 |
+ ], |
|
| 1164 |
+ "authors": [ |
|
| 1165 |
+ {
|
|
| 1166 |
+ "name": "Christian Lück", |
|
| 1167 |
+ "email": "christian@clue.engineering", |
|
| 1168 |
+ "homepage": "https://clue.engineering/" |
|
| 1169 |
+ }, |
|
| 1170 |
+ {
|
|
| 1171 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1172 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1173 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1174 |
+ }, |
|
| 1175 |
+ {
|
|
| 1176 |
+ "name": "Jan Sorgalla", |
|
| 1177 |
+ "email": "jsorgalla@gmail.com", |
|
| 1178 |
+ "homepage": "https://sorgalla.com/" |
|
| 1179 |
+ }, |
|
| 1180 |
+ {
|
|
| 1181 |
+ "name": "Chris Boden", |
|
| 1182 |
+ "email": "cboden@gmail.com", |
|
| 1183 |
+ "homepage": "https://cboden.dev/" |
|
| 1184 |
+ } |
|
| 1185 |
+ ], |
|
| 1186 |
+ "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", |
|
| 1187 |
+ "keywords": [ |
|
| 1188 |
+ "asynchronous", |
|
| 1189 |
+ "event-loop" |
|
| 1190 |
+ ], |
|
| 1191 |
+ "support": {
|
|
| 1192 |
+ "issues": "https://github.com/reactphp/event-loop/issues", |
|
| 1193 |
+ "source": "https://github.com/reactphp/event-loop/tree/v1.6.0" |
|
| 1194 |
+ }, |
|
| 1195 |
+ "funding": [ |
|
| 1196 |
+ {
|
|
| 1197 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1198 |
+ "type": "open_collective" |
|
| 1199 |
+ } |
|
| 1200 |
+ ], |
|
| 1201 |
+ "time": "2025-11-17T20:46:25+00:00" |
|
| 1202 |
+ }, |
|
| 1203 |
+ {
|
|
| 1204 |
+ "name": "react/promise", |
|
| 1205 |
+ "version": "v3.3.0", |
|
| 1206 |
+ "source": {
|
|
| 1207 |
+ "type": "git", |
|
| 1208 |
+ "url": "https://github.com/reactphp/promise.git", |
|
| 1209 |
+ "reference": "23444f53a813a3296c1368bb104793ce8d88f04a" |
|
| 1210 |
+ }, |
|
| 1211 |
+ "dist": {
|
|
| 1212 |
+ "type": "zip", |
|
| 1213 |
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a", |
|
| 1214 |
+ "reference": "23444f53a813a3296c1368bb104793ce8d88f04a", |
|
| 1215 |
+ "shasum": "" |
|
| 1216 |
+ }, |
|
| 1217 |
+ "require": {
|
|
| 1218 |
+ "php": ">=7.1.0" |
|
| 1219 |
+ }, |
|
| 1220 |
+ "require-dev": {
|
|
| 1221 |
+ "phpstan/phpstan": "1.12.28 || 1.4.10", |
|
| 1222 |
+ "phpunit/phpunit": "^9.6 || ^7.5" |
|
| 1223 |
+ }, |
|
| 1224 |
+ "type": "library", |
|
| 1225 |
+ "autoload": {
|
|
| 1226 |
+ "files": [ |
|
| 1227 |
+ "src/functions_include.php" |
|
| 1228 |
+ ], |
|
| 1229 |
+ "psr-4": {
|
|
| 1230 |
+ "React\\Promise\\": "src/" |
|
| 1231 |
+ } |
|
| 1232 |
+ }, |
|
| 1233 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1234 |
+ "license": [ |
|
| 1235 |
+ "MIT" |
|
| 1236 |
+ ], |
|
| 1237 |
+ "authors": [ |
|
| 1238 |
+ {
|
|
| 1239 |
+ "name": "Jan Sorgalla", |
|
| 1240 |
+ "email": "jsorgalla@gmail.com", |
|
| 1241 |
+ "homepage": "https://sorgalla.com/" |
|
| 1242 |
+ }, |
|
| 1243 |
+ {
|
|
| 1244 |
+ "name": "Christian Lück", |
|
| 1245 |
+ "email": "christian@clue.engineering", |
|
| 1246 |
+ "homepage": "https://clue.engineering/" |
|
| 1247 |
+ }, |
|
| 1248 |
+ {
|
|
| 1249 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1250 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1251 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1252 |
+ }, |
|
| 1253 |
+ {
|
|
| 1254 |
+ "name": "Chris Boden", |
|
| 1255 |
+ "email": "cboden@gmail.com", |
|
| 1256 |
+ "homepage": "https://cboden.dev/" |
|
| 1257 |
+ } |
|
| 1258 |
+ ], |
|
| 1259 |
+ "description": "A lightweight implementation of CommonJS Promises/A for PHP", |
|
| 1260 |
+ "keywords": [ |
|
| 1261 |
+ "promise", |
|
| 1262 |
+ "promises" |
|
| 1263 |
+ ], |
|
| 1264 |
+ "support": {
|
|
| 1265 |
+ "issues": "https://github.com/reactphp/promise/issues", |
|
| 1266 |
+ "source": "https://github.com/reactphp/promise/tree/v3.3.0" |
|
| 1267 |
+ }, |
|
| 1268 |
+ "funding": [ |
|
| 1269 |
+ {
|
|
| 1270 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1271 |
+ "type": "open_collective" |
|
| 1272 |
+ } |
|
| 1273 |
+ ], |
|
| 1274 |
+ "time": "2025-08-19T18:57:03+00:00" |
|
| 1275 |
+ }, |
|
| 1276 |
+ {
|
|
| 1277 |
+ "name": "react/socket", |
|
| 1278 |
+ "version": "v1.17.0", |
|
| 1279 |
+ "source": {
|
|
| 1280 |
+ "type": "git", |
|
| 1281 |
+ "url": "https://github.com/reactphp/socket.git", |
|
| 1282 |
+ "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08" |
|
| 1283 |
+ }, |
|
| 1284 |
+ "dist": {
|
|
| 1285 |
+ "type": "zip", |
|
| 1286 |
+ "url": "https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08", |
|
| 1287 |
+ "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08", |
|
| 1288 |
+ "shasum": "" |
|
| 1289 |
+ }, |
|
| 1290 |
+ "require": {
|
|
| 1291 |
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0", |
|
| 1292 |
+ "php": ">=5.3.0", |
|
| 1293 |
+ "react/dns": "^1.13", |
|
| 1294 |
+ "react/event-loop": "^1.2", |
|
| 1295 |
+ "react/promise": "^3.2 || ^2.6 || ^1.2.1", |
|
| 1296 |
+ "react/stream": "^1.4" |
|
| 1297 |
+ }, |
|
| 1298 |
+ "require-dev": {
|
|
| 1299 |
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", |
|
| 1300 |
+ "react/async": "^4.3 || ^3.3 || ^2", |
|
| 1301 |
+ "react/promise-stream": "^1.4", |
|
| 1302 |
+ "react/promise-timer": "^1.11" |
|
| 1303 |
+ }, |
|
| 1304 |
+ "type": "library", |
|
| 1305 |
+ "autoload": {
|
|
| 1306 |
+ "psr-4": {
|
|
| 1307 |
+ "React\\Socket\\": "src/" |
|
| 1308 |
+ } |
|
| 1309 |
+ }, |
|
| 1310 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1311 |
+ "license": [ |
|
| 1312 |
+ "MIT" |
|
| 1313 |
+ ], |
|
| 1314 |
+ "authors": [ |
|
| 1315 |
+ {
|
|
| 1316 |
+ "name": "Christian Lück", |
|
| 1317 |
+ "email": "christian@clue.engineering", |
|
| 1318 |
+ "homepage": "https://clue.engineering/" |
|
| 1319 |
+ }, |
|
| 1320 |
+ {
|
|
| 1321 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1322 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1323 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1324 |
+ }, |
|
| 1325 |
+ {
|
|
| 1326 |
+ "name": "Jan Sorgalla", |
|
| 1327 |
+ "email": "jsorgalla@gmail.com", |
|
| 1328 |
+ "homepage": "https://sorgalla.com/" |
|
| 1329 |
+ }, |
|
| 1330 |
+ {
|
|
| 1331 |
+ "name": "Chris Boden", |
|
| 1332 |
+ "email": "cboden@gmail.com", |
|
| 1333 |
+ "homepage": "https://cboden.dev/" |
|
| 1334 |
+ } |
|
| 1335 |
+ ], |
|
| 1336 |
+ "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", |
|
| 1337 |
+ "keywords": [ |
|
| 1338 |
+ "Connection", |
|
| 1339 |
+ "Socket", |
|
| 1340 |
+ "async", |
|
| 1341 |
+ "reactphp", |
|
| 1342 |
+ "stream" |
|
| 1343 |
+ ], |
|
| 1344 |
+ "support": {
|
|
| 1345 |
+ "issues": "https://github.com/reactphp/socket/issues", |
|
| 1346 |
+ "source": "https://github.com/reactphp/socket/tree/v1.17.0" |
|
| 1347 |
+ }, |
|
| 1348 |
+ "funding": [ |
|
| 1349 |
+ {
|
|
| 1350 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1351 |
+ "type": "open_collective" |
|
| 1352 |
+ } |
|
| 1353 |
+ ], |
|
| 1354 |
+ "time": "2025-11-19T20:47:34+00:00" |
|
| 1355 |
+ }, |
|
| 1356 |
+ {
|
|
| 1357 |
+ "name": "react/stream", |
|
| 1358 |
+ "version": "v1.4.0", |
|
| 1359 |
+ "source": {
|
|
| 1360 |
+ "type": "git", |
|
| 1361 |
+ "url": "https://github.com/reactphp/stream.git", |
|
| 1362 |
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d" |
|
| 1363 |
+ }, |
|
| 1364 |
+ "dist": {
|
|
| 1365 |
+ "type": "zip", |
|
| 1366 |
+ "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d", |
|
| 1367 |
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d", |
|
| 1368 |
+ "shasum": "" |
|
| 1369 |
+ }, |
|
| 1370 |
+ "require": {
|
|
| 1371 |
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0", |
|
| 1372 |
+ "php": ">=5.3.8", |
|
| 1373 |
+ "react/event-loop": "^1.2" |
|
| 1374 |
+ }, |
|
| 1375 |
+ "require-dev": {
|
|
| 1376 |
+ "clue/stream-filter": "~1.2", |
|
| 1377 |
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" |
|
| 1378 |
+ }, |
|
| 1379 |
+ "type": "library", |
|
| 1380 |
+ "autoload": {
|
|
| 1381 |
+ "psr-4": {
|
|
| 1382 |
+ "React\\Stream\\": "src/" |
|
| 1383 |
+ } |
|
| 1384 |
+ }, |
|
| 1385 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1386 |
+ "license": [ |
|
| 1387 |
+ "MIT" |
|
| 1388 |
+ ], |
|
| 1389 |
+ "authors": [ |
|
| 1390 |
+ {
|
|
| 1391 |
+ "name": "Christian Lück", |
|
| 1392 |
+ "email": "christian@clue.engineering", |
|
| 1393 |
+ "homepage": "https://clue.engineering/" |
|
| 1394 |
+ }, |
|
| 1395 |
+ {
|
|
| 1396 |
+ "name": "Cees-Jan Kiewiet", |
|
| 1397 |
+ "email": "reactphp@ceesjankiewiet.nl", |
|
| 1398 |
+ "homepage": "https://wyrihaximus.net/" |
|
| 1399 |
+ }, |
|
| 1400 |
+ {
|
|
| 1401 |
+ "name": "Jan Sorgalla", |
|
| 1402 |
+ "email": "jsorgalla@gmail.com", |
|
| 1403 |
+ "homepage": "https://sorgalla.com/" |
|
| 1404 |
+ }, |
|
| 1405 |
+ {
|
|
| 1406 |
+ "name": "Chris Boden", |
|
| 1407 |
+ "email": "cboden@gmail.com", |
|
| 1408 |
+ "homepage": "https://cboden.dev/" |
|
| 1409 |
+ } |
|
| 1410 |
+ ], |
|
| 1411 |
+ "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", |
|
| 1412 |
+ "keywords": [ |
|
| 1413 |
+ "event-driven", |
|
| 1414 |
+ "io", |
|
| 1415 |
+ "non-blocking", |
|
| 1416 |
+ "pipe", |
|
| 1417 |
+ "reactphp", |
|
| 1418 |
+ "readable", |
|
| 1419 |
+ "stream", |
|
| 1420 |
+ "writable" |
|
| 1421 |
+ ], |
|
| 1422 |
+ "support": {
|
|
| 1423 |
+ "issues": "https://github.com/reactphp/stream/issues", |
|
| 1424 |
+ "source": "https://github.com/reactphp/stream/tree/v1.4.0" |
|
| 1425 |
+ }, |
|
| 1426 |
+ "funding": [ |
|
| 1427 |
+ {
|
|
| 1428 |
+ "url": "https://opencollective.com/reactphp", |
|
| 1429 |
+ "type": "open_collective" |
|
| 1430 |
+ } |
|
| 1431 |
+ ], |
|
| 1432 |
+ "time": "2024-06-11T12:45:25+00:00" |
|
| 1433 |
+ }, |
|
| 1434 |
+ {
|
|
| 1435 |
+ "name": "sebastian/diff", |
|
| 1436 |
+ "version": "7.0.0", |
|
| 1437 |
+ "source": {
|
|
| 1438 |
+ "type": "git", |
|
| 1439 |
+ "url": "https://github.com/sebastianbergmann/diff.git", |
|
| 1440 |
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f" |
|
| 1441 |
+ }, |
|
| 1442 |
+ "dist": {
|
|
| 1443 |
+ "type": "zip", |
|
| 1444 |
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f", |
|
| 1445 |
+ "reference": "7ab1ea946c012266ca32390913653d844ecd085f", |
|
| 1446 |
+ "shasum": "" |
|
| 1447 |
+ }, |
|
| 1448 |
+ "require": {
|
|
| 1449 |
+ "php": ">=8.3" |
|
| 1450 |
+ }, |
|
| 1451 |
+ "require-dev": {
|
|
| 1452 |
+ "phpunit/phpunit": "^12.0", |
|
| 1453 |
+ "symfony/process": "^7.2" |
|
| 1454 |
+ }, |
|
| 1455 |
+ "type": "library", |
|
| 1456 |
+ "extra": {
|
|
| 1457 |
+ "branch-alias": {
|
|
| 1458 |
+ "dev-main": "7.0-dev" |
|
| 1459 |
+ } |
|
| 1460 |
+ }, |
|
| 1461 |
+ "autoload": {
|
|
| 1462 |
+ "classmap": [ |
|
| 1463 |
+ "src/" |
|
| 1464 |
+ ] |
|
| 1465 |
+ }, |
|
| 1466 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1467 |
+ "license": [ |
|
| 1468 |
+ "BSD-3-Clause" |
|
| 1469 |
+ ], |
|
| 1470 |
+ "authors": [ |
|
| 1471 |
+ {
|
|
| 1472 |
+ "name": "Sebastian Bergmann", |
|
| 1473 |
+ "email": "sebastian@phpunit.de" |
|
| 1474 |
+ }, |
|
| 1475 |
+ {
|
|
| 1476 |
+ "name": "Kore Nordmann", |
|
| 1477 |
+ "email": "mail@kore-nordmann.de" |
|
| 1478 |
+ } |
|
| 1479 |
+ ], |
|
| 1480 |
+ "description": "Diff implementation", |
|
| 1481 |
+ "homepage": "https://github.com/sebastianbergmann/diff", |
|
| 1482 |
+ "keywords": [ |
|
| 1483 |
+ "diff", |
|
| 1484 |
+ "udiff", |
|
| 1485 |
+ "unidiff", |
|
| 1486 |
+ "unified diff" |
|
| 1487 |
+ ], |
|
| 1488 |
+ "support": {
|
|
| 1489 |
+ "issues": "https://github.com/sebastianbergmann/diff/issues", |
|
| 1490 |
+ "security": "https://github.com/sebastianbergmann/diff/security/policy", |
|
| 1491 |
+ "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0" |
|
| 1492 |
+ }, |
|
| 1493 |
+ "funding": [ |
|
| 1494 |
+ {
|
|
| 1495 |
+ "url": "https://github.com/sebastianbergmann", |
|
| 1496 |
+ "type": "github" |
|
| 1497 |
+ } |
|
| 1498 |
+ ], |
|
| 1499 |
+ "time": "2025-02-07T04:55:46+00:00" |
|
| 1500 |
+ }, |
|
| 1501 |
+ {
|
|
| 1502 |
+ "name": "slevomat/coding-standard", |
|
| 1503 |
+ "version": "8.26.0", |
|
| 1504 |
+ "source": {
|
|
| 1505 |
+ "type": "git", |
|
| 1506 |
+ "url": "https://github.com/slevomat/coding-standard.git", |
|
| 1507 |
+ "reference": "d247cdc04b91956bdcfaa0b1313c01960b189d3c" |
|
| 1508 |
+ }, |
|
| 1509 |
+ "dist": {
|
|
| 1510 |
+ "type": "zip", |
|
| 1511 |
+ "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/d247cdc04b91956bdcfaa0b1313c01960b189d3c", |
|
| 1512 |
+ "reference": "d247cdc04b91956bdcfaa0b1313c01960b189d3c", |
|
| 1513 |
+ "shasum": "" |
|
| 1514 |
+ }, |
|
| 1515 |
+ "require": {
|
|
| 1516 |
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.2.0", |
|
| 1517 |
+ "php": "^7.4 || ^8.0", |
|
| 1518 |
+ "phpstan/phpdoc-parser": "^2.3.0", |
|
| 1519 |
+ "squizlabs/php_codesniffer": "^4.0.1" |
|
| 1520 |
+ }, |
|
| 1521 |
+ "require-dev": {
|
|
| 1522 |
+ "phing/phing": "3.0.1|3.1.0", |
|
| 1523 |
+ "php-parallel-lint/php-parallel-lint": "1.4.0", |
|
| 1524 |
+ "phpstan/phpstan": "2.1.33", |
|
| 1525 |
+ "phpstan/phpstan-deprecation-rules": "2.0.3", |
|
| 1526 |
+ "phpstan/phpstan-phpunit": "2.0.11", |
|
| 1527 |
+ "phpstan/phpstan-strict-rules": "2.0.7", |
|
| 1528 |
+ "phpunit/phpunit": "9.6.31|10.5.60|11.4.4|11.5.46|12.5.4" |
|
| 1529 |
+ }, |
|
| 1530 |
+ "type": "phpcodesniffer-standard", |
|
| 1531 |
+ "extra": {
|
|
| 1532 |
+ "branch-alias": {
|
|
| 1533 |
+ "dev-master": "8.x-dev" |
|
| 1534 |
+ } |
|
| 1535 |
+ }, |
|
| 1536 |
+ "autoload": {
|
|
| 1537 |
+ "psr-4": {
|
|
| 1538 |
+ "SlevomatCodingStandard\\": "SlevomatCodingStandard/" |
|
| 1539 |
+ } |
|
| 1540 |
+ }, |
|
| 1541 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1542 |
+ "license": [ |
|
| 1543 |
+ "MIT" |
|
| 1544 |
+ ], |
|
| 1545 |
+ "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", |
|
| 1546 |
+ "keywords": [ |
|
| 1547 |
+ "dev", |
|
| 1548 |
+ "phpcs" |
|
| 1549 |
+ ], |
|
| 1550 |
+ "support": {
|
|
| 1551 |
+ "issues": "https://github.com/slevomat/coding-standard/issues", |
|
| 1552 |
+ "source": "https://github.com/slevomat/coding-standard/tree/8.26.0" |
|
| 1553 |
+ }, |
|
| 1554 |
+ "funding": [ |
|
| 1555 |
+ {
|
|
| 1556 |
+ "url": "https://github.com/kukulich", |
|
| 1557 |
+ "type": "github" |
|
| 1558 |
+ }, |
|
| 1559 |
+ {
|
|
| 1560 |
+ "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", |
|
| 1561 |
+ "type": "tidelift" |
|
| 1562 |
+ } |
|
| 1563 |
+ ], |
|
| 1564 |
+ "time": "2025-12-21T18:01:15+00:00" |
|
| 1565 |
+ }, |
|
| 1566 |
+ {
|
|
| 1567 |
+ "name": "squizlabs/php_codesniffer", |
|
| 1568 |
+ "version": "4.0.1", |
|
| 1569 |
+ "source": {
|
|
| 1570 |
+ "type": "git", |
|
| 1571 |
+ "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", |
|
| 1572 |
+ "reference": "0525c73950de35ded110cffafb9892946d7771b5" |
|
| 1573 |
+ }, |
|
| 1574 |
+ "dist": {
|
|
| 1575 |
+ "type": "zip", |
|
| 1576 |
+ "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0525c73950de35ded110cffafb9892946d7771b5", |
|
| 1577 |
+ "reference": "0525c73950de35ded110cffafb9892946d7771b5", |
|
| 1578 |
+ "shasum": "" |
|
| 1579 |
+ }, |
|
| 1580 |
+ "require": {
|
|
| 1581 |
+ "ext-simplexml": "*", |
|
| 1582 |
+ "ext-tokenizer": "*", |
|
| 1583 |
+ "ext-xmlwriter": "*", |
|
| 1584 |
+ "php": ">=7.2.0" |
|
| 1585 |
+ }, |
|
| 1586 |
+ "require-dev": {
|
|
| 1587 |
+ "phpunit/phpunit": "^8.4.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28 || ^11.5.31" |
|
| 1588 |
+ }, |
|
| 1589 |
+ "bin": [ |
|
| 1590 |
+ "bin/phpcbf", |
|
| 1591 |
+ "bin/phpcs" |
|
| 1592 |
+ ], |
|
| 1593 |
+ "type": "library", |
|
| 1594 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1595 |
+ "license": [ |
|
| 1596 |
+ "BSD-3-Clause" |
|
| 1597 |
+ ], |
|
| 1598 |
+ "authors": [ |
|
| 1599 |
+ {
|
|
| 1600 |
+ "name": "Greg Sherwood", |
|
| 1601 |
+ "role": "Former lead" |
|
| 1602 |
+ }, |
|
| 1603 |
+ {
|
|
| 1604 |
+ "name": "Juliette Reinders Folmer", |
|
| 1605 |
+ "role": "Current lead" |
|
| 1606 |
+ }, |
|
| 1607 |
+ {
|
|
| 1608 |
+ "name": "Contributors", |
|
| 1609 |
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" |
|
| 1610 |
+ } |
|
| 1611 |
+ ], |
|
| 1612 |
+ "description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.", |
|
| 1613 |
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", |
|
| 1614 |
+ "keywords": [ |
|
| 1615 |
+ "phpcs", |
|
| 1616 |
+ "standards", |
|
| 1617 |
+ "static analysis" |
|
| 1618 |
+ ], |
|
| 1619 |
+ "support": {
|
|
| 1620 |
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", |
|
| 1621 |
+ "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", |
|
| 1622 |
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", |
|
| 1623 |
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" |
|
| 1624 |
+ }, |
|
| 1625 |
+ "funding": [ |
|
| 1626 |
+ {
|
|
| 1627 |
+ "url": "https://github.com/PHPCSStandards", |
|
| 1628 |
+ "type": "github" |
|
| 1629 |
+ }, |
|
| 1630 |
+ {
|
|
| 1631 |
+ "url": "https://github.com/jrfnl", |
|
| 1632 |
+ "type": "github" |
|
| 1633 |
+ }, |
|
| 1634 |
+ {
|
|
| 1635 |
+ "url": "https://opencollective.com/php_codesniffer", |
|
| 1636 |
+ "type": "open_collective" |
|
| 1637 |
+ }, |
|
| 1638 |
+ {
|
|
| 1639 |
+ "url": "https://thanks.dev/u/gh/phpcsstandards", |
|
| 1640 |
+ "type": "thanks_dev" |
|
| 1641 |
+ } |
|
| 1642 |
+ ], |
|
| 1643 |
+ "time": "2025-11-10T16:43:36+00:00" |
|
| 1644 |
+ }, |
|
| 1645 |
+ {
|
|
| 1646 |
+ "name": "symfony/console", |
|
| 1647 |
+ "version": "v7.4.1", |
|
| 1648 |
+ "source": {
|
|
| 1649 |
+ "type": "git", |
|
| 1650 |
+ "url": "https://github.com/symfony/console.git", |
|
| 1651 |
+ "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e" |
|
| 1652 |
+ }, |
|
| 1653 |
+ "dist": {
|
|
| 1654 |
+ "type": "zip", |
|
| 1655 |
+ "url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", |
|
| 1656 |
+ "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", |
|
| 1657 |
+ "shasum": "" |
|
| 1658 |
+ }, |
|
| 1659 |
+ "require": {
|
|
| 1660 |
+ "php": ">=8.2", |
|
| 1661 |
+ "symfony/deprecation-contracts": "^2.5|^3", |
|
| 1662 |
+ "symfony/polyfill-mbstring": "~1.0", |
|
| 1663 |
+ "symfony/service-contracts": "^2.5|^3", |
|
| 1664 |
+ "symfony/string": "^7.2|^8.0" |
|
| 1665 |
+ }, |
|
| 1666 |
+ "conflict": {
|
|
| 1667 |
+ "symfony/dependency-injection": "<6.4", |
|
| 1668 |
+ "symfony/dotenv": "<6.4", |
|
| 1669 |
+ "symfony/event-dispatcher": "<6.4", |
|
| 1670 |
+ "symfony/lock": "<6.4", |
|
| 1671 |
+ "symfony/process": "<6.4" |
|
| 1672 |
+ }, |
|
| 1673 |
+ "provide": {
|
|
| 1674 |
+ "psr/log-implementation": "1.0|2.0|3.0" |
|
| 1675 |
+ }, |
|
| 1676 |
+ "require-dev": {
|
|
| 1677 |
+ "psr/log": "^1|^2|^3", |
|
| 1678 |
+ "symfony/config": "^6.4|^7.0|^8.0", |
|
| 1679 |
+ "symfony/dependency-injection": "^6.4|^7.0|^8.0", |
|
| 1680 |
+ "symfony/event-dispatcher": "^6.4|^7.0|^8.0", |
|
| 1681 |
+ "symfony/http-foundation": "^6.4|^7.0|^8.0", |
|
| 1682 |
+ "symfony/http-kernel": "^6.4|^7.0|^8.0", |
|
| 1683 |
+ "symfony/lock": "^6.4|^7.0|^8.0", |
|
| 1684 |
+ "symfony/messenger": "^6.4|^7.0|^8.0", |
|
| 1685 |
+ "symfony/process": "^6.4|^7.0|^8.0", |
|
| 1686 |
+ "symfony/stopwatch": "^6.4|^7.0|^8.0", |
|
| 1687 |
+ "symfony/var-dumper": "^6.4|^7.0|^8.0" |
|
| 1688 |
+ }, |
|
| 1689 |
+ "type": "library", |
|
| 1690 |
+ "autoload": {
|
|
| 1691 |
+ "psr-4": {
|
|
| 1692 |
+ "Symfony\\Component\\Console\\": "" |
|
| 1693 |
+ }, |
|
| 1694 |
+ "exclude-from-classmap": [ |
|
| 1695 |
+ "/Tests/" |
|
| 1696 |
+ ] |
|
| 1697 |
+ }, |
|
| 1698 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1699 |
+ "license": [ |
|
| 1700 |
+ "MIT" |
|
| 1701 |
+ ], |
|
| 1702 |
+ "authors": [ |
|
| 1703 |
+ {
|
|
| 1704 |
+ "name": "Fabien Potencier", |
|
| 1705 |
+ "email": "fabien@symfony.com" |
|
| 1706 |
+ }, |
|
| 1707 |
+ {
|
|
| 1708 |
+ "name": "Symfony Community", |
|
| 1709 |
+ "homepage": "https://symfony.com/contributors" |
|
| 1710 |
+ } |
|
| 1711 |
+ ], |
|
| 1712 |
+ "description": "Eases the creation of beautiful and testable command line interfaces", |
|
| 1713 |
+ "homepage": "https://symfony.com", |
|
| 1714 |
+ "keywords": [ |
|
| 1715 |
+ "cli", |
|
| 1716 |
+ "command-line", |
|
| 1717 |
+ "console", |
|
| 1718 |
+ "terminal" |
|
| 1719 |
+ ], |
|
| 1720 |
+ "support": {
|
|
| 1721 |
+ "source": "https://github.com/symfony/console/tree/v7.4.1" |
|
| 1722 |
+ }, |
|
| 1723 |
+ "funding": [ |
|
| 1724 |
+ {
|
|
| 1725 |
+ "url": "https://symfony.com/sponsor", |
|
| 1726 |
+ "type": "custom" |
|
| 1727 |
+ }, |
|
| 1728 |
+ {
|
|
| 1729 |
+ "url": "https://github.com/fabpot", |
|
| 1730 |
+ "type": "github" |
|
| 1731 |
+ }, |
|
| 1732 |
+ {
|
|
| 1733 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 1734 |
+ "type": "github" |
|
| 1735 |
+ }, |
|
| 1736 |
+ {
|
|
| 1737 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 1738 |
+ "type": "tidelift" |
|
| 1739 |
+ } |
|
| 1740 |
+ ], |
|
| 1741 |
+ "time": "2025-12-05T15:23:39+00:00" |
|
| 1742 |
+ }, |
|
| 1743 |
+ {
|
|
| 1744 |
+ "name": "symfony/deprecation-contracts", |
|
| 1745 |
+ "version": "v3.6.0", |
|
| 1746 |
+ "source": {
|
|
| 1747 |
+ "type": "git", |
|
| 1748 |
+ "url": "https://github.com/symfony/deprecation-contracts.git", |
|
| 1749 |
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" |
|
| 1750 |
+ }, |
|
| 1751 |
+ "dist": {
|
|
| 1752 |
+ "type": "zip", |
|
| 1753 |
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", |
|
| 1754 |
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", |
|
| 1755 |
+ "shasum": "" |
|
| 1756 |
+ }, |
|
| 1757 |
+ "require": {
|
|
| 1758 |
+ "php": ">=8.1" |
|
| 1759 |
+ }, |
|
| 1760 |
+ "type": "library", |
|
| 1761 |
+ "extra": {
|
|
| 1762 |
+ "thanks": {
|
|
| 1763 |
+ "url": "https://github.com/symfony/contracts", |
|
| 1764 |
+ "name": "symfony/contracts" |
|
| 1765 |
+ }, |
|
| 1766 |
+ "branch-alias": {
|
|
| 1767 |
+ "dev-main": "3.6-dev" |
|
| 1768 |
+ } |
|
| 1769 |
+ }, |
|
| 1770 |
+ "autoload": {
|
|
| 1771 |
+ "files": [ |
|
| 1772 |
+ "function.php" |
|
| 1773 |
+ ] |
|
| 1774 |
+ }, |
|
| 1775 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1776 |
+ "license": [ |
|
| 1777 |
+ "MIT" |
|
| 1778 |
+ ], |
|
| 1779 |
+ "authors": [ |
|
| 1780 |
+ {
|
|
| 1781 |
+ "name": "Nicolas Grekas", |
|
| 1782 |
+ "email": "p@tchwork.com" |
|
| 1783 |
+ }, |
|
| 1784 |
+ {
|
|
| 1785 |
+ "name": "Symfony Community", |
|
| 1786 |
+ "homepage": "https://symfony.com/contributors" |
|
| 1787 |
+ } |
|
| 1788 |
+ ], |
|
| 1789 |
+ "description": "A generic function and convention to trigger deprecation notices", |
|
| 1790 |
+ "homepage": "https://symfony.com", |
|
| 1791 |
+ "support": {
|
|
| 1792 |
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" |
|
| 1793 |
+ }, |
|
| 1794 |
+ "funding": [ |
|
| 1795 |
+ {
|
|
| 1796 |
+ "url": "https://symfony.com/sponsor", |
|
| 1797 |
+ "type": "custom" |
|
| 1798 |
+ }, |
|
| 1799 |
+ {
|
|
| 1800 |
+ "url": "https://github.com/fabpot", |
|
| 1801 |
+ "type": "github" |
|
| 1802 |
+ }, |
|
| 1803 |
+ {
|
|
| 1804 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 1805 |
+ "type": "tidelift" |
|
| 1806 |
+ } |
|
| 1807 |
+ ], |
|
| 1808 |
+ "time": "2024-09-25T14:21:43+00:00" |
|
| 1809 |
+ }, |
|
| 1810 |
+ {
|
|
| 1811 |
+ "name": "symfony/event-dispatcher", |
|
| 1812 |
+ "version": "v7.4.0", |
|
| 1813 |
+ "source": {
|
|
| 1814 |
+ "type": "git", |
|
| 1815 |
+ "url": "https://github.com/symfony/event-dispatcher.git", |
|
| 1816 |
+ "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d" |
|
| 1817 |
+ }, |
|
| 1818 |
+ "dist": {
|
|
| 1819 |
+ "type": "zip", |
|
| 1820 |
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9dddcddff1ef974ad87b3708e4b442dc38b2261d", |
|
| 1821 |
+ "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d", |
|
| 1822 |
+ "shasum": "" |
|
| 1823 |
+ }, |
|
| 1824 |
+ "require": {
|
|
| 1825 |
+ "php": ">=8.2", |
|
| 1826 |
+ "symfony/event-dispatcher-contracts": "^2.5|^3" |
|
| 1827 |
+ }, |
|
| 1828 |
+ "conflict": {
|
|
| 1829 |
+ "symfony/dependency-injection": "<6.4", |
|
| 1830 |
+ "symfony/service-contracts": "<2.5" |
|
| 1831 |
+ }, |
|
| 1832 |
+ "provide": {
|
|
| 1833 |
+ "psr/event-dispatcher-implementation": "1.0", |
|
| 1834 |
+ "symfony/event-dispatcher-implementation": "2.0|3.0" |
|
| 1835 |
+ }, |
|
| 1836 |
+ "require-dev": {
|
|
| 1837 |
+ "psr/log": "^1|^2|^3", |
|
| 1838 |
+ "symfony/config": "^6.4|^7.0|^8.0", |
|
| 1839 |
+ "symfony/dependency-injection": "^6.4|^7.0|^8.0", |
|
| 1840 |
+ "symfony/error-handler": "^6.4|^7.0|^8.0", |
|
| 1841 |
+ "symfony/expression-language": "^6.4|^7.0|^8.0", |
|
| 1842 |
+ "symfony/framework-bundle": "^6.4|^7.0|^8.0", |
|
| 1843 |
+ "symfony/http-foundation": "^6.4|^7.0|^8.0", |
|
| 1844 |
+ "symfony/service-contracts": "^2.5|^3", |
|
| 1845 |
+ "symfony/stopwatch": "^6.4|^7.0|^8.0" |
|
| 1846 |
+ }, |
|
| 1847 |
+ "type": "library", |
|
| 1848 |
+ "autoload": {
|
|
| 1849 |
+ "psr-4": {
|
|
| 1850 |
+ "Symfony\\Component\\EventDispatcher\\": "" |
|
| 1851 |
+ }, |
|
| 1852 |
+ "exclude-from-classmap": [ |
|
| 1853 |
+ "/Tests/" |
|
| 1854 |
+ ] |
|
| 1855 |
+ }, |
|
| 1856 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1857 |
+ "license": [ |
|
| 1858 |
+ "MIT" |
|
| 1859 |
+ ], |
|
| 1860 |
+ "authors": [ |
|
| 1861 |
+ {
|
|
| 1862 |
+ "name": "Fabien Potencier", |
|
| 1863 |
+ "email": "fabien@symfony.com" |
|
| 1864 |
+ }, |
|
| 1865 |
+ {
|
|
| 1866 |
+ "name": "Symfony Community", |
|
| 1867 |
+ "homepage": "https://symfony.com/contributors" |
|
| 1868 |
+ } |
|
| 1869 |
+ ], |
|
| 1870 |
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", |
|
| 1871 |
+ "homepage": "https://symfony.com", |
|
| 1872 |
+ "support": {
|
|
| 1873 |
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.0" |
|
| 1874 |
+ }, |
|
| 1875 |
+ "funding": [ |
|
| 1876 |
+ {
|
|
| 1877 |
+ "url": "https://symfony.com/sponsor", |
|
| 1878 |
+ "type": "custom" |
|
| 1879 |
+ }, |
|
| 1880 |
+ {
|
|
| 1881 |
+ "url": "https://github.com/fabpot", |
|
| 1882 |
+ "type": "github" |
|
| 1883 |
+ }, |
|
| 1884 |
+ {
|
|
| 1885 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 1886 |
+ "type": "github" |
|
| 1887 |
+ }, |
|
| 1888 |
+ {
|
|
| 1889 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 1890 |
+ "type": "tidelift" |
|
| 1891 |
+ } |
|
| 1892 |
+ ], |
|
| 1893 |
+ "time": "2025-10-28T09:38:46+00:00" |
|
| 1894 |
+ }, |
|
| 1895 |
+ {
|
|
| 1896 |
+ "name": "symfony/event-dispatcher-contracts", |
|
| 1897 |
+ "version": "v3.6.0", |
|
| 1898 |
+ "source": {
|
|
| 1899 |
+ "type": "git", |
|
| 1900 |
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git", |
|
| 1901 |
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586" |
|
| 1902 |
+ }, |
|
| 1903 |
+ "dist": {
|
|
| 1904 |
+ "type": "zip", |
|
| 1905 |
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", |
|
| 1906 |
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586", |
|
| 1907 |
+ "shasum": "" |
|
| 1908 |
+ }, |
|
| 1909 |
+ "require": {
|
|
| 1910 |
+ "php": ">=8.1", |
|
| 1911 |
+ "psr/event-dispatcher": "^1" |
|
| 1912 |
+ }, |
|
| 1913 |
+ "type": "library", |
|
| 1914 |
+ "extra": {
|
|
| 1915 |
+ "thanks": {
|
|
| 1916 |
+ "url": "https://github.com/symfony/contracts", |
|
| 1917 |
+ "name": "symfony/contracts" |
|
| 1918 |
+ }, |
|
| 1919 |
+ "branch-alias": {
|
|
| 1920 |
+ "dev-main": "3.6-dev" |
|
| 1921 |
+ } |
|
| 1922 |
+ }, |
|
| 1923 |
+ "autoload": {
|
|
| 1924 |
+ "psr-4": {
|
|
| 1925 |
+ "Symfony\\Contracts\\EventDispatcher\\": "" |
|
| 1926 |
+ } |
|
| 1927 |
+ }, |
|
| 1928 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 1929 |
+ "license": [ |
|
| 1930 |
+ "MIT" |
|
| 1931 |
+ ], |
|
| 1932 |
+ "authors": [ |
|
| 1933 |
+ {
|
|
| 1934 |
+ "name": "Nicolas Grekas", |
|
| 1935 |
+ "email": "p@tchwork.com" |
|
| 1936 |
+ }, |
|
| 1937 |
+ {
|
|
| 1938 |
+ "name": "Symfony Community", |
|
| 1939 |
+ "homepage": "https://symfony.com/contributors" |
|
| 1940 |
+ } |
|
| 1941 |
+ ], |
|
| 1942 |
+ "description": "Generic abstractions related to dispatching event", |
|
| 1943 |
+ "homepage": "https://symfony.com", |
|
| 1944 |
+ "keywords": [ |
|
| 1945 |
+ "abstractions", |
|
| 1946 |
+ "contracts", |
|
| 1947 |
+ "decoupling", |
|
| 1948 |
+ "interfaces", |
|
| 1949 |
+ "interoperability", |
|
| 1950 |
+ "standards" |
|
| 1951 |
+ ], |
|
| 1952 |
+ "support": {
|
|
| 1953 |
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" |
|
| 1954 |
+ }, |
|
| 1955 |
+ "funding": [ |
|
| 1956 |
+ {
|
|
| 1957 |
+ "url": "https://symfony.com/sponsor", |
|
| 1958 |
+ "type": "custom" |
|
| 1959 |
+ }, |
|
| 1960 |
+ {
|
|
| 1961 |
+ "url": "https://github.com/fabpot", |
|
| 1962 |
+ "type": "github" |
|
| 1963 |
+ }, |
|
| 1964 |
+ {
|
|
| 1965 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 1966 |
+ "type": "tidelift" |
|
| 1967 |
+ } |
|
| 1968 |
+ ], |
|
| 1969 |
+ "time": "2024-09-25T14:21:43+00:00" |
|
| 1970 |
+ }, |
|
| 1971 |
+ {
|
|
| 1972 |
+ "name": "symfony/filesystem", |
|
| 1973 |
+ "version": "v7.4.0", |
|
| 1974 |
+ "source": {
|
|
| 1975 |
+ "type": "git", |
|
| 1976 |
+ "url": "https://github.com/symfony/filesystem.git", |
|
| 1977 |
+ "reference": "d551b38811096d0be9c4691d406991b47c0c630a" |
|
| 1978 |
+ }, |
|
| 1979 |
+ "dist": {
|
|
| 1980 |
+ "type": "zip", |
|
| 1981 |
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a", |
|
| 1982 |
+ "reference": "d551b38811096d0be9c4691d406991b47c0c630a", |
|
| 1983 |
+ "shasum": "" |
|
| 1984 |
+ }, |
|
| 1985 |
+ "require": {
|
|
| 1986 |
+ "php": ">=8.2", |
|
| 1987 |
+ "symfony/polyfill-ctype": "~1.8", |
|
| 1988 |
+ "symfony/polyfill-mbstring": "~1.8" |
|
| 1989 |
+ }, |
|
| 1990 |
+ "require-dev": {
|
|
| 1991 |
+ "symfony/process": "^6.4|^7.0|^8.0" |
|
| 1992 |
+ }, |
|
| 1993 |
+ "type": "library", |
|
| 1994 |
+ "autoload": {
|
|
| 1995 |
+ "psr-4": {
|
|
| 1996 |
+ "Symfony\\Component\\Filesystem\\": "" |
|
| 1997 |
+ }, |
|
| 1998 |
+ "exclude-from-classmap": [ |
|
| 1999 |
+ "/Tests/" |
|
| 2000 |
+ ] |
|
| 2001 |
+ }, |
|
| 2002 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2003 |
+ "license": [ |
|
| 2004 |
+ "MIT" |
|
| 2005 |
+ ], |
|
| 2006 |
+ "authors": [ |
|
| 2007 |
+ {
|
|
| 2008 |
+ "name": "Fabien Potencier", |
|
| 2009 |
+ "email": "fabien@symfony.com" |
|
| 2010 |
+ }, |
|
| 2011 |
+ {
|
|
| 2012 |
+ "name": "Symfony Community", |
|
| 2013 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2014 |
+ } |
|
| 2015 |
+ ], |
|
| 2016 |
+ "description": "Provides basic utilities for the filesystem", |
|
| 2017 |
+ "homepage": "https://symfony.com", |
|
| 2018 |
+ "support": {
|
|
| 2019 |
+ "source": "https://github.com/symfony/filesystem/tree/v7.4.0" |
|
| 2020 |
+ }, |
|
| 2021 |
+ "funding": [ |
|
| 2022 |
+ {
|
|
| 2023 |
+ "url": "https://symfony.com/sponsor", |
|
| 2024 |
+ "type": "custom" |
|
| 2025 |
+ }, |
|
| 2026 |
+ {
|
|
| 2027 |
+ "url": "https://github.com/fabpot", |
|
| 2028 |
+ "type": "github" |
|
| 2029 |
+ }, |
|
| 2030 |
+ {
|
|
| 2031 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2032 |
+ "type": "github" |
|
| 2033 |
+ }, |
|
| 2034 |
+ {
|
|
| 2035 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2036 |
+ "type": "tidelift" |
|
| 2037 |
+ } |
|
| 2038 |
+ ], |
|
| 2039 |
+ "time": "2025-11-27T13:27:24+00:00" |
|
| 2040 |
+ }, |
|
| 2041 |
+ {
|
|
| 2042 |
+ "name": "symfony/finder", |
|
| 2043 |
+ "version": "v7.4.0", |
|
| 2044 |
+ "source": {
|
|
| 2045 |
+ "type": "git", |
|
| 2046 |
+ "url": "https://github.com/symfony/finder.git", |
|
| 2047 |
+ "reference": "340b9ed7320570f319028a2cbec46d40535e94bd" |
|
| 2048 |
+ }, |
|
| 2049 |
+ "dist": {
|
|
| 2050 |
+ "type": "zip", |
|
| 2051 |
+ "url": "https://api.github.com/repos/symfony/finder/zipball/340b9ed7320570f319028a2cbec46d40535e94bd", |
|
| 2052 |
+ "reference": "340b9ed7320570f319028a2cbec46d40535e94bd", |
|
| 2053 |
+ "shasum": "" |
|
| 2054 |
+ }, |
|
| 2055 |
+ "require": {
|
|
| 2056 |
+ "php": ">=8.2" |
|
| 2057 |
+ }, |
|
| 2058 |
+ "require-dev": {
|
|
| 2059 |
+ "symfony/filesystem": "^6.4|^7.0|^8.0" |
|
| 2060 |
+ }, |
|
| 2061 |
+ "type": "library", |
|
| 2062 |
+ "autoload": {
|
|
| 2063 |
+ "psr-4": {
|
|
| 2064 |
+ "Symfony\\Component\\Finder\\": "" |
|
| 2065 |
+ }, |
|
| 2066 |
+ "exclude-from-classmap": [ |
|
| 2067 |
+ "/Tests/" |
|
| 2068 |
+ ] |
|
| 2069 |
+ }, |
|
| 2070 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2071 |
+ "license": [ |
|
| 2072 |
+ "MIT" |
|
| 2073 |
+ ], |
|
| 2074 |
+ "authors": [ |
|
| 2075 |
+ {
|
|
| 2076 |
+ "name": "Fabien Potencier", |
|
| 2077 |
+ "email": "fabien@symfony.com" |
|
| 2078 |
+ }, |
|
| 2079 |
+ {
|
|
| 2080 |
+ "name": "Symfony Community", |
|
| 2081 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2082 |
+ } |
|
| 2083 |
+ ], |
|
| 2084 |
+ "description": "Finds files and directories via an intuitive fluent interface", |
|
| 2085 |
+ "homepage": "https://symfony.com", |
|
| 2086 |
+ "support": {
|
|
| 2087 |
+ "source": "https://github.com/symfony/finder/tree/v7.4.0" |
|
| 2088 |
+ }, |
|
| 2089 |
+ "funding": [ |
|
| 2090 |
+ {
|
|
| 2091 |
+ "url": "https://symfony.com/sponsor", |
|
| 2092 |
+ "type": "custom" |
|
| 2093 |
+ }, |
|
| 2094 |
+ {
|
|
| 2095 |
+ "url": "https://github.com/fabpot", |
|
| 2096 |
+ "type": "github" |
|
| 2097 |
+ }, |
|
| 2098 |
+ {
|
|
| 2099 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2100 |
+ "type": "github" |
|
| 2101 |
+ }, |
|
| 2102 |
+ {
|
|
| 2103 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2104 |
+ "type": "tidelift" |
|
| 2105 |
+ } |
|
| 2106 |
+ ], |
|
| 2107 |
+ "time": "2025-11-05T05:42:40+00:00" |
|
| 2108 |
+ }, |
|
| 2109 |
+ {
|
|
| 2110 |
+ "name": "symfony/options-resolver", |
|
| 2111 |
+ "version": "v7.4.0", |
|
| 2112 |
+ "source": {
|
|
| 2113 |
+ "type": "git", |
|
| 2114 |
+ "url": "https://github.com/symfony/options-resolver.git", |
|
| 2115 |
+ "reference": "b38026df55197f9e39a44f3215788edf83187b80" |
|
| 2116 |
+ }, |
|
| 2117 |
+ "dist": {
|
|
| 2118 |
+ "type": "zip", |
|
| 2119 |
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b38026df55197f9e39a44f3215788edf83187b80", |
|
| 2120 |
+ "reference": "b38026df55197f9e39a44f3215788edf83187b80", |
|
| 2121 |
+ "shasum": "" |
|
| 2122 |
+ }, |
|
| 2123 |
+ "require": {
|
|
| 2124 |
+ "php": ">=8.2", |
|
| 2125 |
+ "symfony/deprecation-contracts": "^2.5|^3" |
|
| 2126 |
+ }, |
|
| 2127 |
+ "type": "library", |
|
| 2128 |
+ "autoload": {
|
|
| 2129 |
+ "psr-4": {
|
|
| 2130 |
+ "Symfony\\Component\\OptionsResolver\\": "" |
|
| 2131 |
+ }, |
|
| 2132 |
+ "exclude-from-classmap": [ |
|
| 2133 |
+ "/Tests/" |
|
| 2134 |
+ ] |
|
| 2135 |
+ }, |
|
| 2136 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2137 |
+ "license": [ |
|
| 2138 |
+ "MIT" |
|
| 2139 |
+ ], |
|
| 2140 |
+ "authors": [ |
|
| 2141 |
+ {
|
|
| 2142 |
+ "name": "Fabien Potencier", |
|
| 2143 |
+ "email": "fabien@symfony.com" |
|
| 2144 |
+ }, |
|
| 2145 |
+ {
|
|
| 2146 |
+ "name": "Symfony Community", |
|
| 2147 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2148 |
+ } |
|
| 2149 |
+ ], |
|
| 2150 |
+ "description": "Provides an improved replacement for the array_replace PHP function", |
|
| 2151 |
+ "homepage": "https://symfony.com", |
|
| 2152 |
+ "keywords": [ |
|
| 2153 |
+ "config", |
|
| 2154 |
+ "configuration", |
|
| 2155 |
+ "options" |
|
| 2156 |
+ ], |
|
| 2157 |
+ "support": {
|
|
| 2158 |
+ "source": "https://github.com/symfony/options-resolver/tree/v7.4.0" |
|
| 2159 |
+ }, |
|
| 2160 |
+ "funding": [ |
|
| 2161 |
+ {
|
|
| 2162 |
+ "url": "https://symfony.com/sponsor", |
|
| 2163 |
+ "type": "custom" |
|
| 2164 |
+ }, |
|
| 2165 |
+ {
|
|
| 2166 |
+ "url": "https://github.com/fabpot", |
|
| 2167 |
+ "type": "github" |
|
| 2168 |
+ }, |
|
| 2169 |
+ {
|
|
| 2170 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2171 |
+ "type": "github" |
|
| 2172 |
+ }, |
|
| 2173 |
+ {
|
|
| 2174 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2175 |
+ "type": "tidelift" |
|
| 2176 |
+ } |
|
| 2177 |
+ ], |
|
| 2178 |
+ "time": "2025-11-12T15:39:26+00:00" |
|
| 2179 |
+ }, |
|
| 2180 |
+ {
|
|
| 2181 |
+ "name": "symfony/polyfill-ctype", |
|
| 2182 |
+ "version": "v1.33.0", |
|
| 2183 |
+ "source": {
|
|
| 2184 |
+ "type": "git", |
|
| 2185 |
+ "url": "https://github.com/symfony/polyfill-ctype.git", |
|
| 2186 |
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" |
|
| 2187 |
+ }, |
|
| 2188 |
+ "dist": {
|
|
| 2189 |
+ "type": "zip", |
|
| 2190 |
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", |
|
| 2191 |
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", |
|
| 2192 |
+ "shasum": "" |
|
| 2193 |
+ }, |
|
| 2194 |
+ "require": {
|
|
| 2195 |
+ "php": ">=7.2" |
|
| 2196 |
+ }, |
|
| 2197 |
+ "provide": {
|
|
| 2198 |
+ "ext-ctype": "*" |
|
| 2199 |
+ }, |
|
| 2200 |
+ "suggest": {
|
|
| 2201 |
+ "ext-ctype": "For best performance" |
|
| 2202 |
+ }, |
|
| 2203 |
+ "type": "library", |
|
| 2204 |
+ "extra": {
|
|
| 2205 |
+ "thanks": {
|
|
| 2206 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2207 |
+ "name": "symfony/polyfill" |
|
| 2208 |
+ } |
|
| 2209 |
+ }, |
|
| 2210 |
+ "autoload": {
|
|
| 2211 |
+ "files": [ |
|
| 2212 |
+ "bootstrap.php" |
|
| 2213 |
+ ], |
|
| 2214 |
+ "psr-4": {
|
|
| 2215 |
+ "Symfony\\Polyfill\\Ctype\\": "" |
|
| 2216 |
+ } |
|
| 2217 |
+ }, |
|
| 2218 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2219 |
+ "license": [ |
|
| 2220 |
+ "MIT" |
|
| 2221 |
+ ], |
|
| 2222 |
+ "authors": [ |
|
| 2223 |
+ {
|
|
| 2224 |
+ "name": "Gert de Pagter", |
|
| 2225 |
+ "email": "BackEndTea@gmail.com" |
|
| 2226 |
+ }, |
|
| 2227 |
+ {
|
|
| 2228 |
+ "name": "Symfony Community", |
|
| 2229 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2230 |
+ } |
|
| 2231 |
+ ], |
|
| 2232 |
+ "description": "Symfony polyfill for ctype functions", |
|
| 2233 |
+ "homepage": "https://symfony.com", |
|
| 2234 |
+ "keywords": [ |
|
| 2235 |
+ "compatibility", |
|
| 2236 |
+ "ctype", |
|
| 2237 |
+ "polyfill", |
|
| 2238 |
+ "portable" |
|
| 2239 |
+ ], |
|
| 2240 |
+ "support": {
|
|
| 2241 |
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" |
|
| 2242 |
+ }, |
|
| 2243 |
+ "funding": [ |
|
| 2244 |
+ {
|
|
| 2245 |
+ "url": "https://symfony.com/sponsor", |
|
| 2246 |
+ "type": "custom" |
|
| 2247 |
+ }, |
|
| 2248 |
+ {
|
|
| 2249 |
+ "url": "https://github.com/fabpot", |
|
| 2250 |
+ "type": "github" |
|
| 2251 |
+ }, |
|
| 2252 |
+ {
|
|
| 2253 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2254 |
+ "type": "github" |
|
| 2255 |
+ }, |
|
| 2256 |
+ {
|
|
| 2257 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2258 |
+ "type": "tidelift" |
|
| 2259 |
+ } |
|
| 2260 |
+ ], |
|
| 2261 |
+ "time": "2024-09-09T11:45:10+00:00" |
|
| 2262 |
+ }, |
|
| 2263 |
+ {
|
|
| 2264 |
+ "name": "symfony/polyfill-intl-grapheme", |
|
| 2265 |
+ "version": "v1.33.0", |
|
| 2266 |
+ "source": {
|
|
| 2267 |
+ "type": "git", |
|
| 2268 |
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git", |
|
| 2269 |
+ "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" |
|
| 2270 |
+ }, |
|
| 2271 |
+ "dist": {
|
|
| 2272 |
+ "type": "zip", |
|
| 2273 |
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", |
|
| 2274 |
+ "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", |
|
| 2275 |
+ "shasum": "" |
|
| 2276 |
+ }, |
|
| 2277 |
+ "require": {
|
|
| 2278 |
+ "php": ">=7.2" |
|
| 2279 |
+ }, |
|
| 2280 |
+ "suggest": {
|
|
| 2281 |
+ "ext-intl": "For best performance" |
|
| 2282 |
+ }, |
|
| 2283 |
+ "type": "library", |
|
| 2284 |
+ "extra": {
|
|
| 2285 |
+ "thanks": {
|
|
| 2286 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2287 |
+ "name": "symfony/polyfill" |
|
| 2288 |
+ } |
|
| 2289 |
+ }, |
|
| 2290 |
+ "autoload": {
|
|
| 2291 |
+ "files": [ |
|
| 2292 |
+ "bootstrap.php" |
|
| 2293 |
+ ], |
|
| 2294 |
+ "psr-4": {
|
|
| 2295 |
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": "" |
|
| 2296 |
+ } |
|
| 2297 |
+ }, |
|
| 2298 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2299 |
+ "license": [ |
|
| 2300 |
+ "MIT" |
|
| 2301 |
+ ], |
|
| 2302 |
+ "authors": [ |
|
| 2303 |
+ {
|
|
| 2304 |
+ "name": "Nicolas Grekas", |
|
| 2305 |
+ "email": "p@tchwork.com" |
|
| 2306 |
+ }, |
|
| 2307 |
+ {
|
|
| 2308 |
+ "name": "Symfony Community", |
|
| 2309 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2310 |
+ } |
|
| 2311 |
+ ], |
|
| 2312 |
+ "description": "Symfony polyfill for intl's grapheme_* functions", |
|
| 2313 |
+ "homepage": "https://symfony.com", |
|
| 2314 |
+ "keywords": [ |
|
| 2315 |
+ "compatibility", |
|
| 2316 |
+ "grapheme", |
|
| 2317 |
+ "intl", |
|
| 2318 |
+ "polyfill", |
|
| 2319 |
+ "portable", |
|
| 2320 |
+ "shim" |
|
| 2321 |
+ ], |
|
| 2322 |
+ "support": {
|
|
| 2323 |
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" |
|
| 2324 |
+ }, |
|
| 2325 |
+ "funding": [ |
|
| 2326 |
+ {
|
|
| 2327 |
+ "url": "https://symfony.com/sponsor", |
|
| 2328 |
+ "type": "custom" |
|
| 2329 |
+ }, |
|
| 2330 |
+ {
|
|
| 2331 |
+ "url": "https://github.com/fabpot", |
|
| 2332 |
+ "type": "github" |
|
| 2333 |
+ }, |
|
| 2334 |
+ {
|
|
| 2335 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2336 |
+ "type": "github" |
|
| 2337 |
+ }, |
|
| 2338 |
+ {
|
|
| 2339 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2340 |
+ "type": "tidelift" |
|
| 2341 |
+ } |
|
| 2342 |
+ ], |
|
| 2343 |
+ "time": "2025-06-27T09:58:17+00:00" |
|
| 2344 |
+ }, |
|
| 2345 |
+ {
|
|
| 2346 |
+ "name": "symfony/polyfill-intl-normalizer", |
|
| 2347 |
+ "version": "v1.33.0", |
|
| 2348 |
+ "source": {
|
|
| 2349 |
+ "type": "git", |
|
| 2350 |
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git", |
|
| 2351 |
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c" |
|
| 2352 |
+ }, |
|
| 2353 |
+ "dist": {
|
|
| 2354 |
+ "type": "zip", |
|
| 2355 |
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", |
|
| 2356 |
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c", |
|
| 2357 |
+ "shasum": "" |
|
| 2358 |
+ }, |
|
| 2359 |
+ "require": {
|
|
| 2360 |
+ "php": ">=7.2" |
|
| 2361 |
+ }, |
|
| 2362 |
+ "suggest": {
|
|
| 2363 |
+ "ext-intl": "For best performance" |
|
| 2364 |
+ }, |
|
| 2365 |
+ "type": "library", |
|
| 2366 |
+ "extra": {
|
|
| 2367 |
+ "thanks": {
|
|
| 2368 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2369 |
+ "name": "symfony/polyfill" |
|
| 2370 |
+ } |
|
| 2371 |
+ }, |
|
| 2372 |
+ "autoload": {
|
|
| 2373 |
+ "files": [ |
|
| 2374 |
+ "bootstrap.php" |
|
| 2375 |
+ ], |
|
| 2376 |
+ "psr-4": {
|
|
| 2377 |
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": "" |
|
| 2378 |
+ }, |
|
| 2379 |
+ "classmap": [ |
|
| 2380 |
+ "Resources/stubs" |
|
| 2381 |
+ ] |
|
| 2382 |
+ }, |
|
| 2383 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2384 |
+ "license": [ |
|
| 2385 |
+ "MIT" |
|
| 2386 |
+ ], |
|
| 2387 |
+ "authors": [ |
|
| 2388 |
+ {
|
|
| 2389 |
+ "name": "Nicolas Grekas", |
|
| 2390 |
+ "email": "p@tchwork.com" |
|
| 2391 |
+ }, |
|
| 2392 |
+ {
|
|
| 2393 |
+ "name": "Symfony Community", |
|
| 2394 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2395 |
+ } |
|
| 2396 |
+ ], |
|
| 2397 |
+ "description": "Symfony polyfill for intl's Normalizer class and related functions", |
|
| 2398 |
+ "homepage": "https://symfony.com", |
|
| 2399 |
+ "keywords": [ |
|
| 2400 |
+ "compatibility", |
|
| 2401 |
+ "intl", |
|
| 2402 |
+ "normalizer", |
|
| 2403 |
+ "polyfill", |
|
| 2404 |
+ "portable", |
|
| 2405 |
+ "shim" |
|
| 2406 |
+ ], |
|
| 2407 |
+ "support": {
|
|
| 2408 |
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" |
|
| 2409 |
+ }, |
|
| 2410 |
+ "funding": [ |
|
| 2411 |
+ {
|
|
| 2412 |
+ "url": "https://symfony.com/sponsor", |
|
| 2413 |
+ "type": "custom" |
|
| 2414 |
+ }, |
|
| 2415 |
+ {
|
|
| 2416 |
+ "url": "https://github.com/fabpot", |
|
| 2417 |
+ "type": "github" |
|
| 2418 |
+ }, |
|
| 2419 |
+ {
|
|
| 2420 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2421 |
+ "type": "github" |
|
| 2422 |
+ }, |
|
| 2423 |
+ {
|
|
| 2424 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2425 |
+ "type": "tidelift" |
|
| 2426 |
+ } |
|
| 2427 |
+ ], |
|
| 2428 |
+ "time": "2024-09-09T11:45:10+00:00" |
|
| 2429 |
+ }, |
|
| 2430 |
+ {
|
|
| 2431 |
+ "name": "symfony/polyfill-mbstring", |
|
| 2432 |
+ "version": "v1.33.0", |
|
| 2433 |
+ "source": {
|
|
| 2434 |
+ "type": "git", |
|
| 2435 |
+ "url": "https://github.com/symfony/polyfill-mbstring.git", |
|
| 2436 |
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" |
|
| 2437 |
+ }, |
|
| 2438 |
+ "dist": {
|
|
| 2439 |
+ "type": "zip", |
|
| 2440 |
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", |
|
| 2441 |
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", |
|
| 2442 |
+ "shasum": "" |
|
| 2443 |
+ }, |
|
| 2444 |
+ "require": {
|
|
| 2445 |
+ "ext-iconv": "*", |
|
| 2446 |
+ "php": ">=7.2" |
|
| 2447 |
+ }, |
|
| 2448 |
+ "provide": {
|
|
| 2449 |
+ "ext-mbstring": "*" |
|
| 2450 |
+ }, |
|
| 2451 |
+ "suggest": {
|
|
| 2452 |
+ "ext-mbstring": "For best performance" |
|
| 2453 |
+ }, |
|
| 2454 |
+ "type": "library", |
|
| 2455 |
+ "extra": {
|
|
| 2456 |
+ "thanks": {
|
|
| 2457 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2458 |
+ "name": "symfony/polyfill" |
|
| 2459 |
+ } |
|
| 2460 |
+ }, |
|
| 2461 |
+ "autoload": {
|
|
| 2462 |
+ "files": [ |
|
| 2463 |
+ "bootstrap.php" |
|
| 2464 |
+ ], |
|
| 2465 |
+ "psr-4": {
|
|
| 2466 |
+ "Symfony\\Polyfill\\Mbstring\\": "" |
|
| 2467 |
+ } |
|
| 2468 |
+ }, |
|
| 2469 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2470 |
+ "license": [ |
|
| 2471 |
+ "MIT" |
|
| 2472 |
+ ], |
|
| 2473 |
+ "authors": [ |
|
| 2474 |
+ {
|
|
| 2475 |
+ "name": "Nicolas Grekas", |
|
| 2476 |
+ "email": "p@tchwork.com" |
|
| 2477 |
+ }, |
|
| 2478 |
+ {
|
|
| 2479 |
+ "name": "Symfony Community", |
|
| 2480 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2481 |
+ } |
|
| 2482 |
+ ], |
|
| 2483 |
+ "description": "Symfony polyfill for the Mbstring extension", |
|
| 2484 |
+ "homepage": "https://symfony.com", |
|
| 2485 |
+ "keywords": [ |
|
| 2486 |
+ "compatibility", |
|
| 2487 |
+ "mbstring", |
|
| 2488 |
+ "polyfill", |
|
| 2489 |
+ "portable", |
|
| 2490 |
+ "shim" |
|
| 2491 |
+ ], |
|
| 2492 |
+ "support": {
|
|
| 2493 |
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" |
|
| 2494 |
+ }, |
|
| 2495 |
+ "funding": [ |
|
| 2496 |
+ {
|
|
| 2497 |
+ "url": "https://symfony.com/sponsor", |
|
| 2498 |
+ "type": "custom" |
|
| 2499 |
+ }, |
|
| 2500 |
+ {
|
|
| 2501 |
+ "url": "https://github.com/fabpot", |
|
| 2502 |
+ "type": "github" |
|
| 2503 |
+ }, |
|
| 2504 |
+ {
|
|
| 2505 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2506 |
+ "type": "github" |
|
| 2507 |
+ }, |
|
| 2508 |
+ {
|
|
| 2509 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2510 |
+ "type": "tidelift" |
|
| 2511 |
+ } |
|
| 2512 |
+ ], |
|
| 2513 |
+ "time": "2024-12-23T08:48:59+00:00" |
|
| 2514 |
+ }, |
|
| 2515 |
+ {
|
|
| 2516 |
+ "name": "symfony/polyfill-php80", |
|
| 2517 |
+ "version": "v1.33.0", |
|
| 2518 |
+ "source": {
|
|
| 2519 |
+ "type": "git", |
|
| 2520 |
+ "url": "https://github.com/symfony/polyfill-php80.git", |
|
| 2521 |
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" |
|
| 2522 |
+ }, |
|
| 2523 |
+ "dist": {
|
|
| 2524 |
+ "type": "zip", |
|
| 2525 |
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", |
|
| 2526 |
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", |
|
| 2527 |
+ "shasum": "" |
|
| 2528 |
+ }, |
|
| 2529 |
+ "require": {
|
|
| 2530 |
+ "php": ">=7.2" |
|
| 2531 |
+ }, |
|
| 2532 |
+ "type": "library", |
|
| 2533 |
+ "extra": {
|
|
| 2534 |
+ "thanks": {
|
|
| 2535 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2536 |
+ "name": "symfony/polyfill" |
|
| 2537 |
+ } |
|
| 2538 |
+ }, |
|
| 2539 |
+ "autoload": {
|
|
| 2540 |
+ "files": [ |
|
| 2541 |
+ "bootstrap.php" |
|
| 2542 |
+ ], |
|
| 2543 |
+ "psr-4": {
|
|
| 2544 |
+ "Symfony\\Polyfill\\Php80\\": "" |
|
| 2545 |
+ }, |
|
| 2546 |
+ "classmap": [ |
|
| 2547 |
+ "Resources/stubs" |
|
| 2548 |
+ ] |
|
| 2549 |
+ }, |
|
| 2550 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2551 |
+ "license": [ |
|
| 2552 |
+ "MIT" |
|
| 2553 |
+ ], |
|
| 2554 |
+ "authors": [ |
|
| 2555 |
+ {
|
|
| 2556 |
+ "name": "Ion Bazan", |
|
| 2557 |
+ "email": "ion.bazan@gmail.com" |
|
| 2558 |
+ }, |
|
| 2559 |
+ {
|
|
| 2560 |
+ "name": "Nicolas Grekas", |
|
| 2561 |
+ "email": "p@tchwork.com" |
|
| 2562 |
+ }, |
|
| 2563 |
+ {
|
|
| 2564 |
+ "name": "Symfony Community", |
|
| 2565 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2566 |
+ } |
|
| 2567 |
+ ], |
|
| 2568 |
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", |
|
| 2569 |
+ "homepage": "https://symfony.com", |
|
| 2570 |
+ "keywords": [ |
|
| 2571 |
+ "compatibility", |
|
| 2572 |
+ "polyfill", |
|
| 2573 |
+ "portable", |
|
| 2574 |
+ "shim" |
|
| 2575 |
+ ], |
|
| 2576 |
+ "support": {
|
|
| 2577 |
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" |
|
| 2578 |
+ }, |
|
| 2579 |
+ "funding": [ |
|
| 2580 |
+ {
|
|
| 2581 |
+ "url": "https://symfony.com/sponsor", |
|
| 2582 |
+ "type": "custom" |
|
| 2583 |
+ }, |
|
| 2584 |
+ {
|
|
| 2585 |
+ "url": "https://github.com/fabpot", |
|
| 2586 |
+ "type": "github" |
|
| 2587 |
+ }, |
|
| 2588 |
+ {
|
|
| 2589 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2590 |
+ "type": "github" |
|
| 2591 |
+ }, |
|
| 2592 |
+ {
|
|
| 2593 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2594 |
+ "type": "tidelift" |
|
| 2595 |
+ } |
|
| 2596 |
+ ], |
|
| 2597 |
+ "time": "2025-01-02T08:10:11+00:00" |
|
| 2598 |
+ }, |
|
| 2599 |
+ {
|
|
| 2600 |
+ "name": "symfony/polyfill-php81", |
|
| 2601 |
+ "version": "v1.33.0", |
|
| 2602 |
+ "source": {
|
|
| 2603 |
+ "type": "git", |
|
| 2604 |
+ "url": "https://github.com/symfony/polyfill-php81.git", |
|
| 2605 |
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" |
|
| 2606 |
+ }, |
|
| 2607 |
+ "dist": {
|
|
| 2608 |
+ "type": "zip", |
|
| 2609 |
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", |
|
| 2610 |
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", |
|
| 2611 |
+ "shasum": "" |
|
| 2612 |
+ }, |
|
| 2613 |
+ "require": {
|
|
| 2614 |
+ "php": ">=7.2" |
|
| 2615 |
+ }, |
|
| 2616 |
+ "type": "library", |
|
| 2617 |
+ "extra": {
|
|
| 2618 |
+ "thanks": {
|
|
| 2619 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2620 |
+ "name": "symfony/polyfill" |
|
| 2621 |
+ } |
|
| 2622 |
+ }, |
|
| 2623 |
+ "autoload": {
|
|
| 2624 |
+ "files": [ |
|
| 2625 |
+ "bootstrap.php" |
|
| 2626 |
+ ], |
|
| 2627 |
+ "psr-4": {
|
|
| 2628 |
+ "Symfony\\Polyfill\\Php81\\": "" |
|
| 2629 |
+ }, |
|
| 2630 |
+ "classmap": [ |
|
| 2631 |
+ "Resources/stubs" |
|
| 2632 |
+ ] |
|
| 2633 |
+ }, |
|
| 2634 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2635 |
+ "license": [ |
|
| 2636 |
+ "MIT" |
|
| 2637 |
+ ], |
|
| 2638 |
+ "authors": [ |
|
| 2639 |
+ {
|
|
| 2640 |
+ "name": "Nicolas Grekas", |
|
| 2641 |
+ "email": "p@tchwork.com" |
|
| 2642 |
+ }, |
|
| 2643 |
+ {
|
|
| 2644 |
+ "name": "Symfony Community", |
|
| 2645 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2646 |
+ } |
|
| 2647 |
+ ], |
|
| 2648 |
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", |
|
| 2649 |
+ "homepage": "https://symfony.com", |
|
| 2650 |
+ "keywords": [ |
|
| 2651 |
+ "compatibility", |
|
| 2652 |
+ "polyfill", |
|
| 2653 |
+ "portable", |
|
| 2654 |
+ "shim" |
|
| 2655 |
+ ], |
|
| 2656 |
+ "support": {
|
|
| 2657 |
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0" |
|
| 2658 |
+ }, |
|
| 2659 |
+ "funding": [ |
|
| 2660 |
+ {
|
|
| 2661 |
+ "url": "https://symfony.com/sponsor", |
|
| 2662 |
+ "type": "custom" |
|
| 2663 |
+ }, |
|
| 2664 |
+ {
|
|
| 2665 |
+ "url": "https://github.com/fabpot", |
|
| 2666 |
+ "type": "github" |
|
| 2667 |
+ }, |
|
| 2668 |
+ {
|
|
| 2669 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2670 |
+ "type": "github" |
|
| 2671 |
+ }, |
|
| 2672 |
+ {
|
|
| 2673 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2674 |
+ "type": "tidelift" |
|
| 2675 |
+ } |
|
| 2676 |
+ ], |
|
| 2677 |
+ "time": "2024-09-09T11:45:10+00:00" |
|
| 2678 |
+ }, |
|
| 2679 |
+ {
|
|
| 2680 |
+ "name": "symfony/polyfill-php84", |
|
| 2681 |
+ "version": "v1.33.0", |
|
| 2682 |
+ "source": {
|
|
| 2683 |
+ "type": "git", |
|
| 2684 |
+ "url": "https://github.com/symfony/polyfill-php84.git", |
|
| 2685 |
+ "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" |
|
| 2686 |
+ }, |
|
| 2687 |
+ "dist": {
|
|
| 2688 |
+ "type": "zip", |
|
| 2689 |
+ "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", |
|
| 2690 |
+ "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", |
|
| 2691 |
+ "shasum": "" |
|
| 2692 |
+ }, |
|
| 2693 |
+ "require": {
|
|
| 2694 |
+ "php": ">=7.2" |
|
| 2695 |
+ }, |
|
| 2696 |
+ "type": "library", |
|
| 2697 |
+ "extra": {
|
|
| 2698 |
+ "thanks": {
|
|
| 2699 |
+ "url": "https://github.com/symfony/polyfill", |
|
| 2700 |
+ "name": "symfony/polyfill" |
|
| 2701 |
+ } |
|
| 2702 |
+ }, |
|
| 2703 |
+ "autoload": {
|
|
| 2704 |
+ "files": [ |
|
| 2705 |
+ "bootstrap.php" |
|
| 2706 |
+ ], |
|
| 2707 |
+ "psr-4": {
|
|
| 2708 |
+ "Symfony\\Polyfill\\Php84\\": "" |
|
| 2709 |
+ }, |
|
| 2710 |
+ "classmap": [ |
|
| 2711 |
+ "Resources/stubs" |
|
| 2712 |
+ ] |
|
| 2713 |
+ }, |
|
| 2714 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2715 |
+ "license": [ |
|
| 2716 |
+ "MIT" |
|
| 2717 |
+ ], |
|
| 2718 |
+ "authors": [ |
|
| 2719 |
+ {
|
|
| 2720 |
+ "name": "Nicolas Grekas", |
|
| 2721 |
+ "email": "p@tchwork.com" |
|
| 2722 |
+ }, |
|
| 2723 |
+ {
|
|
| 2724 |
+ "name": "Symfony Community", |
|
| 2725 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2726 |
+ } |
|
| 2727 |
+ ], |
|
| 2728 |
+ "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", |
|
| 2729 |
+ "homepage": "https://symfony.com", |
|
| 2730 |
+ "keywords": [ |
|
| 2731 |
+ "compatibility", |
|
| 2732 |
+ "polyfill", |
|
| 2733 |
+ "portable", |
|
| 2734 |
+ "shim" |
|
| 2735 |
+ ], |
|
| 2736 |
+ "support": {
|
|
| 2737 |
+ "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" |
|
| 2738 |
+ }, |
|
| 2739 |
+ "funding": [ |
|
| 2740 |
+ {
|
|
| 2741 |
+ "url": "https://symfony.com/sponsor", |
|
| 2742 |
+ "type": "custom" |
|
| 2743 |
+ }, |
|
| 2744 |
+ {
|
|
| 2745 |
+ "url": "https://github.com/fabpot", |
|
| 2746 |
+ "type": "github" |
|
| 2747 |
+ }, |
|
| 2748 |
+ {
|
|
| 2749 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2750 |
+ "type": "github" |
|
| 2751 |
+ }, |
|
| 2752 |
+ {
|
|
| 2753 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2754 |
+ "type": "tidelift" |
|
| 2755 |
+ } |
|
| 2756 |
+ ], |
|
| 2757 |
+ "time": "2025-06-24T13:30:11+00:00" |
|
| 2758 |
+ }, |
|
| 2759 |
+ {
|
|
| 2760 |
+ "name": "symfony/process", |
|
| 2761 |
+ "version": "v7.4.0", |
|
| 2762 |
+ "source": {
|
|
| 2763 |
+ "type": "git", |
|
| 2764 |
+ "url": "https://github.com/symfony/process.git", |
|
| 2765 |
+ "reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8" |
|
| 2766 |
+ }, |
|
| 2767 |
+ "dist": {
|
|
| 2768 |
+ "type": "zip", |
|
| 2769 |
+ "url": "https://api.github.com/repos/symfony/process/zipball/7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", |
|
| 2770 |
+ "reference": "7ca8dc2d0dcf4882658313aba8be5d9fd01026c8", |
|
| 2771 |
+ "shasum": "" |
|
| 2772 |
+ }, |
|
| 2773 |
+ "require": {
|
|
| 2774 |
+ "php": ">=8.2" |
|
| 2775 |
+ }, |
|
| 2776 |
+ "type": "library", |
|
| 2777 |
+ "autoload": {
|
|
| 2778 |
+ "psr-4": {
|
|
| 2779 |
+ "Symfony\\Component\\Process\\": "" |
|
| 2780 |
+ }, |
|
| 2781 |
+ "exclude-from-classmap": [ |
|
| 2782 |
+ "/Tests/" |
|
| 2783 |
+ ] |
|
| 2784 |
+ }, |
|
| 2785 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2786 |
+ "license": [ |
|
| 2787 |
+ "MIT" |
|
| 2788 |
+ ], |
|
| 2789 |
+ "authors": [ |
|
| 2790 |
+ {
|
|
| 2791 |
+ "name": "Fabien Potencier", |
|
| 2792 |
+ "email": "fabien@symfony.com" |
|
| 2793 |
+ }, |
|
| 2794 |
+ {
|
|
| 2795 |
+ "name": "Symfony Community", |
|
| 2796 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2797 |
+ } |
|
| 2798 |
+ ], |
|
| 2799 |
+ "description": "Executes commands in sub-processes", |
|
| 2800 |
+ "homepage": "https://symfony.com", |
|
| 2801 |
+ "support": {
|
|
| 2802 |
+ "source": "https://github.com/symfony/process/tree/v7.4.0" |
|
| 2803 |
+ }, |
|
| 2804 |
+ "funding": [ |
|
| 2805 |
+ {
|
|
| 2806 |
+ "url": "https://symfony.com/sponsor", |
|
| 2807 |
+ "type": "custom" |
|
| 2808 |
+ }, |
|
| 2809 |
+ {
|
|
| 2810 |
+ "url": "https://github.com/fabpot", |
|
| 2811 |
+ "type": "github" |
|
| 2812 |
+ }, |
|
| 2813 |
+ {
|
|
| 2814 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2815 |
+ "type": "github" |
|
| 2816 |
+ }, |
|
| 2817 |
+ {
|
|
| 2818 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2819 |
+ "type": "tidelift" |
|
| 2820 |
+ } |
|
| 2821 |
+ ], |
|
| 2822 |
+ "time": "2025-10-16T11:21:06+00:00" |
|
| 2823 |
+ }, |
|
| 2824 |
+ {
|
|
| 2825 |
+ "name": "symfony/service-contracts", |
|
| 2826 |
+ "version": "v3.6.1", |
|
| 2827 |
+ "source": {
|
|
| 2828 |
+ "type": "git", |
|
| 2829 |
+ "url": "https://github.com/symfony/service-contracts.git", |
|
| 2830 |
+ "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" |
|
| 2831 |
+ }, |
|
| 2832 |
+ "dist": {
|
|
| 2833 |
+ "type": "zip", |
|
| 2834 |
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", |
|
| 2835 |
+ "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", |
|
| 2836 |
+ "shasum": "" |
|
| 2837 |
+ }, |
|
| 2838 |
+ "require": {
|
|
| 2839 |
+ "php": ">=8.1", |
|
| 2840 |
+ "psr/container": "^1.1|^2.0", |
|
| 2841 |
+ "symfony/deprecation-contracts": "^2.5|^3" |
|
| 2842 |
+ }, |
|
| 2843 |
+ "conflict": {
|
|
| 2844 |
+ "ext-psr": "<1.1|>=2" |
|
| 2845 |
+ }, |
|
| 2846 |
+ "type": "library", |
|
| 2847 |
+ "extra": {
|
|
| 2848 |
+ "thanks": {
|
|
| 2849 |
+ "url": "https://github.com/symfony/contracts", |
|
| 2850 |
+ "name": "symfony/contracts" |
|
| 2851 |
+ }, |
|
| 2852 |
+ "branch-alias": {
|
|
| 2853 |
+ "dev-main": "3.6-dev" |
|
| 2854 |
+ } |
|
| 2855 |
+ }, |
|
| 2856 |
+ "autoload": {
|
|
| 2857 |
+ "psr-4": {
|
|
| 2858 |
+ "Symfony\\Contracts\\Service\\": "" |
|
| 2859 |
+ }, |
|
| 2860 |
+ "exclude-from-classmap": [ |
|
| 2861 |
+ "/Test/" |
|
| 2862 |
+ ] |
|
| 2863 |
+ }, |
|
| 2864 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2865 |
+ "license": [ |
|
| 2866 |
+ "MIT" |
|
| 2867 |
+ ], |
|
| 2868 |
+ "authors": [ |
|
| 2869 |
+ {
|
|
| 2870 |
+ "name": "Nicolas Grekas", |
|
| 2871 |
+ "email": "p@tchwork.com" |
|
| 2872 |
+ }, |
|
| 2873 |
+ {
|
|
| 2874 |
+ "name": "Symfony Community", |
|
| 2875 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2876 |
+ } |
|
| 2877 |
+ ], |
|
| 2878 |
+ "description": "Generic abstractions related to writing services", |
|
| 2879 |
+ "homepage": "https://symfony.com", |
|
| 2880 |
+ "keywords": [ |
|
| 2881 |
+ "abstractions", |
|
| 2882 |
+ "contracts", |
|
| 2883 |
+ "decoupling", |
|
| 2884 |
+ "interfaces", |
|
| 2885 |
+ "interoperability", |
|
| 2886 |
+ "standards" |
|
| 2887 |
+ ], |
|
| 2888 |
+ "support": {
|
|
| 2889 |
+ "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" |
|
| 2890 |
+ }, |
|
| 2891 |
+ "funding": [ |
|
| 2892 |
+ {
|
|
| 2893 |
+ "url": "https://symfony.com/sponsor", |
|
| 2894 |
+ "type": "custom" |
|
| 2895 |
+ }, |
|
| 2896 |
+ {
|
|
| 2897 |
+ "url": "https://github.com/fabpot", |
|
| 2898 |
+ "type": "github" |
|
| 2899 |
+ }, |
|
| 2900 |
+ {
|
|
| 2901 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2902 |
+ "type": "github" |
|
| 2903 |
+ }, |
|
| 2904 |
+ {
|
|
| 2905 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2906 |
+ "type": "tidelift" |
|
| 2907 |
+ } |
|
| 2908 |
+ ], |
|
| 2909 |
+ "time": "2025-07-15T11:30:57+00:00" |
|
| 2910 |
+ }, |
|
| 2911 |
+ {
|
|
| 2912 |
+ "name": "symfony/stopwatch", |
|
| 2913 |
+ "version": "v7.4.0", |
|
| 2914 |
+ "source": {
|
|
| 2915 |
+ "type": "git", |
|
| 2916 |
+ "url": "https://github.com/symfony/stopwatch.git", |
|
| 2917 |
+ "reference": "8a24af0a2e8a872fb745047180649b8418303084" |
|
| 2918 |
+ }, |
|
| 2919 |
+ "dist": {
|
|
| 2920 |
+ "type": "zip", |
|
| 2921 |
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8a24af0a2e8a872fb745047180649b8418303084", |
|
| 2922 |
+ "reference": "8a24af0a2e8a872fb745047180649b8418303084", |
|
| 2923 |
+ "shasum": "" |
|
| 2924 |
+ }, |
|
| 2925 |
+ "require": {
|
|
| 2926 |
+ "php": ">=8.2", |
|
| 2927 |
+ "symfony/service-contracts": "^2.5|^3" |
|
| 2928 |
+ }, |
|
| 2929 |
+ "type": "library", |
|
| 2930 |
+ "autoload": {
|
|
| 2931 |
+ "psr-4": {
|
|
| 2932 |
+ "Symfony\\Component\\Stopwatch\\": "" |
|
| 2933 |
+ }, |
|
| 2934 |
+ "exclude-from-classmap": [ |
|
| 2935 |
+ "/Tests/" |
|
| 2936 |
+ ] |
|
| 2937 |
+ }, |
|
| 2938 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 2939 |
+ "license": [ |
|
| 2940 |
+ "MIT" |
|
| 2941 |
+ ], |
|
| 2942 |
+ "authors": [ |
|
| 2943 |
+ {
|
|
| 2944 |
+ "name": "Fabien Potencier", |
|
| 2945 |
+ "email": "fabien@symfony.com" |
|
| 2946 |
+ }, |
|
| 2947 |
+ {
|
|
| 2948 |
+ "name": "Symfony Community", |
|
| 2949 |
+ "homepage": "https://symfony.com/contributors" |
|
| 2950 |
+ } |
|
| 2951 |
+ ], |
|
| 2952 |
+ "description": "Provides a way to profile code", |
|
| 2953 |
+ "homepage": "https://symfony.com", |
|
| 2954 |
+ "support": {
|
|
| 2955 |
+ "source": "https://github.com/symfony/stopwatch/tree/v7.4.0" |
|
| 2956 |
+ }, |
|
| 2957 |
+ "funding": [ |
|
| 2958 |
+ {
|
|
| 2959 |
+ "url": "https://symfony.com/sponsor", |
|
| 2960 |
+ "type": "custom" |
|
| 2961 |
+ }, |
|
| 2962 |
+ {
|
|
| 2963 |
+ "url": "https://github.com/fabpot", |
|
| 2964 |
+ "type": "github" |
|
| 2965 |
+ }, |
|
| 2966 |
+ {
|
|
| 2967 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 2968 |
+ "type": "github" |
|
| 2969 |
+ }, |
|
| 2970 |
+ {
|
|
| 2971 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 2972 |
+ "type": "tidelift" |
|
| 2973 |
+ } |
|
| 2974 |
+ ], |
|
| 2975 |
+ "time": "2025-08-04T07:05:15+00:00" |
|
| 2976 |
+ }, |
|
| 2977 |
+ {
|
|
| 2978 |
+ "name": "symfony/string", |
|
| 2979 |
+ "version": "v7.4.0", |
|
| 2980 |
+ "source": {
|
|
| 2981 |
+ "type": "git", |
|
| 2982 |
+ "url": "https://github.com/symfony/string.git", |
|
| 2983 |
+ "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003" |
|
| 2984 |
+ }, |
|
| 2985 |
+ "dist": {
|
|
| 2986 |
+ "type": "zip", |
|
| 2987 |
+ "url": "https://api.github.com/repos/symfony/string/zipball/d50e862cb0a0e0886f73ca1f31b865efbb795003", |
|
| 2988 |
+ "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003", |
|
| 2989 |
+ "shasum": "" |
|
| 2990 |
+ }, |
|
| 2991 |
+ "require": {
|
|
| 2992 |
+ "php": ">=8.2", |
|
| 2993 |
+ "symfony/deprecation-contracts": "^2.5|^3.0", |
|
| 2994 |
+ "symfony/polyfill-ctype": "~1.8", |
|
| 2995 |
+ "symfony/polyfill-intl-grapheme": "~1.33", |
|
| 2996 |
+ "symfony/polyfill-intl-normalizer": "~1.0", |
|
| 2997 |
+ "symfony/polyfill-mbstring": "~1.0" |
|
| 2998 |
+ }, |
|
| 2999 |
+ "conflict": {
|
|
| 3000 |
+ "symfony/translation-contracts": "<2.5" |
|
| 3001 |
+ }, |
|
| 3002 |
+ "require-dev": {
|
|
| 3003 |
+ "symfony/emoji": "^7.1|^8.0", |
|
| 3004 |
+ "symfony/http-client": "^6.4|^7.0|^8.0", |
|
| 3005 |
+ "symfony/intl": "^6.4|^7.0|^8.0", |
|
| 3006 |
+ "symfony/translation-contracts": "^2.5|^3.0", |
|
| 3007 |
+ "symfony/var-exporter": "^6.4|^7.0|^8.0" |
|
| 3008 |
+ }, |
|
| 3009 |
+ "type": "library", |
|
| 3010 |
+ "autoload": {
|
|
| 3011 |
+ "files": [ |
|
| 3012 |
+ "Resources/functions.php" |
|
| 3013 |
+ ], |
|
| 3014 |
+ "psr-4": {
|
|
| 3015 |
+ "Symfony\\Component\\String\\": "" |
|
| 3016 |
+ }, |
|
| 3017 |
+ "exclude-from-classmap": [ |
|
| 3018 |
+ "/Tests/" |
|
| 3019 |
+ ] |
|
| 3020 |
+ }, |
|
| 3021 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 3022 |
+ "license": [ |
|
| 3023 |
+ "MIT" |
|
| 3024 |
+ ], |
|
| 3025 |
+ "authors": [ |
|
| 3026 |
+ {
|
|
| 3027 |
+ "name": "Nicolas Grekas", |
|
| 3028 |
+ "email": "p@tchwork.com" |
|
| 3029 |
+ }, |
|
| 3030 |
+ {
|
|
| 3031 |
+ "name": "Symfony Community", |
|
| 3032 |
+ "homepage": "https://symfony.com/contributors" |
|
| 3033 |
+ } |
|
| 3034 |
+ ], |
|
| 3035 |
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", |
|
| 3036 |
+ "homepage": "https://symfony.com", |
|
| 3037 |
+ "keywords": [ |
|
| 3038 |
+ "grapheme", |
|
| 3039 |
+ "i18n", |
|
| 3040 |
+ "string", |
|
| 3041 |
+ "unicode", |
|
| 3042 |
+ "utf-8", |
|
| 3043 |
+ "utf8" |
|
| 3044 |
+ ], |
|
| 3045 |
+ "support": {
|
|
| 3046 |
+ "source": "https://github.com/symfony/string/tree/v7.4.0" |
|
| 3047 |
+ }, |
|
| 3048 |
+ "funding": [ |
|
| 3049 |
+ {
|
|
| 3050 |
+ "url": "https://symfony.com/sponsor", |
|
| 3051 |
+ "type": "custom" |
|
| 3052 |
+ }, |
|
| 3053 |
+ {
|
|
| 3054 |
+ "url": "https://github.com/fabpot", |
|
| 3055 |
+ "type": "github" |
|
| 3056 |
+ }, |
|
| 3057 |
+ {
|
|
| 3058 |
+ "url": "https://github.com/nicolas-grekas", |
|
| 3059 |
+ "type": "github" |
|
| 3060 |
+ }, |
|
| 3061 |
+ {
|
|
| 3062 |
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
|
| 3063 |
+ "type": "tidelift" |
|
| 3064 |
+ } |
|
| 3065 |
+ ], |
|
| 3066 |
+ "time": "2025-11-27T13:27:24+00:00" |
|
| 3067 |
+ }, |
|
| 3068 |
+ {
|
|
| 3069 |
+ "name": "symplify/easy-coding-standard", |
|
| 3070 |
+ "version": "13.0.0", |
|
| 3071 |
+ "source": {
|
|
| 3072 |
+ "type": "git", |
|
| 3073 |
+ "url": "https://github.com/easy-coding-standard/easy-coding-standard.git", |
|
| 3074 |
+ "reference": "24708c6673871e342245c692e1bb304f119ffc58" |
|
| 3075 |
+ }, |
|
| 3076 |
+ "dist": {
|
|
| 3077 |
+ "type": "zip", |
|
| 3078 |
+ "url": "https://api.github.com/repos/easy-coding-standard/easy-coding-standard/zipball/24708c6673871e342245c692e1bb304f119ffc58", |
|
| 3079 |
+ "reference": "24708c6673871e342245c692e1bb304f119ffc58", |
|
| 3080 |
+ "shasum": "" |
|
| 3081 |
+ }, |
|
| 3082 |
+ "require": {
|
|
| 3083 |
+ "php": ">=7.2" |
|
| 3084 |
+ }, |
|
| 3085 |
+ "conflict": {
|
|
| 3086 |
+ "friendsofphp/php-cs-fixer": "<3.46", |
|
| 3087 |
+ "phpcsstandards/php_codesniffer": "<3.8", |
|
| 3088 |
+ "symplify/coding-standard": "<12.1" |
|
| 3089 |
+ }, |
|
| 3090 |
+ "suggest": {
|
|
| 3091 |
+ "ext-dom": "Needed to support checkstyle output format in class CheckstyleOutputFormatter" |
|
| 3092 |
+ }, |
|
| 3093 |
+ "bin": [ |
|
| 3094 |
+ "bin/ecs" |
|
| 3095 |
+ ], |
|
| 3096 |
+ "type": "library", |
|
| 3097 |
+ "autoload": {
|
|
| 3098 |
+ "files": [ |
|
| 3099 |
+ "bootstrap.php" |
|
| 3100 |
+ ] |
|
| 3101 |
+ }, |
|
| 3102 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 3103 |
+ "license": [ |
|
| 3104 |
+ "MIT" |
|
| 3105 |
+ ], |
|
| 3106 |
+ "description": "Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer", |
|
| 3107 |
+ "keywords": [ |
|
| 3108 |
+ "Code style", |
|
| 3109 |
+ "automation", |
|
| 3110 |
+ "fixer", |
|
| 3111 |
+ "static analysis" |
|
| 3112 |
+ ], |
|
| 3113 |
+ "support": {
|
|
| 3114 |
+ "issues": "https://github.com/easy-coding-standard/easy-coding-standard/issues", |
|
| 3115 |
+ "source": "https://github.com/easy-coding-standard/easy-coding-standard/tree/13.0.0" |
|
| 3116 |
+ }, |
|
| 3117 |
+ "funding": [ |
|
| 3118 |
+ {
|
|
| 3119 |
+ "url": "https://www.paypal.me/rectorphp", |
|
| 3120 |
+ "type": "custom" |
|
| 3121 |
+ }, |
|
| 3122 |
+ {
|
|
| 3123 |
+ "url": "https://github.com/tomasvotruba", |
|
| 3124 |
+ "type": "github" |
|
| 3125 |
+ } |
|
| 3126 |
+ ], |
|
| 3127 |
+ "time": "2025-11-06T14:47:06+00:00" |
|
| 3128 |
+ } |
|
| 3129 |
+ ], |
|
| 3130 |
+ "packages-dev": [], |
|
| 3131 |
+ "aliases": [], |
|
| 3132 |
+ "minimum-stability": "stable", |
|
| 3133 |
+ "stability-flags": {},
|
|
| 3134 |
+ "prefer-stable": false, |
|
| 3135 |
+ "prefer-lowest": false, |
|
| 3136 |
+ "platform": {},
|
|
| 3137 |
+ "platform-dev": {},
|
|
| 3138 |
+ "plugin-api-version": "2.9.0" |
|
| 3139 |
+} |
| 0 | 8 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,196 @@ |
| 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": "5a7b3ba69c4a30eee3c54ea2f4887e13", |
|
| 8 |
+ "packages": [ |
|
| 9 |
+ {
|
|
| 10 |
+ "name": "phpstan/phpstan", |
|
| 11 |
+ "version": "2.1.33", |
|
| 12 |
+ "dist": {
|
|
| 13 |
+ "type": "zip", |
|
| 14 |
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9e800e6bee7d5bd02784d4c6069b48032d16224f", |
|
| 15 |
+ "reference": "9e800e6bee7d5bd02784d4c6069b48032d16224f", |
|
| 16 |
+ "shasum": "" |
|
| 17 |
+ }, |
|
| 18 |
+ "require": {
|
|
| 19 |
+ "php": "^7.4|^8.0" |
|
| 20 |
+ }, |
|
| 21 |
+ "conflict": {
|
|
| 22 |
+ "phpstan/phpstan-shim": "*" |
|
| 23 |
+ }, |
|
| 24 |
+ "bin": [ |
|
| 25 |
+ "phpstan", |
|
| 26 |
+ "phpstan.phar" |
|
| 27 |
+ ], |
|
| 28 |
+ "type": "library", |
|
| 29 |
+ "autoload": {
|
|
| 30 |
+ "files": [ |
|
| 31 |
+ "bootstrap.php" |
|
| 32 |
+ ] |
|
| 33 |
+ }, |
|
| 34 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 35 |
+ "license": [ |
|
| 36 |
+ "MIT" |
|
| 37 |
+ ], |
|
| 38 |
+ "description": "PHPStan - PHP Static Analysis Tool", |
|
| 39 |
+ "keywords": [ |
|
| 40 |
+ "dev", |
|
| 41 |
+ "static analysis" |
|
| 42 |
+ ], |
|
| 43 |
+ "support": {
|
|
| 44 |
+ "docs": "https://phpstan.org/user-guide/getting-started", |
|
| 45 |
+ "forum": "https://github.com/phpstan/phpstan/discussions", |
|
| 46 |
+ "issues": "https://github.com/phpstan/phpstan/issues", |
|
| 47 |
+ "security": "https://github.com/phpstan/phpstan/security/policy", |
|
| 48 |
+ "source": "https://github.com/phpstan/phpstan-src" |
|
| 49 |
+ }, |
|
| 50 |
+ "funding": [ |
|
| 51 |
+ {
|
|
| 52 |
+ "url": "https://github.com/ondrejmirtes", |
|
| 53 |
+ "type": "github" |
|
| 54 |
+ }, |
|
| 55 |
+ {
|
|
| 56 |
+ "url": "https://github.com/phpstan", |
|
| 57 |
+ "type": "github" |
|
| 58 |
+ } |
|
| 59 |
+ ], |
|
| 60 |
+ "time": "2025-12-05T10:24:31+00:00" |
|
| 61 |
+ }, |
|
| 62 |
+ {
|
|
| 63 |
+ "name": "phpstan/phpstan-phpunit", |
|
| 64 |
+ "version": "2.0.11", |
|
| 65 |
+ "source": {
|
|
| 66 |
+ "type": "git", |
|
| 67 |
+ "url": "https://github.com/phpstan/phpstan-phpunit.git", |
|
| 68 |
+ "reference": "5e30669bef866eff70db8b58d72a5c185aa82414" |
|
| 69 |
+ }, |
|
| 70 |
+ "dist": {
|
|
| 71 |
+ "type": "zip", |
|
| 72 |
+ "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/5e30669bef866eff70db8b58d72a5c185aa82414", |
|
| 73 |
+ "reference": "5e30669bef866eff70db8b58d72a5c185aa82414", |
|
| 74 |
+ "shasum": "" |
|
| 75 |
+ }, |
|
| 76 |
+ "require": {
|
|
| 77 |
+ "php": "^7.4 || ^8.0", |
|
| 78 |
+ "phpstan/phpstan": "^2.1.32" |
|
| 79 |
+ }, |
|
| 80 |
+ "conflict": {
|
|
| 81 |
+ "phpunit/phpunit": "<7.0" |
|
| 82 |
+ }, |
|
| 83 |
+ "require-dev": {
|
|
| 84 |
+ "nikic/php-parser": "^5", |
|
| 85 |
+ "php-parallel-lint/php-parallel-lint": "^1.2", |
|
| 86 |
+ "phpstan/phpstan-deprecation-rules": "^2.0", |
|
| 87 |
+ "phpstan/phpstan-strict-rules": "^2.0", |
|
| 88 |
+ "phpunit/phpunit": "^9.6" |
|
| 89 |
+ }, |
|
| 90 |
+ "type": "phpstan-extension", |
|
| 91 |
+ "extra": {
|
|
| 92 |
+ "phpstan": {
|
|
| 93 |
+ "includes": [ |
|
| 94 |
+ "extension.neon", |
|
| 95 |
+ "rules.neon" |
|
| 96 |
+ ] |
|
| 97 |
+ } |
|
| 98 |
+ }, |
|
| 99 |
+ "autoload": {
|
|
| 100 |
+ "psr-4": {
|
|
| 101 |
+ "PHPStan\\": "src/" |
|
| 102 |
+ } |
|
| 103 |
+ }, |
|
| 104 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 105 |
+ "license": [ |
|
| 106 |
+ "MIT" |
|
| 107 |
+ ], |
|
| 108 |
+ "description": "PHPUnit extensions and rules for PHPStan", |
|
| 109 |
+ "support": {
|
|
| 110 |
+ "issues": "https://github.com/phpstan/phpstan-phpunit/issues", |
|
| 111 |
+ "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.11" |
|
| 112 |
+ }, |
|
| 113 |
+ "time": "2025-12-19T09:05:35+00:00" |
|
| 114 |
+ }, |
|
| 115 |
+ {
|
|
| 116 |
+ "name": "phpstan/phpstan-symfony", |
|
| 117 |
+ "version": "2.0.9", |
|
| 118 |
+ "source": {
|
|
| 119 |
+ "type": "git", |
|
| 120 |
+ "url": "https://github.com/phpstan/phpstan-symfony.git", |
|
| 121 |
+ "reference": "24d8c157aa483141b0579d705ef0aac9e1b95436" |
|
| 122 |
+ }, |
|
| 123 |
+ "dist": {
|
|
| 124 |
+ "type": "zip", |
|
| 125 |
+ "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/24d8c157aa483141b0579d705ef0aac9e1b95436", |
|
| 126 |
+ "reference": "24d8c157aa483141b0579d705ef0aac9e1b95436", |
|
| 127 |
+ "shasum": "" |
|
| 128 |
+ }, |
|
| 129 |
+ "require": {
|
|
| 130 |
+ "ext-simplexml": "*", |
|
| 131 |
+ "php": "^7.4 || ^8.0", |
|
| 132 |
+ "phpstan/phpstan": "^2.1.13" |
|
| 133 |
+ }, |
|
| 134 |
+ "conflict": {
|
|
| 135 |
+ "symfony/framework-bundle": "<3.0" |
|
| 136 |
+ }, |
|
| 137 |
+ "require-dev": {
|
|
| 138 |
+ "php-parallel-lint/php-parallel-lint": "^1.2", |
|
| 139 |
+ "phpstan/phpstan-phpunit": "^2.0.8", |
|
| 140 |
+ "phpstan/phpstan-strict-rules": "^2.0", |
|
| 141 |
+ "phpunit/phpunit": "^9.6", |
|
| 142 |
+ "psr/container": "1.1.2", |
|
| 143 |
+ "symfony/config": "^5.4 || ^6.1", |
|
| 144 |
+ "symfony/console": "^5.4 || ^6.1", |
|
| 145 |
+ "symfony/dependency-injection": "^5.4 || ^6.1", |
|
| 146 |
+ "symfony/form": "^5.4 || ^6.1", |
|
| 147 |
+ "symfony/framework-bundle": "^5.4 || ^6.1", |
|
| 148 |
+ "symfony/http-foundation": "^5.4 || ^6.1", |
|
| 149 |
+ "symfony/messenger": "^5.4", |
|
| 150 |
+ "symfony/polyfill-php80": "^1.24", |
|
| 151 |
+ "symfony/serializer": "^5.4", |
|
| 152 |
+ "symfony/service-contracts": "^2.2.0" |
|
| 153 |
+ }, |
|
| 154 |
+ "type": "phpstan-extension", |
|
| 155 |
+ "extra": {
|
|
| 156 |
+ "phpstan": {
|
|
| 157 |
+ "includes": [ |
|
| 158 |
+ "extension.neon", |
|
| 159 |
+ "rules.neon" |
|
| 160 |
+ ] |
|
| 161 |
+ } |
|
| 162 |
+ }, |
|
| 163 |
+ "autoload": {
|
|
| 164 |
+ "psr-4": {
|
|
| 165 |
+ "PHPStan\\": "src/" |
|
| 166 |
+ } |
|
| 167 |
+ }, |
|
| 168 |
+ "notification-url": "https://packagist.org/downloads/", |
|
| 169 |
+ "license": [ |
|
| 170 |
+ "MIT" |
|
| 171 |
+ ], |
|
| 172 |
+ "authors": [ |
|
| 173 |
+ {
|
|
| 174 |
+ "name": "Lukáš Unger", |
|
| 175 |
+ "email": "looky.msc@gmail.com", |
|
| 176 |
+ "homepage": "https://lookyman.net" |
|
| 177 |
+ } |
|
| 178 |
+ ], |
|
| 179 |
+ "description": "Symfony Framework extensions and rules for PHPStan", |
|
| 180 |
+ "support": {
|
|
| 181 |
+ "issues": "https://github.com/phpstan/phpstan-symfony/issues", |
|
| 182 |
+ "source": "https://github.com/phpstan/phpstan-symfony/tree/2.0.9" |
|
| 183 |
+ }, |
|
| 184 |
+ "time": "2025-11-29T11:17:28+00:00" |
|
| 185 |
+ } |
|
| 186 |
+ ], |
|
| 187 |
+ "packages-dev": [], |
|
| 188 |
+ "aliases": [], |
|
| 189 |
+ "minimum-stability": "stable", |
|
| 190 |
+ "stability-flags": {},
|
|
| 191 |
+ "prefer-stable": false, |
|
| 192 |
+ "prefer-lowest": false, |
|
| 193 |
+ "platform": {},
|
|
| 194 |
+ "platform-dev": {},
|
|
| 195 |
+ "plugin-api-version": "2.9.0" |
|
| 196 |
+} |