composer.lock 306 KB

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