composer.lock 309 KB

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