composer.lock 163 KB

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