composer.lock 271 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556
  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": "a5c8848983c58963f4396fdf22763e89",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "aws/aws-crt-php",
  67. "version": "v1.2.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/awslabs/aws-crt-php.git",
  71. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  76. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "php": ">=5.5"
  81. },
  82. "require-dev": {
  83. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  84. "yoast/phpunit-polyfills": "^1.0"
  85. },
  86. "suggest": {
  87. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  88. },
  89. "type": "library",
  90. "autoload": {
  91. "classmap": [
  92. "src/"
  93. ]
  94. },
  95. "notification-url": "https://packagist.org/downloads/",
  96. "license": [
  97. "Apache-2.0"
  98. ],
  99. "authors": [
  100. {
  101. "name": "AWS SDK Common Runtime Team",
  102. "email": "aws-sdk-common-runtime@amazon.com"
  103. }
  104. ],
  105. "description": "AWS Common Runtime for PHP",
  106. "homepage": "https://github.com/awslabs/aws-crt-php",
  107. "keywords": [
  108. "amazon",
  109. "aws",
  110. "crt",
  111. "sdk"
  112. ],
  113. "support": {
  114. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  115. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  116. },
  117. "time": "2023-03-24T20:22:19+00:00"
  118. },
  119. {
  120. "name": "aws/aws-sdk-php",
  121. "version": "3.262.3",
  122. "source": {
  123. "type": "git",
  124. "url": "https://github.com/aws/aws-sdk-php.git",
  125. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409"
  126. },
  127. "dist": {
  128. "type": "zip",
  129. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f5c8142d43846194bbb3bb40b18e7f6df2788409",
  130. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409",
  131. "shasum": ""
  132. },
  133. "require": {
  134. "aws/aws-crt-php": "^1.0.4",
  135. "ext-json": "*",
  136. "ext-pcre": "*",
  137. "ext-simplexml": "*",
  138. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  139. "guzzlehttp/promises": "^1.4.0",
  140. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  141. "mtdowling/jmespath.php": "^2.6",
  142. "php": ">=5.5"
  143. },
  144. "require-dev": {
  145. "andrewsville/php-token-reflection": "^1.4",
  146. "aws/aws-php-sns-message-validator": "~1.0",
  147. "behat/behat": "~3.0",
  148. "composer/composer": "^1.10.22",
  149. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  150. "doctrine/cache": "~1.4",
  151. "ext-dom": "*",
  152. "ext-openssl": "*",
  153. "ext-pcntl": "*",
  154. "ext-sockets": "*",
  155. "nette/neon": "^2.3",
  156. "paragonie/random_compat": ">= 2",
  157. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  158. "psr/cache": "^1.0",
  159. "psr/simple-cache": "^1.0",
  160. "sebastian/comparator": "^1.2.3 || ^4.0",
  161. "yoast/phpunit-polyfills": "^1.0"
  162. },
  163. "suggest": {
  164. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  165. "doctrine/cache": "To use the DoctrineCacheAdapter",
  166. "ext-curl": "To send requests using cURL",
  167. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  168. "ext-sockets": "To use client-side monitoring"
  169. },
  170. "type": "library",
  171. "extra": {
  172. "branch-alias": {
  173. "dev-master": "3.0-dev"
  174. }
  175. },
  176. "autoload": {
  177. "files": [
  178. "src/functions.php"
  179. ],
  180. "psr-4": {
  181. "Aws\\": "src/"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "Apache-2.0"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Amazon Web Services",
  191. "homepage": "http://aws.amazon.com"
  192. }
  193. ],
  194. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  195. "homepage": "http://aws.amazon.com/sdkforphp",
  196. "keywords": [
  197. "amazon",
  198. "aws",
  199. "cloud",
  200. "dynamodb",
  201. "ec2",
  202. "glacier",
  203. "s3",
  204. "sdk"
  205. ],
  206. "support": {
  207. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  208. "issues": "https://github.com/aws/aws-sdk-php/issues",
  209. "source": "https://github.com/aws/aws-sdk-php/tree/3.262.3"
  210. },
  211. "time": "2023-03-28T18:18:50+00:00"
  212. },
  213. {
  214. "name": "brick/math",
  215. "version": "0.9.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/brick/math.git",
  219. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  224. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "ext-json": "*",
  229. "php": "^7.1 || ^8.0"
  230. },
  231. "require-dev": {
  232. "php-coveralls/php-coveralls": "^2.2",
  233. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  234. "vimeo/psalm": "4.9.2"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-4": {
  239. "Brick\\Math\\": "src/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "description": "Arbitrary-precision arithmetic library",
  247. "keywords": [
  248. "Arbitrary-precision",
  249. "BigInteger",
  250. "BigRational",
  251. "arithmetic",
  252. "bigdecimal",
  253. "bignum",
  254. "brick",
  255. "math"
  256. ],
  257. "support": {
  258. "issues": "https://github.com/brick/math/issues",
  259. "source": "https://github.com/brick/math/tree/0.9.3"
  260. },
  261. "funding": [
  262. {
  263. "url": "https://github.com/BenMorel",
  264. "type": "github"
  265. },
  266. {
  267. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  268. "type": "tidelift"
  269. }
  270. ],
  271. "time": "2021-08-15T20:50:18+00:00"
  272. },
  273. {
  274. "name": "doctrine/inflector",
  275. "version": "2.0.6",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/doctrine/inflector.git",
  279. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  284. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "php": "^7.2 || ^8.0"
  289. },
  290. "require-dev": {
  291. "doctrine/coding-standard": "^10",
  292. "phpstan/phpstan": "^1.8",
  293. "phpstan/phpstan-phpunit": "^1.1",
  294. "phpstan/phpstan-strict-rules": "^1.3",
  295. "phpunit/phpunit": "^8.5 || ^9.5",
  296. "vimeo/psalm": "^4.25"
  297. },
  298. "type": "library",
  299. "autoload": {
  300. "psr-4": {
  301. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  302. }
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "MIT"
  307. ],
  308. "authors": [
  309. {
  310. "name": "Guilherme Blanco",
  311. "email": "guilhermeblanco@gmail.com"
  312. },
  313. {
  314. "name": "Roman Borschel",
  315. "email": "roman@code-factory.org"
  316. },
  317. {
  318. "name": "Benjamin Eberlei",
  319. "email": "kontakt@beberlei.de"
  320. },
  321. {
  322. "name": "Jonathan Wage",
  323. "email": "jonwage@gmail.com"
  324. },
  325. {
  326. "name": "Johannes Schmitt",
  327. "email": "schmittjoh@gmail.com"
  328. }
  329. ],
  330. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  331. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  332. "keywords": [
  333. "inflection",
  334. "inflector",
  335. "lowercase",
  336. "manipulation",
  337. "php",
  338. "plural",
  339. "singular",
  340. "strings",
  341. "uppercase",
  342. "words"
  343. ],
  344. "support": {
  345. "issues": "https://github.com/doctrine/inflector/issues",
  346. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  347. },
  348. "funding": [
  349. {
  350. "url": "https://www.doctrine-project.org/sponsorship.html",
  351. "type": "custom"
  352. },
  353. {
  354. "url": "https://www.patreon.com/phpdoctrine",
  355. "type": "patreon"
  356. },
  357. {
  358. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  359. "type": "tidelift"
  360. }
  361. ],
  362. "time": "2022-10-20T09:10:12+00:00"
  363. },
  364. {
  365. "name": "doctrine/lexer",
  366. "version": "1.2.3",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/doctrine/lexer.git",
  370. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  375. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "php": "^7.1 || ^8.0"
  380. },
  381. "require-dev": {
  382. "doctrine/coding-standard": "^9.0",
  383. "phpstan/phpstan": "^1.3",
  384. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  385. "vimeo/psalm": "^4.11"
  386. },
  387. "type": "library",
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Guilherme Blanco",
  400. "email": "guilhermeblanco@gmail.com"
  401. },
  402. {
  403. "name": "Roman Borschel",
  404. "email": "roman@code-factory.org"
  405. },
  406. {
  407. "name": "Johannes Schmitt",
  408. "email": "schmittjoh@gmail.com"
  409. }
  410. ],
  411. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  412. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  413. "keywords": [
  414. "annotations",
  415. "docblock",
  416. "lexer",
  417. "parser",
  418. "php"
  419. ],
  420. "support": {
  421. "issues": "https://github.com/doctrine/lexer/issues",
  422. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  423. },
  424. "funding": [
  425. {
  426. "url": "https://www.doctrine-project.org/sponsorship.html",
  427. "type": "custom"
  428. },
  429. {
  430. "url": "https://www.patreon.com/phpdoctrine",
  431. "type": "patreon"
  432. },
  433. {
  434. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  435. "type": "tidelift"
  436. }
  437. ],
  438. "time": "2022-02-28T11:07:21+00:00"
  439. },
  440. {
  441. "name": "dragonmantank/cron-expression",
  442. "version": "v2.3.1",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/dragonmantank/cron-expression.git",
  446. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  451. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "php": "^7.0|^8.0"
  456. },
  457. "require-dev": {
  458. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  459. },
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-master": "2.3-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Cron\\": "src/Cron/"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Michael Dowling",
  478. "email": "mtdowling@gmail.com",
  479. "homepage": "https://github.com/mtdowling"
  480. },
  481. {
  482. "name": "Chris Tankersley",
  483. "email": "chris@ctankersley.com",
  484. "homepage": "https://github.com/dragonmantank"
  485. }
  486. ],
  487. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  488. "keywords": [
  489. "cron",
  490. "schedule"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  494. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  495. },
  496. "funding": [
  497. {
  498. "url": "https://github.com/dragonmantank",
  499. "type": "github"
  500. }
  501. ],
  502. "time": "2020-10-13T00:52:37+00:00"
  503. },
  504. {
  505. "name": "egulias/email-validator",
  506. "version": "2.1.25",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/egulias/EmailValidator.git",
  510. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  515. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "doctrine/lexer": "^1.0.1",
  520. "php": ">=5.5",
  521. "symfony/polyfill-intl-idn": "^1.10"
  522. },
  523. "require-dev": {
  524. "dominicsayers/isemail": "^3.0.7",
  525. "phpunit/phpunit": "^4.8.36|^7.5.15",
  526. "satooshi/php-coveralls": "^1.0.1"
  527. },
  528. "suggest": {
  529. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  530. },
  531. "type": "library",
  532. "extra": {
  533. "branch-alias": {
  534. "dev-master": "2.1.x-dev"
  535. }
  536. },
  537. "autoload": {
  538. "psr-4": {
  539. "Egulias\\EmailValidator\\": "src"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Eduardo Gulias Davis"
  549. }
  550. ],
  551. "description": "A library for validating emails against several RFCs",
  552. "homepage": "https://github.com/egulias/EmailValidator",
  553. "keywords": [
  554. "email",
  555. "emailvalidation",
  556. "emailvalidator",
  557. "validation",
  558. "validator"
  559. ],
  560. "support": {
  561. "issues": "https://github.com/egulias/EmailValidator/issues",
  562. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  563. },
  564. "funding": [
  565. {
  566. "url": "https://github.com/egulias",
  567. "type": "github"
  568. }
  569. ],
  570. "time": "2020-12-29T14:50:06+00:00"
  571. },
  572. {
  573. "name": "fideloper/proxy",
  574. "version": "4.4.2",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/fideloper/TrustedProxy.git",
  578. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  583. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  588. "php": ">=5.4.0"
  589. },
  590. "require-dev": {
  591. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  592. "mockery/mockery": "^1.0",
  593. "phpunit/phpunit": "^8.5.8|^9.3.3"
  594. },
  595. "type": "library",
  596. "extra": {
  597. "laravel": {
  598. "providers": [
  599. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  600. ]
  601. }
  602. },
  603. "autoload": {
  604. "psr-4": {
  605. "Fideloper\\Proxy\\": "src/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Chris Fidao",
  615. "email": "fideloper@gmail.com"
  616. }
  617. ],
  618. "description": "Set trusted proxies for Laravel",
  619. "keywords": [
  620. "load balancing",
  621. "proxy",
  622. "trusted proxy"
  623. ],
  624. "support": {
  625. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  626. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  627. },
  628. "time": "2022-02-09T13:33:34+00:00"
  629. },
  630. {
  631. "name": "fruitcake/laravel-cors",
  632. "version": "v2.2.0",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/fruitcake/laravel-cors.git",
  636. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  641. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "asm89/stack-cors": "^2.0.1",
  646. "illuminate/contracts": "^6|^7|^8|^9",
  647. "illuminate/support": "^6|^7|^8|^9",
  648. "php": ">=7.2"
  649. },
  650. "require-dev": {
  651. "laravel/framework": "^6|^7.24|^8",
  652. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  653. "phpunit/phpunit": "^6|^7|^8|^9",
  654. "squizlabs/php_codesniffer": "^3.5"
  655. },
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "2.1-dev"
  660. },
  661. "laravel": {
  662. "providers": [
  663. "Fruitcake\\Cors\\CorsServiceProvider"
  664. ]
  665. }
  666. },
  667. "autoload": {
  668. "psr-4": {
  669. "Fruitcake\\Cors\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Fruitcake",
  679. "homepage": "https://fruitcake.nl"
  680. },
  681. {
  682. "name": "Barry vd. Heuvel",
  683. "email": "barryvdh@gmail.com"
  684. }
  685. ],
  686. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  687. "keywords": [
  688. "api",
  689. "cors",
  690. "crossdomain",
  691. "laravel"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  695. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://fruitcake.nl",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://github.com/barryvdh",
  704. "type": "github"
  705. }
  706. ],
  707. "abandoned": true,
  708. "time": "2022-02-23T14:25:13+00:00"
  709. },
  710. {
  711. "name": "guzzlehttp/guzzle",
  712. "version": "7.5.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/guzzle/guzzle.git",
  716. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  721. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "ext-json": "*",
  726. "guzzlehttp/promises": "^1.5",
  727. "guzzlehttp/psr7": "^1.9 || ^2.4",
  728. "php": "^7.2.5 || ^8.0",
  729. "psr/http-client": "^1.0",
  730. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  731. },
  732. "provide": {
  733. "psr/http-client-implementation": "1.0"
  734. },
  735. "require-dev": {
  736. "bamarni/composer-bin-plugin": "^1.8.1",
  737. "ext-curl": "*",
  738. "php-http/client-integration-tests": "^3.0",
  739. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  740. "psr/log": "^1.1 || ^2.0 || ^3.0"
  741. },
  742. "suggest": {
  743. "ext-curl": "Required for CURL handler support",
  744. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  745. "psr/log": "Required for using the Log middleware"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "bamarni-bin": {
  750. "bin-links": true,
  751. "forward-command": false
  752. },
  753. "branch-alias": {
  754. "dev-master": "7.5-dev"
  755. }
  756. },
  757. "autoload": {
  758. "files": [
  759. "src/functions_include.php"
  760. ],
  761. "psr-4": {
  762. "GuzzleHttp\\": "src/"
  763. }
  764. },
  765. "notification-url": "https://packagist.org/downloads/",
  766. "license": [
  767. "MIT"
  768. ],
  769. "authors": [
  770. {
  771. "name": "Graham Campbell",
  772. "email": "hello@gjcampbell.co.uk",
  773. "homepage": "https://github.com/GrahamCampbell"
  774. },
  775. {
  776. "name": "Michael Dowling",
  777. "email": "mtdowling@gmail.com",
  778. "homepage": "https://github.com/mtdowling"
  779. },
  780. {
  781. "name": "Jeremy Lindblom",
  782. "email": "jeremeamia@gmail.com",
  783. "homepage": "https://github.com/jeremeamia"
  784. },
  785. {
  786. "name": "George Mponos",
  787. "email": "gmponos@gmail.com",
  788. "homepage": "https://github.com/gmponos"
  789. },
  790. {
  791. "name": "Tobias Nyholm",
  792. "email": "tobias.nyholm@gmail.com",
  793. "homepage": "https://github.com/Nyholm"
  794. },
  795. {
  796. "name": "Márk Sági-Kazár",
  797. "email": "mark.sagikazar@gmail.com",
  798. "homepage": "https://github.com/sagikazarmark"
  799. },
  800. {
  801. "name": "Tobias Schultze",
  802. "email": "webmaster@tubo-world.de",
  803. "homepage": "https://github.com/Tobion"
  804. }
  805. ],
  806. "description": "Guzzle is a PHP HTTP client library",
  807. "keywords": [
  808. "client",
  809. "curl",
  810. "framework",
  811. "http",
  812. "http client",
  813. "psr-18",
  814. "psr-7",
  815. "rest",
  816. "web service"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/guzzle/guzzle/issues",
  820. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  821. },
  822. "funding": [
  823. {
  824. "url": "https://github.com/GrahamCampbell",
  825. "type": "github"
  826. },
  827. {
  828. "url": "https://github.com/Nyholm",
  829. "type": "github"
  830. },
  831. {
  832. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  833. "type": "tidelift"
  834. }
  835. ],
  836. "time": "2022-08-28T15:39:27+00:00"
  837. },
  838. {
  839. "name": "guzzlehttp/promises",
  840. "version": "1.5.2",
  841. "source": {
  842. "type": "git",
  843. "url": "https://github.com/guzzle/promises.git",
  844. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  845. },
  846. "dist": {
  847. "type": "zip",
  848. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  849. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  850. "shasum": ""
  851. },
  852. "require": {
  853. "php": ">=5.5"
  854. },
  855. "require-dev": {
  856. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "1.5-dev"
  862. }
  863. },
  864. "autoload": {
  865. "files": [
  866. "src/functions_include.php"
  867. ],
  868. "psr-4": {
  869. "GuzzleHttp\\Promise\\": "src/"
  870. }
  871. },
  872. "notification-url": "https://packagist.org/downloads/",
  873. "license": [
  874. "MIT"
  875. ],
  876. "authors": [
  877. {
  878. "name": "Graham Campbell",
  879. "email": "hello@gjcampbell.co.uk",
  880. "homepage": "https://github.com/GrahamCampbell"
  881. },
  882. {
  883. "name": "Michael Dowling",
  884. "email": "mtdowling@gmail.com",
  885. "homepage": "https://github.com/mtdowling"
  886. },
  887. {
  888. "name": "Tobias Nyholm",
  889. "email": "tobias.nyholm@gmail.com",
  890. "homepage": "https://github.com/Nyholm"
  891. },
  892. {
  893. "name": "Tobias Schultze",
  894. "email": "webmaster@tubo-world.de",
  895. "homepage": "https://github.com/Tobion"
  896. }
  897. ],
  898. "description": "Guzzle promises library",
  899. "keywords": [
  900. "promise"
  901. ],
  902. "support": {
  903. "issues": "https://github.com/guzzle/promises/issues",
  904. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  905. },
  906. "funding": [
  907. {
  908. "url": "https://github.com/GrahamCampbell",
  909. "type": "github"
  910. },
  911. {
  912. "url": "https://github.com/Nyholm",
  913. "type": "github"
  914. },
  915. {
  916. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  917. "type": "tidelift"
  918. }
  919. ],
  920. "time": "2022-08-28T14:55:35+00:00"
  921. },
  922. {
  923. "name": "guzzlehttp/psr7",
  924. "version": "2.4.4",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/guzzle/psr7.git",
  928. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  933. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "php": "^7.2.5 || ^8.0",
  938. "psr/http-factory": "^1.0",
  939. "psr/http-message": "^1.0",
  940. "ralouphie/getallheaders": "^3.0"
  941. },
  942. "provide": {
  943. "psr/http-factory-implementation": "1.0",
  944. "psr/http-message-implementation": "1.0"
  945. },
  946. "require-dev": {
  947. "bamarni/composer-bin-plugin": "^1.8.1",
  948. "http-interop/http-factory-tests": "^0.9",
  949. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  950. },
  951. "suggest": {
  952. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "bamarni-bin": {
  957. "bin-links": true,
  958. "forward-command": false
  959. },
  960. "branch-alias": {
  961. "dev-master": "2.4-dev"
  962. }
  963. },
  964. "autoload": {
  965. "psr-4": {
  966. "GuzzleHttp\\Psr7\\": "src/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Graham Campbell",
  976. "email": "hello@gjcampbell.co.uk",
  977. "homepage": "https://github.com/GrahamCampbell"
  978. },
  979. {
  980. "name": "Michael Dowling",
  981. "email": "mtdowling@gmail.com",
  982. "homepage": "https://github.com/mtdowling"
  983. },
  984. {
  985. "name": "George Mponos",
  986. "email": "gmponos@gmail.com",
  987. "homepage": "https://github.com/gmponos"
  988. },
  989. {
  990. "name": "Tobias Nyholm",
  991. "email": "tobias.nyholm@gmail.com",
  992. "homepage": "https://github.com/Nyholm"
  993. },
  994. {
  995. "name": "Márk Sági-Kazár",
  996. "email": "mark.sagikazar@gmail.com",
  997. "homepage": "https://github.com/sagikazarmark"
  998. },
  999. {
  1000. "name": "Tobias Schultze",
  1001. "email": "webmaster@tubo-world.de",
  1002. "homepage": "https://github.com/Tobion"
  1003. },
  1004. {
  1005. "name": "Márk Sági-Kazár",
  1006. "email": "mark.sagikazar@gmail.com",
  1007. "homepage": "https://sagikazarmark.hu"
  1008. }
  1009. ],
  1010. "description": "PSR-7 message implementation that also provides common utility methods",
  1011. "keywords": [
  1012. "http",
  1013. "message",
  1014. "psr-7",
  1015. "request",
  1016. "response",
  1017. "stream",
  1018. "uri",
  1019. "url"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/guzzle/psr7/issues",
  1023. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/GrahamCampbell",
  1028. "type": "github"
  1029. },
  1030. {
  1031. "url": "https://github.com/Nyholm",
  1032. "type": "github"
  1033. },
  1034. {
  1035. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1036. "type": "tidelift"
  1037. }
  1038. ],
  1039. "time": "2023-03-09T13:19:02+00:00"
  1040. },
  1041. {
  1042. "name": "laravel/framework",
  1043. "version": "v7.30.6",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/laravel/framework.git",
  1047. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  1052. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "doctrine/inflector": "^1.4|^2.0",
  1057. "dragonmantank/cron-expression": "^2.3.1",
  1058. "egulias/email-validator": "^2.1.10",
  1059. "ext-json": "*",
  1060. "ext-mbstring": "*",
  1061. "ext-openssl": "*",
  1062. "league/commonmark": "^1.3",
  1063. "league/flysystem": "^1.1",
  1064. "monolog/monolog": "^2.0",
  1065. "nesbot/carbon": "^2.31",
  1066. "opis/closure": "^3.6",
  1067. "php": "^7.2.5|^8.0",
  1068. "psr/container": "^1.0",
  1069. "psr/simple-cache": "^1.0",
  1070. "ramsey/uuid": "^3.7|^4.0",
  1071. "swiftmailer/swiftmailer": "^6.0",
  1072. "symfony/console": "^5.0",
  1073. "symfony/error-handler": "^5.0",
  1074. "symfony/finder": "^5.0",
  1075. "symfony/http-foundation": "^5.0",
  1076. "symfony/http-kernel": "^5.0",
  1077. "symfony/mime": "^5.0",
  1078. "symfony/polyfill-php73": "^1.17",
  1079. "symfony/process": "^5.0",
  1080. "symfony/routing": "^5.0",
  1081. "symfony/var-dumper": "^5.0",
  1082. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1083. "vlucas/phpdotenv": "^4.0",
  1084. "voku/portable-ascii": "^1.4.8"
  1085. },
  1086. "conflict": {
  1087. "tightenco/collect": "<5.5.33"
  1088. },
  1089. "provide": {
  1090. "psr/container-implementation": "1.0"
  1091. },
  1092. "replace": {
  1093. "illuminate/auth": "self.version",
  1094. "illuminate/broadcasting": "self.version",
  1095. "illuminate/bus": "self.version",
  1096. "illuminate/cache": "self.version",
  1097. "illuminate/config": "self.version",
  1098. "illuminate/console": "self.version",
  1099. "illuminate/container": "self.version",
  1100. "illuminate/contracts": "self.version",
  1101. "illuminate/cookie": "self.version",
  1102. "illuminate/database": "self.version",
  1103. "illuminate/encryption": "self.version",
  1104. "illuminate/events": "self.version",
  1105. "illuminate/filesystem": "self.version",
  1106. "illuminate/hashing": "self.version",
  1107. "illuminate/http": "self.version",
  1108. "illuminate/log": "self.version",
  1109. "illuminate/mail": "self.version",
  1110. "illuminate/notifications": "self.version",
  1111. "illuminate/pagination": "self.version",
  1112. "illuminate/pipeline": "self.version",
  1113. "illuminate/queue": "self.version",
  1114. "illuminate/redis": "self.version",
  1115. "illuminate/routing": "self.version",
  1116. "illuminate/session": "self.version",
  1117. "illuminate/support": "self.version",
  1118. "illuminate/testing": "self.version",
  1119. "illuminate/translation": "self.version",
  1120. "illuminate/validation": "self.version",
  1121. "illuminate/view": "self.version"
  1122. },
  1123. "require-dev": {
  1124. "aws/aws-sdk-php": "^3.155",
  1125. "doctrine/dbal": "^2.6",
  1126. "filp/whoops": "^2.8",
  1127. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1128. "league/flysystem-cached-adapter": "^1.0",
  1129. "mockery/mockery": "~1.3.3|^1.4.2",
  1130. "moontoast/math": "^1.1",
  1131. "orchestra/testbench-core": "^5.8",
  1132. "pda/pheanstalk": "^4.0",
  1133. "phpunit/phpunit": "^8.4|^9.3.3",
  1134. "predis/predis": "^1.1.1",
  1135. "symfony/cache": "^5.0"
  1136. },
  1137. "suggest": {
  1138. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1139. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1140. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1141. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1142. "ext-memcached": "Required to use the memcache cache driver.",
  1143. "ext-pcntl": "Required to use all features of the queue worker.",
  1144. "ext-posix": "Required to use all features of the queue worker.",
  1145. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1146. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1147. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1148. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1149. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1150. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1151. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1152. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1153. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1154. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1155. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1156. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1157. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1158. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1159. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1160. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1161. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1162. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1163. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1164. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "7.x-dev"
  1170. }
  1171. },
  1172. "autoload": {
  1173. "files": [
  1174. "src/Illuminate/Foundation/helpers.php",
  1175. "src/Illuminate/Support/helpers.php"
  1176. ],
  1177. "psr-4": {
  1178. "Illuminate\\": "src/Illuminate/"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Taylor Otwell",
  1188. "email": "taylor@laravel.com"
  1189. }
  1190. ],
  1191. "description": "The Laravel Framework.",
  1192. "homepage": "https://laravel.com",
  1193. "keywords": [
  1194. "framework",
  1195. "laravel"
  1196. ],
  1197. "support": {
  1198. "issues": "https://github.com/laravel/framework/issues",
  1199. "source": "https://github.com/laravel/framework"
  1200. },
  1201. "time": "2021-12-07T14:56:47+00:00"
  1202. },
  1203. {
  1204. "name": "laravel/tinker",
  1205. "version": "v2.8.1",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/laravel/tinker.git",
  1209. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1214. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1219. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1220. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1221. "php": "^7.2.5|^8.0",
  1222. "psy/psysh": "^0.10.4|^0.11.1",
  1223. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1224. },
  1225. "require-dev": {
  1226. "mockery/mockery": "~1.3.3|^1.4.2",
  1227. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1228. },
  1229. "suggest": {
  1230. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "2.x-dev"
  1236. },
  1237. "laravel": {
  1238. "providers": [
  1239. "Laravel\\Tinker\\TinkerServiceProvider"
  1240. ]
  1241. }
  1242. },
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Laravel\\Tinker\\": "src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Taylor Otwell",
  1255. "email": "taylor@laravel.com"
  1256. }
  1257. ],
  1258. "description": "Powerful REPL for the Laravel framework.",
  1259. "keywords": [
  1260. "REPL",
  1261. "Tinker",
  1262. "laravel",
  1263. "psysh"
  1264. ],
  1265. "support": {
  1266. "issues": "https://github.com/laravel/tinker/issues",
  1267. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1268. },
  1269. "time": "2023-02-15T16:40:09+00:00"
  1270. },
  1271. {
  1272. "name": "laravel/ui",
  1273. "version": "v2.5.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/laravel/ui.git",
  1277. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  1282. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "illuminate/console": "^7.0",
  1287. "illuminate/filesystem": "^7.0",
  1288. "illuminate/support": "^7.0",
  1289. "php": "^7.2.5|^8.0"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "laravel": {
  1294. "providers": [
  1295. "Laravel\\Ui\\UiServiceProvider"
  1296. ]
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Laravel\\Ui\\": "src/",
  1302. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  1303. }
  1304. },
  1305. "notification-url": "https://packagist.org/downloads/",
  1306. "license": [
  1307. "MIT"
  1308. ],
  1309. "authors": [
  1310. {
  1311. "name": "Taylor Otwell",
  1312. "email": "taylor@laravel.com"
  1313. }
  1314. ],
  1315. "description": "Laravel UI utilities and presets.",
  1316. "keywords": [
  1317. "laravel",
  1318. "ui"
  1319. ],
  1320. "support": {
  1321. "issues": "https://github.com/laravel/ui/issues",
  1322. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  1323. },
  1324. "time": "2020-11-03T19:45:19+00:00"
  1325. },
  1326. {
  1327. "name": "laravelcollective/html",
  1328. "version": "v6.4.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/LaravelCollective/html.git",
  1332. "reference": "ac74f580459a5120079b8def0404e5d312a09504"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/LaravelCollective/html/zipball/ac74f580459a5120079b8def0404e5d312a09504",
  1337. "reference": "ac74f580459a5120079b8def0404e5d312a09504",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1342. "illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1343. "illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1344. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1345. "illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1346. "php": ">=7.2.5"
  1347. },
  1348. "require-dev": {
  1349. "illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1350. "mockery/mockery": "~1.0",
  1351. "phpunit/phpunit": "~8.5|^9.5.10"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "6.x-dev"
  1357. },
  1358. "laravel": {
  1359. "providers": [
  1360. "Collective\\Html\\HtmlServiceProvider"
  1361. ],
  1362. "aliases": {
  1363. "Form": "Collective\\Html\\FormFacade",
  1364. "Html": "Collective\\Html\\HtmlFacade"
  1365. }
  1366. }
  1367. },
  1368. "autoload": {
  1369. "files": [
  1370. "src/helpers.php"
  1371. ],
  1372. "psr-4": {
  1373. "Collective\\Html\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Adam Engebretson",
  1383. "email": "adam@laravelcollective.com"
  1384. },
  1385. {
  1386. "name": "Taylor Otwell",
  1387. "email": "taylorotwell@gmail.com"
  1388. }
  1389. ],
  1390. "description": "HTML and Form Builders for the Laravel Framework",
  1391. "homepage": "https://laravelcollective.com",
  1392. "support": {
  1393. "issues": "https://github.com/LaravelCollective/html/issues",
  1394. "source": "https://github.com/LaravelCollective/html"
  1395. },
  1396. "time": "2023-02-13T18:15:35+00:00"
  1397. },
  1398. {
  1399. "name": "league/commonmark",
  1400. "version": "1.6.7",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/thephpleague/commonmark.git",
  1404. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1409. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "ext-mbstring": "*",
  1414. "php": "^7.1 || ^8.0"
  1415. },
  1416. "conflict": {
  1417. "scrutinizer/ocular": "1.7.*"
  1418. },
  1419. "require-dev": {
  1420. "cebe/markdown": "~1.0",
  1421. "commonmark/commonmark.js": "0.29.2",
  1422. "erusev/parsedown": "~1.0",
  1423. "ext-json": "*",
  1424. "github/gfm": "0.29.0",
  1425. "michelf/php-markdown": "~1.4",
  1426. "mikehaertl/php-shellcommand": "^1.4",
  1427. "phpstan/phpstan": "^0.12.90",
  1428. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1429. "scrutinizer/ocular": "^1.5",
  1430. "symfony/finder": "^4.2"
  1431. },
  1432. "bin": [
  1433. "bin/commonmark"
  1434. ],
  1435. "type": "library",
  1436. "autoload": {
  1437. "psr-4": {
  1438. "League\\CommonMark\\": "src"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "BSD-3-Clause"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Colin O'Dell",
  1448. "email": "colinodell@gmail.com",
  1449. "homepage": "https://www.colinodell.com",
  1450. "role": "Lead Developer"
  1451. }
  1452. ],
  1453. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1454. "homepage": "https://commonmark.thephpleague.com",
  1455. "keywords": [
  1456. "commonmark",
  1457. "flavored",
  1458. "gfm",
  1459. "github",
  1460. "github-flavored",
  1461. "markdown",
  1462. "md",
  1463. "parser"
  1464. ],
  1465. "support": {
  1466. "docs": "https://commonmark.thephpleague.com/",
  1467. "issues": "https://github.com/thephpleague/commonmark/issues",
  1468. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1469. "source": "https://github.com/thephpleague/commonmark"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://www.colinodell.com/sponsor",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://www.paypal.me/colinpodell/10.00",
  1478. "type": "custom"
  1479. },
  1480. {
  1481. "url": "https://github.com/colinodell",
  1482. "type": "github"
  1483. },
  1484. {
  1485. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1486. "type": "tidelift"
  1487. }
  1488. ],
  1489. "time": "2022-01-13T17:18:13+00:00"
  1490. },
  1491. {
  1492. "name": "league/flysystem",
  1493. "version": "1.1.10",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/thephpleague/flysystem.git",
  1497. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1502. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "ext-fileinfo": "*",
  1507. "league/mime-type-detection": "^1.3",
  1508. "php": "^7.2.5 || ^8.0"
  1509. },
  1510. "conflict": {
  1511. "league/flysystem-sftp": "<1.0.6"
  1512. },
  1513. "require-dev": {
  1514. "phpspec/prophecy": "^1.11.1",
  1515. "phpunit/phpunit": "^8.5.8"
  1516. },
  1517. "suggest": {
  1518. "ext-ftp": "Allows you to use FTP server storage",
  1519. "ext-openssl": "Allows you to use FTPS server storage",
  1520. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1521. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1522. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1523. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1524. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1525. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1526. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1527. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1528. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1529. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1530. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "1.1-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "League\\Flysystem\\": "src/"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Frank de Jonge",
  1550. "email": "info@frenky.net"
  1551. }
  1552. ],
  1553. "description": "Filesystem abstraction: Many filesystems, one API.",
  1554. "keywords": [
  1555. "Cloud Files",
  1556. "WebDAV",
  1557. "abstraction",
  1558. "aws",
  1559. "cloud",
  1560. "copy.com",
  1561. "dropbox",
  1562. "file systems",
  1563. "files",
  1564. "filesystem",
  1565. "filesystems",
  1566. "ftp",
  1567. "rackspace",
  1568. "remote",
  1569. "s3",
  1570. "sftp",
  1571. "storage"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/thephpleague/flysystem/issues",
  1575. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1576. },
  1577. "funding": [
  1578. {
  1579. "url": "https://offset.earth/frankdejonge",
  1580. "type": "other"
  1581. }
  1582. ],
  1583. "time": "2022-10-04T09:16:37+00:00"
  1584. },
  1585. {
  1586. "name": "league/flysystem-aws-s3-v3",
  1587. "version": "1.0.30",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  1591. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/af286f291ebab6877bac0c359c6c2cb017eb061d",
  1596. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "aws/aws-sdk-php": "^3.20.0",
  1601. "league/flysystem": "^1.0.40",
  1602. "php": ">=5.5.0"
  1603. },
  1604. "require-dev": {
  1605. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  1606. "phpspec/phpspec": "^2.0.0"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.0-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "League\\Flysystem\\AwsS3v3\\": "src/"
  1617. }
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Frank de Jonge",
  1626. "email": "info@frenky.net"
  1627. }
  1628. ],
  1629. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  1630. "support": {
  1631. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  1632. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.30"
  1633. },
  1634. "funding": [
  1635. {
  1636. "url": "https://offset.earth/frankdejonge",
  1637. "type": "custom"
  1638. },
  1639. {
  1640. "url": "https://github.com/frankdejonge",
  1641. "type": "github"
  1642. },
  1643. {
  1644. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1645. "type": "tidelift"
  1646. }
  1647. ],
  1648. "time": "2022-07-02T13:51:38+00:00"
  1649. },
  1650. {
  1651. "name": "league/mime-type-detection",
  1652. "version": "1.11.0",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1656. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1661. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1662. "shasum": ""
  1663. },
  1664. "require": {
  1665. "ext-fileinfo": "*",
  1666. "php": "^7.2 || ^8.0"
  1667. },
  1668. "require-dev": {
  1669. "friendsofphp/php-cs-fixer": "^3.2",
  1670. "phpstan/phpstan": "^0.12.68",
  1671. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1672. },
  1673. "type": "library",
  1674. "autoload": {
  1675. "psr-4": {
  1676. "League\\MimeTypeDetection\\": "src"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Frank de Jonge",
  1686. "email": "info@frankdejonge.nl"
  1687. }
  1688. ],
  1689. "description": "Mime-type detection for Flysystem",
  1690. "support": {
  1691. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1692. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1693. },
  1694. "funding": [
  1695. {
  1696. "url": "https://github.com/frankdejonge",
  1697. "type": "github"
  1698. },
  1699. {
  1700. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1701. "type": "tidelift"
  1702. }
  1703. ],
  1704. "time": "2022-04-17T13:12:02+00:00"
  1705. },
  1706. {
  1707. "name": "monolog/monolog",
  1708. "version": "2.9.1",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/Seldaek/monolog.git",
  1712. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1717. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": ">=7.2",
  1722. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1723. },
  1724. "provide": {
  1725. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1726. },
  1727. "require-dev": {
  1728. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1729. "doctrine/couchdb": "~1.0@dev",
  1730. "elasticsearch/elasticsearch": "^7 || ^8",
  1731. "ext-json": "*",
  1732. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1733. "guzzlehttp/guzzle": "^7.4",
  1734. "guzzlehttp/psr7": "^2.2",
  1735. "mongodb/mongodb": "^1.8",
  1736. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1737. "phpspec/prophecy": "^1.15",
  1738. "phpstan/phpstan": "^0.12.91",
  1739. "phpunit/phpunit": "^8.5.14",
  1740. "predis/predis": "^1.1 || ^2.0",
  1741. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1742. "ruflin/elastica": "^7",
  1743. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1744. "symfony/mailer": "^5.4 || ^6",
  1745. "symfony/mime": "^5.4 || ^6"
  1746. },
  1747. "suggest": {
  1748. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1749. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1750. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1751. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1752. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1753. "ext-mbstring": "Allow to work properly with unicode symbols",
  1754. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1755. "ext-openssl": "Required to send log messages using SSL",
  1756. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1757. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1758. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1759. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1760. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1761. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "branch-alias": {
  1766. "dev-main": "2.x-dev"
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-4": {
  1771. "Monolog\\": "src/Monolog"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Jordi Boggiano",
  1781. "email": "j.boggiano@seld.be",
  1782. "homepage": "https://seld.be"
  1783. }
  1784. ],
  1785. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1786. "homepage": "https://github.com/Seldaek/monolog",
  1787. "keywords": [
  1788. "log",
  1789. "logging",
  1790. "psr-3"
  1791. ],
  1792. "support": {
  1793. "issues": "https://github.com/Seldaek/monolog/issues",
  1794. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  1795. },
  1796. "funding": [
  1797. {
  1798. "url": "https://github.com/Seldaek",
  1799. "type": "github"
  1800. },
  1801. {
  1802. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1803. "type": "tidelift"
  1804. }
  1805. ],
  1806. "time": "2023-02-06T13:44:46+00:00"
  1807. },
  1808. {
  1809. "name": "mtdowling/jmespath.php",
  1810. "version": "2.6.1",
  1811. "source": {
  1812. "type": "git",
  1813. "url": "https://github.com/jmespath/jmespath.php.git",
  1814. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1815. },
  1816. "dist": {
  1817. "type": "zip",
  1818. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1819. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1820. "shasum": ""
  1821. },
  1822. "require": {
  1823. "php": "^5.4 || ^7.0 || ^8.0",
  1824. "symfony/polyfill-mbstring": "^1.17"
  1825. },
  1826. "require-dev": {
  1827. "composer/xdebug-handler": "^1.4 || ^2.0",
  1828. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1829. },
  1830. "bin": [
  1831. "bin/jp.php"
  1832. ],
  1833. "type": "library",
  1834. "extra": {
  1835. "branch-alias": {
  1836. "dev-master": "2.6-dev"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "files": [
  1841. "src/JmesPath.php"
  1842. ],
  1843. "psr-4": {
  1844. "JmesPath\\": "src/"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Michael Dowling",
  1854. "email": "mtdowling@gmail.com",
  1855. "homepage": "https://github.com/mtdowling"
  1856. }
  1857. ],
  1858. "description": "Declaratively specify how to extract elements from a JSON document",
  1859. "keywords": [
  1860. "json",
  1861. "jsonpath"
  1862. ],
  1863. "support": {
  1864. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1865. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  1866. },
  1867. "time": "2021-06-14T00:11:39+00:00"
  1868. },
  1869. {
  1870. "name": "nesbot/carbon",
  1871. "version": "2.66.0",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/briannesbitt/Carbon.git",
  1875. "reference": "496712849902241f04902033b0441b269effe001"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1880. "reference": "496712849902241f04902033b0441b269effe001",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "ext-json": "*",
  1885. "php": "^7.1.8 || ^8.0",
  1886. "symfony/polyfill-mbstring": "^1.0",
  1887. "symfony/polyfill-php80": "^1.16",
  1888. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1889. },
  1890. "require-dev": {
  1891. "doctrine/dbal": "^2.0 || ^3.1.4",
  1892. "doctrine/orm": "^2.7",
  1893. "friendsofphp/php-cs-fixer": "^3.0",
  1894. "kylekatarnls/multi-tester": "^2.0",
  1895. "ondrejmirtes/better-reflection": "*",
  1896. "phpmd/phpmd": "^2.9",
  1897. "phpstan/extension-installer": "^1.0",
  1898. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1899. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1900. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1901. "squizlabs/php_codesniffer": "^3.4"
  1902. },
  1903. "bin": [
  1904. "bin/carbon"
  1905. ],
  1906. "type": "library",
  1907. "extra": {
  1908. "branch-alias": {
  1909. "dev-3.x": "3.x-dev",
  1910. "dev-master": "2.x-dev"
  1911. },
  1912. "laravel": {
  1913. "providers": [
  1914. "Carbon\\Laravel\\ServiceProvider"
  1915. ]
  1916. },
  1917. "phpstan": {
  1918. "includes": [
  1919. "extension.neon"
  1920. ]
  1921. }
  1922. },
  1923. "autoload": {
  1924. "psr-4": {
  1925. "Carbon\\": "src/Carbon/"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Brian Nesbitt",
  1935. "email": "brian@nesbot.com",
  1936. "homepage": "https://markido.com"
  1937. },
  1938. {
  1939. "name": "kylekatarnls",
  1940. "homepage": "https://github.com/kylekatarnls"
  1941. }
  1942. ],
  1943. "description": "An API extension for DateTime that supports 281 different languages.",
  1944. "homepage": "https://carbon.nesbot.com",
  1945. "keywords": [
  1946. "date",
  1947. "datetime",
  1948. "time"
  1949. ],
  1950. "support": {
  1951. "docs": "https://carbon.nesbot.com/docs",
  1952. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1953. "source": "https://github.com/briannesbitt/Carbon"
  1954. },
  1955. "funding": [
  1956. {
  1957. "url": "https://github.com/sponsors/kylekatarnls",
  1958. "type": "github"
  1959. },
  1960. {
  1961. "url": "https://opencollective.com/Carbon#sponsor",
  1962. "type": "opencollective"
  1963. },
  1964. {
  1965. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1966. "type": "tidelift"
  1967. }
  1968. ],
  1969. "time": "2023-01-29T18:53:47+00:00"
  1970. },
  1971. {
  1972. "name": "nikic/php-parser",
  1973. "version": "v4.15.4",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/nikic/PHP-Parser.git",
  1977. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1982. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "ext-tokenizer": "*",
  1987. "php": ">=7.0"
  1988. },
  1989. "require-dev": {
  1990. "ircmaxell/php-yacc": "^0.0.7",
  1991. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1992. },
  1993. "bin": [
  1994. "bin/php-parse"
  1995. ],
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-master": "4.9-dev"
  2000. }
  2001. },
  2002. "autoload": {
  2003. "psr-4": {
  2004. "PhpParser\\": "lib/PhpParser"
  2005. }
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "BSD-3-Clause"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Nikita Popov"
  2014. }
  2015. ],
  2016. "description": "A PHP parser written in PHP",
  2017. "keywords": [
  2018. "parser",
  2019. "php"
  2020. ],
  2021. "support": {
  2022. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2023. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  2024. },
  2025. "time": "2023-03-05T19:49:14+00:00"
  2026. },
  2027. {
  2028. "name": "opis/closure",
  2029. "version": "3.6.3",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/opis/closure.git",
  2033. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2038. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2039. "shasum": ""
  2040. },
  2041. "require": {
  2042. "php": "^5.4 || ^7.0 || ^8.0"
  2043. },
  2044. "require-dev": {
  2045. "jeremeamia/superclosure": "^2.0",
  2046. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "3.6.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "files": [
  2056. "functions.php"
  2057. ],
  2058. "psr-4": {
  2059. "Opis\\Closure\\": "src/"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Marius Sarca",
  2069. "email": "marius.sarca@gmail.com"
  2070. },
  2071. {
  2072. "name": "Sorin Sarca",
  2073. "email": "sarca_sorin@hotmail.com"
  2074. }
  2075. ],
  2076. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2077. "homepage": "https://opis.io/closure",
  2078. "keywords": [
  2079. "anonymous functions",
  2080. "closure",
  2081. "function",
  2082. "serializable",
  2083. "serialization",
  2084. "serialize"
  2085. ],
  2086. "support": {
  2087. "issues": "https://github.com/opis/closure/issues",
  2088. "source": "https://github.com/opis/closure/tree/3.6.3"
  2089. },
  2090. "time": "2022-01-27T09:35:39+00:00"
  2091. },
  2092. {
  2093. "name": "phpoption/phpoption",
  2094. "version": "1.9.1",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/schmittjoh/php-option.git",
  2098. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  2103. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  2104. "shasum": ""
  2105. },
  2106. "require": {
  2107. "php": "^7.2.5 || ^8.0"
  2108. },
  2109. "require-dev": {
  2110. "bamarni/composer-bin-plugin": "^1.8.2",
  2111. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2112. },
  2113. "type": "library",
  2114. "extra": {
  2115. "bamarni-bin": {
  2116. "bin-links": true,
  2117. "forward-command": true
  2118. },
  2119. "branch-alias": {
  2120. "dev-master": "1.9-dev"
  2121. }
  2122. },
  2123. "autoload": {
  2124. "psr-4": {
  2125. "PhpOption\\": "src/PhpOption/"
  2126. }
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "Apache-2.0"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Johannes M. Schmitt",
  2135. "email": "schmittjoh@gmail.com",
  2136. "homepage": "https://github.com/schmittjoh"
  2137. },
  2138. {
  2139. "name": "Graham Campbell",
  2140. "email": "hello@gjcampbell.co.uk",
  2141. "homepage": "https://github.com/GrahamCampbell"
  2142. }
  2143. ],
  2144. "description": "Option Type for PHP",
  2145. "keywords": [
  2146. "language",
  2147. "option",
  2148. "php",
  2149. "type"
  2150. ],
  2151. "support": {
  2152. "issues": "https://github.com/schmittjoh/php-option/issues",
  2153. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  2154. },
  2155. "funding": [
  2156. {
  2157. "url": "https://github.com/GrahamCampbell",
  2158. "type": "github"
  2159. },
  2160. {
  2161. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2162. "type": "tidelift"
  2163. }
  2164. ],
  2165. "time": "2023-02-25T19:38:58+00:00"
  2166. },
  2167. {
  2168. "name": "psr/container",
  2169. "version": "1.1.2",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/php-fig/container.git",
  2173. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2178. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2179. "shasum": ""
  2180. },
  2181. "require": {
  2182. "php": ">=7.4.0"
  2183. },
  2184. "type": "library",
  2185. "autoload": {
  2186. "psr-4": {
  2187. "Psr\\Container\\": "src/"
  2188. }
  2189. },
  2190. "notification-url": "https://packagist.org/downloads/",
  2191. "license": [
  2192. "MIT"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "PHP-FIG",
  2197. "homepage": "https://www.php-fig.org/"
  2198. }
  2199. ],
  2200. "description": "Common Container Interface (PHP FIG PSR-11)",
  2201. "homepage": "https://github.com/php-fig/container",
  2202. "keywords": [
  2203. "PSR-11",
  2204. "container",
  2205. "container-interface",
  2206. "container-interop",
  2207. "psr"
  2208. ],
  2209. "support": {
  2210. "issues": "https://github.com/php-fig/container/issues",
  2211. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2212. },
  2213. "time": "2021-11-05T16:50:12+00:00"
  2214. },
  2215. {
  2216. "name": "psr/event-dispatcher",
  2217. "version": "1.0.0",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/php-fig/event-dispatcher.git",
  2221. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2226. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=7.2.0"
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "branch-alias": {
  2235. "dev-master": "1.0.x-dev"
  2236. }
  2237. },
  2238. "autoload": {
  2239. "psr-4": {
  2240. "Psr\\EventDispatcher\\": "src/"
  2241. }
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "PHP-FIG",
  2250. "homepage": "http://www.php-fig.org/"
  2251. }
  2252. ],
  2253. "description": "Standard interfaces for event handling.",
  2254. "keywords": [
  2255. "events",
  2256. "psr",
  2257. "psr-14"
  2258. ],
  2259. "support": {
  2260. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2261. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2262. },
  2263. "time": "2019-01-08T18:20:26+00:00"
  2264. },
  2265. {
  2266. "name": "psr/http-client",
  2267. "version": "1.0.1",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/php-fig/http-client.git",
  2271. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2276. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2277. "shasum": ""
  2278. },
  2279. "require": {
  2280. "php": "^7.0 || ^8.0",
  2281. "psr/http-message": "^1.0"
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "1.0.x-dev"
  2287. }
  2288. },
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Psr\\Http\\Client\\": "src/"
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "PHP-FIG",
  2301. "homepage": "http://www.php-fig.org/"
  2302. }
  2303. ],
  2304. "description": "Common interface for HTTP clients",
  2305. "homepage": "https://github.com/php-fig/http-client",
  2306. "keywords": [
  2307. "http",
  2308. "http-client",
  2309. "psr",
  2310. "psr-18"
  2311. ],
  2312. "support": {
  2313. "source": "https://github.com/php-fig/http-client/tree/master"
  2314. },
  2315. "time": "2020-06-29T06:28:15+00:00"
  2316. },
  2317. {
  2318. "name": "psr/http-factory",
  2319. "version": "1.0.1",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/php-fig/http-factory.git",
  2323. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2328. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2329. "shasum": ""
  2330. },
  2331. "require": {
  2332. "php": ">=7.0.0",
  2333. "psr/http-message": "^1.0"
  2334. },
  2335. "type": "library",
  2336. "extra": {
  2337. "branch-alias": {
  2338. "dev-master": "1.0.x-dev"
  2339. }
  2340. },
  2341. "autoload": {
  2342. "psr-4": {
  2343. "Psr\\Http\\Message\\": "src/"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "MIT"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "PHP-FIG",
  2353. "homepage": "http://www.php-fig.org/"
  2354. }
  2355. ],
  2356. "description": "Common interfaces for PSR-7 HTTP message factories",
  2357. "keywords": [
  2358. "factory",
  2359. "http",
  2360. "message",
  2361. "psr",
  2362. "psr-17",
  2363. "psr-7",
  2364. "request",
  2365. "response"
  2366. ],
  2367. "support": {
  2368. "source": "https://github.com/php-fig/http-factory/tree/master"
  2369. },
  2370. "time": "2019-04-30T12:38:16+00:00"
  2371. },
  2372. {
  2373. "name": "psr/http-message",
  2374. "version": "1.0.1",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/php-fig/http-message.git",
  2378. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2383. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2384. "shasum": ""
  2385. },
  2386. "require": {
  2387. "php": ">=5.3.0"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "branch-alias": {
  2392. "dev-master": "1.0.x-dev"
  2393. }
  2394. },
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Psr\\Http\\Message\\": "src/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "PHP-FIG",
  2407. "homepage": "http://www.php-fig.org/"
  2408. }
  2409. ],
  2410. "description": "Common interface for HTTP messages",
  2411. "homepage": "https://github.com/php-fig/http-message",
  2412. "keywords": [
  2413. "http",
  2414. "http-message",
  2415. "psr",
  2416. "psr-7",
  2417. "request",
  2418. "response"
  2419. ],
  2420. "support": {
  2421. "source": "https://github.com/php-fig/http-message/tree/master"
  2422. },
  2423. "time": "2016-08-06T14:39:51+00:00"
  2424. },
  2425. {
  2426. "name": "psr/log",
  2427. "version": "1.1.4",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/php-fig/log.git",
  2431. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2436. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "php": ">=5.3.0"
  2441. },
  2442. "type": "library",
  2443. "extra": {
  2444. "branch-alias": {
  2445. "dev-master": "1.1.x-dev"
  2446. }
  2447. },
  2448. "autoload": {
  2449. "psr-4": {
  2450. "Psr\\Log\\": "Psr/Log/"
  2451. }
  2452. },
  2453. "notification-url": "https://packagist.org/downloads/",
  2454. "license": [
  2455. "MIT"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "PHP-FIG",
  2460. "homepage": "https://www.php-fig.org/"
  2461. }
  2462. ],
  2463. "description": "Common interface for logging libraries",
  2464. "homepage": "https://github.com/php-fig/log",
  2465. "keywords": [
  2466. "log",
  2467. "psr",
  2468. "psr-3"
  2469. ],
  2470. "support": {
  2471. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2472. },
  2473. "time": "2021-05-03T11:20:27+00:00"
  2474. },
  2475. {
  2476. "name": "psr/simple-cache",
  2477. "version": "1.0.1",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/php-fig/simple-cache.git",
  2481. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2486. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2487. "shasum": ""
  2488. },
  2489. "require": {
  2490. "php": ">=5.3.0"
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-master": "1.0.x-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Psr\\SimpleCache\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "PHP-FIG",
  2510. "homepage": "http://www.php-fig.org/"
  2511. }
  2512. ],
  2513. "description": "Common interfaces for simple caching",
  2514. "keywords": [
  2515. "cache",
  2516. "caching",
  2517. "psr",
  2518. "psr-16",
  2519. "simple-cache"
  2520. ],
  2521. "support": {
  2522. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2523. },
  2524. "time": "2017-10-23T01:57:42+00:00"
  2525. },
  2526. {
  2527. "name": "psy/psysh",
  2528. "version": "v0.11.12",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/bobthecow/psysh.git",
  2532. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2537. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2538. "shasum": ""
  2539. },
  2540. "require": {
  2541. "ext-json": "*",
  2542. "ext-tokenizer": "*",
  2543. "nikic/php-parser": "^4.0 || ^3.1",
  2544. "php": "^8.0 || ^7.0.8",
  2545. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2546. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2547. },
  2548. "conflict": {
  2549. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2550. },
  2551. "require-dev": {
  2552. "bamarni/composer-bin-plugin": "^1.2"
  2553. },
  2554. "suggest": {
  2555. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2556. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2557. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2558. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2559. },
  2560. "bin": [
  2561. "bin/psysh"
  2562. ],
  2563. "type": "library",
  2564. "extra": {
  2565. "branch-alias": {
  2566. "dev-main": "0.11.x-dev"
  2567. }
  2568. },
  2569. "autoload": {
  2570. "files": [
  2571. "src/functions.php"
  2572. ],
  2573. "psr-4": {
  2574. "Psy\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Justin Hileman",
  2584. "email": "justin@justinhileman.info",
  2585. "homepage": "http://justinhileman.com"
  2586. }
  2587. ],
  2588. "description": "An interactive shell for modern PHP.",
  2589. "homepage": "http://psysh.org",
  2590. "keywords": [
  2591. "REPL",
  2592. "console",
  2593. "interactive",
  2594. "shell"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/bobthecow/psysh/issues",
  2598. "source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
  2599. },
  2600. "time": "2023-01-29T21:24:40+00:00"
  2601. },
  2602. {
  2603. "name": "ralouphie/getallheaders",
  2604. "version": "3.0.3",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/ralouphie/getallheaders.git",
  2608. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2613. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "php": ">=5.6"
  2618. },
  2619. "require-dev": {
  2620. "php-coveralls/php-coveralls": "^2.1",
  2621. "phpunit/phpunit": "^5 || ^6.5"
  2622. },
  2623. "type": "library",
  2624. "autoload": {
  2625. "files": [
  2626. "src/getallheaders.php"
  2627. ]
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Ralph Khattar",
  2636. "email": "ralph.khattar@gmail.com"
  2637. }
  2638. ],
  2639. "description": "A polyfill for getallheaders.",
  2640. "support": {
  2641. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2642. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2643. },
  2644. "time": "2019-03-08T08:55:37+00:00"
  2645. },
  2646. {
  2647. "name": "ramsey/collection",
  2648. "version": "1.3.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/ramsey/collection.git",
  2652. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2657. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "php": "^7.4 || ^8.0",
  2662. "symfony/polyfill-php81": "^1.23"
  2663. },
  2664. "require-dev": {
  2665. "captainhook/plugin-composer": "^5.3",
  2666. "ergebnis/composer-normalize": "^2.28.3",
  2667. "fakerphp/faker": "^1.21",
  2668. "hamcrest/hamcrest-php": "^2.0",
  2669. "jangregor/phpstan-prophecy": "^1.0",
  2670. "mockery/mockery": "^1.5",
  2671. "php-parallel-lint/php-console-highlighter": "^1.0",
  2672. "php-parallel-lint/php-parallel-lint": "^1.3",
  2673. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2674. "phpspec/prophecy-phpunit": "^2.0",
  2675. "phpstan/extension-installer": "^1.2",
  2676. "phpstan/phpstan": "^1.9",
  2677. "phpstan/phpstan-mockery": "^1.1",
  2678. "phpstan/phpstan-phpunit": "^1.3",
  2679. "phpunit/phpunit": "^9.5",
  2680. "psalm/plugin-mockery": "^1.1",
  2681. "psalm/plugin-phpunit": "^0.18.4",
  2682. "ramsey/coding-standard": "^2.0.3",
  2683. "ramsey/conventional-commits": "^1.3",
  2684. "vimeo/psalm": "^5.4"
  2685. },
  2686. "type": "library",
  2687. "extra": {
  2688. "captainhook": {
  2689. "force-install": true
  2690. },
  2691. "ramsey/conventional-commits": {
  2692. "configFile": "conventional-commits.json"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Ramsey\\Collection\\": "src/"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Ben Ramsey",
  2707. "email": "ben@benramsey.com",
  2708. "homepage": "https://benramsey.com"
  2709. }
  2710. ],
  2711. "description": "A PHP library for representing and manipulating collections.",
  2712. "keywords": [
  2713. "array",
  2714. "collection",
  2715. "hash",
  2716. "map",
  2717. "queue",
  2718. "set"
  2719. ],
  2720. "support": {
  2721. "issues": "https://github.com/ramsey/collection/issues",
  2722. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  2723. },
  2724. "funding": [
  2725. {
  2726. "url": "https://github.com/ramsey",
  2727. "type": "github"
  2728. },
  2729. {
  2730. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2731. "type": "tidelift"
  2732. }
  2733. ],
  2734. "time": "2022-12-27T19:12:24+00:00"
  2735. },
  2736. {
  2737. "name": "ramsey/uuid",
  2738. "version": "4.2.3",
  2739. "source": {
  2740. "type": "git",
  2741. "url": "https://github.com/ramsey/uuid.git",
  2742. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2743. },
  2744. "dist": {
  2745. "type": "zip",
  2746. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2747. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2748. "shasum": ""
  2749. },
  2750. "require": {
  2751. "brick/math": "^0.8 || ^0.9",
  2752. "ext-json": "*",
  2753. "php": "^7.2 || ^8.0",
  2754. "ramsey/collection": "^1.0",
  2755. "symfony/polyfill-ctype": "^1.8",
  2756. "symfony/polyfill-php80": "^1.14"
  2757. },
  2758. "replace": {
  2759. "rhumsaa/uuid": "self.version"
  2760. },
  2761. "require-dev": {
  2762. "captainhook/captainhook": "^5.10",
  2763. "captainhook/plugin-composer": "^5.3",
  2764. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2765. "doctrine/annotations": "^1.8",
  2766. "ergebnis/composer-normalize": "^2.15",
  2767. "mockery/mockery": "^1.3",
  2768. "moontoast/math": "^1.1",
  2769. "paragonie/random-lib": "^2",
  2770. "php-mock/php-mock": "^2.2",
  2771. "php-mock/php-mock-mockery": "^1.3",
  2772. "php-parallel-lint/php-parallel-lint": "^1.1",
  2773. "phpbench/phpbench": "^1.0",
  2774. "phpstan/extension-installer": "^1.0",
  2775. "phpstan/phpstan": "^0.12",
  2776. "phpstan/phpstan-mockery": "^0.12",
  2777. "phpstan/phpstan-phpunit": "^0.12",
  2778. "phpunit/phpunit": "^8.5 || ^9",
  2779. "slevomat/coding-standard": "^7.0",
  2780. "squizlabs/php_codesniffer": "^3.5",
  2781. "vimeo/psalm": "^4.9"
  2782. },
  2783. "suggest": {
  2784. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2785. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2786. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2787. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2788. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2789. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2790. },
  2791. "type": "library",
  2792. "extra": {
  2793. "branch-alias": {
  2794. "dev-main": "4.x-dev"
  2795. },
  2796. "captainhook": {
  2797. "force-install": true
  2798. }
  2799. },
  2800. "autoload": {
  2801. "files": [
  2802. "src/functions.php"
  2803. ],
  2804. "psr-4": {
  2805. "Ramsey\\Uuid\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2813. "keywords": [
  2814. "guid",
  2815. "identifier",
  2816. "uuid"
  2817. ],
  2818. "support": {
  2819. "issues": "https://github.com/ramsey/uuid/issues",
  2820. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2821. },
  2822. "funding": [
  2823. {
  2824. "url": "https://github.com/ramsey",
  2825. "type": "github"
  2826. },
  2827. {
  2828. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2829. "type": "tidelift"
  2830. }
  2831. ],
  2832. "time": "2021-09-25T23:10:38+00:00"
  2833. },
  2834. {
  2835. "name": "swiftmailer/swiftmailer",
  2836. "version": "v6.3.0",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2840. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2845. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2846. "shasum": ""
  2847. },
  2848. "require": {
  2849. "egulias/email-validator": "^2.0|^3.1",
  2850. "php": ">=7.0.0",
  2851. "symfony/polyfill-iconv": "^1.0",
  2852. "symfony/polyfill-intl-idn": "^1.10",
  2853. "symfony/polyfill-mbstring": "^1.0"
  2854. },
  2855. "require-dev": {
  2856. "mockery/mockery": "^1.0",
  2857. "symfony/phpunit-bridge": "^4.4|^5.4"
  2858. },
  2859. "suggest": {
  2860. "ext-intl": "Needed to support internationalized email addresses"
  2861. },
  2862. "type": "library",
  2863. "extra": {
  2864. "branch-alias": {
  2865. "dev-master": "6.2-dev"
  2866. }
  2867. },
  2868. "autoload": {
  2869. "files": [
  2870. "lib/swift_required.php"
  2871. ]
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Chris Corbyn"
  2880. },
  2881. {
  2882. "name": "Fabien Potencier",
  2883. "email": "fabien@symfony.com"
  2884. }
  2885. ],
  2886. "description": "Swiftmailer, free feature-rich PHP mailer",
  2887. "homepage": "https://swiftmailer.symfony.com",
  2888. "keywords": [
  2889. "email",
  2890. "mail",
  2891. "mailer"
  2892. ],
  2893. "support": {
  2894. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2895. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://github.com/fabpot",
  2900. "type": "github"
  2901. },
  2902. {
  2903. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2904. "type": "tidelift"
  2905. }
  2906. ],
  2907. "abandoned": "symfony/mailer",
  2908. "time": "2021-10-18T15:26:12+00:00"
  2909. },
  2910. {
  2911. "name": "symfony/console",
  2912. "version": "v5.4.21",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/symfony/console.git",
  2916. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/symfony/console/zipball/c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2921. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2922. "shasum": ""
  2923. },
  2924. "require": {
  2925. "php": ">=7.2.5",
  2926. "symfony/deprecation-contracts": "^2.1|^3",
  2927. "symfony/polyfill-mbstring": "~1.0",
  2928. "symfony/polyfill-php73": "^1.9",
  2929. "symfony/polyfill-php80": "^1.16",
  2930. "symfony/service-contracts": "^1.1|^2|^3",
  2931. "symfony/string": "^5.1|^6.0"
  2932. },
  2933. "conflict": {
  2934. "psr/log": ">=3",
  2935. "symfony/dependency-injection": "<4.4",
  2936. "symfony/dotenv": "<5.1",
  2937. "symfony/event-dispatcher": "<4.4",
  2938. "symfony/lock": "<4.4",
  2939. "symfony/process": "<4.4"
  2940. },
  2941. "provide": {
  2942. "psr/log-implementation": "1.0|2.0"
  2943. },
  2944. "require-dev": {
  2945. "psr/log": "^1|^2",
  2946. "symfony/config": "^4.4|^5.0|^6.0",
  2947. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2948. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2949. "symfony/lock": "^4.4|^5.0|^6.0",
  2950. "symfony/process": "^4.4|^5.0|^6.0",
  2951. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2952. },
  2953. "suggest": {
  2954. "psr/log": "For using the console logger",
  2955. "symfony/event-dispatcher": "",
  2956. "symfony/lock": "",
  2957. "symfony/process": ""
  2958. },
  2959. "type": "library",
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Symfony\\Component\\Console\\": ""
  2963. },
  2964. "exclude-from-classmap": [
  2965. "/Tests/"
  2966. ]
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Fabien Potencier",
  2975. "email": "fabien@symfony.com"
  2976. },
  2977. {
  2978. "name": "Symfony Community",
  2979. "homepage": "https://symfony.com/contributors"
  2980. }
  2981. ],
  2982. "description": "Eases the creation of beautiful and testable command line interfaces",
  2983. "homepage": "https://symfony.com",
  2984. "keywords": [
  2985. "cli",
  2986. "command line",
  2987. "console",
  2988. "terminal"
  2989. ],
  2990. "support": {
  2991. "source": "https://github.com/symfony/console/tree/v5.4.21"
  2992. },
  2993. "funding": [
  2994. {
  2995. "url": "https://symfony.com/sponsor",
  2996. "type": "custom"
  2997. },
  2998. {
  2999. "url": "https://github.com/fabpot",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3004. "type": "tidelift"
  3005. }
  3006. ],
  3007. "time": "2023-02-25T16:59:41+00:00"
  3008. },
  3009. {
  3010. "name": "symfony/css-selector",
  3011. "version": "v5.4.21",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/symfony/css-selector.git",
  3015. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  3020. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": ">=7.2.5",
  3025. "symfony/polyfill-php80": "^1.16"
  3026. },
  3027. "type": "library",
  3028. "autoload": {
  3029. "psr-4": {
  3030. "Symfony\\Component\\CssSelector\\": ""
  3031. },
  3032. "exclude-from-classmap": [
  3033. "/Tests/"
  3034. ]
  3035. },
  3036. "notification-url": "https://packagist.org/downloads/",
  3037. "license": [
  3038. "MIT"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Fabien Potencier",
  3043. "email": "fabien@symfony.com"
  3044. },
  3045. {
  3046. "name": "Jean-François Simon",
  3047. "email": "jeanfrancois.simon@sensiolabs.com"
  3048. },
  3049. {
  3050. "name": "Symfony Community",
  3051. "homepage": "https://symfony.com/contributors"
  3052. }
  3053. ],
  3054. "description": "Converts CSS selectors to XPath expressions",
  3055. "homepage": "https://symfony.com",
  3056. "support": {
  3057. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  3058. },
  3059. "funding": [
  3060. {
  3061. "url": "https://symfony.com/sponsor",
  3062. "type": "custom"
  3063. },
  3064. {
  3065. "url": "https://github.com/fabpot",
  3066. "type": "github"
  3067. },
  3068. {
  3069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3070. "type": "tidelift"
  3071. }
  3072. ],
  3073. "time": "2023-02-14T08:03:56+00:00"
  3074. },
  3075. {
  3076. "name": "symfony/deprecation-contracts",
  3077. "version": "v2.5.2",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/symfony/deprecation-contracts.git",
  3081. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3086. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3087. "shasum": ""
  3088. },
  3089. "require": {
  3090. "php": ">=7.1"
  3091. },
  3092. "type": "library",
  3093. "extra": {
  3094. "branch-alias": {
  3095. "dev-main": "2.5-dev"
  3096. },
  3097. "thanks": {
  3098. "name": "symfony/contracts",
  3099. "url": "https://github.com/symfony/contracts"
  3100. }
  3101. },
  3102. "autoload": {
  3103. "files": [
  3104. "function.php"
  3105. ]
  3106. },
  3107. "notification-url": "https://packagist.org/downloads/",
  3108. "license": [
  3109. "MIT"
  3110. ],
  3111. "authors": [
  3112. {
  3113. "name": "Nicolas Grekas",
  3114. "email": "p@tchwork.com"
  3115. },
  3116. {
  3117. "name": "Symfony Community",
  3118. "homepage": "https://symfony.com/contributors"
  3119. }
  3120. ],
  3121. "description": "A generic function and convention to trigger deprecation notices",
  3122. "homepage": "https://symfony.com",
  3123. "support": {
  3124. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3125. },
  3126. "funding": [
  3127. {
  3128. "url": "https://symfony.com/sponsor",
  3129. "type": "custom"
  3130. },
  3131. {
  3132. "url": "https://github.com/fabpot",
  3133. "type": "github"
  3134. },
  3135. {
  3136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3137. "type": "tidelift"
  3138. }
  3139. ],
  3140. "time": "2022-01-02T09:53:40+00:00"
  3141. },
  3142. {
  3143. "name": "symfony/error-handler",
  3144. "version": "v5.4.21",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/symfony/error-handler.git",
  3148. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/symfony/error-handler/zipball/56a94aa8cb5a5fbc411551d8d014a296b5456549",
  3153. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "php": ">=7.2.5",
  3158. "psr/log": "^1|^2|^3",
  3159. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3160. },
  3161. "require-dev": {
  3162. "symfony/deprecation-contracts": "^2.1|^3",
  3163. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3164. "symfony/serializer": "^4.4|^5.0|^6.0"
  3165. },
  3166. "bin": [
  3167. "Resources/bin/patch-type-declarations"
  3168. ],
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\ErrorHandler\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Provides tools to manage errors and ease debugging PHP code",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/error-handler/tree/v5.4.21"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2023-02-14T08:03:56+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/event-dispatcher",
  3215. "version": "v5.4.21",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/event-dispatcher.git",
  3219. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  3224. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=7.2.5",
  3229. "symfony/deprecation-contracts": "^2.1|^3",
  3230. "symfony/event-dispatcher-contracts": "^2|^3",
  3231. "symfony/polyfill-php80": "^1.16"
  3232. },
  3233. "conflict": {
  3234. "symfony/dependency-injection": "<4.4"
  3235. },
  3236. "provide": {
  3237. "psr/event-dispatcher-implementation": "1.0",
  3238. "symfony/event-dispatcher-implementation": "2.0"
  3239. },
  3240. "require-dev": {
  3241. "psr/log": "^1|^2|^3",
  3242. "symfony/config": "^4.4|^5.0|^6.0",
  3243. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3244. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3245. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3246. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3247. "symfony/service-contracts": "^1.1|^2|^3",
  3248. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3249. },
  3250. "suggest": {
  3251. "symfony/dependency-injection": "",
  3252. "symfony/http-kernel": ""
  3253. },
  3254. "type": "library",
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Symfony\\Component\\EventDispatcher\\": ""
  3258. },
  3259. "exclude-from-classmap": [
  3260. "/Tests/"
  3261. ]
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "Fabien Potencier",
  3270. "email": "fabien@symfony.com"
  3271. },
  3272. {
  3273. "name": "Symfony Community",
  3274. "homepage": "https://symfony.com/contributors"
  3275. }
  3276. ],
  3277. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3278. "homepage": "https://symfony.com",
  3279. "support": {
  3280. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  3281. },
  3282. "funding": [
  3283. {
  3284. "url": "https://symfony.com/sponsor",
  3285. "type": "custom"
  3286. },
  3287. {
  3288. "url": "https://github.com/fabpot",
  3289. "type": "github"
  3290. },
  3291. {
  3292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3293. "type": "tidelift"
  3294. }
  3295. ],
  3296. "time": "2023-02-14T08:03:56+00:00"
  3297. },
  3298. {
  3299. "name": "symfony/event-dispatcher-contracts",
  3300. "version": "v2.5.2",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3304. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3309. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "php": ">=7.2.5",
  3314. "psr/event-dispatcher": "^1"
  3315. },
  3316. "suggest": {
  3317. "symfony/event-dispatcher-implementation": ""
  3318. },
  3319. "type": "library",
  3320. "extra": {
  3321. "branch-alias": {
  3322. "dev-main": "2.5-dev"
  3323. },
  3324. "thanks": {
  3325. "name": "symfony/contracts",
  3326. "url": "https://github.com/symfony/contracts"
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Symfony\\Contracts\\EventDispatcher\\": ""
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Nicolas Grekas",
  3341. "email": "p@tchwork.com"
  3342. },
  3343. {
  3344. "name": "Symfony Community",
  3345. "homepage": "https://symfony.com/contributors"
  3346. }
  3347. ],
  3348. "description": "Generic abstractions related to dispatching event",
  3349. "homepage": "https://symfony.com",
  3350. "keywords": [
  3351. "abstractions",
  3352. "contracts",
  3353. "decoupling",
  3354. "interfaces",
  3355. "interoperability",
  3356. "standards"
  3357. ],
  3358. "support": {
  3359. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3360. },
  3361. "funding": [
  3362. {
  3363. "url": "https://symfony.com/sponsor",
  3364. "type": "custom"
  3365. },
  3366. {
  3367. "url": "https://github.com/fabpot",
  3368. "type": "github"
  3369. },
  3370. {
  3371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3372. "type": "tidelift"
  3373. }
  3374. ],
  3375. "time": "2022-01-02T09:53:40+00:00"
  3376. },
  3377. {
  3378. "name": "symfony/finder",
  3379. "version": "v5.4.21",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/symfony/finder.git",
  3383. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3388. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "php": ">=7.2.5",
  3393. "symfony/deprecation-contracts": "^2.1|^3",
  3394. "symfony/polyfill-php80": "^1.16"
  3395. },
  3396. "type": "library",
  3397. "autoload": {
  3398. "psr-4": {
  3399. "Symfony\\Component\\Finder\\": ""
  3400. },
  3401. "exclude-from-classmap": [
  3402. "/Tests/"
  3403. ]
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "MIT"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Fabien Potencier",
  3412. "email": "fabien@symfony.com"
  3413. },
  3414. {
  3415. "name": "Symfony Community",
  3416. "homepage": "https://symfony.com/contributors"
  3417. }
  3418. ],
  3419. "description": "Finds files and directories via an intuitive fluent interface",
  3420. "homepage": "https://symfony.com",
  3421. "support": {
  3422. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  3423. },
  3424. "funding": [
  3425. {
  3426. "url": "https://symfony.com/sponsor",
  3427. "type": "custom"
  3428. },
  3429. {
  3430. "url": "https://github.com/fabpot",
  3431. "type": "github"
  3432. },
  3433. {
  3434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3435. "type": "tidelift"
  3436. }
  3437. ],
  3438. "time": "2023-02-16T09:33:00+00:00"
  3439. },
  3440. {
  3441. "name": "symfony/http-foundation",
  3442. "version": "v5.4.21",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/symfony/http-foundation.git",
  3446. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3451. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "php": ">=7.2.5",
  3456. "symfony/deprecation-contracts": "^2.1|^3",
  3457. "symfony/polyfill-mbstring": "~1.1",
  3458. "symfony/polyfill-php80": "^1.16"
  3459. },
  3460. "require-dev": {
  3461. "predis/predis": "~1.0",
  3462. "symfony/cache": "^4.4|^5.0|^6.0",
  3463. "symfony/dependency-injection": "^5.4|^6.0",
  3464. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3465. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3466. "symfony/mime": "^4.4|^5.0|^6.0",
  3467. "symfony/rate-limiter": "^5.2|^6.0"
  3468. },
  3469. "suggest": {
  3470. "symfony/mime": "To use the file extension guesser"
  3471. },
  3472. "type": "library",
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Symfony\\Component\\HttpFoundation\\": ""
  3476. },
  3477. "exclude-from-classmap": [
  3478. "/Tests/"
  3479. ]
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Fabien Potencier",
  3488. "email": "fabien@symfony.com"
  3489. },
  3490. {
  3491. "name": "Symfony Community",
  3492. "homepage": "https://symfony.com/contributors"
  3493. }
  3494. ],
  3495. "description": "Defines an object-oriented layer for the HTTP specification",
  3496. "homepage": "https://symfony.com",
  3497. "support": {
  3498. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  3499. },
  3500. "funding": [
  3501. {
  3502. "url": "https://symfony.com/sponsor",
  3503. "type": "custom"
  3504. },
  3505. {
  3506. "url": "https://github.com/fabpot",
  3507. "type": "github"
  3508. },
  3509. {
  3510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3511. "type": "tidelift"
  3512. }
  3513. ],
  3514. "time": "2023-02-17T21:35:35+00:00"
  3515. },
  3516. {
  3517. "name": "symfony/http-kernel",
  3518. "version": "v5.4.21",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/symfony/http-kernel.git",
  3522. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3527. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": ">=7.2.5",
  3532. "psr/log": "^1|^2",
  3533. "symfony/deprecation-contracts": "^2.1|^3",
  3534. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3535. "symfony/event-dispatcher": "^5.0|^6.0",
  3536. "symfony/http-foundation": "^5.4.21|^6.2.7",
  3537. "symfony/polyfill-ctype": "^1.8",
  3538. "symfony/polyfill-php73": "^1.9",
  3539. "symfony/polyfill-php80": "^1.16"
  3540. },
  3541. "conflict": {
  3542. "symfony/browser-kit": "<5.4",
  3543. "symfony/cache": "<5.0",
  3544. "symfony/config": "<5.0",
  3545. "symfony/console": "<4.4",
  3546. "symfony/dependency-injection": "<5.3",
  3547. "symfony/doctrine-bridge": "<5.0",
  3548. "symfony/form": "<5.0",
  3549. "symfony/http-client": "<5.0",
  3550. "symfony/mailer": "<5.0",
  3551. "symfony/messenger": "<5.0",
  3552. "symfony/translation": "<5.0",
  3553. "symfony/twig-bridge": "<5.0",
  3554. "symfony/validator": "<5.0",
  3555. "twig/twig": "<2.13"
  3556. },
  3557. "provide": {
  3558. "psr/log-implementation": "1.0|2.0"
  3559. },
  3560. "require-dev": {
  3561. "psr/cache": "^1.0|^2.0|^3.0",
  3562. "symfony/browser-kit": "^5.4|^6.0",
  3563. "symfony/config": "^5.0|^6.0",
  3564. "symfony/console": "^4.4|^5.0|^6.0",
  3565. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3566. "symfony/dependency-injection": "^5.3|^6.0",
  3567. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3568. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3569. "symfony/finder": "^4.4|^5.0|^6.0",
  3570. "symfony/http-client-contracts": "^1.1|^2|^3",
  3571. "symfony/process": "^4.4|^5.0|^6.0",
  3572. "symfony/routing": "^4.4|^5.0|^6.0",
  3573. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3574. "symfony/translation": "^4.4|^5.0|^6.0",
  3575. "symfony/translation-contracts": "^1.1|^2|^3",
  3576. "twig/twig": "^2.13|^3.0.4"
  3577. },
  3578. "suggest": {
  3579. "symfony/browser-kit": "",
  3580. "symfony/config": "",
  3581. "symfony/console": "",
  3582. "symfony/dependency-injection": ""
  3583. },
  3584. "type": "library",
  3585. "autoload": {
  3586. "psr-4": {
  3587. "Symfony\\Component\\HttpKernel\\": ""
  3588. },
  3589. "exclude-from-classmap": [
  3590. "/Tests/"
  3591. ]
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "Fabien Potencier",
  3600. "email": "fabien@symfony.com"
  3601. },
  3602. {
  3603. "name": "Symfony Community",
  3604. "homepage": "https://symfony.com/contributors"
  3605. }
  3606. ],
  3607. "description": "Provides a structured process for converting a Request into a Response",
  3608. "homepage": "https://symfony.com",
  3609. "support": {
  3610. "source": "https://github.com/symfony/http-kernel/tree/v5.4.21"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://symfony.com/sponsor",
  3615. "type": "custom"
  3616. },
  3617. {
  3618. "url": "https://github.com/fabpot",
  3619. "type": "github"
  3620. },
  3621. {
  3622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3623. "type": "tidelift"
  3624. }
  3625. ],
  3626. "time": "2023-02-28T13:19:09+00:00"
  3627. },
  3628. {
  3629. "name": "symfony/mime",
  3630. "version": "v5.4.21",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/symfony/mime.git",
  3634. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/symfony/mime/zipball/ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3639. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3640. "shasum": ""
  3641. },
  3642. "require": {
  3643. "php": ">=7.2.5",
  3644. "symfony/deprecation-contracts": "^2.1|^3",
  3645. "symfony/polyfill-intl-idn": "^1.10",
  3646. "symfony/polyfill-mbstring": "^1.0",
  3647. "symfony/polyfill-php80": "^1.16"
  3648. },
  3649. "conflict": {
  3650. "egulias/email-validator": "~3.0.0",
  3651. "phpdocumentor/reflection-docblock": "<3.2.2",
  3652. "phpdocumentor/type-resolver": "<1.4.0",
  3653. "symfony/mailer": "<4.4",
  3654. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  3655. },
  3656. "require-dev": {
  3657. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3658. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3659. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3660. "symfony/property-access": "^4.4|^5.1|^6.0",
  3661. "symfony/property-info": "^4.4|^5.1|^6.0",
  3662. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  3663. },
  3664. "type": "library",
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Symfony\\Component\\Mime\\": ""
  3668. },
  3669. "exclude-from-classmap": [
  3670. "/Tests/"
  3671. ]
  3672. },
  3673. "notification-url": "https://packagist.org/downloads/",
  3674. "license": [
  3675. "MIT"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "Fabien Potencier",
  3680. "email": "fabien@symfony.com"
  3681. },
  3682. {
  3683. "name": "Symfony Community",
  3684. "homepage": "https://symfony.com/contributors"
  3685. }
  3686. ],
  3687. "description": "Allows manipulating MIME messages",
  3688. "homepage": "https://symfony.com",
  3689. "keywords": [
  3690. "mime",
  3691. "mime-type"
  3692. ],
  3693. "support": {
  3694. "source": "https://github.com/symfony/mime/tree/v5.4.21"
  3695. },
  3696. "funding": [
  3697. {
  3698. "url": "https://symfony.com/sponsor",
  3699. "type": "custom"
  3700. },
  3701. {
  3702. "url": "https://github.com/fabpot",
  3703. "type": "github"
  3704. },
  3705. {
  3706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3707. "type": "tidelift"
  3708. }
  3709. ],
  3710. "time": "2023-02-21T19:46:44+00:00"
  3711. },
  3712. {
  3713. "name": "symfony/polyfill-ctype",
  3714. "version": "v1.27.0",
  3715. "source": {
  3716. "type": "git",
  3717. "url": "https://github.com/symfony/polyfill-ctype.git",
  3718. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  3719. },
  3720. "dist": {
  3721. "type": "zip",
  3722. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  3723. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  3724. "shasum": ""
  3725. },
  3726. "require": {
  3727. "php": ">=7.1"
  3728. },
  3729. "provide": {
  3730. "ext-ctype": "*"
  3731. },
  3732. "suggest": {
  3733. "ext-ctype": "For best performance"
  3734. },
  3735. "type": "library",
  3736. "extra": {
  3737. "branch-alias": {
  3738. "dev-main": "1.27-dev"
  3739. },
  3740. "thanks": {
  3741. "name": "symfony/polyfill",
  3742. "url": "https://github.com/symfony/polyfill"
  3743. }
  3744. },
  3745. "autoload": {
  3746. "files": [
  3747. "bootstrap.php"
  3748. ],
  3749. "psr-4": {
  3750. "Symfony\\Polyfill\\Ctype\\": ""
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Gert de Pagter",
  3760. "email": "BackEndTea@gmail.com"
  3761. },
  3762. {
  3763. "name": "Symfony Community",
  3764. "homepage": "https://symfony.com/contributors"
  3765. }
  3766. ],
  3767. "description": "Symfony polyfill for ctype functions",
  3768. "homepage": "https://symfony.com",
  3769. "keywords": [
  3770. "compatibility",
  3771. "ctype",
  3772. "polyfill",
  3773. "portable"
  3774. ],
  3775. "support": {
  3776. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://symfony.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://github.com/fabpot",
  3785. "type": "github"
  3786. },
  3787. {
  3788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3789. "type": "tidelift"
  3790. }
  3791. ],
  3792. "time": "2022-11-03T14:55:06+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/polyfill-iconv",
  3796. "version": "v1.27.0",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/polyfill-iconv.git",
  3800. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3805. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=7.1"
  3810. },
  3811. "provide": {
  3812. "ext-iconv": "*"
  3813. },
  3814. "suggest": {
  3815. "ext-iconv": "For best performance"
  3816. },
  3817. "type": "library",
  3818. "extra": {
  3819. "branch-alias": {
  3820. "dev-main": "1.27-dev"
  3821. },
  3822. "thanks": {
  3823. "name": "symfony/polyfill",
  3824. "url": "https://github.com/symfony/polyfill"
  3825. }
  3826. },
  3827. "autoload": {
  3828. "files": [
  3829. "bootstrap.php"
  3830. ],
  3831. "psr-4": {
  3832. "Symfony\\Polyfill\\Iconv\\": ""
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Nicolas Grekas",
  3842. "email": "p@tchwork.com"
  3843. },
  3844. {
  3845. "name": "Symfony Community",
  3846. "homepage": "https://symfony.com/contributors"
  3847. }
  3848. ],
  3849. "description": "Symfony polyfill for the Iconv extension",
  3850. "homepage": "https://symfony.com",
  3851. "keywords": [
  3852. "compatibility",
  3853. "iconv",
  3854. "polyfill",
  3855. "portable",
  3856. "shim"
  3857. ],
  3858. "support": {
  3859. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  3860. },
  3861. "funding": [
  3862. {
  3863. "url": "https://symfony.com/sponsor",
  3864. "type": "custom"
  3865. },
  3866. {
  3867. "url": "https://github.com/fabpot",
  3868. "type": "github"
  3869. },
  3870. {
  3871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3872. "type": "tidelift"
  3873. }
  3874. ],
  3875. "time": "2022-11-03T14:55:06+00:00"
  3876. },
  3877. {
  3878. "name": "symfony/polyfill-intl-grapheme",
  3879. "version": "v1.27.0",
  3880. "source": {
  3881. "type": "git",
  3882. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3883. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  3884. },
  3885. "dist": {
  3886. "type": "zip",
  3887. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  3888. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  3889. "shasum": ""
  3890. },
  3891. "require": {
  3892. "php": ">=7.1"
  3893. },
  3894. "suggest": {
  3895. "ext-intl": "For best performance"
  3896. },
  3897. "type": "library",
  3898. "extra": {
  3899. "branch-alias": {
  3900. "dev-main": "1.27-dev"
  3901. },
  3902. "thanks": {
  3903. "name": "symfony/polyfill",
  3904. "url": "https://github.com/symfony/polyfill"
  3905. }
  3906. },
  3907. "autoload": {
  3908. "files": [
  3909. "bootstrap.php"
  3910. ],
  3911. "psr-4": {
  3912. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3913. }
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "MIT"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "Nicolas Grekas",
  3922. "email": "p@tchwork.com"
  3923. },
  3924. {
  3925. "name": "Symfony Community",
  3926. "homepage": "https://symfony.com/contributors"
  3927. }
  3928. ],
  3929. "description": "Symfony polyfill for intl's grapheme_* functions",
  3930. "homepage": "https://symfony.com",
  3931. "keywords": [
  3932. "compatibility",
  3933. "grapheme",
  3934. "intl",
  3935. "polyfill",
  3936. "portable",
  3937. "shim"
  3938. ],
  3939. "support": {
  3940. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  3941. },
  3942. "funding": [
  3943. {
  3944. "url": "https://symfony.com/sponsor",
  3945. "type": "custom"
  3946. },
  3947. {
  3948. "url": "https://github.com/fabpot",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3953. "type": "tidelift"
  3954. }
  3955. ],
  3956. "time": "2022-11-03T14:55:06+00:00"
  3957. },
  3958. {
  3959. "name": "symfony/polyfill-intl-idn",
  3960. "version": "v1.27.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3964. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  3969. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "php": ">=7.1",
  3974. "symfony/polyfill-intl-normalizer": "^1.10",
  3975. "symfony/polyfill-php72": "^1.10"
  3976. },
  3977. "suggest": {
  3978. "ext-intl": "For best performance"
  3979. },
  3980. "type": "library",
  3981. "extra": {
  3982. "branch-alias": {
  3983. "dev-main": "1.27-dev"
  3984. },
  3985. "thanks": {
  3986. "name": "symfony/polyfill",
  3987. "url": "https://github.com/symfony/polyfill"
  3988. }
  3989. },
  3990. "autoload": {
  3991. "files": [
  3992. "bootstrap.php"
  3993. ],
  3994. "psr-4": {
  3995. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Laurent Bassin",
  4005. "email": "laurent@bassin.info"
  4006. },
  4007. {
  4008. "name": "Trevor Rowbotham",
  4009. "email": "trevor.rowbotham@pm.me"
  4010. },
  4011. {
  4012. "name": "Symfony Community",
  4013. "homepage": "https://symfony.com/contributors"
  4014. }
  4015. ],
  4016. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4017. "homepage": "https://symfony.com",
  4018. "keywords": [
  4019. "compatibility",
  4020. "idn",
  4021. "intl",
  4022. "polyfill",
  4023. "portable",
  4024. "shim"
  4025. ],
  4026. "support": {
  4027. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  4028. },
  4029. "funding": [
  4030. {
  4031. "url": "https://symfony.com/sponsor",
  4032. "type": "custom"
  4033. },
  4034. {
  4035. "url": "https://github.com/fabpot",
  4036. "type": "github"
  4037. },
  4038. {
  4039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4040. "type": "tidelift"
  4041. }
  4042. ],
  4043. "time": "2022-11-03T14:55:06+00:00"
  4044. },
  4045. {
  4046. "name": "symfony/polyfill-intl-normalizer",
  4047. "version": "v1.27.0",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4051. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4056. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "php": ">=7.1"
  4061. },
  4062. "suggest": {
  4063. "ext-intl": "For best performance"
  4064. },
  4065. "type": "library",
  4066. "extra": {
  4067. "branch-alias": {
  4068. "dev-main": "1.27-dev"
  4069. },
  4070. "thanks": {
  4071. "name": "symfony/polyfill",
  4072. "url": "https://github.com/symfony/polyfill"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "files": [
  4077. "bootstrap.php"
  4078. ],
  4079. "psr-4": {
  4080. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4081. },
  4082. "classmap": [
  4083. "Resources/stubs"
  4084. ]
  4085. },
  4086. "notification-url": "https://packagist.org/downloads/",
  4087. "license": [
  4088. "MIT"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "Nicolas Grekas",
  4093. "email": "p@tchwork.com"
  4094. },
  4095. {
  4096. "name": "Symfony Community",
  4097. "homepage": "https://symfony.com/contributors"
  4098. }
  4099. ],
  4100. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4101. "homepage": "https://symfony.com",
  4102. "keywords": [
  4103. "compatibility",
  4104. "intl",
  4105. "normalizer",
  4106. "polyfill",
  4107. "portable",
  4108. "shim"
  4109. ],
  4110. "support": {
  4111. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  4112. },
  4113. "funding": [
  4114. {
  4115. "url": "https://symfony.com/sponsor",
  4116. "type": "custom"
  4117. },
  4118. {
  4119. "url": "https://github.com/fabpot",
  4120. "type": "github"
  4121. },
  4122. {
  4123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4124. "type": "tidelift"
  4125. }
  4126. ],
  4127. "time": "2022-11-03T14:55:06+00:00"
  4128. },
  4129. {
  4130. "name": "symfony/polyfill-mbstring",
  4131. "version": "v1.27.0",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4135. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4140. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "php": ">=7.1"
  4145. },
  4146. "provide": {
  4147. "ext-mbstring": "*"
  4148. },
  4149. "suggest": {
  4150. "ext-mbstring": "For best performance"
  4151. },
  4152. "type": "library",
  4153. "extra": {
  4154. "branch-alias": {
  4155. "dev-main": "1.27-dev"
  4156. },
  4157. "thanks": {
  4158. "name": "symfony/polyfill",
  4159. "url": "https://github.com/symfony/polyfill"
  4160. }
  4161. },
  4162. "autoload": {
  4163. "files": [
  4164. "bootstrap.php"
  4165. ],
  4166. "psr-4": {
  4167. "Symfony\\Polyfill\\Mbstring\\": ""
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "Nicolas Grekas",
  4177. "email": "p@tchwork.com"
  4178. },
  4179. {
  4180. "name": "Symfony Community",
  4181. "homepage": "https://symfony.com/contributors"
  4182. }
  4183. ],
  4184. "description": "Symfony polyfill for the Mbstring extension",
  4185. "homepage": "https://symfony.com",
  4186. "keywords": [
  4187. "compatibility",
  4188. "mbstring",
  4189. "polyfill",
  4190. "portable",
  4191. "shim"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4195. },
  4196. "funding": [
  4197. {
  4198. "url": "https://symfony.com/sponsor",
  4199. "type": "custom"
  4200. },
  4201. {
  4202. "url": "https://github.com/fabpot",
  4203. "type": "github"
  4204. },
  4205. {
  4206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4207. "type": "tidelift"
  4208. }
  4209. ],
  4210. "time": "2022-11-03T14:55:06+00:00"
  4211. },
  4212. {
  4213. "name": "symfony/polyfill-php72",
  4214. "version": "v1.27.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/symfony/polyfill-php72.git",
  4218. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  4223. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "php": ">=7.1"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-main": "1.27-dev"
  4233. },
  4234. "thanks": {
  4235. "name": "symfony/polyfill",
  4236. "url": "https://github.com/symfony/polyfill"
  4237. }
  4238. },
  4239. "autoload": {
  4240. "files": [
  4241. "bootstrap.php"
  4242. ],
  4243. "psr-4": {
  4244. "Symfony\\Polyfill\\Php72\\": ""
  4245. }
  4246. },
  4247. "notification-url": "https://packagist.org/downloads/",
  4248. "license": [
  4249. "MIT"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "Nicolas Grekas",
  4254. "email": "p@tchwork.com"
  4255. },
  4256. {
  4257. "name": "Symfony Community",
  4258. "homepage": "https://symfony.com/contributors"
  4259. }
  4260. ],
  4261. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4262. "homepage": "https://symfony.com",
  4263. "keywords": [
  4264. "compatibility",
  4265. "polyfill",
  4266. "portable",
  4267. "shim"
  4268. ],
  4269. "support": {
  4270. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://symfony.com/sponsor",
  4275. "type": "custom"
  4276. },
  4277. {
  4278. "url": "https://github.com/fabpot",
  4279. "type": "github"
  4280. },
  4281. {
  4282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4283. "type": "tidelift"
  4284. }
  4285. ],
  4286. "time": "2022-11-03T14:55:06+00:00"
  4287. },
  4288. {
  4289. "name": "symfony/polyfill-php73",
  4290. "version": "v1.27.0",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/symfony/polyfill-php73.git",
  4294. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4299. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4300. "shasum": ""
  4301. },
  4302. "require": {
  4303. "php": ">=7.1"
  4304. },
  4305. "type": "library",
  4306. "extra": {
  4307. "branch-alias": {
  4308. "dev-main": "1.27-dev"
  4309. },
  4310. "thanks": {
  4311. "name": "symfony/polyfill",
  4312. "url": "https://github.com/symfony/polyfill"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "files": [
  4317. "bootstrap.php"
  4318. ],
  4319. "psr-4": {
  4320. "Symfony\\Polyfill\\Php73\\": ""
  4321. },
  4322. "classmap": [
  4323. "Resources/stubs"
  4324. ]
  4325. },
  4326. "notification-url": "https://packagist.org/downloads/",
  4327. "license": [
  4328. "MIT"
  4329. ],
  4330. "authors": [
  4331. {
  4332. "name": "Nicolas Grekas",
  4333. "email": "p@tchwork.com"
  4334. },
  4335. {
  4336. "name": "Symfony Community",
  4337. "homepage": "https://symfony.com/contributors"
  4338. }
  4339. ],
  4340. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4341. "homepage": "https://symfony.com",
  4342. "keywords": [
  4343. "compatibility",
  4344. "polyfill",
  4345. "portable",
  4346. "shim"
  4347. ],
  4348. "support": {
  4349. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4350. },
  4351. "funding": [
  4352. {
  4353. "url": "https://symfony.com/sponsor",
  4354. "type": "custom"
  4355. },
  4356. {
  4357. "url": "https://github.com/fabpot",
  4358. "type": "github"
  4359. },
  4360. {
  4361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4362. "type": "tidelift"
  4363. }
  4364. ],
  4365. "time": "2022-11-03T14:55:06+00:00"
  4366. },
  4367. {
  4368. "name": "symfony/polyfill-php80",
  4369. "version": "v1.27.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/symfony/polyfill-php80.git",
  4373. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4378. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "php": ">=7.1"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-main": "1.27-dev"
  4388. },
  4389. "thanks": {
  4390. "name": "symfony/polyfill",
  4391. "url": "https://github.com/symfony/polyfill"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "files": [
  4396. "bootstrap.php"
  4397. ],
  4398. "psr-4": {
  4399. "Symfony\\Polyfill\\Php80\\": ""
  4400. },
  4401. "classmap": [
  4402. "Resources/stubs"
  4403. ]
  4404. },
  4405. "notification-url": "https://packagist.org/downloads/",
  4406. "license": [
  4407. "MIT"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "Ion Bazan",
  4412. "email": "ion.bazan@gmail.com"
  4413. },
  4414. {
  4415. "name": "Nicolas Grekas",
  4416. "email": "p@tchwork.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4424. "homepage": "https://symfony.com",
  4425. "keywords": [
  4426. "compatibility",
  4427. "polyfill",
  4428. "portable",
  4429. "shim"
  4430. ],
  4431. "support": {
  4432. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4433. },
  4434. "funding": [
  4435. {
  4436. "url": "https://symfony.com/sponsor",
  4437. "type": "custom"
  4438. },
  4439. {
  4440. "url": "https://github.com/fabpot",
  4441. "type": "github"
  4442. },
  4443. {
  4444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4445. "type": "tidelift"
  4446. }
  4447. ],
  4448. "time": "2022-11-03T14:55:06+00:00"
  4449. },
  4450. {
  4451. "name": "symfony/polyfill-php81",
  4452. "version": "v1.27.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/symfony/polyfill-php81.git",
  4456. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4461. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "php": ">=7.1"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-main": "1.27-dev"
  4471. },
  4472. "thanks": {
  4473. "name": "symfony/polyfill",
  4474. "url": "https://github.com/symfony/polyfill"
  4475. }
  4476. },
  4477. "autoload": {
  4478. "files": [
  4479. "bootstrap.php"
  4480. ],
  4481. "psr-4": {
  4482. "Symfony\\Polyfill\\Php81\\": ""
  4483. },
  4484. "classmap": [
  4485. "Resources/stubs"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Nicolas Grekas",
  4495. "email": "p@tchwork.com"
  4496. },
  4497. {
  4498. "name": "Symfony Community",
  4499. "homepage": "https://symfony.com/contributors"
  4500. }
  4501. ],
  4502. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4503. "homepage": "https://symfony.com",
  4504. "keywords": [
  4505. "compatibility",
  4506. "polyfill",
  4507. "portable",
  4508. "shim"
  4509. ],
  4510. "support": {
  4511. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  4512. },
  4513. "funding": [
  4514. {
  4515. "url": "https://symfony.com/sponsor",
  4516. "type": "custom"
  4517. },
  4518. {
  4519. "url": "https://github.com/fabpot",
  4520. "type": "github"
  4521. },
  4522. {
  4523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4524. "type": "tidelift"
  4525. }
  4526. ],
  4527. "time": "2022-11-03T14:55:06+00:00"
  4528. },
  4529. {
  4530. "name": "symfony/process",
  4531. "version": "v5.4.21",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/symfony/process.git",
  4535. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/symfony/process/zipball/d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4540. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4541. "shasum": ""
  4542. },
  4543. "require": {
  4544. "php": ">=7.2.5",
  4545. "symfony/polyfill-php80": "^1.16"
  4546. },
  4547. "type": "library",
  4548. "autoload": {
  4549. "psr-4": {
  4550. "Symfony\\Component\\Process\\": ""
  4551. },
  4552. "exclude-from-classmap": [
  4553. "/Tests/"
  4554. ]
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "authors": [
  4561. {
  4562. "name": "Fabien Potencier",
  4563. "email": "fabien@symfony.com"
  4564. },
  4565. {
  4566. "name": "Symfony Community",
  4567. "homepage": "https://symfony.com/contributors"
  4568. }
  4569. ],
  4570. "description": "Executes commands in sub-processes",
  4571. "homepage": "https://symfony.com",
  4572. "support": {
  4573. "source": "https://github.com/symfony/process/tree/v5.4.21"
  4574. },
  4575. "funding": [
  4576. {
  4577. "url": "https://symfony.com/sponsor",
  4578. "type": "custom"
  4579. },
  4580. {
  4581. "url": "https://github.com/fabpot",
  4582. "type": "github"
  4583. },
  4584. {
  4585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4586. "type": "tidelift"
  4587. }
  4588. ],
  4589. "time": "2023-02-21T19:46:44+00:00"
  4590. },
  4591. {
  4592. "name": "symfony/routing",
  4593. "version": "v5.4.21",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://github.com/symfony/routing.git",
  4597. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://api.github.com/repos/symfony/routing/zipball/2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4602. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4603. "shasum": ""
  4604. },
  4605. "require": {
  4606. "php": ">=7.2.5",
  4607. "symfony/deprecation-contracts": "^2.1|^3",
  4608. "symfony/polyfill-php80": "^1.16"
  4609. },
  4610. "conflict": {
  4611. "doctrine/annotations": "<1.12",
  4612. "symfony/config": "<5.3",
  4613. "symfony/dependency-injection": "<4.4",
  4614. "symfony/yaml": "<4.4"
  4615. },
  4616. "require-dev": {
  4617. "doctrine/annotations": "^1.12|^2",
  4618. "psr/log": "^1|^2|^3",
  4619. "symfony/config": "^5.3|^6.0",
  4620. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4621. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4622. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4623. "symfony/yaml": "^4.4|^5.0|^6.0"
  4624. },
  4625. "suggest": {
  4626. "symfony/config": "For using the all-in-one router or any loader",
  4627. "symfony/expression-language": "For using expression matching",
  4628. "symfony/http-foundation": "For using a Symfony Request object",
  4629. "symfony/yaml": "For using the YAML loader"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "psr-4": {
  4634. "Symfony\\Component\\Routing\\": ""
  4635. },
  4636. "exclude-from-classmap": [
  4637. "/Tests/"
  4638. ]
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Fabien Potencier",
  4647. "email": "fabien@symfony.com"
  4648. },
  4649. {
  4650. "name": "Symfony Community",
  4651. "homepage": "https://symfony.com/contributors"
  4652. }
  4653. ],
  4654. "description": "Maps an HTTP request to a set of configuration variables",
  4655. "homepage": "https://symfony.com",
  4656. "keywords": [
  4657. "router",
  4658. "routing",
  4659. "uri",
  4660. "url"
  4661. ],
  4662. "support": {
  4663. "source": "https://github.com/symfony/routing/tree/v5.4.21"
  4664. },
  4665. "funding": [
  4666. {
  4667. "url": "https://symfony.com/sponsor",
  4668. "type": "custom"
  4669. },
  4670. {
  4671. "url": "https://github.com/fabpot",
  4672. "type": "github"
  4673. },
  4674. {
  4675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4676. "type": "tidelift"
  4677. }
  4678. ],
  4679. "time": "2023-02-16T09:33:00+00:00"
  4680. },
  4681. {
  4682. "name": "symfony/service-contracts",
  4683. "version": "v2.5.2",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://github.com/symfony/service-contracts.git",
  4687. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4692. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4693. "shasum": ""
  4694. },
  4695. "require": {
  4696. "php": ">=7.2.5",
  4697. "psr/container": "^1.1",
  4698. "symfony/deprecation-contracts": "^2.1|^3"
  4699. },
  4700. "conflict": {
  4701. "ext-psr": "<1.1|>=2"
  4702. },
  4703. "suggest": {
  4704. "symfony/service-implementation": ""
  4705. },
  4706. "type": "library",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-main": "2.5-dev"
  4710. },
  4711. "thanks": {
  4712. "name": "symfony/contracts",
  4713. "url": "https://github.com/symfony/contracts"
  4714. }
  4715. },
  4716. "autoload": {
  4717. "psr-4": {
  4718. "Symfony\\Contracts\\Service\\": ""
  4719. }
  4720. },
  4721. "notification-url": "https://packagist.org/downloads/",
  4722. "license": [
  4723. "MIT"
  4724. ],
  4725. "authors": [
  4726. {
  4727. "name": "Nicolas Grekas",
  4728. "email": "p@tchwork.com"
  4729. },
  4730. {
  4731. "name": "Symfony Community",
  4732. "homepage": "https://symfony.com/contributors"
  4733. }
  4734. ],
  4735. "description": "Generic abstractions related to writing services",
  4736. "homepage": "https://symfony.com",
  4737. "keywords": [
  4738. "abstractions",
  4739. "contracts",
  4740. "decoupling",
  4741. "interfaces",
  4742. "interoperability",
  4743. "standards"
  4744. ],
  4745. "support": {
  4746. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4747. },
  4748. "funding": [
  4749. {
  4750. "url": "https://symfony.com/sponsor",
  4751. "type": "custom"
  4752. },
  4753. {
  4754. "url": "https://github.com/fabpot",
  4755. "type": "github"
  4756. },
  4757. {
  4758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4759. "type": "tidelift"
  4760. }
  4761. ],
  4762. "time": "2022-05-30T19:17:29+00:00"
  4763. },
  4764. {
  4765. "name": "symfony/string",
  4766. "version": "v5.4.21",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/symfony/string.git",
  4770. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4775. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4776. "shasum": ""
  4777. },
  4778. "require": {
  4779. "php": ">=7.2.5",
  4780. "symfony/polyfill-ctype": "~1.8",
  4781. "symfony/polyfill-intl-grapheme": "~1.0",
  4782. "symfony/polyfill-intl-normalizer": "~1.0",
  4783. "symfony/polyfill-mbstring": "~1.0",
  4784. "symfony/polyfill-php80": "~1.15"
  4785. },
  4786. "conflict": {
  4787. "symfony/translation-contracts": ">=3.0"
  4788. },
  4789. "require-dev": {
  4790. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4791. "symfony/http-client": "^4.4|^5.0|^6.0",
  4792. "symfony/translation-contracts": "^1.1|^2",
  4793. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4794. },
  4795. "type": "library",
  4796. "autoload": {
  4797. "files": [
  4798. "Resources/functions.php"
  4799. ],
  4800. "psr-4": {
  4801. "Symfony\\Component\\String\\": ""
  4802. },
  4803. "exclude-from-classmap": [
  4804. "/Tests/"
  4805. ]
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "Nicolas Grekas",
  4814. "email": "p@tchwork.com"
  4815. },
  4816. {
  4817. "name": "Symfony Community",
  4818. "homepage": "https://symfony.com/contributors"
  4819. }
  4820. ],
  4821. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4822. "homepage": "https://symfony.com",
  4823. "keywords": [
  4824. "grapheme",
  4825. "i18n",
  4826. "string",
  4827. "unicode",
  4828. "utf-8",
  4829. "utf8"
  4830. ],
  4831. "support": {
  4832. "source": "https://github.com/symfony/string/tree/v5.4.21"
  4833. },
  4834. "funding": [
  4835. {
  4836. "url": "https://symfony.com/sponsor",
  4837. "type": "custom"
  4838. },
  4839. {
  4840. "url": "https://github.com/fabpot",
  4841. "type": "github"
  4842. },
  4843. {
  4844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4845. "type": "tidelift"
  4846. }
  4847. ],
  4848. "time": "2023-02-22T08:00:55+00:00"
  4849. },
  4850. {
  4851. "name": "symfony/translation",
  4852. "version": "v5.4.21",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/symfony/translation.git",
  4856. "reference": "6996affeea65705086939894b77110e9a7f80874"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874",
  4861. "reference": "6996affeea65705086939894b77110e9a7f80874",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "php": ">=7.2.5",
  4866. "symfony/deprecation-contracts": "^2.1|^3",
  4867. "symfony/polyfill-mbstring": "~1.0",
  4868. "symfony/polyfill-php80": "^1.16",
  4869. "symfony/translation-contracts": "^2.3"
  4870. },
  4871. "conflict": {
  4872. "symfony/config": "<4.4",
  4873. "symfony/console": "<5.3",
  4874. "symfony/dependency-injection": "<5.0",
  4875. "symfony/http-kernel": "<5.0",
  4876. "symfony/twig-bundle": "<5.0",
  4877. "symfony/yaml": "<4.4"
  4878. },
  4879. "provide": {
  4880. "symfony/translation-implementation": "2.3"
  4881. },
  4882. "require-dev": {
  4883. "psr/log": "^1|^2|^3",
  4884. "symfony/config": "^4.4|^5.0|^6.0",
  4885. "symfony/console": "^5.4|^6.0",
  4886. "symfony/dependency-injection": "^5.0|^6.0",
  4887. "symfony/finder": "^4.4|^5.0|^6.0",
  4888. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4889. "symfony/http-kernel": "^5.0|^6.0",
  4890. "symfony/intl": "^4.4|^5.0|^6.0",
  4891. "symfony/polyfill-intl-icu": "^1.21",
  4892. "symfony/service-contracts": "^1.1.2|^2|^3",
  4893. "symfony/yaml": "^4.4|^5.0|^6.0"
  4894. },
  4895. "suggest": {
  4896. "psr/log-implementation": "To use logging capability in translator",
  4897. "symfony/config": "",
  4898. "symfony/yaml": ""
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "files": [
  4903. "Resources/functions.php"
  4904. ],
  4905. "psr-4": {
  4906. "Symfony\\Component\\Translation\\": ""
  4907. },
  4908. "exclude-from-classmap": [
  4909. "/Tests/"
  4910. ]
  4911. },
  4912. "notification-url": "https://packagist.org/downloads/",
  4913. "license": [
  4914. "MIT"
  4915. ],
  4916. "authors": [
  4917. {
  4918. "name": "Fabien Potencier",
  4919. "email": "fabien@symfony.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Provides tools to internationalize your application",
  4927. "homepage": "https://symfony.com",
  4928. "support": {
  4929. "source": "https://github.com/symfony/translation/tree/v5.4.21"
  4930. },
  4931. "funding": [
  4932. {
  4933. "url": "https://symfony.com/sponsor",
  4934. "type": "custom"
  4935. },
  4936. {
  4937. "url": "https://github.com/fabpot",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4942. "type": "tidelift"
  4943. }
  4944. ],
  4945. "time": "2023-02-21T19:46:44+00:00"
  4946. },
  4947. {
  4948. "name": "symfony/translation-contracts",
  4949. "version": "v2.5.2",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/symfony/translation-contracts.git",
  4953. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4958. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "php": ">=7.2.5"
  4963. },
  4964. "suggest": {
  4965. "symfony/translation-implementation": ""
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "branch-alias": {
  4970. "dev-main": "2.5-dev"
  4971. },
  4972. "thanks": {
  4973. "name": "symfony/contracts",
  4974. "url": "https://github.com/symfony/contracts"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Symfony\\Contracts\\Translation\\": ""
  4980. }
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Nicolas Grekas",
  4989. "email": "p@tchwork.com"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "Generic abstractions related to translation",
  4997. "homepage": "https://symfony.com",
  4998. "keywords": [
  4999. "abstractions",
  5000. "contracts",
  5001. "decoupling",
  5002. "interfaces",
  5003. "interoperability",
  5004. "standards"
  5005. ],
  5006. "support": {
  5007. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  5008. },
  5009. "funding": [
  5010. {
  5011. "url": "https://symfony.com/sponsor",
  5012. "type": "custom"
  5013. },
  5014. {
  5015. "url": "https://github.com/fabpot",
  5016. "type": "github"
  5017. },
  5018. {
  5019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5020. "type": "tidelift"
  5021. }
  5022. ],
  5023. "time": "2022-06-27T16:58:25+00:00"
  5024. },
  5025. {
  5026. "name": "symfony/var-dumper",
  5027. "version": "v5.4.21",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/symfony/var-dumper.git",
  5031. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  5036. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "php": ">=7.2.5",
  5041. "symfony/polyfill-mbstring": "~1.0",
  5042. "symfony/polyfill-php80": "^1.16"
  5043. },
  5044. "conflict": {
  5045. "phpunit/phpunit": "<5.4.3",
  5046. "symfony/console": "<4.4"
  5047. },
  5048. "require-dev": {
  5049. "ext-iconv": "*",
  5050. "symfony/console": "^4.4|^5.0|^6.0",
  5051. "symfony/process": "^4.4|^5.0|^6.0",
  5052. "symfony/uid": "^5.1|^6.0",
  5053. "twig/twig": "^2.13|^3.0.4"
  5054. },
  5055. "suggest": {
  5056. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5057. "ext-intl": "To show region name in time zone dump",
  5058. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5059. },
  5060. "bin": [
  5061. "Resources/bin/var-dump-server"
  5062. ],
  5063. "type": "library",
  5064. "autoload": {
  5065. "files": [
  5066. "Resources/functions/dump.php"
  5067. ],
  5068. "psr-4": {
  5069. "Symfony\\Component\\VarDumper\\": ""
  5070. },
  5071. "exclude-from-classmap": [
  5072. "/Tests/"
  5073. ]
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Nicolas Grekas",
  5082. "email": "p@tchwork.com"
  5083. },
  5084. {
  5085. "name": "Symfony Community",
  5086. "homepage": "https://symfony.com/contributors"
  5087. }
  5088. ],
  5089. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5090. "homepage": "https://symfony.com",
  5091. "keywords": [
  5092. "debug",
  5093. "dump"
  5094. ],
  5095. "support": {
  5096. "source": "https://github.com/symfony/var-dumper/tree/v5.4.21"
  5097. },
  5098. "funding": [
  5099. {
  5100. "url": "https://symfony.com/sponsor",
  5101. "type": "custom"
  5102. },
  5103. {
  5104. "url": "https://github.com/fabpot",
  5105. "type": "github"
  5106. },
  5107. {
  5108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5109. "type": "tidelift"
  5110. }
  5111. ],
  5112. "time": "2023-02-23T10:00:28+00:00"
  5113. },
  5114. {
  5115. "name": "tijsverkoyen/css-to-inline-styles",
  5116. "version": "2.2.6",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5120. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5125. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5126. "shasum": ""
  5127. },
  5128. "require": {
  5129. "ext-dom": "*",
  5130. "ext-libxml": "*",
  5131. "php": "^5.5 || ^7.0 || ^8.0",
  5132. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5133. },
  5134. "require-dev": {
  5135. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5136. },
  5137. "type": "library",
  5138. "extra": {
  5139. "branch-alias": {
  5140. "dev-master": "2.2.x-dev"
  5141. }
  5142. },
  5143. "autoload": {
  5144. "psr-4": {
  5145. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5146. }
  5147. },
  5148. "notification-url": "https://packagist.org/downloads/",
  5149. "license": [
  5150. "BSD-3-Clause"
  5151. ],
  5152. "authors": [
  5153. {
  5154. "name": "Tijs Verkoyen",
  5155. "email": "css_to_inline_styles@verkoyen.eu",
  5156. "role": "Developer"
  5157. }
  5158. ],
  5159. "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.",
  5160. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5161. "support": {
  5162. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5163. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  5164. },
  5165. "time": "2023-01-03T09:29:04+00:00"
  5166. },
  5167. {
  5168. "name": "vlucas/phpdotenv",
  5169. "version": "v4.3.0",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/vlucas/phpdotenv.git",
  5173. "reference": "67a491df68208bef8c37092db11fa3885008efcf"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf",
  5178. "reference": "67a491df68208bef8c37092db11fa3885008efcf",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "php": "^5.5.9 || ^7.0 || ^8.0",
  5183. "phpoption/phpoption": "^1.7.3",
  5184. "symfony/polyfill-ctype": "^1.17"
  5185. },
  5186. "require-dev": {
  5187. "bamarni/composer-bin-plugin": "^1.4.1",
  5188. "ext-filter": "*",
  5189. "ext-pcre": "*",
  5190. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  5191. },
  5192. "suggest": {
  5193. "ext-filter": "Required to use the boolean validator.",
  5194. "ext-pcre": "Required to use most of the library."
  5195. },
  5196. "type": "library",
  5197. "extra": {
  5198. "bamarni-bin": {
  5199. "bin-links": true,
  5200. "forward-command": true
  5201. },
  5202. "branch-alias": {
  5203. "dev-master": "4.3-dev"
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Dotenv\\": "src/"
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "BSD-3-Clause"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "Graham Campbell",
  5218. "email": "hello@gjcampbell.co.uk",
  5219. "homepage": "https://github.com/GrahamCampbell"
  5220. },
  5221. {
  5222. "name": "Vance Lucas",
  5223. "email": "vance@vancelucas.com",
  5224. "homepage": "https://github.com/vlucas"
  5225. }
  5226. ],
  5227. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5228. "keywords": [
  5229. "dotenv",
  5230. "env",
  5231. "environment"
  5232. ],
  5233. "support": {
  5234. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5235. "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://github.com/GrahamCampbell",
  5240. "type": "github"
  5241. },
  5242. {
  5243. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5244. "type": "tidelift"
  5245. }
  5246. ],
  5247. "time": "2022-10-16T00:51:09+00:00"
  5248. },
  5249. {
  5250. "name": "voku/portable-ascii",
  5251. "version": "1.6.1",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://github.com/voku/portable-ascii.git",
  5255. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5260. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5261. "shasum": ""
  5262. },
  5263. "require": {
  5264. "php": ">=7.0.0"
  5265. },
  5266. "require-dev": {
  5267. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5268. },
  5269. "suggest": {
  5270. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5271. },
  5272. "type": "library",
  5273. "autoload": {
  5274. "psr-4": {
  5275. "voku\\": "src/voku/"
  5276. }
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Lars Moelleken",
  5285. "homepage": "http://www.moelleken.org/"
  5286. }
  5287. ],
  5288. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5289. "homepage": "https://github.com/voku/portable-ascii",
  5290. "keywords": [
  5291. "ascii",
  5292. "clean",
  5293. "php"
  5294. ],
  5295. "support": {
  5296. "issues": "https://github.com/voku/portable-ascii/issues",
  5297. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5298. },
  5299. "funding": [
  5300. {
  5301. "url": "https://www.paypal.me/moelleken",
  5302. "type": "custom"
  5303. },
  5304. {
  5305. "url": "https://github.com/voku",
  5306. "type": "github"
  5307. },
  5308. {
  5309. "url": "https://opencollective.com/portable-ascii",
  5310. "type": "open_collective"
  5311. },
  5312. {
  5313. "url": "https://www.patreon.com/voku",
  5314. "type": "patreon"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2022-01-24T18:55:24+00:00"
  5322. }
  5323. ],
  5324. "packages-dev": [
  5325. {
  5326. "name": "doctrine/instantiator",
  5327. "version": "1.5.0",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/doctrine/instantiator.git",
  5331. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  5336. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": "^7.1 || ^8.0"
  5341. },
  5342. "require-dev": {
  5343. "doctrine/coding-standard": "^9 || ^11",
  5344. "ext-pdo": "*",
  5345. "ext-phar": "*",
  5346. "phpbench/phpbench": "^0.16 || ^1",
  5347. "phpstan/phpstan": "^1.4",
  5348. "phpstan/phpstan-phpunit": "^1",
  5349. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5350. "vimeo/psalm": "^4.30 || ^5.4"
  5351. },
  5352. "type": "library",
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5356. }
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "MIT"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Marco Pivetta",
  5365. "email": "ocramius@gmail.com",
  5366. "homepage": "https://ocramius.github.io/"
  5367. }
  5368. ],
  5369. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5370. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5371. "keywords": [
  5372. "constructor",
  5373. "instantiate"
  5374. ],
  5375. "support": {
  5376. "issues": "https://github.com/doctrine/instantiator/issues",
  5377. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  5378. },
  5379. "funding": [
  5380. {
  5381. "url": "https://www.doctrine-project.org/sponsorship.html",
  5382. "type": "custom"
  5383. },
  5384. {
  5385. "url": "https://www.patreon.com/phpdoctrine",
  5386. "type": "patreon"
  5387. },
  5388. {
  5389. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5390. "type": "tidelift"
  5391. }
  5392. ],
  5393. "time": "2022-12-30T00:15:36+00:00"
  5394. },
  5395. {
  5396. "name": "facade/flare-client-php",
  5397. "version": "1.10.0",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/facade/flare-client-php.git",
  5401. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5406. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "facade/ignition-contracts": "~1.0",
  5411. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5412. "php": "^7.1|^8.0",
  5413. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5414. "symfony/mime": "^3.4|^4.0|^5.1",
  5415. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5416. },
  5417. "require-dev": {
  5418. "friendsofphp/php-cs-fixer": "^2.14",
  5419. "phpunit/phpunit": "^7.5",
  5420. "spatie/phpunit-snapshot-assertions": "^2.0"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-master": "1.0-dev"
  5426. }
  5427. },
  5428. "autoload": {
  5429. "files": [
  5430. "src/helpers.php"
  5431. ],
  5432. "psr-4": {
  5433. "Facade\\FlareClient\\": "src"
  5434. }
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "description": "Send PHP errors to Flare",
  5441. "homepage": "https://github.com/facade/flare-client-php",
  5442. "keywords": [
  5443. "exception",
  5444. "facade",
  5445. "flare",
  5446. "reporting"
  5447. ],
  5448. "support": {
  5449. "issues": "https://github.com/facade/flare-client-php/issues",
  5450. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://github.com/spatie",
  5455. "type": "github"
  5456. }
  5457. ],
  5458. "time": "2022-08-09T11:23:57+00:00"
  5459. },
  5460. {
  5461. "name": "facade/ignition",
  5462. "version": "2.17.7",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/facade/ignition.git",
  5466. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  5471. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "ext-curl": "*",
  5476. "ext-json": "*",
  5477. "ext-mbstring": "*",
  5478. "facade/flare-client-php": "^1.9.1",
  5479. "facade/ignition-contracts": "^1.0.2",
  5480. "illuminate/support": "^7.0|^8.0",
  5481. "monolog/monolog": "^2.0",
  5482. "php": "^7.2.5|^8.0",
  5483. "symfony/console": "^5.0",
  5484. "symfony/var-dumper": "^5.0"
  5485. },
  5486. "require-dev": {
  5487. "friendsofphp/php-cs-fixer": "^2.14",
  5488. "livewire/livewire": "^2.4",
  5489. "mockery/mockery": "^1.3",
  5490. "orchestra/testbench": "^5.0|^6.0",
  5491. "psalm/plugin-laravel": "^1.2"
  5492. },
  5493. "suggest": {
  5494. "laravel/telescope": "^3.1"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-master": "2.x-dev"
  5500. },
  5501. "laravel": {
  5502. "providers": [
  5503. "Facade\\Ignition\\IgnitionServiceProvider"
  5504. ],
  5505. "aliases": {
  5506. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5507. }
  5508. }
  5509. },
  5510. "autoload": {
  5511. "files": [
  5512. "src/helpers.php"
  5513. ],
  5514. "psr-4": {
  5515. "Facade\\Ignition\\": "src"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "description": "A beautiful error page for Laravel applications.",
  5523. "homepage": "https://github.com/facade/ignition",
  5524. "keywords": [
  5525. "error",
  5526. "flare",
  5527. "laravel",
  5528. "page"
  5529. ],
  5530. "support": {
  5531. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5532. "forum": "https://twitter.com/flareappio",
  5533. "issues": "https://github.com/facade/ignition/issues",
  5534. "source": "https://github.com/facade/ignition"
  5535. },
  5536. "time": "2023-01-26T12:34:59+00:00"
  5537. },
  5538. {
  5539. "name": "facade/ignition-contracts",
  5540. "version": "1.0.2",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/facade/ignition-contracts.git",
  5544. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5549. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5550. "shasum": ""
  5551. },
  5552. "require": {
  5553. "php": "^7.3|^8.0"
  5554. },
  5555. "require-dev": {
  5556. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5557. "phpunit/phpunit": "^9.3.11",
  5558. "vimeo/psalm": "^3.17.1"
  5559. },
  5560. "type": "library",
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Facade\\IgnitionContracts\\": "src"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Freek Van der Herten",
  5573. "email": "freek@spatie.be",
  5574. "homepage": "https://flareapp.io",
  5575. "role": "Developer"
  5576. }
  5577. ],
  5578. "description": "Solution contracts for Ignition",
  5579. "homepage": "https://github.com/facade/ignition-contracts",
  5580. "keywords": [
  5581. "contracts",
  5582. "flare",
  5583. "ignition"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/facade/ignition-contracts/issues",
  5587. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5588. },
  5589. "time": "2020-10-16T08:27:54+00:00"
  5590. },
  5591. {
  5592. "name": "fakerphp/faker",
  5593. "version": "v1.21.0",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/FakerPHP/Faker.git",
  5597. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  5602. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": "^7.4 || ^8.0",
  5607. "psr/container": "^1.0 || ^2.0",
  5608. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5609. },
  5610. "conflict": {
  5611. "fzaninotto/faker": "*"
  5612. },
  5613. "require-dev": {
  5614. "bamarni/composer-bin-plugin": "^1.4.1",
  5615. "doctrine/persistence": "^1.3 || ^2.0",
  5616. "ext-intl": "*",
  5617. "phpunit/phpunit": "^9.5.26",
  5618. "symfony/phpunit-bridge": "^5.4.16"
  5619. },
  5620. "suggest": {
  5621. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5622. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5623. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5624. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5625. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-main": "v1.21-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Faker\\": "src/Faker/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "François Zaninotto"
  5645. }
  5646. ],
  5647. "description": "Faker is a PHP library that generates fake data for you.",
  5648. "keywords": [
  5649. "data",
  5650. "faker",
  5651. "fixtures"
  5652. ],
  5653. "support": {
  5654. "issues": "https://github.com/FakerPHP/Faker/issues",
  5655. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  5656. },
  5657. "time": "2022-12-13T13:54:32+00:00"
  5658. },
  5659. {
  5660. "name": "filp/whoops",
  5661. "version": "2.15.1",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/filp/whoops.git",
  5665. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  5670. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  5671. "shasum": ""
  5672. },
  5673. "require": {
  5674. "php": "^5.5.9 || ^7.0 || ^8.0",
  5675. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5676. },
  5677. "require-dev": {
  5678. "mockery/mockery": "^0.9 || ^1.0",
  5679. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5680. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5681. },
  5682. "suggest": {
  5683. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5684. "whoops/soap": "Formats errors as SOAP responses"
  5685. },
  5686. "type": "library",
  5687. "extra": {
  5688. "branch-alias": {
  5689. "dev-master": "2.7-dev"
  5690. }
  5691. },
  5692. "autoload": {
  5693. "psr-4": {
  5694. "Whoops\\": "src/Whoops/"
  5695. }
  5696. },
  5697. "notification-url": "https://packagist.org/downloads/",
  5698. "license": [
  5699. "MIT"
  5700. ],
  5701. "authors": [
  5702. {
  5703. "name": "Filipe Dobreira",
  5704. "homepage": "https://github.com/filp",
  5705. "role": "Developer"
  5706. }
  5707. ],
  5708. "description": "php error handling for cool kids",
  5709. "homepage": "https://filp.github.io/whoops/",
  5710. "keywords": [
  5711. "error",
  5712. "exception",
  5713. "handling",
  5714. "library",
  5715. "throwable",
  5716. "whoops"
  5717. ],
  5718. "support": {
  5719. "issues": "https://github.com/filp/whoops/issues",
  5720. "source": "https://github.com/filp/whoops/tree/2.15.1"
  5721. },
  5722. "funding": [
  5723. {
  5724. "url": "https://github.com/denis-sokolov",
  5725. "type": "github"
  5726. }
  5727. ],
  5728. "time": "2023-03-06T18:09:13+00:00"
  5729. },
  5730. {
  5731. "name": "hamcrest/hamcrest-php",
  5732. "version": "v2.0.1",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5736. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5741. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5742. "shasum": ""
  5743. },
  5744. "require": {
  5745. "php": "^5.3|^7.0|^8.0"
  5746. },
  5747. "replace": {
  5748. "cordoval/hamcrest-php": "*",
  5749. "davedevelopment/hamcrest-php": "*",
  5750. "kodova/hamcrest-php": "*"
  5751. },
  5752. "require-dev": {
  5753. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5754. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5755. },
  5756. "type": "library",
  5757. "extra": {
  5758. "branch-alias": {
  5759. "dev-master": "2.1-dev"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "classmap": [
  5764. "hamcrest"
  5765. ]
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "BSD-3-Clause"
  5770. ],
  5771. "description": "This is the PHP port of Hamcrest Matchers",
  5772. "keywords": [
  5773. "test"
  5774. ],
  5775. "support": {
  5776. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5777. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5778. },
  5779. "time": "2020-07-09T08:09:16+00:00"
  5780. },
  5781. {
  5782. "name": "mockery/mockery",
  5783. "version": "1.5.1",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://github.com/mockery/mockery.git",
  5787. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5792. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5793. "shasum": ""
  5794. },
  5795. "require": {
  5796. "hamcrest/hamcrest-php": "^2.0.1",
  5797. "lib-pcre": ">=7.0",
  5798. "php": "^7.3 || ^8.0"
  5799. },
  5800. "conflict": {
  5801. "phpunit/phpunit": "<8.0"
  5802. },
  5803. "require-dev": {
  5804. "phpunit/phpunit": "^8.5 || ^9.3"
  5805. },
  5806. "type": "library",
  5807. "extra": {
  5808. "branch-alias": {
  5809. "dev-master": "1.4.x-dev"
  5810. }
  5811. },
  5812. "autoload": {
  5813. "psr-0": {
  5814. "Mockery": "library/"
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "BSD-3-Clause"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "Pádraic Brady",
  5824. "email": "padraic.brady@gmail.com",
  5825. "homepage": "http://blog.astrumfutura.com"
  5826. },
  5827. {
  5828. "name": "Dave Marshall",
  5829. "email": "dave.marshall@atstsolutions.co.uk",
  5830. "homepage": "http://davedevelopment.co.uk"
  5831. }
  5832. ],
  5833. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5834. "homepage": "https://github.com/mockery/mockery",
  5835. "keywords": [
  5836. "BDD",
  5837. "TDD",
  5838. "library",
  5839. "mock",
  5840. "mock objects",
  5841. "mockery",
  5842. "stub",
  5843. "test",
  5844. "test double",
  5845. "testing"
  5846. ],
  5847. "support": {
  5848. "issues": "https://github.com/mockery/mockery/issues",
  5849. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  5850. },
  5851. "time": "2022-09-07T15:32:08+00:00"
  5852. },
  5853. {
  5854. "name": "myclabs/deep-copy",
  5855. "version": "1.11.1",
  5856. "source": {
  5857. "type": "git",
  5858. "url": "https://github.com/myclabs/DeepCopy.git",
  5859. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  5860. },
  5861. "dist": {
  5862. "type": "zip",
  5863. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5864. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5865. "shasum": ""
  5866. },
  5867. "require": {
  5868. "php": "^7.1 || ^8.0"
  5869. },
  5870. "conflict": {
  5871. "doctrine/collections": "<1.6.8",
  5872. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5873. },
  5874. "require-dev": {
  5875. "doctrine/collections": "^1.6.8",
  5876. "doctrine/common": "^2.13.3 || ^3.2.2",
  5877. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5878. },
  5879. "type": "library",
  5880. "autoload": {
  5881. "files": [
  5882. "src/DeepCopy/deep_copy.php"
  5883. ],
  5884. "psr-4": {
  5885. "DeepCopy\\": "src/DeepCopy/"
  5886. }
  5887. },
  5888. "notification-url": "https://packagist.org/downloads/",
  5889. "license": [
  5890. "MIT"
  5891. ],
  5892. "description": "Create deep copies (clones) of your objects",
  5893. "keywords": [
  5894. "clone",
  5895. "copy",
  5896. "duplicate",
  5897. "object",
  5898. "object graph"
  5899. ],
  5900. "support": {
  5901. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5902. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  5903. },
  5904. "funding": [
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2023-03-08T13:26:56+00:00"
  5911. },
  5912. {
  5913. "name": "nunomaduro/collision",
  5914. "version": "v4.3.0",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/nunomaduro/collision.git",
  5918. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  5923. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "facade/ignition-contracts": "^1.0",
  5928. "filp/whoops": "^2.4",
  5929. "php": "^7.2.5 || ^8.0",
  5930. "symfony/console": "^5.0"
  5931. },
  5932. "require-dev": {
  5933. "facade/ignition": "^2.0",
  5934. "fideloper/proxy": "^4.2",
  5935. "friendsofphp/php-cs-fixer": "^2.16",
  5936. "fruitcake/laravel-cors": "^1.0",
  5937. "laravel/framework": "^7.0",
  5938. "laravel/tinker": "^2.0",
  5939. "nunomaduro/larastan": "^0.6",
  5940. "orchestra/testbench": "^5.0",
  5941. "phpstan/phpstan": "^0.12.3",
  5942. "phpunit/phpunit": "^8.5.1 || ^9.0"
  5943. },
  5944. "type": "library",
  5945. "extra": {
  5946. "laravel": {
  5947. "providers": [
  5948. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5949. ]
  5950. }
  5951. },
  5952. "autoload": {
  5953. "psr-4": {
  5954. "NunoMaduro\\Collision\\": "src/"
  5955. }
  5956. },
  5957. "notification-url": "https://packagist.org/downloads/",
  5958. "license": [
  5959. "MIT"
  5960. ],
  5961. "authors": [
  5962. {
  5963. "name": "Nuno Maduro",
  5964. "email": "enunomaduro@gmail.com"
  5965. }
  5966. ],
  5967. "description": "Cli error handling for console/command-line PHP applications.",
  5968. "keywords": [
  5969. "artisan",
  5970. "cli",
  5971. "command-line",
  5972. "console",
  5973. "error",
  5974. "handling",
  5975. "laravel",
  5976. "laravel-zero",
  5977. "php",
  5978. "symfony"
  5979. ],
  5980. "support": {
  5981. "issues": "https://github.com/nunomaduro/collision/issues",
  5982. "source": "https://github.com/nunomaduro/collision"
  5983. },
  5984. "funding": [
  5985. {
  5986. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5987. "type": "custom"
  5988. },
  5989. {
  5990. "url": "https://github.com/nunomaduro",
  5991. "type": "github"
  5992. },
  5993. {
  5994. "url": "https://www.patreon.com/nunomaduro",
  5995. "type": "patreon"
  5996. }
  5997. ],
  5998. "time": "2020-10-29T15:12:23+00:00"
  5999. },
  6000. {
  6001. "name": "phar-io/manifest",
  6002. "version": "2.0.3",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/phar-io/manifest.git",
  6006. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6011. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "ext-dom": "*",
  6016. "ext-phar": "*",
  6017. "ext-xmlwriter": "*",
  6018. "phar-io/version": "^3.0.1",
  6019. "php": "^7.2 || ^8.0"
  6020. },
  6021. "type": "library",
  6022. "extra": {
  6023. "branch-alias": {
  6024. "dev-master": "2.0.x-dev"
  6025. }
  6026. },
  6027. "autoload": {
  6028. "classmap": [
  6029. "src/"
  6030. ]
  6031. },
  6032. "notification-url": "https://packagist.org/downloads/",
  6033. "license": [
  6034. "BSD-3-Clause"
  6035. ],
  6036. "authors": [
  6037. {
  6038. "name": "Arne Blankerts",
  6039. "email": "arne@blankerts.de",
  6040. "role": "Developer"
  6041. },
  6042. {
  6043. "name": "Sebastian Heuer",
  6044. "email": "sebastian@phpeople.de",
  6045. "role": "Developer"
  6046. },
  6047. {
  6048. "name": "Sebastian Bergmann",
  6049. "email": "sebastian@phpunit.de",
  6050. "role": "Developer"
  6051. }
  6052. ],
  6053. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6054. "support": {
  6055. "issues": "https://github.com/phar-io/manifest/issues",
  6056. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6057. },
  6058. "time": "2021-07-20T11:28:43+00:00"
  6059. },
  6060. {
  6061. "name": "phar-io/version",
  6062. "version": "3.2.1",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://github.com/phar-io/version.git",
  6066. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6071. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6072. "shasum": ""
  6073. },
  6074. "require": {
  6075. "php": "^7.2 || ^8.0"
  6076. },
  6077. "type": "library",
  6078. "autoload": {
  6079. "classmap": [
  6080. "src/"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "BSD-3-Clause"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Arne Blankerts",
  6090. "email": "arne@blankerts.de",
  6091. "role": "Developer"
  6092. },
  6093. {
  6094. "name": "Sebastian Heuer",
  6095. "email": "sebastian@phpeople.de",
  6096. "role": "Developer"
  6097. },
  6098. {
  6099. "name": "Sebastian Bergmann",
  6100. "email": "sebastian@phpunit.de",
  6101. "role": "Developer"
  6102. }
  6103. ],
  6104. "description": "Library for handling version information and constraints",
  6105. "support": {
  6106. "issues": "https://github.com/phar-io/version/issues",
  6107. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6108. },
  6109. "time": "2022-02-21T01:04:05+00:00"
  6110. },
  6111. {
  6112. "name": "phpunit/php-code-coverage",
  6113. "version": "9.2.26",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6117. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6122. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "ext-dom": "*",
  6127. "ext-libxml": "*",
  6128. "ext-xmlwriter": "*",
  6129. "nikic/php-parser": "^4.15",
  6130. "php": ">=7.3",
  6131. "phpunit/php-file-iterator": "^3.0.3",
  6132. "phpunit/php-text-template": "^2.0.2",
  6133. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6134. "sebastian/complexity": "^2.0",
  6135. "sebastian/environment": "^5.1.2",
  6136. "sebastian/lines-of-code": "^1.0.3",
  6137. "sebastian/version": "^3.0.1",
  6138. "theseer/tokenizer": "^1.2.0"
  6139. },
  6140. "require-dev": {
  6141. "phpunit/phpunit": "^9.3"
  6142. },
  6143. "suggest": {
  6144. "ext-pcov": "PHP extension that provides line coverage",
  6145. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6146. },
  6147. "type": "library",
  6148. "extra": {
  6149. "branch-alias": {
  6150. "dev-master": "9.2-dev"
  6151. }
  6152. },
  6153. "autoload": {
  6154. "classmap": [
  6155. "src/"
  6156. ]
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "BSD-3-Clause"
  6161. ],
  6162. "authors": [
  6163. {
  6164. "name": "Sebastian Bergmann",
  6165. "email": "sebastian@phpunit.de",
  6166. "role": "lead"
  6167. }
  6168. ],
  6169. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6170. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6171. "keywords": [
  6172. "coverage",
  6173. "testing",
  6174. "xunit"
  6175. ],
  6176. "support": {
  6177. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6178. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://github.com/sebastianbergmann",
  6183. "type": "github"
  6184. }
  6185. ],
  6186. "time": "2023-03-06T12:58:08+00:00"
  6187. },
  6188. {
  6189. "name": "phpunit/php-file-iterator",
  6190. "version": "3.0.6",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6194. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6199. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.3"
  6204. },
  6205. "require-dev": {
  6206. "phpunit/phpunit": "^9.3"
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "branch-alias": {
  6211. "dev-master": "3.0-dev"
  6212. }
  6213. },
  6214. "autoload": {
  6215. "classmap": [
  6216. "src/"
  6217. ]
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "BSD-3-Clause"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Sebastian Bergmann",
  6226. "email": "sebastian@phpunit.de",
  6227. "role": "lead"
  6228. }
  6229. ],
  6230. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6231. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6232. "keywords": [
  6233. "filesystem",
  6234. "iterator"
  6235. ],
  6236. "support": {
  6237. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6238. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6239. },
  6240. "funding": [
  6241. {
  6242. "url": "https://github.com/sebastianbergmann",
  6243. "type": "github"
  6244. }
  6245. ],
  6246. "time": "2021-12-02T12:48:52+00:00"
  6247. },
  6248. {
  6249. "name": "phpunit/php-invoker",
  6250. "version": "3.1.1",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6254. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6259. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=7.3"
  6264. },
  6265. "require-dev": {
  6266. "ext-pcntl": "*",
  6267. "phpunit/phpunit": "^9.3"
  6268. },
  6269. "suggest": {
  6270. "ext-pcntl": "*"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "3.1-dev"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "classmap": [
  6280. "src/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "BSD-3-Clause"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Sebastian Bergmann",
  6290. "email": "sebastian@phpunit.de",
  6291. "role": "lead"
  6292. }
  6293. ],
  6294. "description": "Invoke callables with a timeout",
  6295. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6296. "keywords": [
  6297. "process"
  6298. ],
  6299. "support": {
  6300. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6301. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://github.com/sebastianbergmann",
  6306. "type": "github"
  6307. }
  6308. ],
  6309. "time": "2020-09-28T05:58:55+00:00"
  6310. },
  6311. {
  6312. "name": "phpunit/php-text-template",
  6313. "version": "2.0.4",
  6314. "source": {
  6315. "type": "git",
  6316. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6317. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6318. },
  6319. "dist": {
  6320. "type": "zip",
  6321. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6322. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6323. "shasum": ""
  6324. },
  6325. "require": {
  6326. "php": ">=7.3"
  6327. },
  6328. "require-dev": {
  6329. "phpunit/phpunit": "^9.3"
  6330. },
  6331. "type": "library",
  6332. "extra": {
  6333. "branch-alias": {
  6334. "dev-master": "2.0-dev"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "classmap": [
  6339. "src/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "BSD-3-Clause"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Sebastian Bergmann",
  6349. "email": "sebastian@phpunit.de",
  6350. "role": "lead"
  6351. }
  6352. ],
  6353. "description": "Simple template engine.",
  6354. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6355. "keywords": [
  6356. "template"
  6357. ],
  6358. "support": {
  6359. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6360. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6361. },
  6362. "funding": [
  6363. {
  6364. "url": "https://github.com/sebastianbergmann",
  6365. "type": "github"
  6366. }
  6367. ],
  6368. "time": "2020-10-26T05:33:50+00:00"
  6369. },
  6370. {
  6371. "name": "phpunit/php-timer",
  6372. "version": "5.0.3",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6376. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6381. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6382. "shasum": ""
  6383. },
  6384. "require": {
  6385. "php": ">=7.3"
  6386. },
  6387. "require-dev": {
  6388. "phpunit/phpunit": "^9.3"
  6389. },
  6390. "type": "library",
  6391. "extra": {
  6392. "branch-alias": {
  6393. "dev-master": "5.0-dev"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "classmap": [
  6398. "src/"
  6399. ]
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "BSD-3-Clause"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Sebastian Bergmann",
  6408. "email": "sebastian@phpunit.de",
  6409. "role": "lead"
  6410. }
  6411. ],
  6412. "description": "Utility class for timing",
  6413. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6414. "keywords": [
  6415. "timer"
  6416. ],
  6417. "support": {
  6418. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6419. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://github.com/sebastianbergmann",
  6424. "type": "github"
  6425. }
  6426. ],
  6427. "time": "2020-10-26T13:16:10+00:00"
  6428. },
  6429. {
  6430. "name": "phpunit/phpunit",
  6431. "version": "9.6.5",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6435. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  6440. "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "doctrine/instantiator": "^1.3.1 || ^2",
  6445. "ext-dom": "*",
  6446. "ext-json": "*",
  6447. "ext-libxml": "*",
  6448. "ext-mbstring": "*",
  6449. "ext-xml": "*",
  6450. "ext-xmlwriter": "*",
  6451. "myclabs/deep-copy": "^1.10.1",
  6452. "phar-io/manifest": "^2.0.3",
  6453. "phar-io/version": "^3.0.2",
  6454. "php": ">=7.3",
  6455. "phpunit/php-code-coverage": "^9.2.13",
  6456. "phpunit/php-file-iterator": "^3.0.5",
  6457. "phpunit/php-invoker": "^3.1.1",
  6458. "phpunit/php-text-template": "^2.0.3",
  6459. "phpunit/php-timer": "^5.0.2",
  6460. "sebastian/cli-parser": "^1.0.1",
  6461. "sebastian/code-unit": "^1.0.6",
  6462. "sebastian/comparator": "^4.0.8",
  6463. "sebastian/diff": "^4.0.3",
  6464. "sebastian/environment": "^5.1.3",
  6465. "sebastian/exporter": "^4.0.5",
  6466. "sebastian/global-state": "^5.0.1",
  6467. "sebastian/object-enumerator": "^4.0.3",
  6468. "sebastian/resource-operations": "^3.0.3",
  6469. "sebastian/type": "^3.2",
  6470. "sebastian/version": "^3.0.2"
  6471. },
  6472. "suggest": {
  6473. "ext-soap": "To be able to generate mocks based on WSDL files",
  6474. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6475. },
  6476. "bin": [
  6477. "phpunit"
  6478. ],
  6479. "type": "library",
  6480. "extra": {
  6481. "branch-alias": {
  6482. "dev-master": "9.6-dev"
  6483. }
  6484. },
  6485. "autoload": {
  6486. "files": [
  6487. "src/Framework/Assert/Functions.php"
  6488. ],
  6489. "classmap": [
  6490. "src/"
  6491. ]
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "BSD-3-Clause"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Sebastian Bergmann",
  6500. "email": "sebastian@phpunit.de",
  6501. "role": "lead"
  6502. }
  6503. ],
  6504. "description": "The PHP Unit Testing framework.",
  6505. "homepage": "https://phpunit.de/",
  6506. "keywords": [
  6507. "phpunit",
  6508. "testing",
  6509. "xunit"
  6510. ],
  6511. "support": {
  6512. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6513. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
  6514. },
  6515. "funding": [
  6516. {
  6517. "url": "https://phpunit.de/sponsors.html",
  6518. "type": "custom"
  6519. },
  6520. {
  6521. "url": "https://github.com/sebastianbergmann",
  6522. "type": "github"
  6523. },
  6524. {
  6525. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  6526. "type": "tidelift"
  6527. }
  6528. ],
  6529. "time": "2023-03-09T06:34:10+00:00"
  6530. },
  6531. {
  6532. "name": "sebastian/cli-parser",
  6533. "version": "1.0.1",
  6534. "source": {
  6535. "type": "git",
  6536. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6537. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6538. },
  6539. "dist": {
  6540. "type": "zip",
  6541. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6542. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6543. "shasum": ""
  6544. },
  6545. "require": {
  6546. "php": ">=7.3"
  6547. },
  6548. "require-dev": {
  6549. "phpunit/phpunit": "^9.3"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "branch-alias": {
  6554. "dev-master": "1.0-dev"
  6555. }
  6556. },
  6557. "autoload": {
  6558. "classmap": [
  6559. "src/"
  6560. ]
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "BSD-3-Clause"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Sebastian Bergmann",
  6569. "email": "sebastian@phpunit.de",
  6570. "role": "lead"
  6571. }
  6572. ],
  6573. "description": "Library for parsing CLI options",
  6574. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6575. "support": {
  6576. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6577. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6578. },
  6579. "funding": [
  6580. {
  6581. "url": "https://github.com/sebastianbergmann",
  6582. "type": "github"
  6583. }
  6584. ],
  6585. "time": "2020-09-28T06:08:49+00:00"
  6586. },
  6587. {
  6588. "name": "sebastian/code-unit",
  6589. "version": "1.0.8",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6593. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6598. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6599. "shasum": ""
  6600. },
  6601. "require": {
  6602. "php": ">=7.3"
  6603. },
  6604. "require-dev": {
  6605. "phpunit/phpunit": "^9.3"
  6606. },
  6607. "type": "library",
  6608. "extra": {
  6609. "branch-alias": {
  6610. "dev-master": "1.0-dev"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "classmap": [
  6615. "src/"
  6616. ]
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "BSD-3-Clause"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Sebastian Bergmann",
  6625. "email": "sebastian@phpunit.de",
  6626. "role": "lead"
  6627. }
  6628. ],
  6629. "description": "Collection of value objects that represent the PHP code units",
  6630. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6631. "support": {
  6632. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6633. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6634. },
  6635. "funding": [
  6636. {
  6637. "url": "https://github.com/sebastianbergmann",
  6638. "type": "github"
  6639. }
  6640. ],
  6641. "time": "2020-10-26T13:08:54+00:00"
  6642. },
  6643. {
  6644. "name": "sebastian/code-unit-reverse-lookup",
  6645. "version": "2.0.3",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6649. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6654. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "php": ">=7.3"
  6659. },
  6660. "require-dev": {
  6661. "phpunit/phpunit": "^9.3"
  6662. },
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "2.0-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "classmap": [
  6671. "src/"
  6672. ]
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "BSD-3-Clause"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Sebastian Bergmann",
  6681. "email": "sebastian@phpunit.de"
  6682. }
  6683. ],
  6684. "description": "Looks up which function or method a line of code belongs to",
  6685. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6686. "support": {
  6687. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6688. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6689. },
  6690. "funding": [
  6691. {
  6692. "url": "https://github.com/sebastianbergmann",
  6693. "type": "github"
  6694. }
  6695. ],
  6696. "time": "2020-09-28T05:30:19+00:00"
  6697. },
  6698. {
  6699. "name": "sebastian/comparator",
  6700. "version": "4.0.8",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/sebastianbergmann/comparator.git",
  6704. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  6709. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": ">=7.3",
  6714. "sebastian/diff": "^4.0",
  6715. "sebastian/exporter": "^4.0"
  6716. },
  6717. "require-dev": {
  6718. "phpunit/phpunit": "^9.3"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-master": "4.0-dev"
  6724. }
  6725. },
  6726. "autoload": {
  6727. "classmap": [
  6728. "src/"
  6729. ]
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "BSD-3-Clause"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Sebastian Bergmann",
  6738. "email": "sebastian@phpunit.de"
  6739. },
  6740. {
  6741. "name": "Jeff Welch",
  6742. "email": "whatthejeff@gmail.com"
  6743. },
  6744. {
  6745. "name": "Volker Dusch",
  6746. "email": "github@wallbash.com"
  6747. },
  6748. {
  6749. "name": "Bernhard Schussek",
  6750. "email": "bschussek@2bepublished.at"
  6751. }
  6752. ],
  6753. "description": "Provides the functionality to compare PHP values for equality",
  6754. "homepage": "https://github.com/sebastianbergmann/comparator",
  6755. "keywords": [
  6756. "comparator",
  6757. "compare",
  6758. "equality"
  6759. ],
  6760. "support": {
  6761. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6762. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  6763. },
  6764. "funding": [
  6765. {
  6766. "url": "https://github.com/sebastianbergmann",
  6767. "type": "github"
  6768. }
  6769. ],
  6770. "time": "2022-09-14T12:41:17+00:00"
  6771. },
  6772. {
  6773. "name": "sebastian/complexity",
  6774. "version": "2.0.2",
  6775. "source": {
  6776. "type": "git",
  6777. "url": "https://github.com/sebastianbergmann/complexity.git",
  6778. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6779. },
  6780. "dist": {
  6781. "type": "zip",
  6782. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6783. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6784. "shasum": ""
  6785. },
  6786. "require": {
  6787. "nikic/php-parser": "^4.7",
  6788. "php": ">=7.3"
  6789. },
  6790. "require-dev": {
  6791. "phpunit/phpunit": "^9.3"
  6792. },
  6793. "type": "library",
  6794. "extra": {
  6795. "branch-alias": {
  6796. "dev-master": "2.0-dev"
  6797. }
  6798. },
  6799. "autoload": {
  6800. "classmap": [
  6801. "src/"
  6802. ]
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "BSD-3-Clause"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Sebastian Bergmann",
  6811. "email": "sebastian@phpunit.de",
  6812. "role": "lead"
  6813. }
  6814. ],
  6815. "description": "Library for calculating the complexity of PHP code units",
  6816. "homepage": "https://github.com/sebastianbergmann/complexity",
  6817. "support": {
  6818. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6819. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6820. },
  6821. "funding": [
  6822. {
  6823. "url": "https://github.com/sebastianbergmann",
  6824. "type": "github"
  6825. }
  6826. ],
  6827. "time": "2020-10-26T15:52:27+00:00"
  6828. },
  6829. {
  6830. "name": "sebastian/diff",
  6831. "version": "4.0.4",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://github.com/sebastianbergmann/diff.git",
  6835. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6840. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6841. "shasum": ""
  6842. },
  6843. "require": {
  6844. "php": ">=7.3"
  6845. },
  6846. "require-dev": {
  6847. "phpunit/phpunit": "^9.3",
  6848. "symfony/process": "^4.2 || ^5"
  6849. },
  6850. "type": "library",
  6851. "extra": {
  6852. "branch-alias": {
  6853. "dev-master": "4.0-dev"
  6854. }
  6855. },
  6856. "autoload": {
  6857. "classmap": [
  6858. "src/"
  6859. ]
  6860. },
  6861. "notification-url": "https://packagist.org/downloads/",
  6862. "license": [
  6863. "BSD-3-Clause"
  6864. ],
  6865. "authors": [
  6866. {
  6867. "name": "Sebastian Bergmann",
  6868. "email": "sebastian@phpunit.de"
  6869. },
  6870. {
  6871. "name": "Kore Nordmann",
  6872. "email": "mail@kore-nordmann.de"
  6873. }
  6874. ],
  6875. "description": "Diff implementation",
  6876. "homepage": "https://github.com/sebastianbergmann/diff",
  6877. "keywords": [
  6878. "diff",
  6879. "udiff",
  6880. "unidiff",
  6881. "unified diff"
  6882. ],
  6883. "support": {
  6884. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6885. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6886. },
  6887. "funding": [
  6888. {
  6889. "url": "https://github.com/sebastianbergmann",
  6890. "type": "github"
  6891. }
  6892. ],
  6893. "time": "2020-10-26T13:10:38+00:00"
  6894. },
  6895. {
  6896. "name": "sebastian/environment",
  6897. "version": "5.1.5",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/sebastianbergmann/environment.git",
  6901. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6906. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "php": ">=7.3"
  6911. },
  6912. "require-dev": {
  6913. "phpunit/phpunit": "^9.3"
  6914. },
  6915. "suggest": {
  6916. "ext-posix": "*"
  6917. },
  6918. "type": "library",
  6919. "extra": {
  6920. "branch-alias": {
  6921. "dev-master": "5.1-dev"
  6922. }
  6923. },
  6924. "autoload": {
  6925. "classmap": [
  6926. "src/"
  6927. ]
  6928. },
  6929. "notification-url": "https://packagist.org/downloads/",
  6930. "license": [
  6931. "BSD-3-Clause"
  6932. ],
  6933. "authors": [
  6934. {
  6935. "name": "Sebastian Bergmann",
  6936. "email": "sebastian@phpunit.de"
  6937. }
  6938. ],
  6939. "description": "Provides functionality to handle HHVM/PHP environments",
  6940. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6941. "keywords": [
  6942. "Xdebug",
  6943. "environment",
  6944. "hhvm"
  6945. ],
  6946. "support": {
  6947. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6948. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  6949. },
  6950. "funding": [
  6951. {
  6952. "url": "https://github.com/sebastianbergmann",
  6953. "type": "github"
  6954. }
  6955. ],
  6956. "time": "2023-02-03T06:03:51+00:00"
  6957. },
  6958. {
  6959. "name": "sebastian/exporter",
  6960. "version": "4.0.5",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/sebastianbergmann/exporter.git",
  6964. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6969. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6970. "shasum": ""
  6971. },
  6972. "require": {
  6973. "php": ">=7.3",
  6974. "sebastian/recursion-context": "^4.0"
  6975. },
  6976. "require-dev": {
  6977. "ext-mbstring": "*",
  6978. "phpunit/phpunit": "^9.3"
  6979. },
  6980. "type": "library",
  6981. "extra": {
  6982. "branch-alias": {
  6983. "dev-master": "4.0-dev"
  6984. }
  6985. },
  6986. "autoload": {
  6987. "classmap": [
  6988. "src/"
  6989. ]
  6990. },
  6991. "notification-url": "https://packagist.org/downloads/",
  6992. "license": [
  6993. "BSD-3-Clause"
  6994. ],
  6995. "authors": [
  6996. {
  6997. "name": "Sebastian Bergmann",
  6998. "email": "sebastian@phpunit.de"
  6999. },
  7000. {
  7001. "name": "Jeff Welch",
  7002. "email": "whatthejeff@gmail.com"
  7003. },
  7004. {
  7005. "name": "Volker Dusch",
  7006. "email": "github@wallbash.com"
  7007. },
  7008. {
  7009. "name": "Adam Harvey",
  7010. "email": "aharvey@php.net"
  7011. },
  7012. {
  7013. "name": "Bernhard Schussek",
  7014. "email": "bschussek@gmail.com"
  7015. }
  7016. ],
  7017. "description": "Provides the functionality to export PHP variables for visualization",
  7018. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7019. "keywords": [
  7020. "export",
  7021. "exporter"
  7022. ],
  7023. "support": {
  7024. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7025. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  7026. },
  7027. "funding": [
  7028. {
  7029. "url": "https://github.com/sebastianbergmann",
  7030. "type": "github"
  7031. }
  7032. ],
  7033. "time": "2022-09-14T06:03:37+00:00"
  7034. },
  7035. {
  7036. "name": "sebastian/global-state",
  7037. "version": "5.0.5",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/sebastianbergmann/global-state.git",
  7041. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7046. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=7.3",
  7051. "sebastian/object-reflector": "^2.0",
  7052. "sebastian/recursion-context": "^4.0"
  7053. },
  7054. "require-dev": {
  7055. "ext-dom": "*",
  7056. "phpunit/phpunit": "^9.3"
  7057. },
  7058. "suggest": {
  7059. "ext-uopz": "*"
  7060. },
  7061. "type": "library",
  7062. "extra": {
  7063. "branch-alias": {
  7064. "dev-master": "5.0-dev"
  7065. }
  7066. },
  7067. "autoload": {
  7068. "classmap": [
  7069. "src/"
  7070. ]
  7071. },
  7072. "notification-url": "https://packagist.org/downloads/",
  7073. "license": [
  7074. "BSD-3-Clause"
  7075. ],
  7076. "authors": [
  7077. {
  7078. "name": "Sebastian Bergmann",
  7079. "email": "sebastian@phpunit.de"
  7080. }
  7081. ],
  7082. "description": "Snapshotting of global state",
  7083. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7084. "keywords": [
  7085. "global state"
  7086. ],
  7087. "support": {
  7088. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7089. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  7090. },
  7091. "funding": [
  7092. {
  7093. "url": "https://github.com/sebastianbergmann",
  7094. "type": "github"
  7095. }
  7096. ],
  7097. "time": "2022-02-14T08:28:10+00:00"
  7098. },
  7099. {
  7100. "name": "sebastian/lines-of-code",
  7101. "version": "1.0.3",
  7102. "source": {
  7103. "type": "git",
  7104. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7105. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7106. },
  7107. "dist": {
  7108. "type": "zip",
  7109. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7110. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7111. "shasum": ""
  7112. },
  7113. "require": {
  7114. "nikic/php-parser": "^4.6",
  7115. "php": ">=7.3"
  7116. },
  7117. "require-dev": {
  7118. "phpunit/phpunit": "^9.3"
  7119. },
  7120. "type": "library",
  7121. "extra": {
  7122. "branch-alias": {
  7123. "dev-master": "1.0-dev"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "classmap": [
  7128. "src/"
  7129. ]
  7130. },
  7131. "notification-url": "https://packagist.org/downloads/",
  7132. "license": [
  7133. "BSD-3-Clause"
  7134. ],
  7135. "authors": [
  7136. {
  7137. "name": "Sebastian Bergmann",
  7138. "email": "sebastian@phpunit.de",
  7139. "role": "lead"
  7140. }
  7141. ],
  7142. "description": "Library for counting the lines of code in PHP source code",
  7143. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7144. "support": {
  7145. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7146. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://github.com/sebastianbergmann",
  7151. "type": "github"
  7152. }
  7153. ],
  7154. "time": "2020-11-28T06:42:11+00:00"
  7155. },
  7156. {
  7157. "name": "sebastian/object-enumerator",
  7158. "version": "4.0.4",
  7159. "source": {
  7160. "type": "git",
  7161. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7162. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7163. },
  7164. "dist": {
  7165. "type": "zip",
  7166. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7167. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7168. "shasum": ""
  7169. },
  7170. "require": {
  7171. "php": ">=7.3",
  7172. "sebastian/object-reflector": "^2.0",
  7173. "sebastian/recursion-context": "^4.0"
  7174. },
  7175. "require-dev": {
  7176. "phpunit/phpunit": "^9.3"
  7177. },
  7178. "type": "library",
  7179. "extra": {
  7180. "branch-alias": {
  7181. "dev-master": "4.0-dev"
  7182. }
  7183. },
  7184. "autoload": {
  7185. "classmap": [
  7186. "src/"
  7187. ]
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "BSD-3-Clause"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Sebastian Bergmann",
  7196. "email": "sebastian@phpunit.de"
  7197. }
  7198. ],
  7199. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7200. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7201. "support": {
  7202. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7203. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7204. },
  7205. "funding": [
  7206. {
  7207. "url": "https://github.com/sebastianbergmann",
  7208. "type": "github"
  7209. }
  7210. ],
  7211. "time": "2020-10-26T13:12:34+00:00"
  7212. },
  7213. {
  7214. "name": "sebastian/object-reflector",
  7215. "version": "2.0.4",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7219. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7224. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=7.3"
  7229. },
  7230. "require-dev": {
  7231. "phpunit/phpunit": "^9.3"
  7232. },
  7233. "type": "library",
  7234. "extra": {
  7235. "branch-alias": {
  7236. "dev-master": "2.0-dev"
  7237. }
  7238. },
  7239. "autoload": {
  7240. "classmap": [
  7241. "src/"
  7242. ]
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "BSD-3-Clause"
  7247. ],
  7248. "authors": [
  7249. {
  7250. "name": "Sebastian Bergmann",
  7251. "email": "sebastian@phpunit.de"
  7252. }
  7253. ],
  7254. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7255. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7256. "support": {
  7257. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7258. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7259. },
  7260. "funding": [
  7261. {
  7262. "url": "https://github.com/sebastianbergmann",
  7263. "type": "github"
  7264. }
  7265. ],
  7266. "time": "2020-10-26T13:14:26+00:00"
  7267. },
  7268. {
  7269. "name": "sebastian/recursion-context",
  7270. "version": "4.0.5",
  7271. "source": {
  7272. "type": "git",
  7273. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7274. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7275. },
  7276. "dist": {
  7277. "type": "zip",
  7278. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7279. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7280. "shasum": ""
  7281. },
  7282. "require": {
  7283. "php": ">=7.3"
  7284. },
  7285. "require-dev": {
  7286. "phpunit/phpunit": "^9.3"
  7287. },
  7288. "type": "library",
  7289. "extra": {
  7290. "branch-alias": {
  7291. "dev-master": "4.0-dev"
  7292. }
  7293. },
  7294. "autoload": {
  7295. "classmap": [
  7296. "src/"
  7297. ]
  7298. },
  7299. "notification-url": "https://packagist.org/downloads/",
  7300. "license": [
  7301. "BSD-3-Clause"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "Sebastian Bergmann",
  7306. "email": "sebastian@phpunit.de"
  7307. },
  7308. {
  7309. "name": "Jeff Welch",
  7310. "email": "whatthejeff@gmail.com"
  7311. },
  7312. {
  7313. "name": "Adam Harvey",
  7314. "email": "aharvey@php.net"
  7315. }
  7316. ],
  7317. "description": "Provides functionality to recursively process PHP variables",
  7318. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7319. "support": {
  7320. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7321. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  7322. },
  7323. "funding": [
  7324. {
  7325. "url": "https://github.com/sebastianbergmann",
  7326. "type": "github"
  7327. }
  7328. ],
  7329. "time": "2023-02-03T06:07:39+00:00"
  7330. },
  7331. {
  7332. "name": "sebastian/resource-operations",
  7333. "version": "3.0.3",
  7334. "source": {
  7335. "type": "git",
  7336. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7337. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7338. },
  7339. "dist": {
  7340. "type": "zip",
  7341. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7342. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7343. "shasum": ""
  7344. },
  7345. "require": {
  7346. "php": ">=7.3"
  7347. },
  7348. "require-dev": {
  7349. "phpunit/phpunit": "^9.0"
  7350. },
  7351. "type": "library",
  7352. "extra": {
  7353. "branch-alias": {
  7354. "dev-master": "3.0-dev"
  7355. }
  7356. },
  7357. "autoload": {
  7358. "classmap": [
  7359. "src/"
  7360. ]
  7361. },
  7362. "notification-url": "https://packagist.org/downloads/",
  7363. "license": [
  7364. "BSD-3-Clause"
  7365. ],
  7366. "authors": [
  7367. {
  7368. "name": "Sebastian Bergmann",
  7369. "email": "sebastian@phpunit.de"
  7370. }
  7371. ],
  7372. "description": "Provides a list of PHP built-in functions that operate on resources",
  7373. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7374. "support": {
  7375. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7376. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7377. },
  7378. "funding": [
  7379. {
  7380. "url": "https://github.com/sebastianbergmann",
  7381. "type": "github"
  7382. }
  7383. ],
  7384. "time": "2020-09-28T06:45:17+00:00"
  7385. },
  7386. {
  7387. "name": "sebastian/type",
  7388. "version": "3.2.1",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/sebastianbergmann/type.git",
  7392. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7397. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "php": ">=7.3"
  7402. },
  7403. "require-dev": {
  7404. "phpunit/phpunit": "^9.5"
  7405. },
  7406. "type": "library",
  7407. "extra": {
  7408. "branch-alias": {
  7409. "dev-master": "3.2-dev"
  7410. }
  7411. },
  7412. "autoload": {
  7413. "classmap": [
  7414. "src/"
  7415. ]
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "BSD-3-Clause"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Sebastian Bergmann",
  7424. "email": "sebastian@phpunit.de",
  7425. "role": "lead"
  7426. }
  7427. ],
  7428. "description": "Collection of value objects that represent the types of the PHP type system",
  7429. "homepage": "https://github.com/sebastianbergmann/type",
  7430. "support": {
  7431. "issues": "https://github.com/sebastianbergmann/type/issues",
  7432. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  7433. },
  7434. "funding": [
  7435. {
  7436. "url": "https://github.com/sebastianbergmann",
  7437. "type": "github"
  7438. }
  7439. ],
  7440. "time": "2023-02-03T06:13:03+00:00"
  7441. },
  7442. {
  7443. "name": "sebastian/version",
  7444. "version": "3.0.2",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://github.com/sebastianbergmann/version.git",
  7448. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7453. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7454. "shasum": ""
  7455. },
  7456. "require": {
  7457. "php": ">=7.3"
  7458. },
  7459. "type": "library",
  7460. "extra": {
  7461. "branch-alias": {
  7462. "dev-master": "3.0-dev"
  7463. }
  7464. },
  7465. "autoload": {
  7466. "classmap": [
  7467. "src/"
  7468. ]
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "BSD-3-Clause"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Sebastian Bergmann",
  7477. "email": "sebastian@phpunit.de",
  7478. "role": "lead"
  7479. }
  7480. ],
  7481. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7482. "homepage": "https://github.com/sebastianbergmann/version",
  7483. "support": {
  7484. "issues": "https://github.com/sebastianbergmann/version/issues",
  7485. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7486. },
  7487. "funding": [
  7488. {
  7489. "url": "https://github.com/sebastianbergmann",
  7490. "type": "github"
  7491. }
  7492. ],
  7493. "time": "2020-09-28T06:39:44+00:00"
  7494. },
  7495. {
  7496. "name": "theseer/tokenizer",
  7497. "version": "1.2.1",
  7498. "source": {
  7499. "type": "git",
  7500. "url": "https://github.com/theseer/tokenizer.git",
  7501. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7502. },
  7503. "dist": {
  7504. "type": "zip",
  7505. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7506. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7507. "shasum": ""
  7508. },
  7509. "require": {
  7510. "ext-dom": "*",
  7511. "ext-tokenizer": "*",
  7512. "ext-xmlwriter": "*",
  7513. "php": "^7.2 || ^8.0"
  7514. },
  7515. "type": "library",
  7516. "autoload": {
  7517. "classmap": [
  7518. "src/"
  7519. ]
  7520. },
  7521. "notification-url": "https://packagist.org/downloads/",
  7522. "license": [
  7523. "BSD-3-Clause"
  7524. ],
  7525. "authors": [
  7526. {
  7527. "name": "Arne Blankerts",
  7528. "email": "arne@blankerts.de",
  7529. "role": "Developer"
  7530. }
  7531. ],
  7532. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7533. "support": {
  7534. "issues": "https://github.com/theseer/tokenizer/issues",
  7535. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7536. },
  7537. "funding": [
  7538. {
  7539. "url": "https://github.com/theseer",
  7540. "type": "github"
  7541. }
  7542. ],
  7543. "time": "2021-07-28T10:34:58+00:00"
  7544. }
  7545. ],
  7546. "aliases": [],
  7547. "minimum-stability": "dev",
  7548. "stability-flags": [],
  7549. "prefer-stable": true,
  7550. "prefer-lowest": false,
  7551. "platform": {
  7552. "php": "^7.2.5|^8.0"
  7553. },
  7554. "platform-dev": [],
  7555. "plugin-api-version": "2.0.0"
  7556. }