composer.lock 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "8e2ae21876c09c77b9450d8c53abdf95",
  8. "packages": [
  9. {
  10. "name": "dibi/dibi",
  11. "version": "v4.2.6",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dg/dibi.git",
  15. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dg/dibi/zipball/9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  20. "reference": "9d5d430d3d04ad8aff0e1570390e9cfbb7f3c538",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=7.2"
  25. },
  26. "replace": {
  27. "dg/dibi": "*"
  28. },
  29. "require-dev": {
  30. "nette/di": "^3.0",
  31. "nette/tester": "~2.0",
  32. "phpstan/phpstan": "^0.12",
  33. "tracy/tracy": "~2.2"
  34. },
  35. "type": "library",
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "4.2-dev"
  39. }
  40. },
  41. "autoload": {
  42. "classmap": [
  43. "src/"
  44. ]
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "BSD-3-Clause",
  49. "GPL-2.0-only",
  50. "GPL-3.0-only"
  51. ],
  52. "authors": [
  53. {
  54. "name": "David Grudl",
  55. "homepage": "https://davidgrudl.com"
  56. }
  57. ],
  58. "description": "Dibi is Database Abstraction Library for PHP",
  59. "homepage": "https://dibiphp.com",
  60. "keywords": [
  61. "access",
  62. "database",
  63. "dbal",
  64. "mssql",
  65. "mysql",
  66. "odbc",
  67. "oracle",
  68. "pdo",
  69. "postgresql",
  70. "sqlite",
  71. "sqlsrv"
  72. ],
  73. "support": {
  74. "issues": "https://github.com/dg/dibi/issues",
  75. "source": "https://github.com/dg/dibi/tree/v4.2.6"
  76. },
  77. "time": "2022-01-19T17:38:15+00:00"
  78. },
  79. {
  80. "name": "league/flysystem",
  81. "version": "1.1.9",
  82. "source": {
  83. "type": "git",
  84. "url": "https://github.com/thephpleague/flysystem.git",
  85. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  86. },
  87. "dist": {
  88. "type": "zip",
  89. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  90. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  91. "shasum": ""
  92. },
  93. "require": {
  94. "ext-fileinfo": "*",
  95. "league/mime-type-detection": "^1.3",
  96. "php": "^7.2.5 || ^8.0"
  97. },
  98. "conflict": {
  99. "league/flysystem-sftp": "<1.0.6"
  100. },
  101. "require-dev": {
  102. "phpspec/prophecy": "^1.11.1",
  103. "phpunit/phpunit": "^8.5.8"
  104. },
  105. "suggest": {
  106. "ext-ftp": "Allows you to use FTP server storage",
  107. "ext-openssl": "Allows you to use FTPS server storage",
  108. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  109. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  110. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  111. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  112. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  113. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  114. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  115. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  116. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  117. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  118. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  119. },
  120. "type": "library",
  121. "extra": {
  122. "branch-alias": {
  123. "dev-master": "1.1-dev"
  124. }
  125. },
  126. "autoload": {
  127. "psr-4": {
  128. "League\\Flysystem\\": "src/"
  129. }
  130. },
  131. "notification-url": "https://packagist.org/downloads/",
  132. "license": [
  133. "MIT"
  134. ],
  135. "authors": [
  136. {
  137. "name": "Frank de Jonge",
  138. "email": "info@frenky.net"
  139. }
  140. ],
  141. "description": "Filesystem abstraction: Many filesystems, one API.",
  142. "keywords": [
  143. "Cloud Files",
  144. "WebDAV",
  145. "abstraction",
  146. "aws",
  147. "cloud",
  148. "copy.com",
  149. "dropbox",
  150. "file systems",
  151. "files",
  152. "filesystem",
  153. "filesystems",
  154. "ftp",
  155. "rackspace",
  156. "remote",
  157. "s3",
  158. "sftp",
  159. "storage"
  160. ],
  161. "support": {
  162. "issues": "https://github.com/thephpleague/flysystem/issues",
  163. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  164. },
  165. "funding": [
  166. {
  167. "url": "https://offset.earth/frankdejonge",
  168. "type": "other"
  169. }
  170. ],
  171. "time": "2021-12-09T09:40:50+00:00"
  172. },
  173. {
  174. "name": "league/flysystem-sftp",
  175. "version": "1.1.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/thephpleague/flysystem-sftp.git",
  179. "reference": "36fb893d10bb799fa6aa7199e37e84314c9fd97d"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/thephpleague/flysystem-sftp/zipball/36fb893d10bb799fa6aa7199e37e84314c9fd97d",
  184. "reference": "36fb893d10bb799fa6aa7199e37e84314c9fd97d",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "league/flysystem": "~1.0",
  189. "php": ">=5.6.0",
  190. "phpseclib/phpseclib": "~2.0"
  191. },
  192. "require-dev": {
  193. "mockery/mockery": "0.9.*",
  194. "phpunit/phpunit": "^5.7.25"
  195. },
  196. "type": "library",
  197. "autoload": {
  198. "psr-4": {
  199. "League\\Flysystem\\Sftp\\": "src/"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Frank de Jonge",
  209. "email": "info@frenky.net"
  210. }
  211. ],
  212. "description": "Flysystem adapter for SFTP",
  213. "support": {
  214. "issues": "https://github.com/thephpleague/flysystem-sftp/issues",
  215. "source": "https://github.com/thephpleague/flysystem-sftp/tree/1.1.0"
  216. },
  217. "funding": [
  218. {
  219. "url": "https://offset.earth/frankdejonge",
  220. "type": "custom"
  221. },
  222. {
  223. "url": "https://github.com/frankdejonge",
  224. "type": "github"
  225. },
  226. {
  227. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  228. "type": "tidelift"
  229. }
  230. ],
  231. "time": "2022-01-04T22:02:01+00:00"
  232. },
  233. {
  234. "name": "league/flysystem-ziparchive",
  235. "version": "1.0.3",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/thephpleague/flysystem-ziparchive.git",
  239. "reference": "c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/thephpleague/flysystem-ziparchive/zipball/c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45",
  244. "reference": "c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "ext-zip": "*",
  249. "league/flysystem": "~1.0",
  250. "php": ">=5.4.0"
  251. },
  252. "require-dev": {
  253. "mockery/mockery": "0.9.*",
  254. "phpunit/phpunit": "~4.0"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "branch-alias": {
  259. "dev-master": "1.0-dev"
  260. }
  261. },
  262. "autoload": {
  263. "psr-4": {
  264. "League\\Flysystem\\ZipArchive\\": "src/"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Frank de Jonge",
  274. "email": "info@frenky.net"
  275. }
  276. ],
  277. "description": "Flysystem adapter for ZipArchive's",
  278. "support": {
  279. "issues": "https://github.com/thephpleague/flysystem-ziparchive/issues",
  280. "source": "https://github.com/thephpleague/flysystem-ziparchive/tree/master"
  281. },
  282. "time": "2016-12-20T08:36:16+00:00"
  283. },
  284. {
  285. "name": "league/mime-type-detection",
  286. "version": "1.9.0",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/thephpleague/mime-type-detection.git",
  290. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
  295. "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "ext-fileinfo": "*",
  300. "php": "^7.2 || ^8.0"
  301. },
  302. "require-dev": {
  303. "friendsofphp/php-cs-fixer": "^3.2",
  304. "phpstan/phpstan": "^0.12.68",
  305. "phpunit/phpunit": "^8.5.8 || ^9.3"
  306. },
  307. "type": "library",
  308. "autoload": {
  309. "psr-4": {
  310. "League\\MimeTypeDetection\\": "src"
  311. }
  312. },
  313. "notification-url": "https://packagist.org/downloads/",
  314. "license": [
  315. "MIT"
  316. ],
  317. "authors": [
  318. {
  319. "name": "Frank de Jonge",
  320. "email": "info@frankdejonge.nl"
  321. }
  322. ],
  323. "description": "Mime-type detection for Flysystem",
  324. "support": {
  325. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  326. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://github.com/frankdejonge",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  335. "type": "tidelift"
  336. }
  337. ],
  338. "time": "2021-11-21T11:48:40+00:00"
  339. },
  340. {
  341. "name": "monolog/monolog",
  342. "version": "1.26.1",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/Seldaek/monolog.git",
  346. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  351. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": ">=5.3.0",
  356. "psr/log": "~1.0"
  357. },
  358. "provide": {
  359. "psr/log-implementation": "1.0.0"
  360. },
  361. "require-dev": {
  362. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  363. "doctrine/couchdb": "~1.0@dev",
  364. "graylog2/gelf-php": "~1.0",
  365. "php-amqplib/php-amqplib": "~2.4",
  366. "php-console/php-console": "^3.1.3",
  367. "phpstan/phpstan": "^0.12.59",
  368. "phpunit/phpunit": "~4.5",
  369. "ruflin/elastica": ">=0.90 <3.0",
  370. "sentry/sentry": "^0.13",
  371. "swiftmailer/swiftmailer": "^5.3|^6.0"
  372. },
  373. "suggest": {
  374. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  375. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  376. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  377. "ext-mongo": "Allow sending log messages to a MongoDB server",
  378. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  379. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  380. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  381. "php-console/php-console": "Allow sending log messages to Google Chrome",
  382. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  383. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  384. "sentry/sentry": "Allow sending log messages to a Sentry server"
  385. },
  386. "type": "library",
  387. "autoload": {
  388. "psr-4": {
  389. "Monolog\\": "src/Monolog"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Jordi Boggiano",
  399. "email": "j.boggiano@seld.be",
  400. "homepage": "http://seld.be"
  401. }
  402. ],
  403. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  404. "homepage": "http://github.com/Seldaek/monolog",
  405. "keywords": [
  406. "log",
  407. "logging",
  408. "psr-3"
  409. ],
  410. "support": {
  411. "issues": "https://github.com/Seldaek/monolog/issues",
  412. "source": "https://github.com/Seldaek/monolog/tree/1.26.1"
  413. },
  414. "funding": [
  415. {
  416. "url": "https://github.com/Seldaek",
  417. "type": "github"
  418. },
  419. {
  420. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  421. "type": "tidelift"
  422. }
  423. ],
  424. "time": "2021-05-28T08:32:12+00:00"
  425. },
  426. {
  427. "name": "nikic/fast-route",
  428. "version": "v1.3.0",
  429. "source": {
  430. "type": "git",
  431. "url": "https://github.com/nikic/FastRoute.git",
  432. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  433. },
  434. "dist": {
  435. "type": "zip",
  436. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  437. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  438. "shasum": ""
  439. },
  440. "require": {
  441. "php": ">=5.4.0"
  442. },
  443. "require-dev": {
  444. "phpunit/phpunit": "^4.8.35|~5.7"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "FastRoute\\": "src/"
  450. },
  451. "files": [
  452. "src/functions.php"
  453. ]
  454. },
  455. "notification-url": "https://packagist.org/downloads/",
  456. "license": [
  457. "BSD-3-Clause"
  458. ],
  459. "authors": [
  460. {
  461. "name": "Nikita Popov",
  462. "email": "nikic@php.net"
  463. }
  464. ],
  465. "description": "Fast request router for PHP",
  466. "keywords": [
  467. "router",
  468. "routing"
  469. ],
  470. "support": {
  471. "issues": "https://github.com/nikic/FastRoute/issues",
  472. "source": "https://github.com/nikic/FastRoute/tree/master"
  473. },
  474. "time": "2018-02-13T20:26:39+00:00"
  475. },
  476. {
  477. "name": "opis/closure",
  478. "version": "3.6.2",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/opis/closure.git",
  482. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  487. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  488. "shasum": ""
  489. },
  490. "require": {
  491. "php": "^5.4 || ^7.0 || ^8.0"
  492. },
  493. "require-dev": {
  494. "jeremeamia/superclosure": "^2.0",
  495. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  496. },
  497. "type": "library",
  498. "extra": {
  499. "branch-alias": {
  500. "dev-master": "3.6.x-dev"
  501. }
  502. },
  503. "autoload": {
  504. "psr-4": {
  505. "Opis\\Closure\\": "src/"
  506. },
  507. "files": [
  508. "functions.php"
  509. ]
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Marius Sarca",
  518. "email": "marius.sarca@gmail.com"
  519. },
  520. {
  521. "name": "Sorin Sarca",
  522. "email": "sarca_sorin@hotmail.com"
  523. }
  524. ],
  525. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  526. "homepage": "https://opis.io/closure",
  527. "keywords": [
  528. "anonymous functions",
  529. "closure",
  530. "function",
  531. "serializable",
  532. "serialization",
  533. "serialize"
  534. ],
  535. "support": {
  536. "issues": "https://github.com/opis/closure/issues",
  537. "source": "https://github.com/opis/closure/tree/3.6.2"
  538. },
  539. "time": "2021-04-09T13:42:10+00:00"
  540. },
  541. {
  542. "name": "php-di/invoker",
  543. "version": "2.0.0",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/PHP-DI/Invoker.git",
  547. "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/540c27c86f663e20fe39a24cd72fa76cdb21d41a",
  552. "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "psr/container": "~1.0"
  557. },
  558. "require-dev": {
  559. "athletic/athletic": "~0.1.8",
  560. "phpunit/phpunit": "~4.5"
  561. },
  562. "type": "library",
  563. "autoload": {
  564. "psr-4": {
  565. "Invoker\\": "src/"
  566. }
  567. },
  568. "notification-url": "https://packagist.org/downloads/",
  569. "license": [
  570. "MIT"
  571. ],
  572. "description": "Generic and extensible callable invoker",
  573. "homepage": "https://github.com/PHP-DI/Invoker",
  574. "keywords": [
  575. "callable",
  576. "dependency",
  577. "dependency-injection",
  578. "injection",
  579. "invoke",
  580. "invoker"
  581. ],
  582. "support": {
  583. "issues": "https://github.com/PHP-DI/Invoker/issues",
  584. "source": "https://github.com/PHP-DI/Invoker/tree/master"
  585. },
  586. "time": "2017-03-20T19:28:22+00:00"
  587. },
  588. {
  589. "name": "php-di/php-di",
  590. "version": "6.3.5",
  591. "source": {
  592. "type": "git",
  593. "url": "https://github.com/PHP-DI/PHP-DI.git",
  594. "reference": "b8126d066ce144765300ee0ab040c1ed6c9ef588"
  595. },
  596. "dist": {
  597. "type": "zip",
  598. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/b8126d066ce144765300ee0ab040c1ed6c9ef588",
  599. "reference": "b8126d066ce144765300ee0ab040c1ed6c9ef588",
  600. "shasum": ""
  601. },
  602. "require": {
  603. "opis/closure": "^3.5.5",
  604. "php": ">=7.2.0",
  605. "php-di/invoker": "^2.0",
  606. "php-di/phpdoc-reader": "^2.0.1",
  607. "psr/container": "^1.0"
  608. },
  609. "provide": {
  610. "psr/container-implementation": "^1.0"
  611. },
  612. "require-dev": {
  613. "doctrine/annotations": "~1.2",
  614. "friendsofphp/php-cs-fixer": "^2.4",
  615. "mnapoli/phpunit-easymock": "^1.2",
  616. "ocramius/proxy-manager": "^2.0.2",
  617. "phpstan/phpstan": "^0.12",
  618. "phpunit/phpunit": "^8.5|^9.0"
  619. },
  620. "suggest": {
  621. "doctrine/annotations": "Install it if you want to use annotations (version ~1.2)",
  622. "ocramius/proxy-manager": "Install it if you want to use lazy injection (version ~2.0)"
  623. },
  624. "type": "library",
  625. "autoload": {
  626. "psr-4": {
  627. "DI\\": "src/"
  628. },
  629. "files": [
  630. "src/functions.php"
  631. ]
  632. },
  633. "notification-url": "https://packagist.org/downloads/",
  634. "license": [
  635. "MIT"
  636. ],
  637. "description": "The dependency injection container for humans",
  638. "homepage": "https://php-di.org/",
  639. "keywords": [
  640. "PSR-11",
  641. "container",
  642. "container-interop",
  643. "dependency injection",
  644. "di",
  645. "ioc",
  646. "psr11"
  647. ],
  648. "support": {
  649. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  650. "source": "https://github.com/PHP-DI/PHP-DI/tree/6.3.5"
  651. },
  652. "funding": [
  653. {
  654. "url": "https://github.com/mnapoli",
  655. "type": "github"
  656. },
  657. {
  658. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  659. "type": "tidelift"
  660. }
  661. ],
  662. "time": "2021-09-02T09:49:58+00:00"
  663. },
  664. {
  665. "name": "php-di/phpdoc-reader",
  666. "version": "2.2.1",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  670. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  675. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": ">=7.2.0"
  680. },
  681. "require-dev": {
  682. "mnapoli/hard-mode": "~0.3.0",
  683. "phpunit/phpunit": "^8.5|^9.0"
  684. },
  685. "type": "library",
  686. "autoload": {
  687. "psr-4": {
  688. "PhpDocReader\\": "src/PhpDocReader"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  696. "keywords": [
  697. "phpdoc",
  698. "reflection"
  699. ],
  700. "support": {
  701. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  702. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  703. },
  704. "time": "2020-10-12T12:39:22+00:00"
  705. },
  706. {
  707. "name": "phpseclib/phpseclib",
  708. "version": "2.0.35",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/phpseclib/phpseclib.git",
  712. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4e16cf3f5f927a7d3f5317820af795c0366c0420",
  717. "reference": "4e16cf3f5f927a7d3f5317820af795c0366c0420",
  718. "shasum": ""
  719. },
  720. "require": {
  721. "php": ">=5.3.3"
  722. },
  723. "require-dev": {
  724. "phing/phing": "~2.7",
  725. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  726. "squizlabs/php_codesniffer": "~2.0"
  727. },
  728. "suggest": {
  729. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  730. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  731. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  732. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  733. },
  734. "type": "library",
  735. "autoload": {
  736. "files": [
  737. "phpseclib/bootstrap.php"
  738. ],
  739. "psr-4": {
  740. "phpseclib\\": "phpseclib/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Jim Wigginton",
  750. "email": "terrafrost@php.net",
  751. "role": "Lead Developer"
  752. },
  753. {
  754. "name": "Patrick Monnerat",
  755. "email": "pm@datasphere.ch",
  756. "role": "Developer"
  757. },
  758. {
  759. "name": "Andreas Fischer",
  760. "email": "bantu@phpbb.com",
  761. "role": "Developer"
  762. },
  763. {
  764. "name": "Hans-Jürgen Petrich",
  765. "email": "petrich@tronic-media.com",
  766. "role": "Developer"
  767. },
  768. {
  769. "name": "Graham Campbell",
  770. "email": "graham@alt-three.com",
  771. "role": "Developer"
  772. }
  773. ],
  774. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  775. "homepage": "http://phpseclib.sourceforge.net",
  776. "keywords": [
  777. "BigInteger",
  778. "aes",
  779. "asn.1",
  780. "asn1",
  781. "blowfish",
  782. "crypto",
  783. "cryptography",
  784. "encryption",
  785. "rsa",
  786. "security",
  787. "sftp",
  788. "signature",
  789. "signing",
  790. "ssh",
  791. "twofish",
  792. "x.509",
  793. "x509"
  794. ],
  795. "support": {
  796. "issues": "https://github.com/phpseclib/phpseclib/issues",
  797. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.35"
  798. },
  799. "funding": [
  800. {
  801. "url": "https://github.com/terrafrost",
  802. "type": "github"
  803. },
  804. {
  805. "url": "https://www.patreon.com/phpseclib",
  806. "type": "patreon"
  807. },
  808. {
  809. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  810. "type": "tidelift"
  811. }
  812. ],
  813. "time": "2021-11-28T23:30:39+00:00"
  814. },
  815. {
  816. "name": "psr/container",
  817. "version": "1.1.1",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/php-fig/container.git",
  821. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  826. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  827. "shasum": ""
  828. },
  829. "require": {
  830. "php": ">=7.2.0"
  831. },
  832. "type": "library",
  833. "autoload": {
  834. "psr-4": {
  835. "Psr\\Container\\": "src/"
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "MIT"
  841. ],
  842. "authors": [
  843. {
  844. "name": "PHP-FIG",
  845. "homepage": "https://www.php-fig.org/"
  846. }
  847. ],
  848. "description": "Common Container Interface (PHP FIG PSR-11)",
  849. "homepage": "https://github.com/php-fig/container",
  850. "keywords": [
  851. "PSR-11",
  852. "container",
  853. "container-interface",
  854. "container-interop",
  855. "psr"
  856. ],
  857. "support": {
  858. "issues": "https://github.com/php-fig/container/issues",
  859. "source": "https://github.com/php-fig/container/tree/1.1.1"
  860. },
  861. "time": "2021-03-05T17:36:06+00:00"
  862. },
  863. {
  864. "name": "psr/event-dispatcher",
  865. "version": "1.0.0",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/php-fig/event-dispatcher.git",
  869. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  874. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": ">=7.2.0"
  879. },
  880. "type": "library",
  881. "extra": {
  882. "branch-alias": {
  883. "dev-master": "1.0.x-dev"
  884. }
  885. },
  886. "autoload": {
  887. "psr-4": {
  888. "Psr\\EventDispatcher\\": "src/"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "PHP-FIG",
  898. "homepage": "http://www.php-fig.org/"
  899. }
  900. ],
  901. "description": "Standard interfaces for event handling.",
  902. "keywords": [
  903. "events",
  904. "psr",
  905. "psr-14"
  906. ],
  907. "support": {
  908. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  909. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  910. },
  911. "time": "2019-01-08T18:20:26+00:00"
  912. },
  913. {
  914. "name": "psr/log",
  915. "version": "1.1.4",
  916. "source": {
  917. "type": "git",
  918. "url": "https://github.com/php-fig/log.git",
  919. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  920. },
  921. "dist": {
  922. "type": "zip",
  923. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  924. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  925. "shasum": ""
  926. },
  927. "require": {
  928. "php": ">=5.3.0"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "1.1.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Psr\\Log\\": "Psr/Log/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "PHP-FIG",
  948. "homepage": "https://www.php-fig.org/"
  949. }
  950. ],
  951. "description": "Common interface for logging libraries",
  952. "homepage": "https://github.com/php-fig/log",
  953. "keywords": [
  954. "log",
  955. "psr",
  956. "psr-3"
  957. ],
  958. "support": {
  959. "source": "https://github.com/php-fig/log/tree/1.1.4"
  960. },
  961. "time": "2021-05-03T11:20:27+00:00"
  962. },
  963. {
  964. "name": "rakit/validation",
  965. "version": "v1.4.0",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/rakit/validation.git",
  969. "reference": "ff003a35cdf5030a5f2482299f4c93f344a35b29"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/rakit/validation/zipball/ff003a35cdf5030a5f2482299f4c93f344a35b29",
  974. "reference": "ff003a35cdf5030a5f2482299f4c93f344a35b29",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "ext-mbstring": "*",
  979. "php": ">=7.0"
  980. },
  981. "require-dev": {
  982. "php-coveralls/php-coveralls": "^2.2",
  983. "phpunit/phpunit": "^6.5",
  984. "squizlabs/php_codesniffer": "^3"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Rakit\\Validation\\": "src"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "Muhammad Syifa",
  999. "email": "emsifa@gmail.com"
  1000. }
  1001. ],
  1002. "description": "PHP Laravel like standalone validation library",
  1003. "support": {
  1004. "issues": "https://github.com/rakit/validation/issues",
  1005. "source": "https://github.com/rakit/validation/tree/v1.4.0"
  1006. },
  1007. "time": "2020-08-27T05:07:01+00:00"
  1008. },
  1009. {
  1010. "name": "symfony/deprecation-contracts",
  1011. "version": "v2.5.0",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/symfony/deprecation-contracts.git",
  1015. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1020. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1021. "shasum": ""
  1022. },
  1023. "require": {
  1024. "php": ">=7.1"
  1025. },
  1026. "type": "library",
  1027. "extra": {
  1028. "branch-alias": {
  1029. "dev-main": "2.5-dev"
  1030. },
  1031. "thanks": {
  1032. "name": "symfony/contracts",
  1033. "url": "https://github.com/symfony/contracts"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "files": [
  1038. "function.php"
  1039. ]
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Nicolas Grekas",
  1048. "email": "p@tchwork.com"
  1049. },
  1050. {
  1051. "name": "Symfony Community",
  1052. "homepage": "https://symfony.com/contributors"
  1053. }
  1054. ],
  1055. "description": "A generic function and convention to trigger deprecation notices",
  1056. "homepage": "https://symfony.com",
  1057. "support": {
  1058. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  1059. },
  1060. "funding": [
  1061. {
  1062. "url": "https://symfony.com/sponsor",
  1063. "type": "custom"
  1064. },
  1065. {
  1066. "url": "https://github.com/fabpot",
  1067. "type": "github"
  1068. },
  1069. {
  1070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1071. "type": "tidelift"
  1072. }
  1073. ],
  1074. "time": "2021-07-12T14:48:14+00:00"
  1075. },
  1076. {
  1077. "name": "symfony/event-dispatcher-contracts",
  1078. "version": "v2.5.0",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1082. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  1087. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "php": ">=7.2.5",
  1092. "psr/event-dispatcher": "^1"
  1093. },
  1094. "suggest": {
  1095. "symfony/event-dispatcher-implementation": ""
  1096. },
  1097. "type": "library",
  1098. "extra": {
  1099. "branch-alias": {
  1100. "dev-main": "2.5-dev"
  1101. },
  1102. "thanks": {
  1103. "name": "symfony/contracts",
  1104. "url": "https://github.com/symfony/contracts"
  1105. }
  1106. },
  1107. "autoload": {
  1108. "psr-4": {
  1109. "Symfony\\Contracts\\EventDispatcher\\": ""
  1110. }
  1111. },
  1112. "notification-url": "https://packagist.org/downloads/",
  1113. "license": [
  1114. "MIT"
  1115. ],
  1116. "authors": [
  1117. {
  1118. "name": "Nicolas Grekas",
  1119. "email": "p@tchwork.com"
  1120. },
  1121. {
  1122. "name": "Symfony Community",
  1123. "homepage": "https://symfony.com/contributors"
  1124. }
  1125. ],
  1126. "description": "Generic abstractions related to dispatching event",
  1127. "homepage": "https://symfony.com",
  1128. "keywords": [
  1129. "abstractions",
  1130. "contracts",
  1131. "decoupling",
  1132. "interfaces",
  1133. "interoperability",
  1134. "standards"
  1135. ],
  1136. "support": {
  1137. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  1138. },
  1139. "funding": [
  1140. {
  1141. "url": "https://symfony.com/sponsor",
  1142. "type": "custom"
  1143. },
  1144. {
  1145. "url": "https://github.com/fabpot",
  1146. "type": "github"
  1147. },
  1148. {
  1149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1150. "type": "tidelift"
  1151. }
  1152. ],
  1153. "time": "2021-07-12T14:48:14+00:00"
  1154. },
  1155. {
  1156. "name": "symfony/http-foundation",
  1157. "version": "v4.4.36",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/symfony/http-foundation.git",
  1161. "reference": "0948e99457615ddb05380adde3584484ffd951d4"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0948e99457615ddb05380adde3584484ffd951d4",
  1166. "reference": "0948e99457615ddb05380adde3584484ffd951d4",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "php": ">=7.1.3",
  1171. "symfony/mime": "^4.3|^5.0",
  1172. "symfony/polyfill-mbstring": "~1.1",
  1173. "symfony/polyfill-php80": "^1.16"
  1174. },
  1175. "require-dev": {
  1176. "predis/predis": "~1.0",
  1177. "symfony/expression-language": "^3.4|^4.0|^5.0"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "Symfony\\Component\\HttpFoundation\\": ""
  1183. },
  1184. "exclude-from-classmap": [
  1185. "/Tests/"
  1186. ]
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "authors": [
  1193. {
  1194. "name": "Fabien Potencier",
  1195. "email": "fabien@symfony.com"
  1196. },
  1197. {
  1198. "name": "Symfony Community",
  1199. "homepage": "https://symfony.com/contributors"
  1200. }
  1201. ],
  1202. "description": "Defines an object-oriented layer for the HTTP specification",
  1203. "homepage": "https://symfony.com",
  1204. "support": {
  1205. "source": "https://github.com/symfony/http-foundation/tree/v4.4.36"
  1206. },
  1207. "funding": [
  1208. {
  1209. "url": "https://symfony.com/sponsor",
  1210. "type": "custom"
  1211. },
  1212. {
  1213. "url": "https://github.com/fabpot",
  1214. "type": "github"
  1215. },
  1216. {
  1217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1218. "type": "tidelift"
  1219. }
  1220. ],
  1221. "time": "2021-12-27T18:40:22+00:00"
  1222. },
  1223. {
  1224. "name": "symfony/mime",
  1225. "version": "v5.4.2",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/symfony/mime.git",
  1229. "reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/symfony/mime/zipball/1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
  1234. "reference": "1bfd938cf9562822c05c4d00e8f92134d3c8e42d",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "php": ">=7.2.5",
  1239. "symfony/deprecation-contracts": "^2.1|^3",
  1240. "symfony/polyfill-intl-idn": "^1.10",
  1241. "symfony/polyfill-mbstring": "^1.0",
  1242. "symfony/polyfill-php80": "^1.16"
  1243. },
  1244. "conflict": {
  1245. "egulias/email-validator": "~3.0.0",
  1246. "phpdocumentor/reflection-docblock": "<3.2.2",
  1247. "phpdocumentor/type-resolver": "<1.4.0",
  1248. "symfony/mailer": "<4.4"
  1249. },
  1250. "require-dev": {
  1251. "egulias/email-validator": "^2.1.10|^3.1",
  1252. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  1253. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1254. "symfony/property-access": "^4.4|^5.1|^6.0",
  1255. "symfony/property-info": "^4.4|^5.1|^6.0",
  1256. "symfony/serializer": "^5.2|^6.0"
  1257. },
  1258. "type": "library",
  1259. "autoload": {
  1260. "psr-4": {
  1261. "Symfony\\Component\\Mime\\": ""
  1262. },
  1263. "exclude-from-classmap": [
  1264. "/Tests/"
  1265. ]
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Fabien Potencier",
  1274. "email": "fabien@symfony.com"
  1275. },
  1276. {
  1277. "name": "Symfony Community",
  1278. "homepage": "https://symfony.com/contributors"
  1279. }
  1280. ],
  1281. "description": "Allows manipulating MIME messages",
  1282. "homepage": "https://symfony.com",
  1283. "keywords": [
  1284. "mime",
  1285. "mime-type"
  1286. ],
  1287. "support": {
  1288. "source": "https://github.com/symfony/mime/tree/v5.4.2"
  1289. },
  1290. "funding": [
  1291. {
  1292. "url": "https://symfony.com/sponsor",
  1293. "type": "custom"
  1294. },
  1295. {
  1296. "url": "https://github.com/fabpot",
  1297. "type": "github"
  1298. },
  1299. {
  1300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1301. "type": "tidelift"
  1302. }
  1303. ],
  1304. "time": "2021-12-28T17:15:56+00:00"
  1305. },
  1306. {
  1307. "name": "symfony/polyfill-intl-idn",
  1308. "version": "v1.24.0",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1312. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  1317. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": ">=7.1",
  1322. "symfony/polyfill-intl-normalizer": "^1.10",
  1323. "symfony/polyfill-php72": "^1.10"
  1324. },
  1325. "suggest": {
  1326. "ext-intl": "For best performance"
  1327. },
  1328. "type": "library",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-main": "1.23-dev"
  1332. },
  1333. "thanks": {
  1334. "name": "symfony/polyfill",
  1335. "url": "https://github.com/symfony/polyfill"
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1341. },
  1342. "files": [
  1343. "bootstrap.php"
  1344. ]
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Laurent Bassin",
  1353. "email": "laurent@bassin.info"
  1354. },
  1355. {
  1356. "name": "Trevor Rowbotham",
  1357. "email": "trevor.rowbotham@pm.me"
  1358. },
  1359. {
  1360. "name": "Symfony Community",
  1361. "homepage": "https://symfony.com/contributors"
  1362. }
  1363. ],
  1364. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1365. "homepage": "https://symfony.com",
  1366. "keywords": [
  1367. "compatibility",
  1368. "idn",
  1369. "intl",
  1370. "polyfill",
  1371. "portable",
  1372. "shim"
  1373. ],
  1374. "support": {
  1375. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.24.0"
  1376. },
  1377. "funding": [
  1378. {
  1379. "url": "https://symfony.com/sponsor",
  1380. "type": "custom"
  1381. },
  1382. {
  1383. "url": "https://github.com/fabpot",
  1384. "type": "github"
  1385. },
  1386. {
  1387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1388. "type": "tidelift"
  1389. }
  1390. ],
  1391. "time": "2021-09-14T14:02:44+00:00"
  1392. },
  1393. {
  1394. "name": "symfony/polyfill-intl-normalizer",
  1395. "version": "v1.24.0",
  1396. "source": {
  1397. "type": "git",
  1398. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1399. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  1400. },
  1401. "dist": {
  1402. "type": "zip",
  1403. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  1404. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  1405. "shasum": ""
  1406. },
  1407. "require": {
  1408. "php": ">=7.1"
  1409. },
  1410. "suggest": {
  1411. "ext-intl": "For best performance"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-main": "1.23-dev"
  1417. },
  1418. "thanks": {
  1419. "name": "symfony/polyfill",
  1420. "url": "https://github.com/symfony/polyfill"
  1421. }
  1422. },
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1426. },
  1427. "files": [
  1428. "bootstrap.php"
  1429. ],
  1430. "classmap": [
  1431. "Resources/stubs"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Nicolas Grekas",
  1441. "email": "p@tchwork.com"
  1442. },
  1443. {
  1444. "name": "Symfony Community",
  1445. "homepage": "https://symfony.com/contributors"
  1446. }
  1447. ],
  1448. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1449. "homepage": "https://symfony.com",
  1450. "keywords": [
  1451. "compatibility",
  1452. "intl",
  1453. "normalizer",
  1454. "polyfill",
  1455. "portable",
  1456. "shim"
  1457. ],
  1458. "support": {
  1459. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.24.0"
  1460. },
  1461. "funding": [
  1462. {
  1463. "url": "https://symfony.com/sponsor",
  1464. "type": "custom"
  1465. },
  1466. {
  1467. "url": "https://github.com/fabpot",
  1468. "type": "github"
  1469. },
  1470. {
  1471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1472. "type": "tidelift"
  1473. }
  1474. ],
  1475. "time": "2021-02-19T12:13:01+00:00"
  1476. },
  1477. {
  1478. "name": "symfony/polyfill-mbstring",
  1479. "version": "v1.24.0",
  1480. "source": {
  1481. "type": "git",
  1482. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1483. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  1484. },
  1485. "dist": {
  1486. "type": "zip",
  1487. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1488. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1489. "shasum": ""
  1490. },
  1491. "require": {
  1492. "php": ">=7.1"
  1493. },
  1494. "provide": {
  1495. "ext-mbstring": "*"
  1496. },
  1497. "suggest": {
  1498. "ext-mbstring": "For best performance"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-main": "1.23-dev"
  1504. },
  1505. "thanks": {
  1506. "name": "symfony/polyfill",
  1507. "url": "https://github.com/symfony/polyfill"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "psr-4": {
  1512. "Symfony\\Polyfill\\Mbstring\\": ""
  1513. },
  1514. "files": [
  1515. "bootstrap.php"
  1516. ]
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "MIT"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "Nicolas Grekas",
  1525. "email": "p@tchwork.com"
  1526. },
  1527. {
  1528. "name": "Symfony Community",
  1529. "homepage": "https://symfony.com/contributors"
  1530. }
  1531. ],
  1532. "description": "Symfony polyfill for the Mbstring extension",
  1533. "homepage": "https://symfony.com",
  1534. "keywords": [
  1535. "compatibility",
  1536. "mbstring",
  1537. "polyfill",
  1538. "portable",
  1539. "shim"
  1540. ],
  1541. "support": {
  1542. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  1543. },
  1544. "funding": [
  1545. {
  1546. "url": "https://symfony.com/sponsor",
  1547. "type": "custom"
  1548. },
  1549. {
  1550. "url": "https://github.com/fabpot",
  1551. "type": "github"
  1552. },
  1553. {
  1554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1555. "type": "tidelift"
  1556. }
  1557. ],
  1558. "time": "2021-11-30T18:21:41+00:00"
  1559. },
  1560. {
  1561. "name": "symfony/polyfill-php72",
  1562. "version": "v1.24.0",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/symfony/polyfill-php72.git",
  1566. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  1571. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=7.1"
  1576. },
  1577. "type": "library",
  1578. "extra": {
  1579. "branch-alias": {
  1580. "dev-main": "1.23-dev"
  1581. },
  1582. "thanks": {
  1583. "name": "symfony/polyfill",
  1584. "url": "https://github.com/symfony/polyfill"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Symfony\\Polyfill\\Php72\\": ""
  1590. },
  1591. "files": [
  1592. "bootstrap.php"
  1593. ]
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Nicolas Grekas",
  1602. "email": "p@tchwork.com"
  1603. },
  1604. {
  1605. "name": "Symfony Community",
  1606. "homepage": "https://symfony.com/contributors"
  1607. }
  1608. ],
  1609. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1610. "homepage": "https://symfony.com",
  1611. "keywords": [
  1612. "compatibility",
  1613. "polyfill",
  1614. "portable",
  1615. "shim"
  1616. ],
  1617. "support": {
  1618. "source": "https://github.com/symfony/polyfill-php72/tree/v1.24.0"
  1619. },
  1620. "funding": [
  1621. {
  1622. "url": "https://symfony.com/sponsor",
  1623. "type": "custom"
  1624. },
  1625. {
  1626. "url": "https://github.com/fabpot",
  1627. "type": "github"
  1628. },
  1629. {
  1630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1631. "type": "tidelift"
  1632. }
  1633. ],
  1634. "time": "2021-05-27T09:17:38+00:00"
  1635. },
  1636. {
  1637. "name": "symfony/polyfill-php80",
  1638. "version": "v1.24.0",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/symfony/polyfill-php80.git",
  1642. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
  1647. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
  1648. "shasum": ""
  1649. },
  1650. "require": {
  1651. "php": ">=7.1"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-main": "1.23-dev"
  1657. },
  1658. "thanks": {
  1659. "name": "symfony/polyfill",
  1660. "url": "https://github.com/symfony/polyfill"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Symfony\\Polyfill\\Php80\\": ""
  1666. },
  1667. "files": [
  1668. "bootstrap.php"
  1669. ],
  1670. "classmap": [
  1671. "Resources/stubs"
  1672. ]
  1673. },
  1674. "notification-url": "https://packagist.org/downloads/",
  1675. "license": [
  1676. "MIT"
  1677. ],
  1678. "authors": [
  1679. {
  1680. "name": "Ion Bazan",
  1681. "email": "ion.bazan@gmail.com"
  1682. },
  1683. {
  1684. "name": "Nicolas Grekas",
  1685. "email": "p@tchwork.com"
  1686. },
  1687. {
  1688. "name": "Symfony Community",
  1689. "homepage": "https://symfony.com/contributors"
  1690. }
  1691. ],
  1692. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1693. "homepage": "https://symfony.com",
  1694. "keywords": [
  1695. "compatibility",
  1696. "polyfill",
  1697. "portable",
  1698. "shim"
  1699. ],
  1700. "support": {
  1701. "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
  1702. },
  1703. "funding": [
  1704. {
  1705. "url": "https://symfony.com/sponsor",
  1706. "type": "custom"
  1707. },
  1708. {
  1709. "url": "https://github.com/fabpot",
  1710. "type": "github"
  1711. },
  1712. {
  1713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1714. "type": "tidelift"
  1715. }
  1716. ],
  1717. "time": "2021-09-13T13:58:33+00:00"
  1718. },
  1719. {
  1720. "name": "symfony/security-core",
  1721. "version": "v5.2.14",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/symfony/security-core.git",
  1725. "reference": "4ce2b1e532fb3bb591ad4efa8cc43afc9242a247"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/symfony/security-core/zipball/4ce2b1e532fb3bb591ad4efa8cc43afc9242a247",
  1730. "reference": "4ce2b1e532fb3bb591ad4efa8cc43afc9242a247",
  1731. "shasum": ""
  1732. },
  1733. "require": {
  1734. "php": ">=7.2.5",
  1735. "symfony/deprecation-contracts": "^2.1",
  1736. "symfony/event-dispatcher-contracts": "^1.1|^2",
  1737. "symfony/polyfill-php80": "^1.16",
  1738. "symfony/service-contracts": "^1.1.6|^2"
  1739. },
  1740. "conflict": {
  1741. "symfony/event-dispatcher": "<4.4",
  1742. "symfony/ldap": "<4.4",
  1743. "symfony/security-guard": "<4.4",
  1744. "symfony/validator": "<5.2"
  1745. },
  1746. "require-dev": {
  1747. "psr/container": "^1.0|^2.0",
  1748. "psr/log": "^1|^2|^3",
  1749. "symfony/event-dispatcher": "^4.4|^5.0",
  1750. "symfony/expression-language": "^4.4|^5.0",
  1751. "symfony/http-foundation": "^4.4|^5.0",
  1752. "symfony/ldap": "^4.4|^5.0",
  1753. "symfony/translation": "^4.4|^5.0",
  1754. "symfony/validator": "^5.2"
  1755. },
  1756. "suggest": {
  1757. "psr/container-implementation": "To instantiate the Security class",
  1758. "symfony/event-dispatcher": "",
  1759. "symfony/expression-language": "For using the expression voter",
  1760. "symfony/http-foundation": "",
  1761. "symfony/ldap": "For using LDAP integration",
  1762. "symfony/validator": "For using the user password constraint"
  1763. },
  1764. "type": "library",
  1765. "autoload": {
  1766. "psr-4": {
  1767. "Symfony\\Component\\Security\\Core\\": ""
  1768. },
  1769. "exclude-from-classmap": [
  1770. "/Tests/"
  1771. ]
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Fabien Potencier",
  1780. "email": "fabien@symfony.com"
  1781. },
  1782. {
  1783. "name": "Symfony Community",
  1784. "homepage": "https://symfony.com/contributors"
  1785. }
  1786. ],
  1787. "description": "Symfony Security Component - Core Library",
  1788. "homepage": "https://symfony.com",
  1789. "support": {
  1790. "source": "https://github.com/symfony/security-core/tree/v5.2.14"
  1791. },
  1792. "funding": [
  1793. {
  1794. "url": "https://symfony.com/sponsor",
  1795. "type": "custom"
  1796. },
  1797. {
  1798. "url": "https://github.com/fabpot",
  1799. "type": "github"
  1800. },
  1801. {
  1802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1803. "type": "tidelift"
  1804. }
  1805. ],
  1806. "time": "2021-07-29T06:36:20+00:00"
  1807. },
  1808. {
  1809. "name": "symfony/security-csrf",
  1810. "version": "v4.4.27",
  1811. "source": {
  1812. "type": "git",
  1813. "url": "https://github.com/symfony/security-csrf.git",
  1814. "reference": "e5bba6497d2f1178e23615d5ca01933a29b65a45"
  1815. },
  1816. "dist": {
  1817. "type": "zip",
  1818. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e5bba6497d2f1178e23615d5ca01933a29b65a45",
  1819. "reference": "e5bba6497d2f1178e23615d5ca01933a29b65a45",
  1820. "shasum": ""
  1821. },
  1822. "require": {
  1823. "php": ">=7.1.3",
  1824. "symfony/polyfill-php80": "^1.16",
  1825. "symfony/security-core": "^3.4|^4.0|^5.0"
  1826. },
  1827. "conflict": {
  1828. "symfony/http-foundation": "<3.4"
  1829. },
  1830. "require-dev": {
  1831. "symfony/http-foundation": "^3.4|^4.0|^5.0"
  1832. },
  1833. "suggest": {
  1834. "symfony/http-foundation": "For using the class SessionTokenStorage."
  1835. },
  1836. "type": "library",
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Symfony\\Component\\Security\\Csrf\\": ""
  1840. },
  1841. "exclude-from-classmap": [
  1842. "/Tests/"
  1843. ]
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "authors": [
  1850. {
  1851. "name": "Fabien Potencier",
  1852. "email": "fabien@symfony.com"
  1853. },
  1854. {
  1855. "name": "Symfony Community",
  1856. "homepage": "https://symfony.com/contributors"
  1857. }
  1858. ],
  1859. "description": "Symfony Security Component - CSRF Library",
  1860. "homepage": "https://symfony.com",
  1861. "support": {
  1862. "source": "https://github.com/symfony/security-csrf/tree/v4.4.27"
  1863. },
  1864. "funding": [
  1865. {
  1866. "url": "https://symfony.com/sponsor",
  1867. "type": "custom"
  1868. },
  1869. {
  1870. "url": "https://github.com/fabpot",
  1871. "type": "github"
  1872. },
  1873. {
  1874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1875. "type": "tidelift"
  1876. }
  1877. ],
  1878. "time": "2021-07-21T12:19:41+00:00"
  1879. },
  1880. {
  1881. "name": "symfony/service-contracts",
  1882. "version": "v2.5.0",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://github.com/symfony/service-contracts.git",
  1886. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  1891. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  1892. "shasum": ""
  1893. },
  1894. "require": {
  1895. "php": ">=7.2.5",
  1896. "psr/container": "^1.1",
  1897. "symfony/deprecation-contracts": "^2.1"
  1898. },
  1899. "conflict": {
  1900. "ext-psr": "<1.1|>=2"
  1901. },
  1902. "suggest": {
  1903. "symfony/service-implementation": ""
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-main": "2.5-dev"
  1909. },
  1910. "thanks": {
  1911. "name": "symfony/contracts",
  1912. "url": "https://github.com/symfony/contracts"
  1913. }
  1914. },
  1915. "autoload": {
  1916. "psr-4": {
  1917. "Symfony\\Contracts\\Service\\": ""
  1918. }
  1919. },
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "MIT"
  1923. ],
  1924. "authors": [
  1925. {
  1926. "name": "Nicolas Grekas",
  1927. "email": "p@tchwork.com"
  1928. },
  1929. {
  1930. "name": "Symfony Community",
  1931. "homepage": "https://symfony.com/contributors"
  1932. }
  1933. ],
  1934. "description": "Generic abstractions related to writing services",
  1935. "homepage": "https://symfony.com",
  1936. "keywords": [
  1937. "abstractions",
  1938. "contracts",
  1939. "decoupling",
  1940. "interfaces",
  1941. "interoperability",
  1942. "standards"
  1943. ],
  1944. "support": {
  1945. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  1946. },
  1947. "funding": [
  1948. {
  1949. "url": "https://symfony.com/sponsor",
  1950. "type": "custom"
  1951. },
  1952. {
  1953. "url": "https://github.com/fabpot",
  1954. "type": "github"
  1955. },
  1956. {
  1957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1958. "type": "tidelift"
  1959. }
  1960. ],
  1961. "time": "2021-11-04T16:48:04+00:00"
  1962. }
  1963. ],
  1964. "packages-dev": [
  1965. {
  1966. "name": "composer/package-versions-deprecated",
  1967. "version": "1.11.99.5",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/composer/package-versions-deprecated.git",
  1971. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  1976. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  1977. "shasum": ""
  1978. },
  1979. "require": {
  1980. "composer-plugin-api": "^1.1.0 || ^2.0",
  1981. "php": "^7 || ^8"
  1982. },
  1983. "replace": {
  1984. "ocramius/package-versions": "1.11.99"
  1985. },
  1986. "require-dev": {
  1987. "composer/composer": "^1.9.3 || ^2.0@dev",
  1988. "ext-zip": "^1.13",
  1989. "phpunit/phpunit": "^6.5 || ^7"
  1990. },
  1991. "type": "composer-plugin",
  1992. "extra": {
  1993. "class": "PackageVersions\\Installer",
  1994. "branch-alias": {
  1995. "dev-master": "1.x-dev"
  1996. }
  1997. },
  1998. "autoload": {
  1999. "psr-4": {
  2000. "PackageVersions\\": "src/PackageVersions"
  2001. }
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "MIT"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "Marco Pivetta",
  2010. "email": "ocramius@gmail.com"
  2011. },
  2012. {
  2013. "name": "Jordi Boggiano",
  2014. "email": "j.boggiano@seld.be"
  2015. }
  2016. ],
  2017. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2018. "support": {
  2019. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  2020. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  2021. },
  2022. "funding": [
  2023. {
  2024. "url": "https://packagist.com",
  2025. "type": "custom"
  2026. },
  2027. {
  2028. "url": "https://github.com/composer",
  2029. "type": "github"
  2030. },
  2031. {
  2032. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2033. "type": "tidelift"
  2034. }
  2035. ],
  2036. "time": "2022-01-17T14:14:24+00:00"
  2037. },
  2038. {
  2039. "name": "composer/xdebug-handler",
  2040. "version": "1.4.6",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/composer/xdebug-handler.git",
  2044. "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
  2049. "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": "^5.3.2 || ^7.0 || ^8.0",
  2054. "psr/log": "^1.0"
  2055. },
  2056. "require-dev": {
  2057. "phpstan/phpstan": "^0.12.55",
  2058. "symfony/phpunit-bridge": "^4.2 || ^5"
  2059. },
  2060. "type": "library",
  2061. "autoload": {
  2062. "psr-4": {
  2063. "Composer\\XdebugHandler\\": "src"
  2064. }
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "John Stevenson",
  2073. "email": "john-stevenson@blueyonder.co.uk"
  2074. }
  2075. ],
  2076. "description": "Restarts a process without Xdebug.",
  2077. "keywords": [
  2078. "Xdebug",
  2079. "performance"
  2080. ],
  2081. "support": {
  2082. "irc": "irc://irc.freenode.org/composer",
  2083. "issues": "https://github.com/composer/xdebug-handler/issues",
  2084. "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
  2085. },
  2086. "funding": [
  2087. {
  2088. "url": "https://packagist.com",
  2089. "type": "custom"
  2090. },
  2091. {
  2092. "url": "https://github.com/composer",
  2093. "type": "github"
  2094. },
  2095. {
  2096. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2097. "type": "tidelift"
  2098. }
  2099. ],
  2100. "time": "2021-03-25T17:01:18+00:00"
  2101. },
  2102. {
  2103. "name": "doctrine/instantiator",
  2104. "version": "1.4.0",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/doctrine/instantiator.git",
  2108. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  2113. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  2114. "shasum": ""
  2115. },
  2116. "require": {
  2117. "php": "^7.1 || ^8.0"
  2118. },
  2119. "require-dev": {
  2120. "doctrine/coding-standard": "^8.0",
  2121. "ext-pdo": "*",
  2122. "ext-phar": "*",
  2123. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  2124. "phpstan/phpstan": "^0.12",
  2125. "phpstan/phpstan-phpunit": "^0.12",
  2126. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  2127. },
  2128. "type": "library",
  2129. "autoload": {
  2130. "psr-4": {
  2131. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2132. }
  2133. },
  2134. "notification-url": "https://packagist.org/downloads/",
  2135. "license": [
  2136. "MIT"
  2137. ],
  2138. "authors": [
  2139. {
  2140. "name": "Marco Pivetta",
  2141. "email": "ocramius@gmail.com",
  2142. "homepage": "https://ocramius.github.io/"
  2143. }
  2144. ],
  2145. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2146. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2147. "keywords": [
  2148. "constructor",
  2149. "instantiate"
  2150. ],
  2151. "support": {
  2152. "issues": "https://github.com/doctrine/instantiator/issues",
  2153. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  2154. },
  2155. "funding": [
  2156. {
  2157. "url": "https://www.doctrine-project.org/sponsorship.html",
  2158. "type": "custom"
  2159. },
  2160. {
  2161. "url": "https://www.patreon.com/phpdoctrine",
  2162. "type": "patreon"
  2163. },
  2164. {
  2165. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2166. "type": "tidelift"
  2167. }
  2168. ],
  2169. "time": "2020-11-10T18:47:58+00:00"
  2170. },
  2171. {
  2172. "name": "jean85/pretty-package-versions",
  2173. "version": "1.6.0",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2177. "reference": "1e0104b46f045868f11942aea058cd7186d6c303"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/1e0104b46f045868f11942aea058cd7186d6c303",
  2182. "reference": "1e0104b46f045868f11942aea058cd7186d6c303",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "composer/package-versions-deprecated": "^1.8.0",
  2187. "php": "^7.0|^8.0"
  2188. },
  2189. "require-dev": {
  2190. "phpunit/phpunit": "^6.0|^8.5|^9.2"
  2191. },
  2192. "type": "library",
  2193. "extra": {
  2194. "branch-alias": {
  2195. "dev-master": "1.x-dev"
  2196. }
  2197. },
  2198. "autoload": {
  2199. "psr-4": {
  2200. "Jean85\\": "src/"
  2201. }
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Alessandro Lai",
  2210. "email": "alessandro.lai85@gmail.com"
  2211. }
  2212. ],
  2213. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  2214. "keywords": [
  2215. "composer",
  2216. "package",
  2217. "release",
  2218. "versions"
  2219. ],
  2220. "support": {
  2221. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  2222. "source": "https://github.com/Jean85/pretty-package-versions/tree/1.6.0"
  2223. },
  2224. "time": "2021-02-04T16:20:16+00:00"
  2225. },
  2226. {
  2227. "name": "league/flysystem-memory",
  2228. "version": "1.0.2",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/thephpleague/flysystem-memory.git",
  2232. "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/thephpleague/flysystem-memory/zipball/d0e87477c32e29f999b4de05e64c1adcddb51757",
  2237. "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "league/flysystem": "~1.0"
  2242. },
  2243. "require-dev": {
  2244. "phpunit/phpunit": "^5.7.10"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-master": "1.0-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "League\\Flysystem\\Memory\\": "src/"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Chris Leppanen",
  2264. "email": "chris.leppanen@gmail.com",
  2265. "role": "Developer"
  2266. }
  2267. ],
  2268. "description": "An in-memory adapter for Flysystem.",
  2269. "homepage": "https://github.com/thephpleague/flysystem-memory",
  2270. "keywords": [
  2271. "Flysystem",
  2272. "adapter",
  2273. "memory"
  2274. ],
  2275. "support": {
  2276. "issues": "https://github.com/thephpleague/flysystem-memory/issues",
  2277. "source": "https://github.com/thephpleague/flysystem-memory/tree/1.0.2"
  2278. },
  2279. "time": "2019-05-30T21:34:13+00:00"
  2280. },
  2281. {
  2282. "name": "myclabs/deep-copy",
  2283. "version": "1.10.2",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://github.com/myclabs/DeepCopy.git",
  2287. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  2292. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  2293. "shasum": ""
  2294. },
  2295. "require": {
  2296. "php": "^7.1 || ^8.0"
  2297. },
  2298. "replace": {
  2299. "myclabs/deep-copy": "self.version"
  2300. },
  2301. "require-dev": {
  2302. "doctrine/collections": "^1.0",
  2303. "doctrine/common": "^2.6",
  2304. "phpunit/phpunit": "^7.1"
  2305. },
  2306. "type": "library",
  2307. "autoload": {
  2308. "psr-4": {
  2309. "DeepCopy\\": "src/DeepCopy/"
  2310. },
  2311. "files": [
  2312. "src/DeepCopy/deep_copy.php"
  2313. ]
  2314. },
  2315. "notification-url": "https://packagist.org/downloads/",
  2316. "license": [
  2317. "MIT"
  2318. ],
  2319. "description": "Create deep copies (clones) of your objects",
  2320. "keywords": [
  2321. "clone",
  2322. "copy",
  2323. "duplicate",
  2324. "object",
  2325. "object graph"
  2326. ],
  2327. "support": {
  2328. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2329. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  2330. },
  2331. "funding": [
  2332. {
  2333. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2334. "type": "tidelift"
  2335. }
  2336. ],
  2337. "time": "2020-11-13T09:40:50+00:00"
  2338. },
  2339. {
  2340. "name": "nette/bootstrap",
  2341. "version": "v3.1.2",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/nette/bootstrap.git",
  2345. "reference": "3ab4912a08af0c16d541c3709935c3478b5ee090"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/nette/bootstrap/zipball/3ab4912a08af0c16d541c3709935c3478b5ee090",
  2350. "reference": "3ab4912a08af0c16d541c3709935c3478b5ee090",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "nette/di": "^3.0.5",
  2355. "nette/utils": "^3.2.1",
  2356. "php": ">=7.2 <8.2"
  2357. },
  2358. "conflict": {
  2359. "tracy/tracy": "<2.6"
  2360. },
  2361. "require-dev": {
  2362. "latte/latte": "^2.8",
  2363. "nette/application": "^3.1",
  2364. "nette/caching": "^3.0",
  2365. "nette/database": "^3.0",
  2366. "nette/forms": "^3.0",
  2367. "nette/http": "^3.0",
  2368. "nette/mail": "^3.0",
  2369. "nette/robot-loader": "^3.0",
  2370. "nette/safe-stream": "^2.2",
  2371. "nette/security": "^3.0",
  2372. "nette/tester": "^2.0",
  2373. "phpstan/phpstan-nette": "^0.12",
  2374. "tracy/tracy": "^2.6"
  2375. },
  2376. "suggest": {
  2377. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  2378. "tracy/tracy": "to use Configurator::enableTracy()"
  2379. },
  2380. "type": "library",
  2381. "extra": {
  2382. "branch-alias": {
  2383. "dev-master": "3.1-dev"
  2384. }
  2385. },
  2386. "autoload": {
  2387. "classmap": [
  2388. "src/"
  2389. ]
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "BSD-3-Clause",
  2394. "GPL-2.0-only",
  2395. "GPL-3.0-only"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "David Grudl",
  2400. "homepage": "https://davidgrudl.com"
  2401. },
  2402. {
  2403. "name": "Nette Community",
  2404. "homepage": "https://nette.org/contributors"
  2405. }
  2406. ],
  2407. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  2408. "homepage": "https://nette.org",
  2409. "keywords": [
  2410. "bootstrapping",
  2411. "configurator",
  2412. "nette"
  2413. ],
  2414. "support": {
  2415. "issues": "https://github.com/nette/bootstrap/issues",
  2416. "source": "https://github.com/nette/bootstrap/tree/v3.1.2"
  2417. },
  2418. "time": "2021-11-24T16:51:46+00:00"
  2419. },
  2420. {
  2421. "name": "nette/di",
  2422. "version": "v3.0.12",
  2423. "source": {
  2424. "type": "git",
  2425. "url": "https://github.com/nette/di.git",
  2426. "reference": "11c236b9f7bbfc5a95e7b24742ad8847936feeb5"
  2427. },
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://api.github.com/repos/nette/di/zipball/11c236b9f7bbfc5a95e7b24742ad8847936feeb5",
  2431. "reference": "11c236b9f7bbfc5a95e7b24742ad8847936feeb5",
  2432. "shasum": ""
  2433. },
  2434. "require": {
  2435. "ext-tokenizer": "*",
  2436. "nette/neon": "^3.3",
  2437. "nette/php-generator": "^3.5.4",
  2438. "nette/robot-loader": "^3.2",
  2439. "nette/schema": "^1.1",
  2440. "nette/utils": "^3.1.6",
  2441. "php": ">=7.1 <8.2"
  2442. },
  2443. "conflict": {
  2444. "nette/bootstrap": "<3.0"
  2445. },
  2446. "require-dev": {
  2447. "nette/tester": "^2.2",
  2448. "phpstan/phpstan": "^0.12",
  2449. "tracy/tracy": "^2.3"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-master": "3.0-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "classmap": [
  2459. "src/"
  2460. ]
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "BSD-3-Clause",
  2465. "GPL-2.0-only",
  2466. "GPL-3.0-only"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "David Grudl",
  2471. "homepage": "https://davidgrudl.com"
  2472. },
  2473. {
  2474. "name": "Nette Community",
  2475. "homepage": "https://nette.org/contributors"
  2476. }
  2477. ],
  2478. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP features.",
  2479. "homepage": "https://nette.org",
  2480. "keywords": [
  2481. "compiled",
  2482. "di",
  2483. "dic",
  2484. "factory",
  2485. "ioc",
  2486. "nette",
  2487. "static"
  2488. ],
  2489. "support": {
  2490. "issues": "https://github.com/nette/di/issues",
  2491. "source": "https://github.com/nette/di/tree/v3.0.12"
  2492. },
  2493. "time": "2021-12-15T21:05:11+00:00"
  2494. },
  2495. {
  2496. "name": "nette/finder",
  2497. "version": "v2.5.3",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/nette/finder.git",
  2501. "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/nette/finder/zipball/64dc25b7929b731e72a1bc84a9e57727f5d5d3e8",
  2506. "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "nette/utils": "^2.4 || ^3.0",
  2511. "php": ">=7.1"
  2512. },
  2513. "conflict": {
  2514. "nette/nette": "<2.2"
  2515. },
  2516. "require-dev": {
  2517. "nette/tester": "^2.0",
  2518. "phpstan/phpstan": "^0.12",
  2519. "tracy/tracy": "^2.3"
  2520. },
  2521. "type": "library",
  2522. "extra": {
  2523. "branch-alias": {
  2524. "dev-master": "2.5-dev"
  2525. }
  2526. },
  2527. "autoload": {
  2528. "classmap": [
  2529. "src/"
  2530. ]
  2531. },
  2532. "notification-url": "https://packagist.org/downloads/",
  2533. "license": [
  2534. "BSD-3-Clause",
  2535. "GPL-2.0-only",
  2536. "GPL-3.0-only"
  2537. ],
  2538. "authors": [
  2539. {
  2540. "name": "David Grudl",
  2541. "homepage": "https://davidgrudl.com"
  2542. },
  2543. {
  2544. "name": "Nette Community",
  2545. "homepage": "https://nette.org/contributors"
  2546. }
  2547. ],
  2548. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  2549. "homepage": "https://nette.org",
  2550. "keywords": [
  2551. "filesystem",
  2552. "glob",
  2553. "iterator",
  2554. "nette"
  2555. ],
  2556. "support": {
  2557. "issues": "https://github.com/nette/finder/issues",
  2558. "source": "https://github.com/nette/finder/tree/v2.5.3"
  2559. },
  2560. "time": "2021-12-12T17:43:24+00:00"
  2561. },
  2562. {
  2563. "name": "nette/neon",
  2564. "version": "v3.3.2",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/nette/neon.git",
  2568. "reference": "54b287d8c2cdbe577b02e28ca1713e275b05ece2"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/nette/neon/zipball/54b287d8c2cdbe577b02e28ca1713e275b05ece2",
  2573. "reference": "54b287d8c2cdbe577b02e28ca1713e275b05ece2",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "ext-json": "*",
  2578. "php": ">=7.1"
  2579. },
  2580. "require-dev": {
  2581. "nette/tester": "^2.0",
  2582. "phpstan/phpstan": "^0.12",
  2583. "tracy/tracy": "^2.7"
  2584. },
  2585. "bin": [
  2586. "bin/neon-lint"
  2587. ],
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "3.3-dev"
  2592. }
  2593. },
  2594. "autoload": {
  2595. "classmap": [
  2596. "src/"
  2597. ]
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "BSD-3-Clause",
  2602. "GPL-2.0-only",
  2603. "GPL-3.0-only"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "David Grudl",
  2608. "homepage": "https://davidgrudl.com"
  2609. },
  2610. {
  2611. "name": "Nette Community",
  2612. "homepage": "https://nette.org/contributors"
  2613. }
  2614. ],
  2615. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  2616. "homepage": "https://ne-on.org",
  2617. "keywords": [
  2618. "export",
  2619. "import",
  2620. "neon",
  2621. "nette",
  2622. "yaml"
  2623. ],
  2624. "support": {
  2625. "issues": "https://github.com/nette/neon/issues",
  2626. "source": "https://github.com/nette/neon/tree/v3.3.2"
  2627. },
  2628. "time": "2021-11-25T15:57:41+00:00"
  2629. },
  2630. {
  2631. "name": "nette/php-generator",
  2632. "version": "v3.6.5",
  2633. "source": {
  2634. "type": "git",
  2635. "url": "https://github.com/nette/php-generator.git",
  2636. "reference": "9370403f9d9c25b51c4596ded1fbfe70347f7c82"
  2637. },
  2638. "dist": {
  2639. "type": "zip",
  2640. "url": "https://api.github.com/repos/nette/php-generator/zipball/9370403f9d9c25b51c4596ded1fbfe70347f7c82",
  2641. "reference": "9370403f9d9c25b51c4596ded1fbfe70347f7c82",
  2642. "shasum": ""
  2643. },
  2644. "require": {
  2645. "nette/utils": "^3.1.2",
  2646. "php": ">=7.2 <8.2"
  2647. },
  2648. "require-dev": {
  2649. "nette/tester": "^2.4",
  2650. "nikic/php-parser": "^4.13",
  2651. "phpstan/phpstan": "^0.12",
  2652. "tracy/tracy": "^2.8"
  2653. },
  2654. "suggest": {
  2655. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  2656. },
  2657. "type": "library",
  2658. "extra": {
  2659. "branch-alias": {
  2660. "dev-master": "3.6-dev"
  2661. }
  2662. },
  2663. "autoload": {
  2664. "classmap": [
  2665. "src/"
  2666. ]
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "BSD-3-Clause",
  2671. "GPL-2.0-only",
  2672. "GPL-3.0-only"
  2673. ],
  2674. "authors": [
  2675. {
  2676. "name": "David Grudl",
  2677. "homepage": "https://davidgrudl.com"
  2678. },
  2679. {
  2680. "name": "Nette Community",
  2681. "homepage": "https://nette.org/contributors"
  2682. }
  2683. ],
  2684. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  2685. "homepage": "https://nette.org",
  2686. "keywords": [
  2687. "code",
  2688. "nette",
  2689. "php",
  2690. "scaffolding"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/nette/php-generator/issues",
  2694. "source": "https://github.com/nette/php-generator/tree/v3.6.5"
  2695. },
  2696. "time": "2021-11-24T16:23:44+00:00"
  2697. },
  2698. {
  2699. "name": "nette/robot-loader",
  2700. "version": "v3.4.1",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://github.com/nette/robot-loader.git",
  2704. "reference": "e2adc334cb958164c050f485d99c44c430f51fe2"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://api.github.com/repos/nette/robot-loader/zipball/e2adc334cb958164c050f485d99c44c430f51fe2",
  2709. "reference": "e2adc334cb958164c050f485d99c44c430f51fe2",
  2710. "shasum": ""
  2711. },
  2712. "require": {
  2713. "ext-tokenizer": "*",
  2714. "nette/finder": "^2.5 || ^3.0",
  2715. "nette/utils": "^3.0",
  2716. "php": ">=7.1"
  2717. },
  2718. "require-dev": {
  2719. "nette/tester": "^2.0",
  2720. "phpstan/phpstan": "^0.12",
  2721. "tracy/tracy": "^2.3"
  2722. },
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-master": "3.4-dev"
  2727. }
  2728. },
  2729. "autoload": {
  2730. "classmap": [
  2731. "src/"
  2732. ]
  2733. },
  2734. "notification-url": "https://packagist.org/downloads/",
  2735. "license": [
  2736. "BSD-3-Clause",
  2737. "GPL-2.0-only",
  2738. "GPL-3.0-only"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "David Grudl",
  2743. "homepage": "https://davidgrudl.com"
  2744. },
  2745. {
  2746. "name": "Nette Community",
  2747. "homepage": "https://nette.org/contributors"
  2748. }
  2749. ],
  2750. "description": "🍀 Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  2751. "homepage": "https://nette.org",
  2752. "keywords": [
  2753. "autoload",
  2754. "class",
  2755. "interface",
  2756. "nette",
  2757. "trait"
  2758. ],
  2759. "support": {
  2760. "issues": "https://github.com/nette/robot-loader/issues",
  2761. "source": "https://github.com/nette/robot-loader/tree/v3.4.1"
  2762. },
  2763. "time": "2021-08-25T15:53:54+00:00"
  2764. },
  2765. {
  2766. "name": "nette/schema",
  2767. "version": "v1.2.2",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/nette/schema.git",
  2771. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2776. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  2777. "shasum": ""
  2778. },
  2779. "require": {
  2780. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2781. "php": ">=7.1 <8.2"
  2782. },
  2783. "require-dev": {
  2784. "nette/tester": "^2.3 || ^2.4",
  2785. "phpstan/phpstan-nette": "^0.12",
  2786. "tracy/tracy": "^2.7"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "1.2-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "classmap": [
  2796. "src/"
  2797. ]
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "BSD-3-Clause",
  2802. "GPL-2.0-only",
  2803. "GPL-3.0-only"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "David Grudl",
  2808. "homepage": "https://davidgrudl.com"
  2809. },
  2810. {
  2811. "name": "Nette Community",
  2812. "homepage": "https://nette.org/contributors"
  2813. }
  2814. ],
  2815. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2816. "homepage": "https://nette.org",
  2817. "keywords": [
  2818. "config",
  2819. "nette"
  2820. ],
  2821. "support": {
  2822. "issues": "https://github.com/nette/schema/issues",
  2823. "source": "https://github.com/nette/schema/tree/v1.2.2"
  2824. },
  2825. "time": "2021-10-15T11:40:02+00:00"
  2826. },
  2827. {
  2828. "name": "nette/utils",
  2829. "version": "v3.2.7",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/nette/utils.git",
  2833. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2838. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2839. "shasum": ""
  2840. },
  2841. "require": {
  2842. "php": ">=7.2 <8.2"
  2843. },
  2844. "conflict": {
  2845. "nette/di": "<3.0.6"
  2846. },
  2847. "require-dev": {
  2848. "nette/tester": "~2.0",
  2849. "phpstan/phpstan": "^1.0",
  2850. "tracy/tracy": "^2.3"
  2851. },
  2852. "suggest": {
  2853. "ext-gd": "to use Image",
  2854. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2855. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2856. "ext-json": "to use Nette\\Utils\\Json",
  2857. "ext-mbstring": "to use Strings::lower() etc...",
  2858. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2859. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2860. },
  2861. "type": "library",
  2862. "extra": {
  2863. "branch-alias": {
  2864. "dev-master": "3.2-dev"
  2865. }
  2866. },
  2867. "autoload": {
  2868. "classmap": [
  2869. "src/"
  2870. ]
  2871. },
  2872. "notification-url": "https://packagist.org/downloads/",
  2873. "license": [
  2874. "BSD-3-Clause",
  2875. "GPL-2.0-only",
  2876. "GPL-3.0-only"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "David Grudl",
  2881. "homepage": "https://davidgrudl.com"
  2882. },
  2883. {
  2884. "name": "Nette Community",
  2885. "homepage": "https://nette.org/contributors"
  2886. }
  2887. ],
  2888. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2889. "homepage": "https://nette.org",
  2890. "keywords": [
  2891. "array",
  2892. "core",
  2893. "datetime",
  2894. "images",
  2895. "json",
  2896. "nette",
  2897. "paginator",
  2898. "password",
  2899. "slugify",
  2900. "string",
  2901. "unicode",
  2902. "utf-8",
  2903. "utility",
  2904. "validation"
  2905. ],
  2906. "support": {
  2907. "issues": "https://github.com/nette/utils/issues",
  2908. "source": "https://github.com/nette/utils/tree/v3.2.7"
  2909. },
  2910. "time": "2022-01-24T11:29:14+00:00"
  2911. },
  2912. {
  2913. "name": "nikic/php-parser",
  2914. "version": "v4.13.2",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/nikic/PHP-Parser.git",
  2918. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  2923. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "ext-tokenizer": "*",
  2928. "php": ">=7.0"
  2929. },
  2930. "require-dev": {
  2931. "ircmaxell/php-yacc": "^0.0.7",
  2932. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2933. },
  2934. "bin": [
  2935. "bin/php-parse"
  2936. ],
  2937. "type": "library",
  2938. "extra": {
  2939. "branch-alias": {
  2940. "dev-master": "4.9-dev"
  2941. }
  2942. },
  2943. "autoload": {
  2944. "psr-4": {
  2945. "PhpParser\\": "lib/PhpParser"
  2946. }
  2947. },
  2948. "notification-url": "https://packagist.org/downloads/",
  2949. "license": [
  2950. "BSD-3-Clause"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Nikita Popov"
  2955. }
  2956. ],
  2957. "description": "A PHP parser written in PHP",
  2958. "keywords": [
  2959. "parser",
  2960. "php"
  2961. ],
  2962. "support": {
  2963. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2964. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  2965. },
  2966. "time": "2021-11-30T19:35:32+00:00"
  2967. },
  2968. {
  2969. "name": "phar-io/manifest",
  2970. "version": "2.0.3",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/phar-io/manifest.git",
  2974. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  2979. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "ext-dom": "*",
  2984. "ext-phar": "*",
  2985. "ext-xmlwriter": "*",
  2986. "phar-io/version": "^3.0.1",
  2987. "php": "^7.2 || ^8.0"
  2988. },
  2989. "type": "library",
  2990. "extra": {
  2991. "branch-alias": {
  2992. "dev-master": "2.0.x-dev"
  2993. }
  2994. },
  2995. "autoload": {
  2996. "classmap": [
  2997. "src/"
  2998. ]
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "BSD-3-Clause"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Arne Blankerts",
  3007. "email": "arne@blankerts.de",
  3008. "role": "Developer"
  3009. },
  3010. {
  3011. "name": "Sebastian Heuer",
  3012. "email": "sebastian@phpeople.de",
  3013. "role": "Developer"
  3014. },
  3015. {
  3016. "name": "Sebastian Bergmann",
  3017. "email": "sebastian@phpunit.de",
  3018. "role": "Developer"
  3019. }
  3020. ],
  3021. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3022. "support": {
  3023. "issues": "https://github.com/phar-io/manifest/issues",
  3024. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  3025. },
  3026. "time": "2021-07-20T11:28:43+00:00"
  3027. },
  3028. {
  3029. "name": "phar-io/version",
  3030. "version": "3.1.0",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/phar-io/version.git",
  3034. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  3039. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  3040. "shasum": ""
  3041. },
  3042. "require": {
  3043. "php": "^7.2 || ^8.0"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "classmap": [
  3048. "src/"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "BSD-3-Clause"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Arne Blankerts",
  3058. "email": "arne@blankerts.de",
  3059. "role": "Developer"
  3060. },
  3061. {
  3062. "name": "Sebastian Heuer",
  3063. "email": "sebastian@phpeople.de",
  3064. "role": "Developer"
  3065. },
  3066. {
  3067. "name": "Sebastian Bergmann",
  3068. "email": "sebastian@phpunit.de",
  3069. "role": "Developer"
  3070. }
  3071. ],
  3072. "description": "Library for handling version information and constraints",
  3073. "support": {
  3074. "issues": "https://github.com/phar-io/version/issues",
  3075. "source": "https://github.com/phar-io/version/tree/3.1.0"
  3076. },
  3077. "time": "2021-02-23T14:00:09+00:00"
  3078. },
  3079. {
  3080. "name": "phpdocumentor/reflection-common",
  3081. "version": "2.2.0",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3085. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3090. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3091. "shasum": ""
  3092. },
  3093. "require": {
  3094. "php": "^7.2 || ^8.0"
  3095. },
  3096. "type": "library",
  3097. "extra": {
  3098. "branch-alias": {
  3099. "dev-2.x": "2.x-dev"
  3100. }
  3101. },
  3102. "autoload": {
  3103. "psr-4": {
  3104. "phpDocumentor\\Reflection\\": "src/"
  3105. }
  3106. },
  3107. "notification-url": "https://packagist.org/downloads/",
  3108. "license": [
  3109. "MIT"
  3110. ],
  3111. "authors": [
  3112. {
  3113. "name": "Jaap van Otterdijk",
  3114. "email": "opensource@ijaap.nl"
  3115. }
  3116. ],
  3117. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3118. "homepage": "http://www.phpdoc.org",
  3119. "keywords": [
  3120. "FQSEN",
  3121. "phpDocumentor",
  3122. "phpdoc",
  3123. "reflection",
  3124. "static analysis"
  3125. ],
  3126. "support": {
  3127. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3128. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3129. },
  3130. "time": "2020-06-27T09:03:43+00:00"
  3131. },
  3132. {
  3133. "name": "phpdocumentor/reflection-docblock",
  3134. "version": "5.1.0",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3138. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  3143. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "ext-filter": "^7.1",
  3148. "php": "^7.2",
  3149. "phpdocumentor/reflection-common": "^2.0",
  3150. "phpdocumentor/type-resolver": "^1.0",
  3151. "webmozart/assert": "^1"
  3152. },
  3153. "require-dev": {
  3154. "doctrine/instantiator": "^1",
  3155. "mockery/mockery": "^1"
  3156. },
  3157. "type": "library",
  3158. "extra": {
  3159. "branch-alias": {
  3160. "dev-master": "5.x-dev"
  3161. }
  3162. },
  3163. "autoload": {
  3164. "psr-4": {
  3165. "phpDocumentor\\Reflection\\": "src"
  3166. }
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "authors": [
  3173. {
  3174. "name": "Mike van Riel",
  3175. "email": "me@mikevanriel.com"
  3176. },
  3177. {
  3178. "name": "Jaap van Otterdijk",
  3179. "email": "account@ijaap.nl"
  3180. }
  3181. ],
  3182. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3183. "support": {
  3184. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3185. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.1.0"
  3186. },
  3187. "time": "2020-02-22T12:28:44+00:00"
  3188. },
  3189. {
  3190. "name": "phpdocumentor/type-resolver",
  3191. "version": "1.6.0",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3195. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  3200. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "php": "^7.2 || ^8.0",
  3205. "phpdocumentor/reflection-common": "^2.0"
  3206. },
  3207. "require-dev": {
  3208. "ext-tokenizer": "*",
  3209. "psalm/phar": "^4.8"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-1.x": "1.x-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "phpDocumentor\\Reflection\\": "src"
  3220. }
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "Mike van Riel",
  3229. "email": "me@mikevanriel.com"
  3230. }
  3231. ],
  3232. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3233. "support": {
  3234. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3235. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  3236. },
  3237. "time": "2022-01-04T19:58:01+00:00"
  3238. },
  3239. {
  3240. "name": "phpspec/prophecy",
  3241. "version": "1.11.1",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://github.com/phpspec/prophecy.git",
  3245. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  3250. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  3251. "shasum": ""
  3252. },
  3253. "require": {
  3254. "doctrine/instantiator": "^1.2",
  3255. "php": "^7.2",
  3256. "phpdocumentor/reflection-docblock": "^5.0",
  3257. "sebastian/comparator": "^3.0 || ^4.0",
  3258. "sebastian/recursion-context": "^3.0 || ^4.0"
  3259. },
  3260. "require-dev": {
  3261. "phpspec/phpspec": "^6.0",
  3262. "phpunit/phpunit": "^8.0"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "1.11.x-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Prophecy\\": "src/Prophecy"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Konstantin Kudryashov",
  3282. "email": "ever.zet@gmail.com",
  3283. "homepage": "http://everzet.com"
  3284. },
  3285. {
  3286. "name": "Marcello Duarte",
  3287. "email": "marcello.duarte@gmail.com"
  3288. }
  3289. ],
  3290. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3291. "homepage": "https://github.com/phpspec/prophecy",
  3292. "keywords": [
  3293. "Double",
  3294. "Dummy",
  3295. "fake",
  3296. "mock",
  3297. "spy",
  3298. "stub"
  3299. ],
  3300. "support": {
  3301. "issues": "https://github.com/phpspec/prophecy/issues",
  3302. "source": "https://github.com/phpspec/prophecy/tree/master"
  3303. },
  3304. "time": "2020-07-08T12:44:21+00:00"
  3305. },
  3306. {
  3307. "name": "phpstan/phpdoc-parser",
  3308. "version": "0.3.5",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3312. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  3317. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  3318. "shasum": ""
  3319. },
  3320. "require": {
  3321. "php": "~7.1"
  3322. },
  3323. "require-dev": {
  3324. "consistence/coding-standard": "^3.5",
  3325. "jakub-onderka/php-parallel-lint": "^0.9.2",
  3326. "phing/phing": "^2.16.0",
  3327. "phpstan/phpstan": "^0.10",
  3328. "phpunit/phpunit": "^6.3",
  3329. "slevomat/coding-standard": "^4.7.2",
  3330. "squizlabs/php_codesniffer": "^3.3.2",
  3331. "symfony/process": "^3.4 || ^4.0"
  3332. },
  3333. "type": "library",
  3334. "extra": {
  3335. "branch-alias": {
  3336. "dev-master": "0.3-dev"
  3337. }
  3338. },
  3339. "autoload": {
  3340. "psr-4": {
  3341. "PHPStan\\PhpDocParser\\": [
  3342. "src/"
  3343. ]
  3344. }
  3345. },
  3346. "notification-url": "https://packagist.org/downloads/",
  3347. "license": [
  3348. "MIT"
  3349. ],
  3350. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3351. "support": {
  3352. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3353. "source": "https://github.com/phpstan/phpdoc-parser/tree/master"
  3354. },
  3355. "time": "2019-06-07T19:13:52+00:00"
  3356. },
  3357. {
  3358. "name": "phpstan/phpstan",
  3359. "version": "0.11.20",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/phpstan/phpstan.git",
  3363. "reference": "938dcc03a005280e1a9587ec7684345bff06ebfc"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/938dcc03a005280e1a9587ec7684345bff06ebfc",
  3368. "reference": "938dcc03a005280e1a9587ec7684345bff06ebfc",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "composer/xdebug-handler": "^1.3.0",
  3373. "jean85/pretty-package-versions": "^1.0.3",
  3374. "nette/bootstrap": "^2.4 || ^3.0",
  3375. "nette/di": "^2.4.7 || ^3.0",
  3376. "nette/neon": "^2.4.3 || ^3.0",
  3377. "nette/robot-loader": "^3.0.1",
  3378. "nette/schema": "^1.0",
  3379. "nette/utils": "^2.4.5 || ^3.0",
  3380. "nikic/php-parser": "^4.2.3",
  3381. "php": "~7.1",
  3382. "phpstan/phpdoc-parser": "^0.3.5",
  3383. "symfony/console": "~3.2 || ~4.0",
  3384. "symfony/finder": "~3.2 || ~4.0"
  3385. },
  3386. "conflict": {
  3387. "symfony/console": "3.4.16 || 4.1.5"
  3388. },
  3389. "require-dev": {
  3390. "brianium/paratest": "^2.0 || ^3.0",
  3391. "consistence/coding-standard": "^3.5",
  3392. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  3393. "ext-intl": "*",
  3394. "ext-mysqli": "*",
  3395. "ext-simplexml": "*",
  3396. "ext-soap": "*",
  3397. "ext-zip": "*",
  3398. "jakub-onderka/php-parallel-lint": "^1.0",
  3399. "localheinz/composer-normalize": "^1.1.0",
  3400. "phing/phing": "^2.16.0",
  3401. "phpstan/phpstan-deprecation-rules": "^0.11",
  3402. "phpstan/phpstan-php-parser": "^0.11",
  3403. "phpstan/phpstan-phpunit": "^0.11",
  3404. "phpstan/phpstan-strict-rules": "^0.11",
  3405. "phpunit/phpunit": "^7.5.14 || ^8.0",
  3406. "slevomat/coding-standard": "^4.7.2",
  3407. "squizlabs/php_codesniffer": "^3.3.2"
  3408. },
  3409. "bin": [
  3410. "bin/phpstan"
  3411. ],
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "0.11-dev"
  3416. }
  3417. },
  3418. "autoload": {
  3419. "psr-4": {
  3420. "PHPStan\\": [
  3421. "src/"
  3422. ]
  3423. }
  3424. },
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "MIT"
  3428. ],
  3429. "description": "PHPStan - PHP Static Analysis Tool",
  3430. "support": {
  3431. "issues": "https://github.com/phpstan/phpstan/issues",
  3432. "source": "https://github.com/phpstan/phpstan/tree/0.11.20"
  3433. },
  3434. "funding": [
  3435. {
  3436. "url": "https://github.com/ondrejmirtes",
  3437. "type": "github"
  3438. },
  3439. {
  3440. "url": "https://www.patreon.com/phpstan",
  3441. "type": "patreon"
  3442. },
  3443. {
  3444. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  3445. "type": "tidelift"
  3446. }
  3447. ],
  3448. "time": "2020-10-12T14:33:05+00:00"
  3449. },
  3450. {
  3451. "name": "phpunit/php-code-coverage",
  3452. "version": "7.0.15",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3456. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  3461. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "ext-dom": "*",
  3466. "ext-xmlwriter": "*",
  3467. "php": ">=7.2",
  3468. "phpunit/php-file-iterator": "^2.0.2",
  3469. "phpunit/php-text-template": "^1.2.1",
  3470. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  3471. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3472. "sebastian/environment": "^4.2.2",
  3473. "sebastian/version": "^2.0.1",
  3474. "theseer/tokenizer": "^1.1.3"
  3475. },
  3476. "require-dev": {
  3477. "phpunit/phpunit": "^8.2.2"
  3478. },
  3479. "suggest": {
  3480. "ext-xdebug": "^2.7.2"
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "branch-alias": {
  3485. "dev-master": "7.0-dev"
  3486. }
  3487. },
  3488. "autoload": {
  3489. "classmap": [
  3490. "src/"
  3491. ]
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "BSD-3-Clause"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "Sebastian Bergmann",
  3500. "email": "sebastian@phpunit.de",
  3501. "role": "lead"
  3502. }
  3503. ],
  3504. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3505. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3506. "keywords": [
  3507. "coverage",
  3508. "testing",
  3509. "xunit"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3513. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  3514. },
  3515. "funding": [
  3516. {
  3517. "url": "https://github.com/sebastianbergmann",
  3518. "type": "github"
  3519. }
  3520. ],
  3521. "time": "2021-07-26T12:20:09+00:00"
  3522. },
  3523. {
  3524. "name": "phpunit/php-file-iterator",
  3525. "version": "2.0.5",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3529. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  3534. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  3535. "shasum": ""
  3536. },
  3537. "require": {
  3538. "php": ">=7.1"
  3539. },
  3540. "require-dev": {
  3541. "phpunit/phpunit": "^8.5"
  3542. },
  3543. "type": "library",
  3544. "extra": {
  3545. "branch-alias": {
  3546. "dev-master": "2.0.x-dev"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "classmap": [
  3551. "src/"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "BSD-3-Clause"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Sebastian Bergmann",
  3561. "email": "sebastian@phpunit.de",
  3562. "role": "lead"
  3563. }
  3564. ],
  3565. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3566. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3567. "keywords": [
  3568. "filesystem",
  3569. "iterator"
  3570. ],
  3571. "support": {
  3572. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3573. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  3574. },
  3575. "funding": [
  3576. {
  3577. "url": "https://github.com/sebastianbergmann",
  3578. "type": "github"
  3579. }
  3580. ],
  3581. "time": "2021-12-02T12:42:26+00:00"
  3582. },
  3583. {
  3584. "name": "phpunit/php-text-template",
  3585. "version": "1.2.1",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3589. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3594. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "php": ">=5.3.3"
  3599. },
  3600. "type": "library",
  3601. "autoload": {
  3602. "classmap": [
  3603. "src/"
  3604. ]
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "BSD-3-Clause"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Sebastian Bergmann",
  3613. "email": "sebastian@phpunit.de",
  3614. "role": "lead"
  3615. }
  3616. ],
  3617. "description": "Simple template engine.",
  3618. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3619. "keywords": [
  3620. "template"
  3621. ],
  3622. "support": {
  3623. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3624. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  3625. },
  3626. "time": "2015-06-21T13:50:34+00:00"
  3627. },
  3628. {
  3629. "name": "phpunit/php-timer",
  3630. "version": "2.1.3",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3634. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  3639. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  3640. "shasum": ""
  3641. },
  3642. "require": {
  3643. "php": ">=7.1"
  3644. },
  3645. "require-dev": {
  3646. "phpunit/phpunit": "^8.5"
  3647. },
  3648. "type": "library",
  3649. "extra": {
  3650. "branch-alias": {
  3651. "dev-master": "2.1-dev"
  3652. }
  3653. },
  3654. "autoload": {
  3655. "classmap": [
  3656. "src/"
  3657. ]
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "BSD-3-Clause"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "Sebastian Bergmann",
  3666. "email": "sebastian@phpunit.de",
  3667. "role": "lead"
  3668. }
  3669. ],
  3670. "description": "Utility class for timing",
  3671. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3672. "keywords": [
  3673. "timer"
  3674. ],
  3675. "support": {
  3676. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  3677. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  3678. },
  3679. "funding": [
  3680. {
  3681. "url": "https://github.com/sebastianbergmann",
  3682. "type": "github"
  3683. }
  3684. ],
  3685. "time": "2020-11-30T08:20:02+00:00"
  3686. },
  3687. {
  3688. "name": "phpunit/php-token-stream",
  3689. "version": "3.1.3",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3693. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  3698. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "ext-tokenizer": "*",
  3703. "php": ">=7.1"
  3704. },
  3705. "require-dev": {
  3706. "phpunit/phpunit": "^7.0"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-master": "3.1-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "classmap": [
  3716. "src/"
  3717. ]
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "BSD-3-Clause"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Sebastian Bergmann",
  3726. "email": "sebastian@phpunit.de"
  3727. }
  3728. ],
  3729. "description": "Wrapper around PHP's tokenizer extension.",
  3730. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3731. "keywords": [
  3732. "tokenizer"
  3733. ],
  3734. "support": {
  3735. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  3736. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
  3737. },
  3738. "funding": [
  3739. {
  3740. "url": "https://github.com/sebastianbergmann",
  3741. "type": "github"
  3742. }
  3743. ],
  3744. "abandoned": true,
  3745. "time": "2021-07-26T12:15:06+00:00"
  3746. },
  3747. {
  3748. "name": "phpunit/phpunit",
  3749. "version": "8.5.23",
  3750. "source": {
  3751. "type": "git",
  3752. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3753. "reference": "efb20ff3623b9d09bf190a68fdfe574538a8d496"
  3754. },
  3755. "dist": {
  3756. "type": "zip",
  3757. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/efb20ff3623b9d09bf190a68fdfe574538a8d496",
  3758. "reference": "efb20ff3623b9d09bf190a68fdfe574538a8d496",
  3759. "shasum": ""
  3760. },
  3761. "require": {
  3762. "doctrine/instantiator": "^1.3.1",
  3763. "ext-dom": "*",
  3764. "ext-json": "*",
  3765. "ext-libxml": "*",
  3766. "ext-mbstring": "*",
  3767. "ext-xml": "*",
  3768. "ext-xmlwriter": "*",
  3769. "myclabs/deep-copy": "^1.10.0",
  3770. "phar-io/manifest": "^2.0.3",
  3771. "phar-io/version": "^3.0.2",
  3772. "php": ">=7.2",
  3773. "phpspec/prophecy": "^1.10.3",
  3774. "phpunit/php-code-coverage": "^7.0.12",
  3775. "phpunit/php-file-iterator": "^2.0.4",
  3776. "phpunit/php-text-template": "^1.2.1",
  3777. "phpunit/php-timer": "^2.1.2",
  3778. "sebastian/comparator": "^3.0.2",
  3779. "sebastian/diff": "^3.0.2",
  3780. "sebastian/environment": "^4.2.3",
  3781. "sebastian/exporter": "^3.1.2",
  3782. "sebastian/global-state": "^3.0.0",
  3783. "sebastian/object-enumerator": "^3.0.3",
  3784. "sebastian/resource-operations": "^2.0.1",
  3785. "sebastian/type": "^1.1.3",
  3786. "sebastian/version": "^2.0.1"
  3787. },
  3788. "require-dev": {
  3789. "ext-pdo": "*"
  3790. },
  3791. "suggest": {
  3792. "ext-soap": "*",
  3793. "ext-xdebug": "*",
  3794. "phpunit/php-invoker": "^2.0.0"
  3795. },
  3796. "bin": [
  3797. "phpunit"
  3798. ],
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "8.5-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "classmap": [
  3807. "src/"
  3808. ]
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "BSD-3-Clause"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Sebastian Bergmann",
  3817. "email": "sebastian@phpunit.de",
  3818. "role": "lead"
  3819. }
  3820. ],
  3821. "description": "The PHP Unit Testing framework.",
  3822. "homepage": "https://phpunit.de/",
  3823. "keywords": [
  3824. "phpunit",
  3825. "testing",
  3826. "xunit"
  3827. ],
  3828. "support": {
  3829. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  3830. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.23"
  3831. },
  3832. "funding": [
  3833. {
  3834. "url": "https://phpunit.de/sponsors.html",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/sebastianbergmann",
  3839. "type": "github"
  3840. }
  3841. ],
  3842. "time": "2022-01-21T05:50:34+00:00"
  3843. },
  3844. {
  3845. "name": "sebastian/code-unit-reverse-lookup",
  3846. "version": "1.0.2",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3850. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3855. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "php": ">=5.6"
  3860. },
  3861. "require-dev": {
  3862. "phpunit/phpunit": "^8.5"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "1.0.x-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "classmap": [
  3872. "src/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "BSD-3-Clause"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Sebastian Bergmann",
  3882. "email": "sebastian@phpunit.de"
  3883. }
  3884. ],
  3885. "description": "Looks up which function or method a line of code belongs to",
  3886. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3887. "support": {
  3888. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  3889. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  3890. },
  3891. "funding": [
  3892. {
  3893. "url": "https://github.com/sebastianbergmann",
  3894. "type": "github"
  3895. }
  3896. ],
  3897. "time": "2020-11-30T08:15:22+00:00"
  3898. },
  3899. {
  3900. "name": "sebastian/comparator",
  3901. "version": "3.0.3",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/sebastianbergmann/comparator.git",
  3905. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  3910. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "php": ">=7.1",
  3915. "sebastian/diff": "^3.0",
  3916. "sebastian/exporter": "^3.1"
  3917. },
  3918. "require-dev": {
  3919. "phpunit/phpunit": "^8.5"
  3920. },
  3921. "type": "library",
  3922. "extra": {
  3923. "branch-alias": {
  3924. "dev-master": "3.0-dev"
  3925. }
  3926. },
  3927. "autoload": {
  3928. "classmap": [
  3929. "src/"
  3930. ]
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "BSD-3-Clause"
  3935. ],
  3936. "authors": [
  3937. {
  3938. "name": "Sebastian Bergmann",
  3939. "email": "sebastian@phpunit.de"
  3940. },
  3941. {
  3942. "name": "Jeff Welch",
  3943. "email": "whatthejeff@gmail.com"
  3944. },
  3945. {
  3946. "name": "Volker Dusch",
  3947. "email": "github@wallbash.com"
  3948. },
  3949. {
  3950. "name": "Bernhard Schussek",
  3951. "email": "bschussek@2bepublished.at"
  3952. }
  3953. ],
  3954. "description": "Provides the functionality to compare PHP values for equality",
  3955. "homepage": "https://github.com/sebastianbergmann/comparator",
  3956. "keywords": [
  3957. "comparator",
  3958. "compare",
  3959. "equality"
  3960. ],
  3961. "support": {
  3962. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  3963. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  3964. },
  3965. "funding": [
  3966. {
  3967. "url": "https://github.com/sebastianbergmann",
  3968. "type": "github"
  3969. }
  3970. ],
  3971. "time": "2020-11-30T08:04:30+00:00"
  3972. },
  3973. {
  3974. "name": "sebastian/diff",
  3975. "version": "3.0.3",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/sebastianbergmann/diff.git",
  3979. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  3984. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  3985. "shasum": ""
  3986. },
  3987. "require": {
  3988. "php": ">=7.1"
  3989. },
  3990. "require-dev": {
  3991. "phpunit/phpunit": "^7.5 || ^8.0",
  3992. "symfony/process": "^2 || ^3.3 || ^4"
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "3.0-dev"
  3998. }
  3999. },
  4000. "autoload": {
  4001. "classmap": [
  4002. "src/"
  4003. ]
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "BSD-3-Clause"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Sebastian Bergmann",
  4012. "email": "sebastian@phpunit.de"
  4013. },
  4014. {
  4015. "name": "Kore Nordmann",
  4016. "email": "mail@kore-nordmann.de"
  4017. }
  4018. ],
  4019. "description": "Diff implementation",
  4020. "homepage": "https://github.com/sebastianbergmann/diff",
  4021. "keywords": [
  4022. "diff",
  4023. "udiff",
  4024. "unidiff",
  4025. "unified diff"
  4026. ],
  4027. "support": {
  4028. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4029. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  4030. },
  4031. "funding": [
  4032. {
  4033. "url": "https://github.com/sebastianbergmann",
  4034. "type": "github"
  4035. }
  4036. ],
  4037. "time": "2020-11-30T07:59:04+00:00"
  4038. },
  4039. {
  4040. "name": "sebastian/environment",
  4041. "version": "4.2.4",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/sebastianbergmann/environment.git",
  4045. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4050. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  4051. "shasum": ""
  4052. },
  4053. "require": {
  4054. "php": ">=7.1"
  4055. },
  4056. "require-dev": {
  4057. "phpunit/phpunit": "^7.5"
  4058. },
  4059. "suggest": {
  4060. "ext-posix": "*"
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "4.2-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "classmap": [
  4070. "src/"
  4071. ]
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "BSD-3-Clause"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "Sebastian Bergmann",
  4080. "email": "sebastian@phpunit.de"
  4081. }
  4082. ],
  4083. "description": "Provides functionality to handle HHVM/PHP environments",
  4084. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4085. "keywords": [
  4086. "Xdebug",
  4087. "environment",
  4088. "hhvm"
  4089. ],
  4090. "support": {
  4091. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4092. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  4093. },
  4094. "funding": [
  4095. {
  4096. "url": "https://github.com/sebastianbergmann",
  4097. "type": "github"
  4098. }
  4099. ],
  4100. "time": "2020-11-30T07:53:42+00:00"
  4101. },
  4102. {
  4103. "name": "sebastian/exporter",
  4104. "version": "3.1.4",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/sebastianbergmann/exporter.git",
  4108. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  4113. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": ">=7.0",
  4118. "sebastian/recursion-context": "^3.0"
  4119. },
  4120. "require-dev": {
  4121. "ext-mbstring": "*",
  4122. "phpunit/phpunit": "^8.5"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "3.1.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "classmap": [
  4132. "src/"
  4133. ]
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "BSD-3-Clause"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Sebastian Bergmann",
  4142. "email": "sebastian@phpunit.de"
  4143. },
  4144. {
  4145. "name": "Jeff Welch",
  4146. "email": "whatthejeff@gmail.com"
  4147. },
  4148. {
  4149. "name": "Volker Dusch",
  4150. "email": "github@wallbash.com"
  4151. },
  4152. {
  4153. "name": "Adam Harvey",
  4154. "email": "aharvey@php.net"
  4155. },
  4156. {
  4157. "name": "Bernhard Schussek",
  4158. "email": "bschussek@gmail.com"
  4159. }
  4160. ],
  4161. "description": "Provides the functionality to export PHP variables for visualization",
  4162. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4163. "keywords": [
  4164. "export",
  4165. "exporter"
  4166. ],
  4167. "support": {
  4168. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4169. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
  4170. },
  4171. "funding": [
  4172. {
  4173. "url": "https://github.com/sebastianbergmann",
  4174. "type": "github"
  4175. }
  4176. ],
  4177. "time": "2021-11-11T13:51:24+00:00"
  4178. },
  4179. {
  4180. "name": "sebastian/global-state",
  4181. "version": "3.0.1",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://github.com/sebastianbergmann/global-state.git",
  4185. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  4190. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  4191. "shasum": ""
  4192. },
  4193. "require": {
  4194. "php": ">=7.2",
  4195. "sebastian/object-reflector": "^1.1.1",
  4196. "sebastian/recursion-context": "^3.0"
  4197. },
  4198. "require-dev": {
  4199. "ext-dom": "*",
  4200. "phpunit/phpunit": "^8.0"
  4201. },
  4202. "suggest": {
  4203. "ext-uopz": "*"
  4204. },
  4205. "type": "library",
  4206. "extra": {
  4207. "branch-alias": {
  4208. "dev-master": "3.0-dev"
  4209. }
  4210. },
  4211. "autoload": {
  4212. "classmap": [
  4213. "src/"
  4214. ]
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "BSD-3-Clause"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Sebastian Bergmann",
  4223. "email": "sebastian@phpunit.de"
  4224. }
  4225. ],
  4226. "description": "Snapshotting of global state",
  4227. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4228. "keywords": [
  4229. "global state"
  4230. ],
  4231. "support": {
  4232. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4233. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  4234. },
  4235. "funding": [
  4236. {
  4237. "url": "https://github.com/sebastianbergmann",
  4238. "type": "github"
  4239. }
  4240. ],
  4241. "time": "2020-11-30T07:43:24+00:00"
  4242. },
  4243. {
  4244. "name": "sebastian/object-enumerator",
  4245. "version": "3.0.4",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4249. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4254. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  4255. "shasum": ""
  4256. },
  4257. "require": {
  4258. "php": ">=7.0",
  4259. "sebastian/object-reflector": "^1.1.1",
  4260. "sebastian/recursion-context": "^3.0"
  4261. },
  4262. "require-dev": {
  4263. "phpunit/phpunit": "^6.0"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "branch-alias": {
  4268. "dev-master": "3.0.x-dev"
  4269. }
  4270. },
  4271. "autoload": {
  4272. "classmap": [
  4273. "src/"
  4274. ]
  4275. },
  4276. "notification-url": "https://packagist.org/downloads/",
  4277. "license": [
  4278. "BSD-3-Clause"
  4279. ],
  4280. "authors": [
  4281. {
  4282. "name": "Sebastian Bergmann",
  4283. "email": "sebastian@phpunit.de"
  4284. }
  4285. ],
  4286. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4287. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4288. "support": {
  4289. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  4290. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  4291. },
  4292. "funding": [
  4293. {
  4294. "url": "https://github.com/sebastianbergmann",
  4295. "type": "github"
  4296. }
  4297. ],
  4298. "time": "2020-11-30T07:40:27+00:00"
  4299. },
  4300. {
  4301. "name": "sebastian/object-reflector",
  4302. "version": "1.1.2",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4306. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4311. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  4312. "shasum": ""
  4313. },
  4314. "require": {
  4315. "php": ">=7.0"
  4316. },
  4317. "require-dev": {
  4318. "phpunit/phpunit": "^6.0"
  4319. },
  4320. "type": "library",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-master": "1.1-dev"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "classmap": [
  4328. "src/"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "BSD-3-Clause"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Sebastian Bergmann",
  4338. "email": "sebastian@phpunit.de"
  4339. }
  4340. ],
  4341. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4342. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4343. "support": {
  4344. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4345. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  4346. },
  4347. "funding": [
  4348. {
  4349. "url": "https://github.com/sebastianbergmann",
  4350. "type": "github"
  4351. }
  4352. ],
  4353. "time": "2020-11-30T07:37:18+00:00"
  4354. },
  4355. {
  4356. "name": "sebastian/recursion-context",
  4357. "version": "3.0.1",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4361. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4366. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  4367. "shasum": ""
  4368. },
  4369. "require": {
  4370. "php": ">=7.0"
  4371. },
  4372. "require-dev": {
  4373. "phpunit/phpunit": "^6.0"
  4374. },
  4375. "type": "library",
  4376. "extra": {
  4377. "branch-alias": {
  4378. "dev-master": "3.0.x-dev"
  4379. }
  4380. },
  4381. "autoload": {
  4382. "classmap": [
  4383. "src/"
  4384. ]
  4385. },
  4386. "notification-url": "https://packagist.org/downloads/",
  4387. "license": [
  4388. "BSD-3-Clause"
  4389. ],
  4390. "authors": [
  4391. {
  4392. "name": "Sebastian Bergmann",
  4393. "email": "sebastian@phpunit.de"
  4394. },
  4395. {
  4396. "name": "Jeff Welch",
  4397. "email": "whatthejeff@gmail.com"
  4398. },
  4399. {
  4400. "name": "Adam Harvey",
  4401. "email": "aharvey@php.net"
  4402. }
  4403. ],
  4404. "description": "Provides functionality to recursively process PHP variables",
  4405. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4406. "support": {
  4407. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4408. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  4409. },
  4410. "funding": [
  4411. {
  4412. "url": "https://github.com/sebastianbergmann",
  4413. "type": "github"
  4414. }
  4415. ],
  4416. "time": "2020-11-30T07:34:24+00:00"
  4417. },
  4418. {
  4419. "name": "sebastian/resource-operations",
  4420. "version": "2.0.2",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4424. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  4429. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  4430. "shasum": ""
  4431. },
  4432. "require": {
  4433. "php": ">=7.1"
  4434. },
  4435. "type": "library",
  4436. "extra": {
  4437. "branch-alias": {
  4438. "dev-master": "2.0-dev"
  4439. }
  4440. },
  4441. "autoload": {
  4442. "classmap": [
  4443. "src/"
  4444. ]
  4445. },
  4446. "notification-url": "https://packagist.org/downloads/",
  4447. "license": [
  4448. "BSD-3-Clause"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "Sebastian Bergmann",
  4453. "email": "sebastian@phpunit.de"
  4454. }
  4455. ],
  4456. "description": "Provides a list of PHP built-in functions that operate on resources",
  4457. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4458. "support": {
  4459. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  4460. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  4461. },
  4462. "funding": [
  4463. {
  4464. "url": "https://github.com/sebastianbergmann",
  4465. "type": "github"
  4466. }
  4467. ],
  4468. "time": "2020-11-30T07:30:19+00:00"
  4469. },
  4470. {
  4471. "name": "sebastian/type",
  4472. "version": "1.1.4",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://github.com/sebastianbergmann/type.git",
  4476. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  4481. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  4482. "shasum": ""
  4483. },
  4484. "require": {
  4485. "php": ">=7.2"
  4486. },
  4487. "require-dev": {
  4488. "phpunit/phpunit": "^8.2"
  4489. },
  4490. "type": "library",
  4491. "extra": {
  4492. "branch-alias": {
  4493. "dev-master": "1.1-dev"
  4494. }
  4495. },
  4496. "autoload": {
  4497. "classmap": [
  4498. "src/"
  4499. ]
  4500. },
  4501. "notification-url": "https://packagist.org/downloads/",
  4502. "license": [
  4503. "BSD-3-Clause"
  4504. ],
  4505. "authors": [
  4506. {
  4507. "name": "Sebastian Bergmann",
  4508. "email": "sebastian@phpunit.de",
  4509. "role": "lead"
  4510. }
  4511. ],
  4512. "description": "Collection of value objects that represent the types of the PHP type system",
  4513. "homepage": "https://github.com/sebastianbergmann/type",
  4514. "support": {
  4515. "issues": "https://github.com/sebastianbergmann/type/issues",
  4516. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  4517. },
  4518. "funding": [
  4519. {
  4520. "url": "https://github.com/sebastianbergmann",
  4521. "type": "github"
  4522. }
  4523. ],
  4524. "time": "2020-11-30T07:25:11+00:00"
  4525. },
  4526. {
  4527. "name": "sebastian/version",
  4528. "version": "2.0.1",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/sebastianbergmann/version.git",
  4532. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4537. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4538. "shasum": ""
  4539. },
  4540. "require": {
  4541. "php": ">=5.6"
  4542. },
  4543. "type": "library",
  4544. "extra": {
  4545. "branch-alias": {
  4546. "dev-master": "2.0.x-dev"
  4547. }
  4548. },
  4549. "autoload": {
  4550. "classmap": [
  4551. "src/"
  4552. ]
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "BSD-3-Clause"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Sebastian Bergmann",
  4561. "email": "sebastian@phpunit.de",
  4562. "role": "lead"
  4563. }
  4564. ],
  4565. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4566. "homepage": "https://github.com/sebastianbergmann/version",
  4567. "support": {
  4568. "issues": "https://github.com/sebastianbergmann/version/issues",
  4569. "source": "https://github.com/sebastianbergmann/version/tree/master"
  4570. },
  4571. "time": "2016-10-03T07:35:21+00:00"
  4572. },
  4573. {
  4574. "name": "symfony/console",
  4575. "version": "v4.4.36",
  4576. "source": {
  4577. "type": "git",
  4578. "url": "https://github.com/symfony/console.git",
  4579. "reference": "621379b62bb19af213b569b60013200b11dd576f"
  4580. },
  4581. "dist": {
  4582. "type": "zip",
  4583. "url": "https://api.github.com/repos/symfony/console/zipball/621379b62bb19af213b569b60013200b11dd576f",
  4584. "reference": "621379b62bb19af213b569b60013200b11dd576f",
  4585. "shasum": ""
  4586. },
  4587. "require": {
  4588. "php": ">=7.1.3",
  4589. "symfony/polyfill-mbstring": "~1.0",
  4590. "symfony/polyfill-php73": "^1.8",
  4591. "symfony/polyfill-php80": "^1.16",
  4592. "symfony/service-contracts": "^1.1|^2"
  4593. },
  4594. "conflict": {
  4595. "psr/log": ">=3",
  4596. "symfony/dependency-injection": "<3.4",
  4597. "symfony/event-dispatcher": "<4.3|>=5",
  4598. "symfony/lock": "<4.4",
  4599. "symfony/process": "<3.3"
  4600. },
  4601. "provide": {
  4602. "psr/log-implementation": "1.0|2.0"
  4603. },
  4604. "require-dev": {
  4605. "psr/log": "^1|^2",
  4606. "symfony/config": "^3.4|^4.0|^5.0",
  4607. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4608. "symfony/event-dispatcher": "^4.3",
  4609. "symfony/lock": "^4.4|^5.0",
  4610. "symfony/process": "^3.4|^4.0|^5.0",
  4611. "symfony/var-dumper": "^4.3|^5.0"
  4612. },
  4613. "suggest": {
  4614. "psr/log": "For using the console logger",
  4615. "symfony/event-dispatcher": "",
  4616. "symfony/lock": "",
  4617. "symfony/process": ""
  4618. },
  4619. "type": "library",
  4620. "autoload": {
  4621. "psr-4": {
  4622. "Symfony\\Component\\Console\\": ""
  4623. },
  4624. "exclude-from-classmap": [
  4625. "/Tests/"
  4626. ]
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Fabien Potencier",
  4635. "email": "fabien@symfony.com"
  4636. },
  4637. {
  4638. "name": "Symfony Community",
  4639. "homepage": "https://symfony.com/contributors"
  4640. }
  4641. ],
  4642. "description": "Eases the creation of beautiful and testable command line interfaces",
  4643. "homepage": "https://symfony.com",
  4644. "support": {
  4645. "source": "https://github.com/symfony/console/tree/v4.4.36"
  4646. },
  4647. "funding": [
  4648. {
  4649. "url": "https://symfony.com/sponsor",
  4650. "type": "custom"
  4651. },
  4652. {
  4653. "url": "https://github.com/fabpot",
  4654. "type": "github"
  4655. },
  4656. {
  4657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4658. "type": "tidelift"
  4659. }
  4660. ],
  4661. "time": "2021-12-15T10:33:10+00:00"
  4662. },
  4663. {
  4664. "name": "symfony/finder",
  4665. "version": "v4.4.36",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/symfony/finder.git",
  4669. "reference": "1fef05633cd61b629e963e5d8200fb6b67ecf42c"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/symfony/finder/zipball/1fef05633cd61b629e963e5d8200fb6b67ecf42c",
  4674. "reference": "1fef05633cd61b629e963e5d8200fb6b67ecf42c",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "php": ">=7.1.3",
  4679. "symfony/polyfill-php80": "^1.16"
  4680. },
  4681. "type": "library",
  4682. "autoload": {
  4683. "psr-4": {
  4684. "Symfony\\Component\\Finder\\": ""
  4685. },
  4686. "exclude-from-classmap": [
  4687. "/Tests/"
  4688. ]
  4689. },
  4690. "notification-url": "https://packagist.org/downloads/",
  4691. "license": [
  4692. "MIT"
  4693. ],
  4694. "authors": [
  4695. {
  4696. "name": "Fabien Potencier",
  4697. "email": "fabien@symfony.com"
  4698. },
  4699. {
  4700. "name": "Symfony Community",
  4701. "homepage": "https://symfony.com/contributors"
  4702. }
  4703. ],
  4704. "description": "Finds files and directories via an intuitive fluent interface",
  4705. "homepage": "https://symfony.com",
  4706. "support": {
  4707. "source": "https://github.com/symfony/finder/tree/v4.4.36"
  4708. },
  4709. "funding": [
  4710. {
  4711. "url": "https://symfony.com/sponsor",
  4712. "type": "custom"
  4713. },
  4714. {
  4715. "url": "https://github.com/fabpot",
  4716. "type": "github"
  4717. },
  4718. {
  4719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4720. "type": "tidelift"
  4721. }
  4722. ],
  4723. "time": "2021-12-15T10:33:10+00:00"
  4724. },
  4725. {
  4726. "name": "symfony/polyfill-ctype",
  4727. "version": "v1.24.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/symfony/polyfill-ctype.git",
  4731. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  4736. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": ">=7.1"
  4741. },
  4742. "provide": {
  4743. "ext-ctype": "*"
  4744. },
  4745. "suggest": {
  4746. "ext-ctype": "For best performance"
  4747. },
  4748. "type": "library",
  4749. "extra": {
  4750. "branch-alias": {
  4751. "dev-main": "1.23-dev"
  4752. },
  4753. "thanks": {
  4754. "name": "symfony/polyfill",
  4755. "url": "https://github.com/symfony/polyfill"
  4756. }
  4757. },
  4758. "autoload": {
  4759. "psr-4": {
  4760. "Symfony\\Polyfill\\Ctype\\": ""
  4761. },
  4762. "files": [
  4763. "bootstrap.php"
  4764. ]
  4765. },
  4766. "notification-url": "https://packagist.org/downloads/",
  4767. "license": [
  4768. "MIT"
  4769. ],
  4770. "authors": [
  4771. {
  4772. "name": "Gert de Pagter",
  4773. "email": "BackEndTea@gmail.com"
  4774. },
  4775. {
  4776. "name": "Symfony Community",
  4777. "homepage": "https://symfony.com/contributors"
  4778. }
  4779. ],
  4780. "description": "Symfony polyfill for ctype functions",
  4781. "homepage": "https://symfony.com",
  4782. "keywords": [
  4783. "compatibility",
  4784. "ctype",
  4785. "polyfill",
  4786. "portable"
  4787. ],
  4788. "support": {
  4789. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  4790. },
  4791. "funding": [
  4792. {
  4793. "url": "https://symfony.com/sponsor",
  4794. "type": "custom"
  4795. },
  4796. {
  4797. "url": "https://github.com/fabpot",
  4798. "type": "github"
  4799. },
  4800. {
  4801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4802. "type": "tidelift"
  4803. }
  4804. ],
  4805. "time": "2021-10-20T20:35:02+00:00"
  4806. },
  4807. {
  4808. "name": "symfony/polyfill-php73",
  4809. "version": "v1.24.0",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/symfony/polyfill-php73.git",
  4813. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
  4818. "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
  4819. "shasum": ""
  4820. },
  4821. "require": {
  4822. "php": ">=7.1"
  4823. },
  4824. "type": "library",
  4825. "extra": {
  4826. "branch-alias": {
  4827. "dev-main": "1.23-dev"
  4828. },
  4829. "thanks": {
  4830. "name": "symfony/polyfill",
  4831. "url": "https://github.com/symfony/polyfill"
  4832. }
  4833. },
  4834. "autoload": {
  4835. "psr-4": {
  4836. "Symfony\\Polyfill\\Php73\\": ""
  4837. },
  4838. "files": [
  4839. "bootstrap.php"
  4840. ],
  4841. "classmap": [
  4842. "Resources/stubs"
  4843. ]
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Nicolas Grekas",
  4852. "email": "p@tchwork.com"
  4853. },
  4854. {
  4855. "name": "Symfony Community",
  4856. "homepage": "https://symfony.com/contributors"
  4857. }
  4858. ],
  4859. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4860. "homepage": "https://symfony.com",
  4861. "keywords": [
  4862. "compatibility",
  4863. "polyfill",
  4864. "portable",
  4865. "shim"
  4866. ],
  4867. "support": {
  4868. "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0"
  4869. },
  4870. "funding": [
  4871. {
  4872. "url": "https://symfony.com/sponsor",
  4873. "type": "custom"
  4874. },
  4875. {
  4876. "url": "https://github.com/fabpot",
  4877. "type": "github"
  4878. },
  4879. {
  4880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4881. "type": "tidelift"
  4882. }
  4883. ],
  4884. "time": "2021-06-05T21:20:04+00:00"
  4885. },
  4886. {
  4887. "name": "symfony/var-dumper",
  4888. "version": "v4.4.36",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://github.com/symfony/var-dumper.git",
  4892. "reference": "02685c62fcbc4262235cc72a54fbd45ab719ce3c"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/02685c62fcbc4262235cc72a54fbd45ab719ce3c",
  4897. "reference": "02685c62fcbc4262235cc72a54fbd45ab719ce3c",
  4898. "shasum": ""
  4899. },
  4900. "require": {
  4901. "php": ">=7.1.3",
  4902. "symfony/polyfill-mbstring": "~1.0",
  4903. "symfony/polyfill-php72": "~1.5",
  4904. "symfony/polyfill-php80": "^1.16"
  4905. },
  4906. "conflict": {
  4907. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4908. "symfony/console": "<3.4"
  4909. },
  4910. "require-dev": {
  4911. "ext-iconv": "*",
  4912. "symfony/console": "^3.4|^4.0|^5.0",
  4913. "symfony/process": "^4.4|^5.0",
  4914. "twig/twig": "^1.43|^2.13|^3.0.4"
  4915. },
  4916. "suggest": {
  4917. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4918. "ext-intl": "To show region name in time zone dump",
  4919. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4920. },
  4921. "bin": [
  4922. "Resources/bin/var-dump-server"
  4923. ],
  4924. "type": "library",
  4925. "autoload": {
  4926. "files": [
  4927. "Resources/functions/dump.php"
  4928. ],
  4929. "psr-4": {
  4930. "Symfony\\Component\\VarDumper\\": ""
  4931. },
  4932. "exclude-from-classmap": [
  4933. "/Tests/"
  4934. ]
  4935. },
  4936. "notification-url": "https://packagist.org/downloads/",
  4937. "license": [
  4938. "MIT"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "Nicolas Grekas",
  4943. "email": "p@tchwork.com"
  4944. },
  4945. {
  4946. "name": "Symfony Community",
  4947. "homepage": "https://symfony.com/contributors"
  4948. }
  4949. ],
  4950. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4951. "homepage": "https://symfony.com",
  4952. "keywords": [
  4953. "debug",
  4954. "dump"
  4955. ],
  4956. "support": {
  4957. "source": "https://github.com/symfony/var-dumper/tree/v4.4.36"
  4958. },
  4959. "funding": [
  4960. {
  4961. "url": "https://symfony.com/sponsor",
  4962. "type": "custom"
  4963. },
  4964. {
  4965. "url": "https://github.com/fabpot",
  4966. "type": "github"
  4967. },
  4968. {
  4969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4970. "type": "tidelift"
  4971. }
  4972. ],
  4973. "time": "2021-12-29T09:28:53+00:00"
  4974. },
  4975. {
  4976. "name": "theseer/tokenizer",
  4977. "version": "1.2.1",
  4978. "source": {
  4979. "type": "git",
  4980. "url": "https://github.com/theseer/tokenizer.git",
  4981. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  4982. },
  4983. "dist": {
  4984. "type": "zip",
  4985. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  4986. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  4987. "shasum": ""
  4988. },
  4989. "require": {
  4990. "ext-dom": "*",
  4991. "ext-tokenizer": "*",
  4992. "ext-xmlwriter": "*",
  4993. "php": "^7.2 || ^8.0"
  4994. },
  4995. "type": "library",
  4996. "autoload": {
  4997. "classmap": [
  4998. "src/"
  4999. ]
  5000. },
  5001. "notification-url": "https://packagist.org/downloads/",
  5002. "license": [
  5003. "BSD-3-Clause"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "Arne Blankerts",
  5008. "email": "arne@blankerts.de",
  5009. "role": "Developer"
  5010. }
  5011. ],
  5012. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5013. "support": {
  5014. "issues": "https://github.com/theseer/tokenizer/issues",
  5015. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  5016. },
  5017. "funding": [
  5018. {
  5019. "url": "https://github.com/theseer",
  5020. "type": "github"
  5021. }
  5022. ],
  5023. "time": "2021-07-28T10:34:58+00:00"
  5024. },
  5025. {
  5026. "name": "webmozart/assert",
  5027. "version": "1.8.0",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/webmozarts/assert.git",
  5031. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/webmozarts/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  5036. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "php": "^5.3.3 || ^7.0",
  5041. "symfony/polyfill-ctype": "^1.8"
  5042. },
  5043. "conflict": {
  5044. "vimeo/psalm": "<3.9.1"
  5045. },
  5046. "require-dev": {
  5047. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5048. },
  5049. "type": "library",
  5050. "autoload": {
  5051. "psr-4": {
  5052. "Webmozart\\Assert\\": "src/"
  5053. }
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "MIT"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "Bernhard Schussek",
  5062. "email": "bschussek@gmail.com"
  5063. }
  5064. ],
  5065. "description": "Assertions to validate method input/output with nice error messages.",
  5066. "keywords": [
  5067. "assert",
  5068. "check",
  5069. "validate"
  5070. ],
  5071. "support": {
  5072. "issues": "https://github.com/webmozarts/assert/issues",
  5073. "source": "https://github.com/webmozarts/assert/tree/1.8.0"
  5074. },
  5075. "time": "2020-04-18T12:12:48+00:00"
  5076. }
  5077. ],
  5078. "aliases": [],
  5079. "minimum-stability": "stable",
  5080. "stability-flags": [],
  5081. "prefer-stable": false,
  5082. "prefer-lowest": false,
  5083. "platform": {
  5084. "php": "^7.2"
  5085. },
  5086. "platform-dev": [],
  5087. "platform-overrides": {
  5088. "php": "7.2.5"
  5089. },
  5090. "plugin-api-version": "2.1.0"
  5091. }