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

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