No Description

composer.lock 183KB

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