You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 161KB

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