| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484 | {    "_readme": [        "This file locks the dependencies of your project to a known state",        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",        "This file is @generated automatically"    ],    "content-hash": "8f5a147cdb147b935a158b86f47a4747",    "packages": [        {            "name": "bshaffer/oauth2-server-php",            "version": "v1.11.1",            "source": {                "type": "git",                "url": "https://github.com/bshaffer/oauth2-server-php.git",                "reference": "5a0c8000d4763b276919e2106f54eddda6bc50fa"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/bshaffer/oauth2-server-php/zipball/5a0c8000d4763b276919e2106f54eddda6bc50fa",                "reference": "5a0c8000d4763b276919e2106f54eddda6bc50fa",                "shasum": ""            },            "require": {                "php": ">=5.3.9"            },            "require-dev": {                "aws/aws-sdk-php": "~2.8",                "firebase/php-jwt": "~2.2",                "mongodb/mongodb": "^1.1",                "phpunit/phpunit": "^4.0",                "predis/predis": "dev-master",                "thobbs/phpcassa": "dev-master"            },            "suggest": {                "aws/aws-sdk-php": "~2.8 is required to use DynamoDB storage",                "firebase/php-jwt": "~2.2 is required to use JWT features",                "mongodb/mongodb": "^1.1 is required to use MongoDB storage",                "predis/predis": "Required to use Redis storage",                "thobbs/phpcassa": "Required to use Cassandra storage"            },            "type": "library",            "autoload": {                "psr-0": {                    "OAuth2": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Brent Shaffer",                    "email": "bshafs@gmail.com",                    "homepage": "http://brentertainment.com"                }            ],            "description": "OAuth2 Server for PHP",            "homepage": "http://github.com/bshaffer/oauth2-server-php",            "keywords": [                "auth",                "oauth",                "oauth2"            ],            "support": {                "issues": "https://github.com/bshaffer/oauth2-server-php/issues",                "source": "https://github.com/bshaffer/oauth2-server-php/tree/master"            },            "time": "2018-12-04T00:29:32+00:00"        },        {            "name": "ddeboer/imap",            "version": "1.13.1",            "source": {                "type": "git",                "url": "https://github.com/ddeboer/imap.git",                "reference": "8b772d04b1deadb5df13782fb78c4b648f77496e"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/ddeboer/imap/zipball/8b772d04b1deadb5df13782fb78c4b648f77496e",                "reference": "8b772d04b1deadb5df13782fb78c4b648f77496e",                "shasum": ""            },            "require": {                "ext-iconv": "*",                "ext-imap": "*",                "ext-mbstring": "*",                "php": "^8.0.1"            },            "require-dev": {                "friendsofphp/php-cs-fixer": "^v3.4.0",                "laminas/laminas-mail": "^2.15.1",                "malukenho/mcbumpface": "^1.1.5",                "phpstan/phpstan": "^1.3.3",                "phpstan/phpstan-phpunit": "^1.0.0",                "phpstan/phpstan-strict-rules": "^1.1.0",                "phpunit/phpunit": "^9.5.11"            },            "type": "library",            "autoload": {                "psr-4": {                    "Ddeboer\\Imap\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "David de Boer",                    "email": "david@ddeboer.nl"                },                {                    "name": "Filippo Tessarotto",                    "email": "zoeslam@gmail.com"                },                {                    "name": "Community contributors",                    "homepage": "https://github.com/ddeboer/imap/graphs/contributors"                }            ],            "description": "Object-oriented IMAP for PHP",            "keywords": [                "email",                "imap",                "mail"            ],            "support": {                "issues": "https://github.com/ddeboer/imap/issues",                "source": "https://github.com/ddeboer/imap/tree/1.13.1"            },            "funding": [                {                    "url": "https://github.com/Slamdunk",                    "type": "github"                },                {                    "url": "https://github.com/ddeboer",                    "type": "github"                }            ],            "time": "2022-01-10T10:53:05+00:00"        },        {            "name": "directorytree/ldaprecord",            "version": "v2.10.1",            "source": {                "type": "git",                "url": "https://github.com/DirectoryTree/LdapRecord.git",                "reference": "bf512d9af7a7b0e2ed7a666ab29cefdd027bee88"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/DirectoryTree/LdapRecord/zipball/bf512d9af7a7b0e2ed7a666ab29cefdd027bee88",                "reference": "bf512d9af7a7b0e2ed7a666ab29cefdd027bee88",                "shasum": ""            },            "require": {                "ext-json": "*",                "ext-ldap": "*",                "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",                "nesbot/carbon": "^1.0|^2.0",                "php": ">=7.3",                "psr/log": "*",                "psr/simple-cache": "^1.0|^2.0",                "tightenco/collect": "^5.6|^6.0|^7.0|^8.0"            },            "require-dev": {                "mockery/mockery": "^1.0",                "phpunit/phpunit": "^9.0",                "spatie/ray": "^1.24"            },            "type": "library",            "autoload": {                "psr-4": {                    "LdapRecord\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Steve Bauman",                    "email": "steven_bauman@outlook.com",                    "role": "Developer"                }            ],            "description": "A fully-featured LDAP ORM.",            "homepage": "https://www.ldaprecord.com",            "keywords": [                "active directory",                "ad",                "adLDAP",                "adldap2",                "directory",                "ldap",                "ldaprecord",                "orm",                "windows"            ],            "support": {                "docs": "https://ldaprecord.com",                "email": "steven_bauman@outlook.com",                "issues": "https://github.com/DirectoryTree/LdapRecord/issues",                "source": "https://github.com/DirectoryTree/LdapRecord"            },            "funding": [                {                    "url": "https://github.com/stevebauman",                    "type": "github"                }            ],            "time": "2022-02-25T16:00:51+00:00"        },        {            "name": "firebase/php-jwt",            "version": "v6.5.0",            "source": {                "type": "git",                "url": "https://github.com/firebase/php-jwt.git",                "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/firebase/php-jwt/zipball/e94e7353302b0c11ec3cfff7180cd0b1743975d2",                "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2",                "shasum": ""            },            "require": {                "php": "^7.4||^8.0"            },            "require-dev": {                "guzzlehttp/guzzle": "^6.5||^7.4",                "phpspec/prophecy-phpunit": "^2.0",                "phpunit/phpunit": "^9.5",                "psr/cache": "^1.0||^2.0",                "psr/http-client": "^1.0",                "psr/http-factory": "^1.0"            },            "suggest": {                "ext-sodium": "Support EdDSA (Ed25519) signatures",                "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"            },            "type": "library",            "autoload": {                "psr-4": {                    "Firebase\\JWT\\": "src"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "BSD-3-Clause"            ],            "authors": [                {                    "name": "Neuman Vong",                    "email": "neuman+pear@twilio.com",                    "role": "Developer"                },                {                    "name": "Anant Narayanan",                    "email": "anant@php.net",                    "role": "Developer"                }            ],            "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",            "homepage": "https://github.com/firebase/php-jwt",            "keywords": [                "jwt",                "php"            ],            "support": {                "issues": "https://github.com/firebase/php-jwt/issues",                "source": "https://github.com/firebase/php-jwt/tree/v6.5.0"            },            "time": "2023-05-12T15:47:07+00:00"        },        {            "name": "guzzlehttp/guzzle",            "version": "7.5.0",            "source": {                "type": "git",                "url": "https://github.com/guzzle/guzzle.git",                "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",                "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",                "shasum": ""            },            "require": {                "ext-json": "*",                "guzzlehttp/promises": "^1.5",                "guzzlehttp/psr7": "^1.9 || ^2.4",                "php": "^7.2.5 || ^8.0",                "psr/http-client": "^1.0",                "symfony/deprecation-contracts": "^2.2 || ^3.0"            },            "provide": {                "psr/http-client-implementation": "1.0"            },            "require-dev": {                "bamarni/composer-bin-plugin": "^1.8.1",                "ext-curl": "*",                "php-http/client-integration-tests": "^3.0",                "phpunit/phpunit": "^8.5.29 || ^9.5.23",                "psr/log": "^1.1 || ^2.0 || ^3.0"            },            "suggest": {                "ext-curl": "Required for CURL handler support",                "ext-intl": "Required for Internationalized Domain Name (IDN) support",                "psr/log": "Required for using the Log middleware"            },            "type": "library",            "extra": {                "bamarni-bin": {                    "bin-links": true,                    "forward-command": false                },                "branch-alias": {                    "dev-master": "7.5-dev"                }            },            "autoload": {                "files": [                    "src/functions_include.php"                ],                "psr-4": {                    "GuzzleHttp\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Graham Campbell",                    "email": "hello@gjcampbell.co.uk",                    "homepage": "https://github.com/GrahamCampbell"                },                {                    "name": "Michael Dowling",                    "email": "mtdowling@gmail.com",                    "homepage": "https://github.com/mtdowling"                },                {                    "name": "Jeremy Lindblom",                    "email": "jeremeamia@gmail.com",                    "homepage": "https://github.com/jeremeamia"                },                {                    "name": "George Mponos",                    "email": "gmponos@gmail.com",                    "homepage": "https://github.com/gmponos"                },                {                    "name": "Tobias Nyholm",                    "email": "tobias.nyholm@gmail.com",                    "homepage": "https://github.com/Nyholm"                },                {                    "name": "Márk Sági-Kazár",                    "email": "mark.sagikazar@gmail.com",                    "homepage": "https://github.com/sagikazarmark"                },                {                    "name": "Tobias Schultze",                    "email": "webmaster@tubo-world.de",                    "homepage": "https://github.com/Tobion"                }            ],            "description": "Guzzle is a PHP HTTP client library",            "keywords": [                "client",                "curl",                "framework",                "http",                "http client",                "psr-18",                "psr-7",                "rest",                "web service"            ],            "support": {                "issues": "https://github.com/guzzle/guzzle/issues",                "source": "https://github.com/guzzle/guzzle/tree/7.5.0"            },            "funding": [                {                    "url": "https://github.com/GrahamCampbell",                    "type": "github"                },                {                    "url": "https://github.com/Nyholm",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",                    "type": "tidelift"                }            ],            "time": "2022-08-28T15:39:27+00:00"        },        {            "name": "guzzlehttp/promises",            "version": "1.5.2",            "source": {                "type": "git",                "url": "https://github.com/guzzle/promises.git",                "reference": "b94b2807d85443f9719887892882d0329d1e2598"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",                "reference": "b94b2807d85443f9719887892882d0329d1e2598",                "shasum": ""            },            "require": {                "php": ">=5.5"            },            "require-dev": {                "symfony/phpunit-bridge": "^4.4 || ^5.1"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "1.5-dev"                }            },            "autoload": {                "files": [                    "src/functions_include.php"                ],                "psr-4": {                    "GuzzleHttp\\Promise\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Graham Campbell",                    "email": "hello@gjcampbell.co.uk",                    "homepage": "https://github.com/GrahamCampbell"                },                {                    "name": "Michael Dowling",                    "email": "mtdowling@gmail.com",                    "homepage": "https://github.com/mtdowling"                },                {                    "name": "Tobias Nyholm",                    "email": "tobias.nyholm@gmail.com",                    "homepage": "https://github.com/Nyholm"                },                {                    "name": "Tobias Schultze",                    "email": "webmaster@tubo-world.de",                    "homepage": "https://github.com/Tobion"                }            ],            "description": "Guzzle promises library",            "keywords": [                "promise"            ],            "support": {                "issues": "https://github.com/guzzle/promises/issues",                "source": "https://github.com/guzzle/promises/tree/1.5.2"            },            "funding": [                {                    "url": "https://github.com/GrahamCampbell",                    "type": "github"                },                {                    "url": "https://github.com/Nyholm",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",                    "type": "tidelift"                }            ],            "time": "2022-08-28T14:55:35+00:00"        },        {            "name": "guzzlehttp/psr7",            "version": "2.4.5",            "source": {                "type": "git",                "url": "https://github.com/guzzle/psr7.git",                "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/guzzle/psr7/zipball/0454e12ef0cd597ccd2adb036f7bda4e7fface66",                "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66",                "shasum": ""            },            "require": {                "php": "^7.2.5 || ^8.0",                "psr/http-factory": "^1.0",                "psr/http-message": "^1.0",                "ralouphie/getallheaders": "^3.0"            },            "provide": {                "psr/http-factory-implementation": "1.0",                "psr/http-message-implementation": "1.0"            },            "require-dev": {                "bamarni/composer-bin-plugin": "^1.8.1",                "http-interop/http-factory-tests": "^0.9",                "phpunit/phpunit": "^8.5.29 || ^9.5.23"            },            "suggest": {                "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"            },            "type": "library",            "extra": {                "bamarni-bin": {                    "bin-links": true,                    "forward-command": false                }            },            "autoload": {                "psr-4": {                    "GuzzleHttp\\Psr7\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Graham Campbell",                    "email": "hello@gjcampbell.co.uk",                    "homepage": "https://github.com/GrahamCampbell"                },                {                    "name": "Michael Dowling",                    "email": "mtdowling@gmail.com",                    "homepage": "https://github.com/mtdowling"                },                {                    "name": "George Mponos",                    "email": "gmponos@gmail.com",                    "homepage": "https://github.com/gmponos"                },                {                    "name": "Tobias Nyholm",                    "email": "tobias.nyholm@gmail.com",                    "homepage": "https://github.com/Nyholm"                },                {                    "name": "Márk Sági-Kazár",                    "email": "mark.sagikazar@gmail.com",                    "homepage": "https://github.com/sagikazarmark"                },                {                    "name": "Tobias Schultze",                    "email": "webmaster@tubo-world.de",                    "homepage": "https://github.com/Tobion"                },                {                    "name": "Márk Sági-Kazár",                    "email": "mark.sagikazar@gmail.com",                    "homepage": "https://sagikazarmark.hu"                }            ],            "description": "PSR-7 message implementation that also provides common utility methods",            "keywords": [                "http",                "message",                "psr-7",                "request",                "response",                "stream",                "uri",                "url"            ],            "support": {                "issues": "https://github.com/guzzle/psr7/issues",                "source": "https://github.com/guzzle/psr7/tree/2.4.5"            },            "funding": [                {                    "url": "https://github.com/GrahamCampbell",                    "type": "github"                },                {                    "url": "https://github.com/Nyholm",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",                    "type": "tidelift"                }            ],            "time": "2023-04-17T16:00:45+00:00"        },        {            "name": "illuminate/contracts",            "version": "v9.3.0",            "source": {                "type": "git",                "url": "https://github.com/illuminate/contracts.git",                "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/illuminate/contracts/zipball/bf4b3c254c49d28157645d01e4883b5951b1e1d0",                "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0",                "shasum": ""            },            "require": {                "php": "^8.0.2",                "psr/container": "^1.1.1|^2.0.1",                "psr/simple-cache": "^1.0|^2.0|^3.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "9.x-dev"                }            },            "autoload": {                "psr-4": {                    "Illuminate\\Contracts\\": ""                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Taylor Otwell",                    "email": "taylor@laravel.com"                }            ],            "description": "The Illuminate Contracts package.",            "homepage": "https://laravel.com",            "support": {                "issues": "https://github.com/laravel/framework/issues",                "source": "https://github.com/laravel/framework"            },            "time": "2022-02-22T14:45:39+00:00"        },        {            "name": "league/oauth2-client",            "version": "2.7.0",            "source": {                "type": "git",                "url": "https://github.com/thephpleague/oauth2-client.git",                "reference": "160d6274b03562ebeb55ed18399281d8118b76c8"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8",                "reference": "160d6274b03562ebeb55ed18399281d8118b76c8",                "shasum": ""            },            "require": {                "guzzlehttp/guzzle": "^6.0 || ^7.0",                "paragonie/random_compat": "^1 || ^2 || ^9.99",                "php": "^5.6 || ^7.0 || ^8.0"            },            "require-dev": {                "mockery/mockery": "^1.3.5",                "php-parallel-lint/php-parallel-lint": "^1.3.1",                "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5",                "squizlabs/php_codesniffer": "^2.3 || ^3.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-2.x": "2.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "League\\OAuth2\\Client\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Alex Bilbie",                    "email": "hello@alexbilbie.com",                    "homepage": "http://www.alexbilbie.com",                    "role": "Developer"                },                {                    "name": "Woody Gilk",                    "homepage": "https://github.com/shadowhand",                    "role": "Contributor"                }            ],            "description": "OAuth 2.0 Client Library",            "keywords": [                "Authentication",                "SSO",                "authorization",                "identity",                "idp",                "oauth",                "oauth2",                "single sign on"            ],            "support": {                "issues": "https://github.com/thephpleague/oauth2-client/issues",                "source": "https://github.com/thephpleague/oauth2-client/tree/2.7.0"            },            "time": "2023-04-16T18:19:15+00:00"        },        {            "name": "matthiasmullie/minify",            "version": "1.3.66",            "source": {                "type": "git",                "url": "https://github.com/matthiasmullie/minify.git",                "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",                "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",                "shasum": ""            },            "require": {                "ext-pcre": "*",                "matthiasmullie/path-converter": "~1.1",                "php": ">=5.3.0"            },            "require-dev": {                "friendsofphp/php-cs-fixer": "~2.0",                "matthiasmullie/scrapbook": "dev-master",                "phpunit/phpunit": ">=4.8"            },            "suggest": {                "psr/cache-implementation": "Cache implementation to use with Minify::cache"            },            "bin": [                "bin/minifycss",                "bin/minifyjs"            ],            "type": "library",            "autoload": {                "psr-4": {                    "MatthiasMullie\\Minify\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Matthias Mullie",                    "email": "minify@mullie.eu",                    "homepage": "http://www.mullie.eu",                    "role": "Developer"                }            ],            "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",            "homepage": "http://www.minifier.org",            "keywords": [                "JS",                "css",                "javascript",                "minifier",                "minify"            ],            "support": {                "issues": "https://github.com/matthiasmullie/minify/issues",                "source": "https://github.com/matthiasmullie/minify/tree/1.3.66"            },            "funding": [                {                    "url": "https://github.com/[user1",                    "type": "github"                },                {                    "url": "https://github.com/matthiasmullie] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.",                    "type": "github"                },                {                    "url": "https://github.com/user2",                    "type": "github"                }            ],            "time": "2021-01-06T15:18:10+00:00"        },        {            "name": "matthiasmullie/path-converter",            "version": "1.1.3",            "source": {                "type": "git",                "url": "https://github.com/matthiasmullie/path-converter.git",                "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",                "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",                "shasum": ""            },            "require": {                "ext-pcre": "*",                "php": ">=5.3.0"            },            "require-dev": {                "phpunit/phpunit": "~4.8"            },            "type": "library",            "autoload": {                "psr-4": {                    "MatthiasMullie\\PathConverter\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Matthias Mullie",                    "email": "pathconverter@mullie.eu",                    "homepage": "http://www.mullie.eu",                    "role": "Developer"                }            ],            "description": "Relative path converter",            "homepage": "http://github.com/matthiasmullie/path-converter",            "keywords": [                "converter",                "path",                "paths",                "relative"            ],            "support": {                "issues": "https://github.com/matthiasmullie/path-converter/issues",                "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"            },            "time": "2019-02-05T23:41:09+00:00"        },        {            "name": "mustangostang/spyc",            "version": "0.6.3",            "source": {                "type": "git",                "url": "git@github.com:mustangostang/spyc.git",                "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",                "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",                "shasum": ""            },            "require": {                "php": ">=5.3.1"            },            "require-dev": {                "phpunit/phpunit": "4.3.*@dev"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "0.5.x-dev"                }            },            "autoload": {                "files": [                    "Spyc.php"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "mustangostang",                    "email": "vlad.andersen@gmail.com"                }            ],            "description": "A simple YAML loader/dumper class for PHP",            "homepage": "https://github.com/mustangostang/spyc/",            "keywords": [                "spyc",                "yaml",                "yml"            ],            "time": "2019-09-10T13:16:29+00:00"        },        {            "name": "nesbot/carbon",            "version": "2.57.0",            "source": {                "type": "git",                "url": "https://github.com/briannesbitt/Carbon.git",                "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",                "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",                "shasum": ""            },            "require": {                "ext-json": "*",                "php": "^7.1.8 || ^8.0",                "symfony/polyfill-mbstring": "^1.0",                "symfony/polyfill-php80": "^1.16",                "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"            },            "require-dev": {                "doctrine/dbal": "^2.0 || ^3.0",                "doctrine/orm": "^2.7",                "friendsofphp/php-cs-fixer": "^3.0",                "kylekatarnls/multi-tester": "^2.0",                "phpmd/phpmd": "^2.9",                "phpstan/extension-installer": "^1.0",                "phpstan/phpstan": "^0.12.54 || ^1.0",                "phpunit/phpunit": "^7.5.20 || ^8.5.14",                "squizlabs/php_codesniffer": "^3.4"            },            "bin": [                "bin/carbon"            ],            "type": "library",            "extra": {                "branch-alias": {                    "dev-3.x": "3.x-dev",                    "dev-master": "2.x-dev"                },                "laravel": {                    "providers": [                        "Carbon\\Laravel\\ServiceProvider"                    ]                },                "phpstan": {                    "includes": [                        "extension.neon"                    ]                }            },            "autoload": {                "psr-4": {                    "Carbon\\": "src/Carbon/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Brian Nesbitt",                    "email": "brian@nesbot.com",                    "homepage": "https://markido.com"                },                {                    "name": "kylekatarnls",                    "homepage": "https://github.com/kylekatarnls"                }            ],            "description": "An API extension for DateTime that supports 281 different languages.",            "homepage": "https://carbon.nesbot.com",            "keywords": [                "date",                "datetime",                "time"            ],            "support": {                "docs": "https://carbon.nesbot.com/docs",                "issues": "https://github.com/briannesbitt/Carbon/issues",                "source": "https://github.com/briannesbitt/Carbon"            },            "funding": [                {                    "url": "https://opencollective.com/Carbon",                    "type": "open_collective"                },                {                    "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",                    "type": "tidelift"                }            ],            "time": "2022-02-13T18:13:33+00:00"        },        {            "name": "paragonie/random_compat",            "version": "v9.99.100",            "source": {                "type": "git",                "url": "https://github.com/paragonie/random_compat.git",                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",                "shasum": ""            },            "require": {                "php": ">= 7"            },            "require-dev": {                "phpunit/phpunit": "4.*|5.*",                "vimeo/psalm": "^1"            },            "suggest": {                "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."            },            "type": "library",            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Paragon Initiative Enterprises",                    "email": "security@paragonie.com",                    "homepage": "https://paragonie.com"                }            ],            "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",            "keywords": [                "csprng",                "polyfill",                "pseudorandom",                "random"            ],            "support": {                "email": "info@paragonie.com",                "issues": "https://github.com/paragonie/random_compat/issues",                "source": "https://github.com/paragonie/random_compat"            },            "time": "2020-10-15T08:29:30+00:00"        },        {            "name": "php-mime-mail-parser/php-mime-mail-parser",            "version": "7.0.0",            "source": {                "type": "git",                "url": "https://github.com/php-mime-mail-parser/php-mime-mail-parser.git",                "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-mime-mail-parser/php-mime-mail-parser/zipball/9d09a017f3f103fec8456211a4a538b80e0eca0d",                "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d",                "shasum": ""            },            "require": {                "ext-mailparse": "*",                "php": "^7.2|^8.0"            },            "replace": {                "exorus/php-mime-mail-parser": "*",                "messaged/php-mime-mail-parser": "*"            },            "require-dev": {                "php-coveralls/php-coveralls": "^2.2",                "phpunit/phpunit": "^8.0",                "squizlabs/php_codesniffer": "^3.5"            },            "type": "library",            "autoload": {                "psr-4": {                    "PhpMimeMailParser\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "eXorus",                    "email": "exorus.spam@gmail.com",                    "homepage": "https://github.com/eXorus/",                    "role": "Developer"                },                {                    "name": "M.Valinskis",                    "email": "M.Valins@gmail.com",                    "homepage": "https://code.google.com/p/php-mime-mail-parser",                    "role": "Developer"                },                {                    "name": "eugene.emmett.wood",                    "email": "gene_w@cementhorizon.com",                    "homepage": "https://code.google.com/p/php-mime-mail-parser",                    "role": "Developer"                },                {                    "name": "alknetso",                    "email": "alkne@gmail.com",                    "homepage": "https://code.google.com/p/php-mime-mail-parser",                    "role": "Developer"                },                {                    "name": "bucabay",                    "email": "gabe@fijiwebdesign.com",                    "homepage": "http://www.fijiwebdesign.com",                    "role": "Developer"                }            ],            "description": "A fully tested email parser for PHP 7.2+ (mailparse extension wrapper).",            "homepage": "https://github.com/php-mime-mail-parser/php-mime-mail-parser",            "keywords": [                "MimeMailParser",                "mail",                "mailparse",                "mime",                "parser",                "php"            ],            "support": {                "issues": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/issues",                "source": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/tree/7.0.0"            },            "funding": [                {                    "url": "https://github.com/eXorus",                    "type": "github"                }            ],            "time": "2021-02-25T17:21:57+00:00"        },        {            "name": "phpmailer/phpmailer",            "version": "v6.6.0",            "source": {                "type": "git",                "url": "https://github.com/PHPMailer/PHPMailer.git",                "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",                "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",                "shasum": ""            },            "require": {                "ext-ctype": "*",                "ext-filter": "*",                "ext-hash": "*",                "php": ">=5.5.0"            },            "require-dev": {                "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",                "doctrine/annotations": "^1.2",                "php-parallel-lint/php-console-highlighter": "^0.5.0",                "php-parallel-lint/php-parallel-lint": "^1.3.1",                "phpcompatibility/php-compatibility": "^9.3.5",                "roave/security-advisories": "dev-latest",                "squizlabs/php_codesniffer": "^3.6.2",                "yoast/phpunit-polyfills": "^1.0.0"            },            "suggest": {                "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",                "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",                "league/oauth2-google": "Needed for Google XOAUTH2 authentication",                "psr/log": "For optional PSR-3 debug logging",                "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",                "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"            },            "type": "library",            "autoload": {                "psr-4": {                    "PHPMailer\\PHPMailer\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "LGPL-2.1-only"            ],            "authors": [                {                    "name": "Marcus Bointon",                    "email": "phpmailer@synchromedia.co.uk"                },                {                    "name": "Jim Jagielski",                    "email": "jimjag@gmail.com"                },                {                    "name": "Andy Prevost",                    "email": "codeworxtech@users.sourceforge.net"                },                {                    "name": "Brent R. Matzelle"                }            ],            "description": "PHPMailer is a full-featured email creation and transfer class for PHP",            "support": {                "issues": "https://github.com/PHPMailer/PHPMailer/issues",                "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"            },            "funding": [                {                    "url": "https://github.com/Synchro",                    "type": "github"                }            ],            "time": "2022-02-28T15:31:21+00:00"        },        {            "name": "psr/container",            "version": "2.0.2",            "source": {                "type": "git",                "url": "https://github.com/php-fig/container.git",                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",                "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",                "shasum": ""            },            "require": {                "php": ">=7.4.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "2.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\Container\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "https://www.php-fig.org/"                }            ],            "description": "Common Container Interface (PHP FIG PSR-11)",            "homepage": "https://github.com/php-fig/container",            "keywords": [                "PSR-11",                "container",                "container-interface",                "container-interop",                "psr"            ],            "support": {                "issues": "https://github.com/php-fig/container/issues",                "source": "https://github.com/php-fig/container/tree/2.0.2"            },            "time": "2021-11-05T16:47:00+00:00"        },        {            "name": "psr/http-client",            "version": "1.0.1",            "source": {                "type": "git",                "url": "https://github.com/php-fig/http-client.git",                "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",                "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",                "shasum": ""            },            "require": {                "php": "^7.0 || ^8.0",                "psr/http-message": "^1.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "1.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\Http\\Client\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "http://www.php-fig.org/"                }            ],            "description": "Common interface for HTTP clients",            "homepage": "https://github.com/php-fig/http-client",            "keywords": [                "http",                "http-client",                "psr",                "psr-18"            ],            "support": {                "source": "https://github.com/php-fig/http-client/tree/master"            },            "time": "2020-06-29T06:28:15+00:00"        },        {            "name": "psr/http-factory",            "version": "1.0.1",            "source": {                "type": "git",                "url": "https://github.com/php-fig/http-factory.git",                "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",                "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",                "shasum": ""            },            "require": {                "php": ">=7.0.0",                "psr/http-message": "^1.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "1.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\Http\\Message\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "http://www.php-fig.org/"                }            ],            "description": "Common interfaces for PSR-7 HTTP message factories",            "keywords": [                "factory",                "http",                "message",                "psr",                "psr-17",                "psr-7",                "request",                "response"            ],            "support": {                "source": "https://github.com/php-fig/http-factory/tree/master"            },            "time": "2019-04-30T12:38:16+00:00"        },        {            "name": "psr/http-message",            "version": "1.0.1",            "source": {                "type": "git",                "url": "https://github.com/php-fig/http-message.git",                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",                "shasum": ""            },            "require": {                "php": ">=5.3.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "1.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\Http\\Message\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "http://www.php-fig.org/"                }            ],            "description": "Common interface for HTTP messages",            "homepage": "https://github.com/php-fig/http-message",            "keywords": [                "http",                "http-message",                "psr",                "psr-7",                "request",                "response"            ],            "support": {                "source": "https://github.com/php-fig/http-message/tree/master"            },            "time": "2016-08-06T14:39:51+00:00"        },        {            "name": "psr/log",            "version": "3.0.0",            "source": {                "type": "git",                "url": "https://github.com/php-fig/log.git",                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",                "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",                "shasum": ""            },            "require": {                "php": ">=8.0.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "3.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\Log\\": "src"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "https://www.php-fig.org/"                }            ],            "description": "Common interface for logging libraries",            "homepage": "https://github.com/php-fig/log",            "keywords": [                "log",                "psr",                "psr-3"            ],            "support": {                "source": "https://github.com/php-fig/log/tree/3.0.0"            },            "time": "2021-07-14T16:46:02+00:00"        },        {            "name": "psr/simple-cache",            "version": "2.0.0",            "source": {                "type": "git",                "url": "https://github.com/php-fig/simple-cache.git",                "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/8707bf3cea6f710bf6ef05491234e3ab06f6432a",                "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a",                "shasum": ""            },            "require": {                "php": ">=8.0.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "2.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Psr\\SimpleCache\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "PHP-FIG",                    "homepage": "https://www.php-fig.org/"                }            ],            "description": "Common interfaces for simple caching",            "keywords": [                "cache",                "caching",                "psr",                "psr-16",                "simple-cache"            ],            "support": {                "source": "https://github.com/php-fig/simple-cache/tree/2.0.0"            },            "time": "2021-10-29T13:22:09+00:00"        },        {            "name": "ralouphie/getallheaders",            "version": "3.0.3",            "source": {                "type": "git",                "url": "https://github.com/ralouphie/getallheaders.git",                "reference": "120b605dfeb996808c31b6477290a714d356e822"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",                "reference": "120b605dfeb996808c31b6477290a714d356e822",                "shasum": ""            },            "require": {                "php": ">=5.6"            },            "require-dev": {                "php-coveralls/php-coveralls": "^2.1",                "phpunit/phpunit": "^5 || ^6.5"            },            "type": "library",            "autoload": {                "files": [                    "src/getallheaders.php"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Ralph Khattar",                    "email": "ralph.khattar@gmail.com"                }            ],            "description": "A polyfill for getallheaders.",            "support": {                "issues": "https://github.com/ralouphie/getallheaders/issues",                "source": "https://github.com/ralouphie/getallheaders/tree/develop"            },            "time": "2019-03-08T08:55:37+00:00"        },        {            "name": "robthree/twofactorauth",            "version": "1.8.1",            "source": {                "type": "git",                "url": "https://github.com/RobThree/TwoFactorAuth.git",                "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/RobThree/TwoFactorAuth/zipball/5afcb45282f1c75562a48d479ecd1732c9bdb11b",                "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b",                "shasum": ""            },            "require": {                "php": ">=5.6.0"            },            "require-dev": {                "php-parallel-lint/php-parallel-lint": "^1.2",                "phpunit/phpunit": "@stable"            },            "suggest": {                "bacon/bacon-qr-code": "Needed for BaconQrCodeProvider provider",                "endroid/qr-code": "Needed for EndroidQrCodeProvider"            },            "type": "library",            "autoload": {                "psr-4": {                    "RobThree\\Auth\\": "lib"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Rob Janssen",                    "homepage": "http://robiii.me",                    "role": "Developer"                }            ],            "description": "Two Factor Authentication",            "homepage": "https://github.com/RobThree/TwoFactorAuth",            "keywords": [                "Authentication",                "MFA",                "Multi Factor Authentication",                "Two Factor Authentication",                "authenticator",                "authy",                "php",                "tfa"            ],            "support": {                "issues": "https://github.com/RobThree/TwoFactorAuth/issues",                "source": "https://github.com/RobThree/TwoFactorAuth"            },            "funding": [                {                    "url": "https://paypal.me/robiii",                    "type": "custom"                },                {                    "url": "https://github.com/RobThree",                    "type": "github"                }            ],            "time": "2021-10-20T12:19:55+00:00"        },        {            "name": "soundasleep/html2text",            "version": "0.5.0",            "source": {                "type": "git",                "url": "https://github.com/soundasleep/html2text.git",                "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/soundasleep/html2text/zipball/cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",                "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",                "shasum": ""            },            "require": {                "ext-dom": "*",                "ext-libxml": "*",                "php": ">=5.3.2"            },            "require-dev": {                "phpunit/phpunit": ">=4.0",                "soundasleep/component-tests": "dev-master"            },            "type": "library",            "autoload": {                "psr-4": {                    "Html2Text\\": "src"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "EPL-1.0"            ],            "authors": [                {                    "name": "Jevon Wright",                    "homepage": "https://jevon.org",                    "role": "Developer"                }            ],            "description": "A PHP script to convert HTML into a plain text format",            "homepage": "https://github.com/soundasleep/html2text",            "keywords": [                "email",                "html",                "php",                "text"            ],            "support": {                "email": "support@jevon.org",                "issues": "https://github.com/soundasleep/html2text/issues",                "source": "https://github.com/soundasleep/html2text/tree/master"            },            "time": "2017-04-19T22:01:50+00:00"        },        {            "name": "stevenmaguire/oauth2-keycloak",            "version": "4.0.0",            "source": {                "type": "git",                "url": "https://github.com/stevenmaguire/oauth2-keycloak.git",                "reference": "05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/stevenmaguire/oauth2-keycloak/zipball/05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d",                "reference": "05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d",                "shasum": ""            },            "require": {                "firebase/php-jwt": "^4.0 || ^5.0 || ^6.0",                "league/oauth2-client": "^2.0",                "php": "~7.2 || ~8.0"            },            "require-dev": {                "mockery/mockery": "~1.5.0",                "phpunit/phpunit": "~9.6.4",                "squizlabs/php_codesniffer": "~3.7.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "1.0.x-dev"                }            },            "autoload": {                "psr-4": {                    "Stevenmaguire\\OAuth2\\Client\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Steven Maguire",                    "email": "stevenmaguire@gmail.com",                    "homepage": "https://github.com/stevenmaguire"                }            ],            "description": "Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client",            "keywords": [                "authorisation",                "authorization",                "client",                "keycloak",                "oauth",                "oauth2"            ],            "support": {                "issues": "https://github.com/stevenmaguire/oauth2-keycloak/issues",                "source": "https://github.com/stevenmaguire/oauth2-keycloak/tree/4.0.0"            },            "time": "2023-03-14T09:43:47+00:00"        },        {            "name": "symfony/deprecation-contracts",            "version": "v3.2.1",            "source": {                "type": "git",                "url": "https://github.com/symfony/deprecation-contracts.git",                "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",                "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",                "shasum": ""            },            "require": {                "php": ">=8.1"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-main": "3.3-dev"                },                "thanks": {                    "name": "symfony/contracts",                    "url": "https://github.com/symfony/contracts"                }            },            "autoload": {                "files": [                    "function.php"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Nicolas Grekas",                    "email": "p@tchwork.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "A generic function and convention to trigger deprecation notices",            "homepage": "https://symfony.com",            "support": {                "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2023-03-01T10:25:55+00:00"        },        {            "name": "symfony/polyfill-ctype",            "version": "v1.24.0",            "source": {                "type": "git",                "url": "https://github.com/symfony/polyfill-ctype.git",                "reference": "30885182c981ab175d4d034db0f6f469898070ab"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",                "reference": "30885182c981ab175d4d034db0f6f469898070ab",                "shasum": ""            },            "require": {                "php": ">=7.1"            },            "provide": {                "ext-ctype": "*"            },            "suggest": {                "ext-ctype": "For best performance"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-main": "1.23-dev"                },                "thanks": {                    "name": "symfony/polyfill",                    "url": "https://github.com/symfony/polyfill"                }            },            "autoload": {                "files": [                    "bootstrap.php"                ],                "psr-4": {                    "Symfony\\Polyfill\\Ctype\\": ""                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Gert de Pagter",                    "email": "BackEndTea@gmail.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Symfony polyfill for ctype functions",            "homepage": "https://symfony.com",            "keywords": [                "compatibility",                "ctype",                "polyfill",                "portable"            ],            "support": {                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2021-10-20T20:35:02+00:00"        },        {            "name": "symfony/polyfill-mbstring",            "version": "v1.24.0",            "source": {                "type": "git",                "url": "https://github.com/symfony/polyfill-mbstring.git",                "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",                "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",                "shasum": ""            },            "require": {                "php": ">=7.1"            },            "provide": {                "ext-mbstring": "*"            },            "suggest": {                "ext-mbstring": "For best performance"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-main": "1.23-dev"                },                "thanks": {                    "name": "symfony/polyfill",                    "url": "https://github.com/symfony/polyfill"                }            },            "autoload": {                "files": [                    "bootstrap.php"                ],                "psr-4": {                    "Symfony\\Polyfill\\Mbstring\\": ""                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Nicolas Grekas",                    "email": "p@tchwork.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Symfony polyfill for the Mbstring extension",            "homepage": "https://symfony.com",            "keywords": [                "compatibility",                "mbstring",                "polyfill",                "portable",                "shim"            ],            "support": {                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2021-11-30T18:21:41+00:00"        },        {            "name": "symfony/polyfill-php80",            "version": "v1.24.0",            "source": {                "type": "git",                "url": "https://github.com/symfony/polyfill-php80.git",                "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",                "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",                "shasum": ""            },            "require": {                "php": ">=7.1"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-main": "1.23-dev"                },                "thanks": {                    "name": "symfony/polyfill",                    "url": "https://github.com/symfony/polyfill"                }            },            "autoload": {                "files": [                    "bootstrap.php"                ],                "psr-4": {                    "Symfony\\Polyfill\\Php80\\": ""                },                "classmap": [                    "Resources/stubs"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Ion Bazan",                    "email": "ion.bazan@gmail.com"                },                {                    "name": "Nicolas Grekas",                    "email": "p@tchwork.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",            "homepage": "https://symfony.com",            "keywords": [                "compatibility",                "polyfill",                "portable",                "shim"            ],            "support": {                "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2021-09-13T13:58:33+00:00"        },        {            "name": "symfony/translation",            "version": "v6.0.5",            "source": {                "type": "git",                "url": "https://github.com/symfony/translation.git",                "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/translation/zipball/e69501c71107cc3146b32aaa45f4edd0c3427875",                "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875",                "shasum": ""            },            "require": {                "php": ">=8.0.2",                "symfony/polyfill-mbstring": "~1.0",                "symfony/translation-contracts": "^2.3|^3.0"            },            "conflict": {                "symfony/config": "<5.4",                "symfony/console": "<5.4",                "symfony/dependency-injection": "<5.4",                "symfony/http-kernel": "<5.4",                "symfony/twig-bundle": "<5.4",                "symfony/yaml": "<5.4"            },            "provide": {                "symfony/translation-implementation": "2.3|3.0"            },            "require-dev": {                "psr/log": "^1|^2|^3",                "symfony/config": "^5.4|^6.0",                "symfony/console": "^5.4|^6.0",                "symfony/dependency-injection": "^5.4|^6.0",                "symfony/finder": "^5.4|^6.0",                "symfony/http-client-contracts": "^1.1|^2.0|^3.0",                "symfony/http-kernel": "^5.4|^6.0",                "symfony/intl": "^5.4|^6.0",                "symfony/polyfill-intl-icu": "^1.21",                "symfony/service-contracts": "^1.1.2|^2|^3",                "symfony/yaml": "^5.4|^6.0"            },            "suggest": {                "psr/log-implementation": "To use logging capability in translator",                "symfony/config": "",                "symfony/yaml": ""            },            "type": "library",            "autoload": {                "files": [                    "Resources/functions.php"                ],                "psr-4": {                    "Symfony\\Component\\Translation\\": ""                },                "exclude-from-classmap": [                    "/Tests/"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Fabien Potencier",                    "email": "fabien@symfony.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Provides tools to internationalize your application",            "homepage": "https://symfony.com",            "support": {                "source": "https://github.com/symfony/translation/tree/v6.0.5"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2022-02-09T15:52:48+00:00"        },        {            "name": "symfony/translation-contracts",            "version": "v3.0.0",            "source": {                "type": "git",                "url": "https://github.com/symfony/translation-contracts.git",                "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",                "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",                "shasum": ""            },            "require": {                "php": ">=8.0.2"            },            "suggest": {                "symfony/translation-implementation": ""            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-main": "3.0-dev"                },                "thanks": {                    "name": "symfony/contracts",                    "url": "https://github.com/symfony/contracts"                }            },            "autoload": {                "psr-4": {                    "Symfony\\Contracts\\Translation\\": ""                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Nicolas Grekas",                    "email": "p@tchwork.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Generic abstractions related to translation",            "homepage": "https://symfony.com",            "keywords": [                "abstractions",                "contracts",                "decoupling",                "interfaces",                "interoperability",                "standards"            ],            "support": {                "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2021-09-07T12:43:40+00:00"        },        {            "name": "symfony/var-dumper",            "version": "v6.0.5",            "source": {                "type": "git",                "url": "https://github.com/symfony/var-dumper.git",                "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60d6a756d5f485df5e6e40b337334848f79f61ce",                "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce",                "shasum": ""            },            "require": {                "php": ">=8.0.2",                "symfony/polyfill-mbstring": "~1.0"            },            "conflict": {                "phpunit/phpunit": "<5.4.3",                "symfony/console": "<5.4"            },            "require-dev": {                "ext-iconv": "*",                "symfony/console": "^5.4|^6.0",                "symfony/process": "^5.4|^6.0",                "symfony/uid": "^5.4|^6.0",                "twig/twig": "^2.13|^3.0.4"            },            "suggest": {                "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",                "ext-intl": "To show region name in time zone dump",                "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"            },            "bin": [                "Resources/bin/var-dump-server"            ],            "type": "library",            "autoload": {                "files": [                    "Resources/functions/dump.php"                ],                "psr-4": {                    "Symfony\\Component\\VarDumper\\": ""                },                "exclude-from-classmap": [                    "/Tests/"                ]            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Nicolas Grekas",                    "email": "p@tchwork.com"                },                {                    "name": "Symfony Community",                    "homepage": "https://symfony.com/contributors"                }            ],            "description": "Provides mechanisms for walking through any arbitrary PHP variable",            "homepage": "https://symfony.com",            "keywords": [                "debug",                "dump"            ],            "support": {                "source": "https://github.com/symfony/var-dumper/tree/v6.0.5"            },            "funding": [                {                    "url": "https://symfony.com/sponsor",                    "type": "custom"                },                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",                    "type": "tidelift"                }            ],            "time": "2022-02-21T17:15:17+00:00"        },        {            "name": "tightenco/collect",            "version": "v8.83.2",            "source": {                "type": "git",                "url": "https://github.com/tighten/collect.git",                "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/tighten/collect/zipball/d9c66d586ec2d216d8a31283d73f8df1400cc722",                "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722",                "shasum": ""            },            "require": {                "php": "^7.3|^8.0",                "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"            },            "require-dev": {                "mockery/mockery": "^1.0",                "nesbot/carbon": "^2.23.0",                "phpunit/phpunit": "^8.3"            },            "type": "library",            "autoload": {                "files": [                    "src/Collect/Support/helpers.php",                    "src/Collect/Support/alias.php"                ],                "psr-4": {                    "Tightenco\\Collect\\": "src/Collect"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "MIT"            ],            "authors": [                {                    "name": "Taylor Otwell",                    "email": "taylorotwell@gmail.com"                }            ],            "description": "Collect - Illuminate Collections as a separate package.",            "keywords": [                "collection",                "laravel"            ],            "support": {                "issues": "https://github.com/tighten/collect/issues",                "source": "https://github.com/tighten/collect/tree/v8.83.2"            },            "time": "2022-02-16T16:15:54+00:00"        },        {            "name": "twig/twig",            "version": "v3.4.3",            "source": {                "type": "git",                "url": "https://github.com/twigphp/Twig.git",                "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"            },            "dist": {                "type": "zip",                "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",                "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",                "shasum": ""            },            "require": {                "php": ">=7.2.5",                "symfony/polyfill-ctype": "^1.8",                "symfony/polyfill-mbstring": "^1.3"            },            "require-dev": {                "psr/container": "^1.0",                "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"            },            "type": "library",            "extra": {                "branch-alias": {                    "dev-master": "3.4-dev"                }            },            "autoload": {                "psr-4": {                    "Twig\\": "src/"                }            },            "notification-url": "https://packagist.org/downloads/",            "license": [                "BSD-3-Clause"            ],            "authors": [                {                    "name": "Fabien Potencier",                    "email": "fabien@symfony.com",                    "homepage": "http://fabien.potencier.org",                    "role": "Lead Developer"                },                {                    "name": "Twig Team",                    "role": "Contributors"                },                {                    "name": "Armin Ronacher",                    "email": "armin.ronacher@active-4.com",                    "role": "Project Founder"                }            ],            "description": "Twig, the flexible, fast, and secure template language for PHP",            "homepage": "https://twig.symfony.com",            "keywords": [                "templating"            ],            "support": {                "issues": "https://github.com/twigphp/Twig/issues",                "source": "https://github.com/twigphp/Twig/tree/v3.4.3"            },            "funding": [                {                    "url": "https://github.com/fabpot",                    "type": "github"                },                {                    "url": "https://tidelift.com/funding/github/packagist/twig/twig",                    "type": "tidelift"                }            ],            "time": "2022-09-28T08:42:51+00:00"        }    ],    "packages-dev": [],    "aliases": [],    "minimum-stability": "stable",    "stability-flags": [],    "prefer-stable": false,    "prefer-lowest": false,    "platform": [],    "platform-dev": [],    "plugin-api-version": "2.3.0"}
 |