composer.lock 307 KB

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