composer.lock 157 KB

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