composer.lock 385 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729
  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": "f0763577db0f24800ea4a27512e33a5f",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.8",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.cloud.tencent.com/repository/composer/bacon/bacon-qr-code/2.0.8/bacon-bacon-qr-code-2.0.8.zip",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "dasprid/enum": "^1.0.3",
  20. "ext-iconv": "*",
  21. "php": "^7.1 || ^8.0"
  22. },
  23. "require-dev": {
  24. "phly/keep-a-changelog": "^2.1",
  25. "phpunit/phpunit": "^7 | ^8 | ^9",
  26. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  27. "squizlabs/php_codesniffer": "^3.4"
  28. },
  29. "suggest": {
  30. "ext-imagick": "to generate QR code images"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "BaconQrCode\\": "src/"
  36. }
  37. },
  38. "license": [
  39. "BSD-2-Clause"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Ben Scholzen 'DASPRiD'",
  44. "email": "mail@dasprids.de",
  45. "homepage": "https://dasprids.de/",
  46. "role": "Developer"
  47. }
  48. ],
  49. "description": "BaconQrCode is a QR code generator for PHP.",
  50. "homepage": "https://github.com/Bacon/BaconQrCode",
  51. "time": "2022-12-07T17:46:57+00:00"
  52. },
  53. {
  54. "name": "box/spout",
  55. "version": "v3.3.0",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/box/spout.git",
  59. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  64. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  65. "shasum": "",
  66. "mirrors": [
  67. {
  68. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  69. "preferred": true
  70. }
  71. ]
  72. },
  73. "require": {
  74. "ext-dom": "*",
  75. "ext-xmlreader": "*",
  76. "ext-zip": "*",
  77. "php": ">=7.2.0"
  78. },
  79. "require-dev": {
  80. "friendsofphp/php-cs-fixer": "^2",
  81. "phpunit/phpunit": "^8"
  82. },
  83. "suggest": {
  84. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  85. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  86. },
  87. "type": "library",
  88. "extra": {
  89. "branch-alias": {
  90. "dev-master": "3.1.x-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Box\\Spout\\": "src/Spout"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "Apache-2.0"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Adrien Loison",
  105. "email": "adrien@box.com"
  106. }
  107. ],
  108. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  109. "homepage": "https://www.github.com/box/spout",
  110. "keywords": [
  111. "OOXML",
  112. "csv",
  113. "excel",
  114. "memory",
  115. "odf",
  116. "ods",
  117. "office",
  118. "open",
  119. "php",
  120. "read",
  121. "scale",
  122. "spreadsheet",
  123. "stream",
  124. "write",
  125. "xlsx"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/box/spout/issues",
  129. "source": "https://github.com/box/spout/tree/v3.3.0"
  130. },
  131. "abandoned": true,
  132. "time": "2021-05-14T21:18:09+00:00"
  133. },
  134. {
  135. "name": "brick/math",
  136. "version": "0.11.0",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/brick/math.git",
  140. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  145. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  146. "shasum": "",
  147. "mirrors": [
  148. {
  149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  150. "preferred": true
  151. }
  152. ]
  153. },
  154. "require": {
  155. "php": "^8.0"
  156. },
  157. "require-dev": {
  158. "php-coveralls/php-coveralls": "^2.2",
  159. "phpunit/phpunit": "^9.0",
  160. "vimeo/psalm": "5.0.0"
  161. },
  162. "type": "library",
  163. "autoload": {
  164. "psr-4": {
  165. "Brick\\Math\\": "src/"
  166. }
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "MIT"
  171. ],
  172. "description": "Arbitrary-precision arithmetic library",
  173. "keywords": [
  174. "Arbitrary-precision",
  175. "BigInteger",
  176. "BigRational",
  177. "arithmetic",
  178. "bigdecimal",
  179. "bignum",
  180. "brick",
  181. "math"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/brick/math/issues",
  185. "source": "https://github.com/brick/math/tree/0.11.0"
  186. },
  187. "funding": [
  188. {
  189. "url": "https://github.com/BenMorel",
  190. "type": "github"
  191. }
  192. ],
  193. "time": "2023-01-15T23:15:59+00:00"
  194. },
  195. {
  196. "name": "carbonphp/carbon-doctrine-types",
  197. "version": "2.1.0",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  201. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  206. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require": {
  216. "php": "^7.4 || ^8.0"
  217. },
  218. "conflict": {
  219. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  220. },
  221. "require-dev": {
  222. "doctrine/dbal": "^3.7.0",
  223. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  224. "phpunit/phpunit": "^10.3"
  225. },
  226. "type": "library",
  227. "autoload": {
  228. "psr-4": {
  229. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "MIT"
  235. ],
  236. "authors": [
  237. {
  238. "name": "KyleKatarn",
  239. "email": "kylekatarnls@gmail.com"
  240. }
  241. ],
  242. "description": "Types to use Carbon in Doctrine",
  243. "keywords": [
  244. "carbon",
  245. "date",
  246. "datetime",
  247. "doctrine",
  248. "time"
  249. ],
  250. "support": {
  251. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  252. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  253. },
  254. "funding": [
  255. {
  256. "url": "https://github.com/kylekatarnls",
  257. "type": "github"
  258. },
  259. {
  260. "url": "https://opencollective.com/Carbon",
  261. "type": "open_collective"
  262. },
  263. {
  264. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  265. "type": "tidelift"
  266. }
  267. ],
  268. "time": "2023-12-11T17:09:12+00:00"
  269. },
  270. {
  271. "name": "dasprid/enum",
  272. "version": "1.0.6",
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://mirrors.cloud.tencent.com/repository/composer/dasprid/enum/1.0.6/dasprid-enum-1.0.6.zip",
  276. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  277. "shasum": ""
  278. },
  279. "require": {
  280. "php": ">=7.1 <9.0"
  281. },
  282. "require-dev": {
  283. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  284. "squizlabs/php_codesniffer": "*"
  285. },
  286. "type": "library",
  287. "autoload": {
  288. "psr-4": {
  289. "DASPRiD\\Enum\\": "src/"
  290. }
  291. },
  292. "license": [
  293. "BSD-2-Clause"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Ben Scholzen 'DASPRiD'",
  298. "email": "mail@dasprids.de",
  299. "homepage": "https://dasprids.de/",
  300. "role": "Developer"
  301. }
  302. ],
  303. "description": "PHP 7.1 enum implementation",
  304. "keywords": [
  305. "enum",
  306. "map"
  307. ],
  308. "time": "2024-08-09T14:30:48+00:00"
  309. },
  310. {
  311. "name": "dcat/easy-excel",
  312. "version": "1.1.0",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/jqhph/easy-excel.git",
  316. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  321. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  322. "shasum": "",
  323. "mirrors": [
  324. {
  325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  326. "preferred": true
  327. }
  328. ]
  329. },
  330. "require": {
  331. "box/spout": "~3",
  332. "league/flysystem": "~1|~2|~3",
  333. "php": ">=7.1.0"
  334. },
  335. "require-dev": {
  336. "friendsofphp/php-cs-fixer": "^2",
  337. "phpunit/phpunit": "~7|~8.0"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Dcat\\EasyExcel\\": "src/"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "jqh",
  352. "email": "841324345@qq.com"
  353. }
  354. ],
  355. "description": "使用简单实用的语义化接口快速读写Excel文件",
  356. "homepage": "https://github.com/jqhph/easy-excel",
  357. "keywords": [
  358. "box spout",
  359. "csv",
  360. "easy excel",
  361. "excel",
  362. "ods",
  363. "office",
  364. "read",
  365. "spreadsheet",
  366. "stream",
  367. "xlsx"
  368. ],
  369. "support": {
  370. "issues": "https://github.com/jqhph/easy-excel/issues",
  371. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  372. },
  373. "time": "2022-03-03T03:04:13+00:00"
  374. },
  375. {
  376. "name": "dcat/laravel-admin",
  377. "version": "2.2.3-beta",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/jqhph/dcat-admin.git",
  381. "reference": "f8ef27cc4d6a79dc346f89d0efb925d4e28ee763"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/f8ef27cc4d6a79dc346f89d0efb925d4e28ee763",
  386. "reference": "f8ef27cc4d6a79dc346f89d0efb925d4e28ee763",
  387. "shasum": "",
  388. "mirrors": [
  389. {
  390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  391. "preferred": true
  392. }
  393. ]
  394. },
  395. "require": {
  396. "doctrine/dbal": "^2.6|^3.0",
  397. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0|~10.0",
  398. "php": ">=7.1.0",
  399. "spatie/eloquent-sortable": "3.*|4.*"
  400. },
  401. "require-dev": {
  402. "fzaninotto/faker": "^1.4",
  403. "laravel/dusk": "~5.9|~6",
  404. "mockery/mockery": "^1.0",
  405. "phpstan/phpstan": "^0.12.0",
  406. "phpunit/phpunit": "^7.5|~9"
  407. },
  408. "type": "library",
  409. "extra": {
  410. "laravel": {
  411. "providers": [
  412. "Dcat\\Admin\\AdminServiceProvider"
  413. ]
  414. }
  415. },
  416. "autoload": {
  417. "files": [
  418. "src/Support/helpers.php"
  419. ],
  420. "psr-4": {
  421. "Dcat\\Admin\\": "src/"
  422. }
  423. },
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "MIT"
  427. ],
  428. "authors": [
  429. {
  430. "name": "jqh",
  431. "email": "841324345@qq.com"
  432. }
  433. ],
  434. "description": "dcat admin",
  435. "homepage": "https://github.com/jqhph/dcat-admin",
  436. "keywords": [
  437. "admin",
  438. "dcat",
  439. "form",
  440. "grid",
  441. "laravel",
  442. "laravel admin"
  443. ],
  444. "support": {
  445. "issues": "https://github.com/jqhph/dcat-admin/issues",
  446. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.3-beta"
  447. },
  448. "time": "2023-02-15T08:59:42+00:00"
  449. },
  450. {
  451. "name": "dflydev/dot-access-data",
  452. "version": "v3.0.3",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  456. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  461. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  462. "shasum": "",
  463. "mirrors": [
  464. {
  465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  466. "preferred": true
  467. }
  468. ]
  469. },
  470. "require": {
  471. "php": "^7.1 || ^8.0"
  472. },
  473. "require-dev": {
  474. "phpstan/phpstan": "^0.12.42",
  475. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  476. "scrutinizer/ocular": "1.6.0",
  477. "squizlabs/php_codesniffer": "^3.5",
  478. "vimeo/psalm": "^4.0.0"
  479. },
  480. "type": "library",
  481. "extra": {
  482. "branch-alias": {
  483. "dev-main": "3.x-dev"
  484. }
  485. },
  486. "autoload": {
  487. "psr-4": {
  488. "Dflydev\\DotAccessData\\": "src/"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "MIT"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Dragonfly Development Inc.",
  498. "email": "info@dflydev.com",
  499. "homepage": "http://dflydev.com"
  500. },
  501. {
  502. "name": "Beau Simensen",
  503. "email": "beau@dflydev.com",
  504. "homepage": "http://beausimensen.com"
  505. },
  506. {
  507. "name": "Carlos Frutos",
  508. "email": "carlos@kiwing.it",
  509. "homepage": "https://github.com/cfrutos"
  510. },
  511. {
  512. "name": "Colin O'Dell",
  513. "email": "colinodell@gmail.com",
  514. "homepage": "https://www.colinodell.com"
  515. }
  516. ],
  517. "description": "Given a deep data structure, access data by dot notation.",
  518. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  519. "keywords": [
  520. "access",
  521. "data",
  522. "dot",
  523. "notation"
  524. ],
  525. "support": {
  526. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  527. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  528. },
  529. "time": "2024-07-08T12:26:09+00:00"
  530. },
  531. {
  532. "name": "doctrine/cache",
  533. "version": "2.2.0",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/doctrine/cache.git",
  537. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  542. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  543. "shasum": "",
  544. "mirrors": [
  545. {
  546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  547. "preferred": true
  548. }
  549. ]
  550. },
  551. "require": {
  552. "php": "~7.1 || ^8.0"
  553. },
  554. "conflict": {
  555. "doctrine/common": ">2.2,<2.4"
  556. },
  557. "require-dev": {
  558. "cache/integration-tests": "dev-master",
  559. "doctrine/coding-standard": "^9",
  560. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  561. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  562. "symfony/cache": "^4.4 || ^5.4 || ^6",
  563. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  564. },
  565. "type": "library",
  566. "autoload": {
  567. "psr-4": {
  568. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Guilherme Blanco",
  578. "email": "guilhermeblanco@gmail.com"
  579. },
  580. {
  581. "name": "Roman Borschel",
  582. "email": "roman@code-factory.org"
  583. },
  584. {
  585. "name": "Benjamin Eberlei",
  586. "email": "kontakt@beberlei.de"
  587. },
  588. {
  589. "name": "Jonathan Wage",
  590. "email": "jonwage@gmail.com"
  591. },
  592. {
  593. "name": "Johannes Schmitt",
  594. "email": "schmittjoh@gmail.com"
  595. }
  596. ],
  597. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  598. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  599. "keywords": [
  600. "abstraction",
  601. "apcu",
  602. "cache",
  603. "caching",
  604. "couchdb",
  605. "memcached",
  606. "php",
  607. "redis",
  608. "xcache"
  609. ],
  610. "support": {
  611. "issues": "https://github.com/doctrine/cache/issues",
  612. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  613. },
  614. "funding": [
  615. {
  616. "url": "https://www.doctrine-project.org/sponsorship.html",
  617. "type": "custom"
  618. },
  619. {
  620. "url": "https://www.patreon.com/phpdoctrine",
  621. "type": "patreon"
  622. },
  623. {
  624. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  625. "type": "tidelift"
  626. }
  627. ],
  628. "time": "2022-05-20T20:07:39+00:00"
  629. },
  630. {
  631. "name": "doctrine/dbal",
  632. "version": "3.9.2",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/doctrine/dbal.git",
  636. "reference": "f1d0dbc4f32410751516b16c17c40d81f33e869f"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/doctrine/dbal/zipball/f1d0dbc4f32410751516b16c17c40d81f33e869f",
  641. "reference": "f1d0dbc4f32410751516b16c17c40d81f33e869f",
  642. "shasum": "",
  643. "mirrors": [
  644. {
  645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  646. "preferred": true
  647. }
  648. ]
  649. },
  650. "require": {
  651. "composer-runtime-api": "^2",
  652. "doctrine/cache": "^1.11|^2.0",
  653. "doctrine/deprecations": "^0.5.3|^1",
  654. "doctrine/event-manager": "^1|^2",
  655. "php": "^7.4 || ^8.0",
  656. "psr/cache": "^1|^2|^3",
  657. "psr/log": "^1|^2|^3"
  658. },
  659. "require-dev": {
  660. "doctrine/coding-standard": "12.0.0",
  661. "fig/log-test": "^1",
  662. "jetbrains/phpstorm-stubs": "2023.1",
  663. "phpstan/phpstan": "1.12.6",
  664. "phpstan/phpstan-strict-rules": "^1.6",
  665. "phpunit/phpunit": "9.6.20",
  666. "psalm/plugin-phpunit": "0.18.4",
  667. "slevomat/coding-standard": "8.13.1",
  668. "squizlabs/php_codesniffer": "3.10.2",
  669. "symfony/cache": "^5.4|^6.0|^7.0",
  670. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  671. "vimeo/psalm": "4.30.0"
  672. },
  673. "suggest": {
  674. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  675. },
  676. "bin": [
  677. "bin/doctrine-dbal"
  678. ],
  679. "type": "library",
  680. "autoload": {
  681. "psr-4": {
  682. "Doctrine\\DBAL\\": "src"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Guilherme Blanco",
  692. "email": "guilhermeblanco@gmail.com"
  693. },
  694. {
  695. "name": "Roman Borschel",
  696. "email": "roman@code-factory.org"
  697. },
  698. {
  699. "name": "Benjamin Eberlei",
  700. "email": "kontakt@beberlei.de"
  701. },
  702. {
  703. "name": "Jonathan Wage",
  704. "email": "jonwage@gmail.com"
  705. }
  706. ],
  707. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  708. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  709. "keywords": [
  710. "abstraction",
  711. "database",
  712. "db2",
  713. "dbal",
  714. "mariadb",
  715. "mssql",
  716. "mysql",
  717. "oci8",
  718. "oracle",
  719. "pdo",
  720. "pgsql",
  721. "postgresql",
  722. "queryobject",
  723. "sasql",
  724. "sql",
  725. "sqlite",
  726. "sqlserver",
  727. "sqlsrv"
  728. ],
  729. "support": {
  730. "issues": "https://github.com/doctrine/dbal/issues",
  731. "source": "https://github.com/doctrine/dbal/tree/3.9.2"
  732. },
  733. "funding": [
  734. {
  735. "url": "https://www.doctrine-project.org/sponsorship.html",
  736. "type": "custom"
  737. },
  738. {
  739. "url": "https://www.patreon.com/phpdoctrine",
  740. "type": "patreon"
  741. },
  742. {
  743. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  744. "type": "tidelift"
  745. }
  746. ],
  747. "time": "2024-10-10T13:14:34+00:00"
  748. },
  749. {
  750. "name": "doctrine/deprecations",
  751. "version": "1.1.3",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/doctrine/deprecations.git",
  755. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  760. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  761. "shasum": "",
  762. "mirrors": [
  763. {
  764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  765. "preferred": true
  766. }
  767. ]
  768. },
  769. "require": {
  770. "php": "^7.1 || ^8.0"
  771. },
  772. "require-dev": {
  773. "doctrine/coding-standard": "^9",
  774. "phpstan/phpstan": "1.4.10 || 1.10.15",
  775. "phpstan/phpstan-phpunit": "^1.0",
  776. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  777. "psalm/plugin-phpunit": "0.18.4",
  778. "psr/log": "^1 || ^2 || ^3",
  779. "vimeo/psalm": "4.30.0 || 5.12.0"
  780. },
  781. "suggest": {
  782. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  783. },
  784. "type": "library",
  785. "autoload": {
  786. "psr-4": {
  787. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  795. "homepage": "https://www.doctrine-project.org/",
  796. "support": {
  797. "issues": "https://github.com/doctrine/deprecations/issues",
  798. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  799. },
  800. "time": "2024-01-30T19:34:25+00:00"
  801. },
  802. {
  803. "name": "doctrine/event-manager",
  804. "version": "2.0.1",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/doctrine/event-manager.git",
  808. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  813. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "php": "^8.1"
  824. },
  825. "conflict": {
  826. "doctrine/common": "<2.9"
  827. },
  828. "require-dev": {
  829. "doctrine/coding-standard": "^12",
  830. "phpstan/phpstan": "^1.8.8",
  831. "phpunit/phpunit": "^10.5",
  832. "vimeo/psalm": "^5.24"
  833. },
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Doctrine\\Common\\": "src"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Guilherme Blanco",
  847. "email": "guilhermeblanco@gmail.com"
  848. },
  849. {
  850. "name": "Roman Borschel",
  851. "email": "roman@code-factory.org"
  852. },
  853. {
  854. "name": "Benjamin Eberlei",
  855. "email": "kontakt@beberlei.de"
  856. },
  857. {
  858. "name": "Jonathan Wage",
  859. "email": "jonwage@gmail.com"
  860. },
  861. {
  862. "name": "Johannes Schmitt",
  863. "email": "schmittjoh@gmail.com"
  864. },
  865. {
  866. "name": "Marco Pivetta",
  867. "email": "ocramius@gmail.com"
  868. }
  869. ],
  870. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  871. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  872. "keywords": [
  873. "event",
  874. "event dispatcher",
  875. "event manager",
  876. "event system",
  877. "events"
  878. ],
  879. "support": {
  880. "issues": "https://github.com/doctrine/event-manager/issues",
  881. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  882. },
  883. "funding": [
  884. {
  885. "url": "https://www.doctrine-project.org/sponsorship.html",
  886. "type": "custom"
  887. },
  888. {
  889. "url": "https://www.patreon.com/phpdoctrine",
  890. "type": "patreon"
  891. },
  892. {
  893. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  894. "type": "tidelift"
  895. }
  896. ],
  897. "time": "2024-05-22T20:47:39+00:00"
  898. },
  899. {
  900. "name": "doctrine/inflector",
  901. "version": "2.0.10",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/doctrine/inflector.git",
  905. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  910. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "php": "^7.2 || ^8.0"
  921. },
  922. "require-dev": {
  923. "doctrine/coding-standard": "^11.0",
  924. "phpstan/phpstan": "^1.8",
  925. "phpstan/phpstan-phpunit": "^1.1",
  926. "phpstan/phpstan-strict-rules": "^1.3",
  927. "phpunit/phpunit": "^8.5 || ^9.5",
  928. "vimeo/psalm": "^4.25 || ^5.4"
  929. },
  930. "type": "library",
  931. "autoload": {
  932. "psr-4": {
  933. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Guilherme Blanco",
  943. "email": "guilhermeblanco@gmail.com"
  944. },
  945. {
  946. "name": "Roman Borschel",
  947. "email": "roman@code-factory.org"
  948. },
  949. {
  950. "name": "Benjamin Eberlei",
  951. "email": "kontakt@beberlei.de"
  952. },
  953. {
  954. "name": "Jonathan Wage",
  955. "email": "jonwage@gmail.com"
  956. },
  957. {
  958. "name": "Johannes Schmitt",
  959. "email": "schmittjoh@gmail.com"
  960. }
  961. ],
  962. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  963. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  964. "keywords": [
  965. "inflection",
  966. "inflector",
  967. "lowercase",
  968. "manipulation",
  969. "php",
  970. "plural",
  971. "singular",
  972. "strings",
  973. "uppercase",
  974. "words"
  975. ],
  976. "support": {
  977. "issues": "https://github.com/doctrine/inflector/issues",
  978. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  979. },
  980. "funding": [
  981. {
  982. "url": "https://www.doctrine-project.org/sponsorship.html",
  983. "type": "custom"
  984. },
  985. {
  986. "url": "https://www.patreon.com/phpdoctrine",
  987. "type": "patreon"
  988. },
  989. {
  990. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  991. "type": "tidelift"
  992. }
  993. ],
  994. "time": "2024-02-18T20:23:39+00:00"
  995. },
  996. {
  997. "name": "doctrine/lexer",
  998. "version": "3.0.1",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/doctrine/lexer.git",
  1002. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1007. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1008. "shasum": "",
  1009. "mirrors": [
  1010. {
  1011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1012. "preferred": true
  1013. }
  1014. ]
  1015. },
  1016. "require": {
  1017. "php": "^8.1"
  1018. },
  1019. "require-dev": {
  1020. "doctrine/coding-standard": "^12",
  1021. "phpstan/phpstan": "^1.10",
  1022. "phpunit/phpunit": "^10.5",
  1023. "psalm/plugin-phpunit": "^0.18.3",
  1024. "vimeo/psalm": "^5.21"
  1025. },
  1026. "type": "library",
  1027. "autoload": {
  1028. "psr-4": {
  1029. "Doctrine\\Common\\Lexer\\": "src"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Guilherme Blanco",
  1039. "email": "guilhermeblanco@gmail.com"
  1040. },
  1041. {
  1042. "name": "Roman Borschel",
  1043. "email": "roman@code-factory.org"
  1044. },
  1045. {
  1046. "name": "Johannes Schmitt",
  1047. "email": "schmittjoh@gmail.com"
  1048. }
  1049. ],
  1050. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1051. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1052. "keywords": [
  1053. "annotations",
  1054. "docblock",
  1055. "lexer",
  1056. "parser",
  1057. "php"
  1058. ],
  1059. "support": {
  1060. "issues": "https://github.com/doctrine/lexer/issues",
  1061. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1062. },
  1063. "funding": [
  1064. {
  1065. "url": "https://www.doctrine-project.org/sponsorship.html",
  1066. "type": "custom"
  1067. },
  1068. {
  1069. "url": "https://www.patreon.com/phpdoctrine",
  1070. "type": "patreon"
  1071. },
  1072. {
  1073. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1074. "type": "tidelift"
  1075. }
  1076. ],
  1077. "time": "2024-02-05T11:56:58+00:00"
  1078. },
  1079. {
  1080. "name": "dragonmantank/cron-expression",
  1081. "version": "v3.4.0",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/dragonmantank/cron-expression.git",
  1085. "reference": "8c784d071debd117328803d86b2097615b457500"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1090. "reference": "8c784d071debd117328803d86b2097615b457500",
  1091. "shasum": "",
  1092. "mirrors": [
  1093. {
  1094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1095. "preferred": true
  1096. }
  1097. ]
  1098. },
  1099. "require": {
  1100. "php": "^7.2|^8.0",
  1101. "webmozart/assert": "^1.0"
  1102. },
  1103. "replace": {
  1104. "mtdowling/cron-expression": "^1.0"
  1105. },
  1106. "require-dev": {
  1107. "phpstan/extension-installer": "^1.0",
  1108. "phpstan/phpstan": "^1.0",
  1109. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1110. },
  1111. "type": "library",
  1112. "extra": {
  1113. "branch-alias": {
  1114. "dev-master": "3.x-dev"
  1115. }
  1116. },
  1117. "autoload": {
  1118. "psr-4": {
  1119. "Cron\\": "src/Cron/"
  1120. }
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Chris Tankersley",
  1129. "email": "chris@ctankersley.com",
  1130. "homepage": "https://github.com/dragonmantank"
  1131. }
  1132. ],
  1133. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1134. "keywords": [
  1135. "cron",
  1136. "schedule"
  1137. ],
  1138. "support": {
  1139. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1140. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1141. },
  1142. "funding": [
  1143. {
  1144. "url": "https://github.com/dragonmantank",
  1145. "type": "github"
  1146. }
  1147. ],
  1148. "time": "2024-10-09T13:47:03+00:00"
  1149. },
  1150. {
  1151. "name": "egulias/email-validator",
  1152. "version": "4.0.2",
  1153. "source": {
  1154. "type": "git",
  1155. "url": "https://github.com/egulias/EmailValidator.git",
  1156. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1157. },
  1158. "dist": {
  1159. "type": "zip",
  1160. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1161. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1162. "shasum": "",
  1163. "mirrors": [
  1164. {
  1165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1166. "preferred": true
  1167. }
  1168. ]
  1169. },
  1170. "require": {
  1171. "doctrine/lexer": "^2.0 || ^3.0",
  1172. "php": ">=8.1",
  1173. "symfony/polyfill-intl-idn": "^1.26"
  1174. },
  1175. "require-dev": {
  1176. "phpunit/phpunit": "^10.2",
  1177. "vimeo/psalm": "^5.12"
  1178. },
  1179. "suggest": {
  1180. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "4.0.x-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Egulias\\EmailValidator\\": "src"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Eduardo Gulias Davis"
  1200. }
  1201. ],
  1202. "description": "A library for validating emails against several RFCs",
  1203. "homepage": "https://github.com/egulias/EmailValidator",
  1204. "keywords": [
  1205. "email",
  1206. "emailvalidation",
  1207. "emailvalidator",
  1208. "validation",
  1209. "validator"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/egulias/EmailValidator/issues",
  1213. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1214. },
  1215. "funding": [
  1216. {
  1217. "url": "https://github.com/egulias",
  1218. "type": "github"
  1219. }
  1220. ],
  1221. "time": "2023-10-06T06:47:41+00:00"
  1222. },
  1223. {
  1224. "name": "fruitcake/php-cors",
  1225. "version": "v1.2.0",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/fruitcake/php-cors.git",
  1229. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1234. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1235. "shasum": "",
  1236. "mirrors": [
  1237. {
  1238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1239. "preferred": true
  1240. }
  1241. ]
  1242. },
  1243. "require": {
  1244. "php": "^7.4|^8.0",
  1245. "symfony/http-foundation": "^4.4|^5.4|^6"
  1246. },
  1247. "require-dev": {
  1248. "phpstan/phpstan": "^1.4",
  1249. "phpunit/phpunit": "^9",
  1250. "squizlabs/php_codesniffer": "^3.5"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-main": "1.1-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Fruitcake\\Cors\\": "src/"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Fruitcake",
  1270. "homepage": "https://fruitcake.nl"
  1271. },
  1272. {
  1273. "name": "Barryvdh",
  1274. "email": "barryvdh@gmail.com"
  1275. }
  1276. ],
  1277. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1278. "homepage": "https://github.com/fruitcake/php-cors",
  1279. "keywords": [
  1280. "cors",
  1281. "laravel",
  1282. "symfony"
  1283. ],
  1284. "support": {
  1285. "issues": "https://github.com/fruitcake/php-cors/issues",
  1286. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1287. },
  1288. "funding": [
  1289. {
  1290. "url": "https://fruitcake.nl",
  1291. "type": "custom"
  1292. },
  1293. {
  1294. "url": "https://github.com/barryvdh",
  1295. "type": "github"
  1296. }
  1297. ],
  1298. "time": "2022-02-20T15:07:15+00:00"
  1299. },
  1300. {
  1301. "name": "graham-campbell/manager",
  1302. "version": "v4.7.0",
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://mirrors.cloud.tencent.com/repository/composer/graham-campbell/manager/v4.7.0/graham-campbell-manager-v4.7.0.zip",
  1306. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1311. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1312. "php": "^7.1.3 || ^8.0"
  1313. },
  1314. "require-dev": {
  1315. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1316. "graham-campbell/testbench-core": "^3.4",
  1317. "mockery/mockery": "^1.3.1",
  1318. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1319. },
  1320. "type": "library",
  1321. "autoload": {
  1322. "psr-4": {
  1323. "GrahamCampbell\\Manager\\": "src/"
  1324. }
  1325. },
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Graham Campbell",
  1332. "email": "hello@gjcampbell.co.uk",
  1333. "homepage": "https://github.com/GrahamCampbell"
  1334. }
  1335. ],
  1336. "description": "Manager Provides Some Manager Functionality For Laravel",
  1337. "keywords": [
  1338. "Graham Campbell",
  1339. "GrahamCampbell",
  1340. "Laravel Manager",
  1341. "Laravel-Manager",
  1342. "connector",
  1343. "framework",
  1344. "interface",
  1345. "laravel",
  1346. "manager"
  1347. ],
  1348. "time": "2022-01-24T01:59:19+00:00"
  1349. },
  1350. {
  1351. "name": "graham-campbell/result-type",
  1352. "version": "1.1.x-dev",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1356. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1361. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1362. "shasum": "",
  1363. "mirrors": [
  1364. {
  1365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1366. "preferred": true
  1367. }
  1368. ]
  1369. },
  1370. "require": {
  1371. "php": "^7.2.5 || ^8.0",
  1372. "phpoption/phpoption": "^1.9.3"
  1373. },
  1374. "require-dev": {
  1375. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1376. },
  1377. "default-branch": true,
  1378. "type": "library",
  1379. "autoload": {
  1380. "psr-4": {
  1381. "GrahamCampbell\\ResultType\\": "src/"
  1382. }
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "authors": [
  1389. {
  1390. "name": "Graham Campbell",
  1391. "email": "hello@gjcampbell.co.uk",
  1392. "homepage": "https://github.com/GrahamCampbell"
  1393. }
  1394. ],
  1395. "description": "An Implementation Of The Result Type",
  1396. "keywords": [
  1397. "Graham Campbell",
  1398. "GrahamCampbell",
  1399. "Result Type",
  1400. "Result-Type",
  1401. "result"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1405. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1406. },
  1407. "funding": [
  1408. {
  1409. "url": "https://github.com/GrahamCampbell",
  1410. "type": "github"
  1411. },
  1412. {
  1413. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1414. "type": "tidelift"
  1415. }
  1416. ],
  1417. "time": "2024-07-20T21:45:45+00:00"
  1418. },
  1419. {
  1420. "name": "guzzlehttp/command",
  1421. "version": "1.3.1",
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/command/1.3.1/guzzlehttp-command-1.3.1.zip",
  1425. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "guzzlehttp/guzzle": "^7.8",
  1430. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1431. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1432. "php": "^7.2.5 || ^8.0"
  1433. },
  1434. "require-dev": {
  1435. "bamarni/composer-bin-plugin": "^1.8.2",
  1436. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "bamarni-bin": {
  1441. "bin-links": true,
  1442. "forward-command": false
  1443. }
  1444. },
  1445. "autoload": {
  1446. "psr-4": {
  1447. "GuzzleHttp\\Command\\": "src/"
  1448. }
  1449. },
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Graham Campbell",
  1456. "email": "hello@gjcampbell.co.uk",
  1457. "homepage": "https://github.com/GrahamCampbell"
  1458. },
  1459. {
  1460. "name": "Michael Dowling",
  1461. "email": "mtdowling@gmail.com",
  1462. "homepage": "https://github.com/mtdowling"
  1463. },
  1464. {
  1465. "name": "Jeremy Lindblom",
  1466. "email": "jeremeamia@gmail.com",
  1467. "homepage": "https://github.com/jeremeamia"
  1468. },
  1469. {
  1470. "name": "Tobias Nyholm",
  1471. "email": "tobias.nyholm@gmail.com",
  1472. "homepage": "https://github.com/Nyholm"
  1473. }
  1474. ],
  1475. "description": "Provides the foundation for building command-based web service clients",
  1476. "time": "2023-12-03T20:46:20+00:00"
  1477. },
  1478. {
  1479. "name": "guzzlehttp/guzzle",
  1480. "version": "7.9.2",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/guzzle/guzzle.git",
  1484. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1489. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1490. "shasum": "",
  1491. "mirrors": [
  1492. {
  1493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1494. "preferred": true
  1495. }
  1496. ]
  1497. },
  1498. "require": {
  1499. "ext-json": "*",
  1500. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1501. "guzzlehttp/psr7": "^2.7.0",
  1502. "php": "^7.2.5 || ^8.0",
  1503. "psr/http-client": "^1.0",
  1504. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1505. },
  1506. "provide": {
  1507. "psr/http-client-implementation": "1.0"
  1508. },
  1509. "require-dev": {
  1510. "bamarni/composer-bin-plugin": "^1.8.2",
  1511. "ext-curl": "*",
  1512. "guzzle/client-integration-tests": "3.0.2",
  1513. "php-http/message-factory": "^1.1",
  1514. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1515. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1516. },
  1517. "suggest": {
  1518. "ext-curl": "Required for CURL handler support",
  1519. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1520. "psr/log": "Required for using the Log middleware"
  1521. },
  1522. "type": "library",
  1523. "extra": {
  1524. "bamarni-bin": {
  1525. "bin-links": true,
  1526. "forward-command": false
  1527. }
  1528. },
  1529. "autoload": {
  1530. "files": [
  1531. "src/functions_include.php"
  1532. ],
  1533. "psr-4": {
  1534. "GuzzleHttp\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Graham Campbell",
  1544. "email": "hello@gjcampbell.co.uk",
  1545. "homepage": "https://github.com/GrahamCampbell"
  1546. },
  1547. {
  1548. "name": "Michael Dowling",
  1549. "email": "mtdowling@gmail.com",
  1550. "homepage": "https://github.com/mtdowling"
  1551. },
  1552. {
  1553. "name": "Jeremy Lindblom",
  1554. "email": "jeremeamia@gmail.com",
  1555. "homepage": "https://github.com/jeremeamia"
  1556. },
  1557. {
  1558. "name": "George Mponos",
  1559. "email": "gmponos@gmail.com",
  1560. "homepage": "https://github.com/gmponos"
  1561. },
  1562. {
  1563. "name": "Tobias Nyholm",
  1564. "email": "tobias.nyholm@gmail.com",
  1565. "homepage": "https://github.com/Nyholm"
  1566. },
  1567. {
  1568. "name": "Márk Sági-Kazár",
  1569. "email": "mark.sagikazar@gmail.com",
  1570. "homepage": "https://github.com/sagikazarmark"
  1571. },
  1572. {
  1573. "name": "Tobias Schultze",
  1574. "email": "webmaster@tubo-world.de",
  1575. "homepage": "https://github.com/Tobion"
  1576. }
  1577. ],
  1578. "description": "Guzzle is a PHP HTTP client library",
  1579. "keywords": [
  1580. "client",
  1581. "curl",
  1582. "framework",
  1583. "http",
  1584. "http client",
  1585. "psr-18",
  1586. "psr-7",
  1587. "rest",
  1588. "web service"
  1589. ],
  1590. "support": {
  1591. "issues": "https://github.com/guzzle/guzzle/issues",
  1592. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1593. },
  1594. "funding": [
  1595. {
  1596. "url": "https://github.com/GrahamCampbell",
  1597. "type": "github"
  1598. },
  1599. {
  1600. "url": "https://github.com/Nyholm",
  1601. "type": "github"
  1602. },
  1603. {
  1604. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1605. "type": "tidelift"
  1606. }
  1607. ],
  1608. "time": "2024-07-24T11:22:20+00:00"
  1609. },
  1610. {
  1611. "name": "guzzlehttp/guzzle-services",
  1612. "version": "1.4.1",
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle-services/1.4.1/guzzlehttp-guzzle-services-1.4.1.zip",
  1616. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "guzzlehttp/command": "^1.3.1",
  1621. "guzzlehttp/guzzle": "^7.8",
  1622. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1623. "guzzlehttp/uri-template": "^1.0.1",
  1624. "php": "^7.2.5 || ^8.0"
  1625. },
  1626. "require-dev": {
  1627. "bamarni/composer-bin-plugin": "^1.8.2",
  1628. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1629. },
  1630. "suggest": {
  1631. "gimler/guzzle-description-loader": "^0.0.4"
  1632. },
  1633. "type": "library",
  1634. "extra": {
  1635. "bamarni-bin": {
  1636. "bin-links": true,
  1637. "forward-command": false
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1643. }
  1644. },
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "Graham Campbell",
  1651. "email": "hello@gjcampbell.co.uk",
  1652. "homepage": "https://github.com/GrahamCampbell"
  1653. },
  1654. {
  1655. "name": "Michael Dowling",
  1656. "email": "mtdowling@gmail.com",
  1657. "homepage": "https://github.com/mtdowling"
  1658. },
  1659. {
  1660. "name": "Stefano Kowalke",
  1661. "email": "blueduck@mail.org",
  1662. "homepage": "https://github.com/Konafets"
  1663. },
  1664. {
  1665. "name": "Tobias Nyholm",
  1666. "email": "tobias.nyholm@gmail.com",
  1667. "homepage": "https://github.com/Nyholm"
  1668. }
  1669. ],
  1670. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  1671. "time": "2023-12-03T20:48:14+00:00"
  1672. },
  1673. {
  1674. "name": "guzzlehttp/promises",
  1675. "version": "2.0.3",
  1676. "source": {
  1677. "type": "git",
  1678. "url": "https://github.com/guzzle/promises.git",
  1679. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1680. },
  1681. "dist": {
  1682. "type": "zip",
  1683. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1684. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1685. "shasum": "",
  1686. "mirrors": [
  1687. {
  1688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1689. "preferred": true
  1690. }
  1691. ]
  1692. },
  1693. "require": {
  1694. "php": "^7.2.5 || ^8.0"
  1695. },
  1696. "require-dev": {
  1697. "bamarni/composer-bin-plugin": "^1.8.2",
  1698. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1699. },
  1700. "type": "library",
  1701. "extra": {
  1702. "bamarni-bin": {
  1703. "bin-links": true,
  1704. "forward-command": false
  1705. }
  1706. },
  1707. "autoload": {
  1708. "psr-4": {
  1709. "GuzzleHttp\\Promise\\": "src/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Graham Campbell",
  1719. "email": "hello@gjcampbell.co.uk",
  1720. "homepage": "https://github.com/GrahamCampbell"
  1721. },
  1722. {
  1723. "name": "Michael Dowling",
  1724. "email": "mtdowling@gmail.com",
  1725. "homepage": "https://github.com/mtdowling"
  1726. },
  1727. {
  1728. "name": "Tobias Nyholm",
  1729. "email": "tobias.nyholm@gmail.com",
  1730. "homepage": "https://github.com/Nyholm"
  1731. },
  1732. {
  1733. "name": "Tobias Schultze",
  1734. "email": "webmaster@tubo-world.de",
  1735. "homepage": "https://github.com/Tobion"
  1736. }
  1737. ],
  1738. "description": "Guzzle promises library",
  1739. "keywords": [
  1740. "promise"
  1741. ],
  1742. "support": {
  1743. "issues": "https://github.com/guzzle/promises/issues",
  1744. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1745. },
  1746. "funding": [
  1747. {
  1748. "url": "https://github.com/GrahamCampbell",
  1749. "type": "github"
  1750. },
  1751. {
  1752. "url": "https://github.com/Nyholm",
  1753. "type": "github"
  1754. },
  1755. {
  1756. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1757. "type": "tidelift"
  1758. }
  1759. ],
  1760. "time": "2024-07-18T10:29:17+00:00"
  1761. },
  1762. {
  1763. "name": "guzzlehttp/psr7",
  1764. "version": "2.7.0",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/guzzle/psr7.git",
  1768. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1773. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1774. "shasum": "",
  1775. "mirrors": [
  1776. {
  1777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1778. "preferred": true
  1779. }
  1780. ]
  1781. },
  1782. "require": {
  1783. "php": "^7.2.5 || ^8.0",
  1784. "psr/http-factory": "^1.0",
  1785. "psr/http-message": "^1.1 || ^2.0",
  1786. "ralouphie/getallheaders": "^3.0"
  1787. },
  1788. "provide": {
  1789. "psr/http-factory-implementation": "1.0",
  1790. "psr/http-message-implementation": "1.0"
  1791. },
  1792. "require-dev": {
  1793. "bamarni/composer-bin-plugin": "^1.8.2",
  1794. "http-interop/http-factory-tests": "0.9.0",
  1795. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1796. },
  1797. "suggest": {
  1798. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1799. },
  1800. "type": "library",
  1801. "extra": {
  1802. "bamarni-bin": {
  1803. "bin-links": true,
  1804. "forward-command": false
  1805. }
  1806. },
  1807. "autoload": {
  1808. "psr-4": {
  1809. "GuzzleHttp\\Psr7\\": "src/"
  1810. }
  1811. },
  1812. "notification-url": "https://packagist.org/downloads/",
  1813. "license": [
  1814. "MIT"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "Graham Campbell",
  1819. "email": "hello@gjcampbell.co.uk",
  1820. "homepage": "https://github.com/GrahamCampbell"
  1821. },
  1822. {
  1823. "name": "Michael Dowling",
  1824. "email": "mtdowling@gmail.com",
  1825. "homepage": "https://github.com/mtdowling"
  1826. },
  1827. {
  1828. "name": "George Mponos",
  1829. "email": "gmponos@gmail.com",
  1830. "homepage": "https://github.com/gmponos"
  1831. },
  1832. {
  1833. "name": "Tobias Nyholm",
  1834. "email": "tobias.nyholm@gmail.com",
  1835. "homepage": "https://github.com/Nyholm"
  1836. },
  1837. {
  1838. "name": "Márk Sági-Kazár",
  1839. "email": "mark.sagikazar@gmail.com",
  1840. "homepage": "https://github.com/sagikazarmark"
  1841. },
  1842. {
  1843. "name": "Tobias Schultze",
  1844. "email": "webmaster@tubo-world.de",
  1845. "homepage": "https://github.com/Tobion"
  1846. },
  1847. {
  1848. "name": "Márk Sági-Kazár",
  1849. "email": "mark.sagikazar@gmail.com",
  1850. "homepage": "https://sagikazarmark.hu"
  1851. }
  1852. ],
  1853. "description": "PSR-7 message implementation that also provides common utility methods",
  1854. "keywords": [
  1855. "http",
  1856. "message",
  1857. "psr-7",
  1858. "request",
  1859. "response",
  1860. "stream",
  1861. "uri",
  1862. "url"
  1863. ],
  1864. "support": {
  1865. "issues": "https://github.com/guzzle/psr7/issues",
  1866. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1867. },
  1868. "funding": [
  1869. {
  1870. "url": "https://github.com/GrahamCampbell",
  1871. "type": "github"
  1872. },
  1873. {
  1874. "url": "https://github.com/Nyholm",
  1875. "type": "github"
  1876. },
  1877. {
  1878. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1879. "type": "tidelift"
  1880. }
  1881. ],
  1882. "time": "2024-07-18T11:15:46+00:00"
  1883. },
  1884. {
  1885. "name": "guzzlehttp/uri-template",
  1886. "version": "v1.0.3",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://github.com/guzzle/uri-template.git",
  1890. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1895. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1896. "shasum": "",
  1897. "mirrors": [
  1898. {
  1899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1900. "preferred": true
  1901. }
  1902. ]
  1903. },
  1904. "require": {
  1905. "php": "^7.2.5 || ^8.0",
  1906. "symfony/polyfill-php80": "^1.24"
  1907. },
  1908. "require-dev": {
  1909. "bamarni/composer-bin-plugin": "^1.8.2",
  1910. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1911. "uri-template/tests": "1.0.0"
  1912. },
  1913. "type": "library",
  1914. "extra": {
  1915. "bamarni-bin": {
  1916. "bin-links": true,
  1917. "forward-command": false
  1918. }
  1919. },
  1920. "autoload": {
  1921. "psr-4": {
  1922. "GuzzleHttp\\UriTemplate\\": "src"
  1923. }
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "MIT"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Graham Campbell",
  1932. "email": "hello@gjcampbell.co.uk",
  1933. "homepage": "https://github.com/GrahamCampbell"
  1934. },
  1935. {
  1936. "name": "Michael Dowling",
  1937. "email": "mtdowling@gmail.com",
  1938. "homepage": "https://github.com/mtdowling"
  1939. },
  1940. {
  1941. "name": "George Mponos",
  1942. "email": "gmponos@gmail.com",
  1943. "homepage": "https://github.com/gmponos"
  1944. },
  1945. {
  1946. "name": "Tobias Nyholm",
  1947. "email": "tobias.nyholm@gmail.com",
  1948. "homepage": "https://github.com/Nyholm"
  1949. }
  1950. ],
  1951. "description": "A polyfill class for uri_template of PHP",
  1952. "keywords": [
  1953. "guzzlehttp",
  1954. "uri-template"
  1955. ],
  1956. "support": {
  1957. "issues": "https://github.com/guzzle/uri-template/issues",
  1958. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1959. },
  1960. "funding": [
  1961. {
  1962. "url": "https://github.com/GrahamCampbell",
  1963. "type": "github"
  1964. },
  1965. {
  1966. "url": "https://github.com/Nyholm",
  1967. "type": "github"
  1968. },
  1969. {
  1970. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1971. "type": "tidelift"
  1972. }
  1973. ],
  1974. "time": "2023-12-03T19:50:20+00:00"
  1975. },
  1976. {
  1977. "name": "hashids/hashids",
  1978. "version": "4.1.0",
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://mirrors.cloud.tencent.com/repository/composer/hashids/hashids/4.1.0/hashids-hashids-4.1.0.zip",
  1982. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "ext-mbstring": "*",
  1987. "php": "^7.2 || ^8.0"
  1988. },
  1989. "require-dev": {
  1990. "phpunit/phpunit": "^8.0 || ^9.4",
  1991. "squizlabs/php_codesniffer": "^3.5"
  1992. },
  1993. "suggest": {
  1994. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1995. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "4.1-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Hashids\\": "src/"
  2006. }
  2007. },
  2008. "license": [
  2009. "MIT"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Ivan Akimov",
  2014. "email": "ivan@barreleye.com"
  2015. },
  2016. {
  2017. "name": "Vincent Klaiber",
  2018. "email": "hello@doubledip.se"
  2019. }
  2020. ],
  2021. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2022. "homepage": "https://hashids.org/php",
  2023. "keywords": [
  2024. "bitly",
  2025. "decode",
  2026. "encode",
  2027. "hash",
  2028. "hashid",
  2029. "hashids",
  2030. "ids",
  2031. "obfuscate",
  2032. "youtube"
  2033. ],
  2034. "time": "2020-11-26T19:24:33+00:00"
  2035. },
  2036. {
  2037. "name": "intervention/gif",
  2038. "version": "4.2.0",
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://mirrors.cloud.tencent.com/repository/composer/intervention/gif/4.2.0/intervention-gif-4.2.0.zip",
  2042. "reference": "42c131a31b93c440ad49061b599fa218f06f93be",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "php": "^8.1"
  2047. },
  2048. "require-dev": {
  2049. "phpstan/phpstan": "^1",
  2050. "phpunit/phpunit": "^10.0",
  2051. "slevomat/coding-standard": "~8.0",
  2052. "squizlabs/php_codesniffer": "^3.8"
  2053. },
  2054. "type": "library",
  2055. "autoload": {
  2056. "psr-4": {
  2057. "Intervention\\Gif\\": "src"
  2058. }
  2059. },
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Oliver Vogel",
  2066. "email": "oliver@intervention.io",
  2067. "homepage": "https://intervention.io/"
  2068. }
  2069. ],
  2070. "description": "Native PHP GIF Encoder/Decoder",
  2071. "homepage": "https://github.com/intervention/gif",
  2072. "keywords": [
  2073. "animation",
  2074. "gd",
  2075. "gif",
  2076. "image"
  2077. ],
  2078. "time": "2024-09-20T13:35:02+00:00"
  2079. },
  2080. {
  2081. "name": "intervention/image",
  2082. "version": "3.9.1",
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://mirrors.cloud.tencent.com/repository/composer/intervention/image/3.9.1/intervention-image-3.9.1.zip",
  2086. "reference": "b496d1f6b9f812f96166623358dfcafb8c3b1683",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "ext-mbstring": "*",
  2091. "intervention/gif": "^4.2",
  2092. "php": "^8.1"
  2093. },
  2094. "require-dev": {
  2095. "mockery/mockery": "^1.6",
  2096. "phpstan/phpstan": "^1",
  2097. "phpunit/phpunit": "^10.0",
  2098. "slevomat/coding-standard": "~8.0",
  2099. "squizlabs/php_codesniffer": "^3.8"
  2100. },
  2101. "suggest": {
  2102. "ext-exif": "Recommended to be able to read EXIF data properly."
  2103. },
  2104. "type": "library",
  2105. "autoload": {
  2106. "psr-4": {
  2107. "Intervention\\Image\\": "src"
  2108. }
  2109. },
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Oliver Vogel",
  2116. "email": "oliver@intervention.io",
  2117. "homepage": "https://intervention.io/"
  2118. }
  2119. ],
  2120. "description": "PHP image manipulation",
  2121. "homepage": "https://image.intervention.io/",
  2122. "keywords": [
  2123. "gd",
  2124. "image",
  2125. "imagick",
  2126. "resize",
  2127. "thumbnail",
  2128. "watermark"
  2129. ],
  2130. "time": "2024-10-27T10:15:54+00:00"
  2131. },
  2132. {
  2133. "name": "kalnoy/nestedset",
  2134. "version": "v6.0.4",
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://mirrors.cloud.tencent.com/repository/composer/kalnoy/nestedset/v6.0.4/kalnoy-nestedset-v6.0.4.zip",
  2138. "reference": "d81102c980b9962516c0fd8fda21dd916a23a3d7",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
  2143. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0",
  2144. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
  2145. "php": "^7.2.5|^8.0"
  2146. },
  2147. "require-dev": {
  2148. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "v5.0.x-dev"
  2154. },
  2155. "laravel": {
  2156. "providers": [
  2157. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  2158. ]
  2159. }
  2160. },
  2161. "autoload": {
  2162. "psr-4": {
  2163. "Kalnoy\\Nestedset\\": "src/"
  2164. }
  2165. },
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Alexander Kalnoy",
  2172. "email": "lazychaser@gmail.com"
  2173. }
  2174. ],
  2175. "description": "Nested Set Model for Laravel 5.7 and up",
  2176. "keywords": [
  2177. "database",
  2178. "hierarchy",
  2179. "laravel",
  2180. "nested sets",
  2181. "nsm"
  2182. ],
  2183. "time": "2024-04-08T06:10:42+00:00"
  2184. },
  2185. {
  2186. "name": "laravel/framework",
  2187. "version": "v9.52.16",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/laravel/framework.git",
  2191. "reference": "082345d76fc6a55b649572efe10b11b03e279d24"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/laravel/framework/zipball/082345d76fc6a55b649572efe10b11b03e279d24",
  2196. "reference": "082345d76fc6a55b649572efe10b11b03e279d24",
  2197. "shasum": "",
  2198. "mirrors": [
  2199. {
  2200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2201. "preferred": true
  2202. }
  2203. ]
  2204. },
  2205. "require": {
  2206. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2207. "doctrine/inflector": "^2.0.5",
  2208. "dragonmantank/cron-expression": "^3.3.2",
  2209. "egulias/email-validator": "^3.2.1|^4.0",
  2210. "ext-ctype": "*",
  2211. "ext-filter": "*",
  2212. "ext-hash": "*",
  2213. "ext-mbstring": "*",
  2214. "ext-openssl": "*",
  2215. "ext-session": "*",
  2216. "ext-tokenizer": "*",
  2217. "fruitcake/php-cors": "^1.2",
  2218. "guzzlehttp/uri-template": "^1.0",
  2219. "laravel/serializable-closure": "^1.2.2",
  2220. "league/commonmark": "^2.2.1",
  2221. "league/flysystem": "^3.8.0",
  2222. "monolog/monolog": "^2.0",
  2223. "nesbot/carbon": "^2.62.1",
  2224. "nunomaduro/termwind": "^1.13",
  2225. "php": "^8.0.2",
  2226. "psr/container": "^1.1.1|^2.0.1",
  2227. "psr/log": "^1.0|^2.0|^3.0",
  2228. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2229. "ramsey/uuid": "^4.7",
  2230. "symfony/console": "^6.0.9",
  2231. "symfony/error-handler": "^6.0",
  2232. "symfony/finder": "^6.0",
  2233. "symfony/http-foundation": "^6.0",
  2234. "symfony/http-kernel": "^6.0",
  2235. "symfony/mailer": "^6.0",
  2236. "symfony/mime": "^6.0",
  2237. "symfony/process": "^6.0",
  2238. "symfony/routing": "^6.0",
  2239. "symfony/uid": "^6.0",
  2240. "symfony/var-dumper": "^6.0",
  2241. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2242. "vlucas/phpdotenv": "^5.4.1",
  2243. "voku/portable-ascii": "^2.0"
  2244. },
  2245. "conflict": {
  2246. "tightenco/collect": "<5.5.33"
  2247. },
  2248. "provide": {
  2249. "psr/container-implementation": "1.1|2.0",
  2250. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2251. },
  2252. "replace": {
  2253. "illuminate/auth": "self.version",
  2254. "illuminate/broadcasting": "self.version",
  2255. "illuminate/bus": "self.version",
  2256. "illuminate/cache": "self.version",
  2257. "illuminate/collections": "self.version",
  2258. "illuminate/conditionable": "self.version",
  2259. "illuminate/config": "self.version",
  2260. "illuminate/console": "self.version",
  2261. "illuminate/container": "self.version",
  2262. "illuminate/contracts": "self.version",
  2263. "illuminate/cookie": "self.version",
  2264. "illuminate/database": "self.version",
  2265. "illuminate/encryption": "self.version",
  2266. "illuminate/events": "self.version",
  2267. "illuminate/filesystem": "self.version",
  2268. "illuminate/hashing": "self.version",
  2269. "illuminate/http": "self.version",
  2270. "illuminate/log": "self.version",
  2271. "illuminate/macroable": "self.version",
  2272. "illuminate/mail": "self.version",
  2273. "illuminate/notifications": "self.version",
  2274. "illuminate/pagination": "self.version",
  2275. "illuminate/pipeline": "self.version",
  2276. "illuminate/queue": "self.version",
  2277. "illuminate/redis": "self.version",
  2278. "illuminate/routing": "self.version",
  2279. "illuminate/session": "self.version",
  2280. "illuminate/support": "self.version",
  2281. "illuminate/testing": "self.version",
  2282. "illuminate/translation": "self.version",
  2283. "illuminate/validation": "self.version",
  2284. "illuminate/view": "self.version"
  2285. },
  2286. "require-dev": {
  2287. "ably/ably-php": "^1.0",
  2288. "aws/aws-sdk-php": "^3.235.5",
  2289. "doctrine/dbal": "^2.13.3|^3.1.4",
  2290. "ext-gmp": "*",
  2291. "fakerphp/faker": "^1.21",
  2292. "guzzlehttp/guzzle": "^7.5",
  2293. "league/flysystem-aws-s3-v3": "^3.0",
  2294. "league/flysystem-ftp": "^3.0",
  2295. "league/flysystem-path-prefixing": "^3.3",
  2296. "league/flysystem-read-only": "^3.3",
  2297. "league/flysystem-sftp-v3": "^3.0",
  2298. "mockery/mockery": "^1.5.1",
  2299. "orchestra/testbench-core": "^7.24",
  2300. "pda/pheanstalk": "^4.0",
  2301. "phpstan/phpdoc-parser": "^1.15",
  2302. "phpstan/phpstan": "^1.4.7",
  2303. "phpunit/phpunit": "^9.5.8",
  2304. "predis/predis": "^1.1.9|^2.0.2",
  2305. "symfony/cache": "^6.0",
  2306. "symfony/http-client": "^6.0"
  2307. },
  2308. "suggest": {
  2309. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2310. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2311. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2312. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2313. "ext-apcu": "Required to use the APC cache driver.",
  2314. "ext-fileinfo": "Required to use the Filesystem class.",
  2315. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2316. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2317. "ext-memcached": "Required to use the memcache cache driver.",
  2318. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2319. "ext-pdo": "Required to use all database features.",
  2320. "ext-posix": "Required to use all features of the queue worker.",
  2321. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2322. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2323. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2324. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2325. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2326. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2327. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2328. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2329. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2330. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2331. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2332. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2333. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2334. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2335. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2336. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2337. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2338. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2339. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2340. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2341. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2342. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2343. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2344. },
  2345. "type": "library",
  2346. "extra": {
  2347. "branch-alias": {
  2348. "dev-master": "9.x-dev"
  2349. }
  2350. },
  2351. "autoload": {
  2352. "files": [
  2353. "src/Illuminate/Collections/helpers.php",
  2354. "src/Illuminate/Events/functions.php",
  2355. "src/Illuminate/Foundation/helpers.php",
  2356. "src/Illuminate/Support/helpers.php"
  2357. ],
  2358. "psr-4": {
  2359. "Illuminate\\": "src/Illuminate/",
  2360. "Illuminate\\Support\\": [
  2361. "src/Illuminate/Macroable/",
  2362. "src/Illuminate/Collections/",
  2363. "src/Illuminate/Conditionable/"
  2364. ]
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "authors": [
  2372. {
  2373. "name": "Taylor Otwell",
  2374. "email": "taylor@laravel.com"
  2375. }
  2376. ],
  2377. "description": "The Laravel Framework.",
  2378. "homepage": "https://laravel.com",
  2379. "keywords": [
  2380. "framework",
  2381. "laravel"
  2382. ],
  2383. "support": {
  2384. "issues": "https://github.com/laravel/framework/issues",
  2385. "source": "https://github.com/laravel/framework"
  2386. },
  2387. "time": "2023-10-03T13:02:30+00:00"
  2388. },
  2389. {
  2390. "name": "laravel/sanctum",
  2391. "version": "v2.15.1",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/laravel/sanctum.git",
  2395. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2400. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2401. "shasum": "",
  2402. "mirrors": [
  2403. {
  2404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2405. "preferred": true
  2406. }
  2407. ]
  2408. },
  2409. "require": {
  2410. "ext-json": "*",
  2411. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  2412. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  2413. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  2414. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  2415. "php": "^7.2|^8.0"
  2416. },
  2417. "require-dev": {
  2418. "mockery/mockery": "^1.0",
  2419. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2420. "phpunit/phpunit": "^8.0|^9.3"
  2421. },
  2422. "type": "library",
  2423. "extra": {
  2424. "branch-alias": {
  2425. "dev-master": "2.x-dev"
  2426. },
  2427. "laravel": {
  2428. "providers": [
  2429. "Laravel\\Sanctum\\SanctumServiceProvider"
  2430. ]
  2431. }
  2432. },
  2433. "autoload": {
  2434. "psr-4": {
  2435. "Laravel\\Sanctum\\": "src/"
  2436. }
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "authors": [
  2443. {
  2444. "name": "Taylor Otwell",
  2445. "email": "taylor@laravel.com"
  2446. }
  2447. ],
  2448. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2449. "keywords": [
  2450. "auth",
  2451. "laravel",
  2452. "sanctum"
  2453. ],
  2454. "support": {
  2455. "issues": "https://github.com/laravel/sanctum/issues",
  2456. "source": "https://github.com/laravel/sanctum"
  2457. },
  2458. "time": "2022-04-08T13:39:49+00:00"
  2459. },
  2460. {
  2461. "name": "laravel/serializable-closure",
  2462. "version": "v1.3.4",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/laravel/serializable-closure.git",
  2466. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  2471. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  2472. "shasum": "",
  2473. "mirrors": [
  2474. {
  2475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2476. "preferred": true
  2477. }
  2478. ]
  2479. },
  2480. "require": {
  2481. "php": "^7.3|^8.0"
  2482. },
  2483. "require-dev": {
  2484. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2485. "nesbot/carbon": "^2.61|^3.0",
  2486. "pestphp/pest": "^1.21.3",
  2487. "phpstan/phpstan": "^1.8.2",
  2488. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2489. },
  2490. "type": "library",
  2491. "extra": {
  2492. "branch-alias": {
  2493. "dev-master": "1.x-dev"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "Laravel\\SerializableClosure\\": "src/"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "authors": [
  2506. {
  2507. "name": "Taylor Otwell",
  2508. "email": "taylor@laravel.com"
  2509. },
  2510. {
  2511. "name": "Nuno Maduro",
  2512. "email": "nuno@laravel.com"
  2513. }
  2514. ],
  2515. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2516. "keywords": [
  2517. "closure",
  2518. "laravel",
  2519. "serializable"
  2520. ],
  2521. "support": {
  2522. "issues": "https://github.com/laravel/serializable-closure/issues",
  2523. "source": "https://github.com/laravel/serializable-closure"
  2524. },
  2525. "time": "2024-08-02T07:48:17+00:00"
  2526. },
  2527. {
  2528. "name": "laravel/tinker",
  2529. "version": "v2.9.0",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/laravel/tinker.git",
  2533. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2538. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2539. "shasum": "",
  2540. "mirrors": [
  2541. {
  2542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2543. "preferred": true
  2544. }
  2545. ]
  2546. },
  2547. "require": {
  2548. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2549. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2550. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2551. "php": "^7.2.5|^8.0",
  2552. "psy/psysh": "^0.11.1|^0.12.0",
  2553. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2554. },
  2555. "require-dev": {
  2556. "mockery/mockery": "~1.3.3|^1.4.2",
  2557. "phpstan/phpstan": "^1.10",
  2558. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2559. },
  2560. "suggest": {
  2561. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2562. },
  2563. "type": "library",
  2564. "extra": {
  2565. "laravel": {
  2566. "providers": [
  2567. "Laravel\\Tinker\\TinkerServiceProvider"
  2568. ]
  2569. }
  2570. },
  2571. "autoload": {
  2572. "psr-4": {
  2573. "Laravel\\Tinker\\": "src/"
  2574. }
  2575. },
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "MIT"
  2579. ],
  2580. "authors": [
  2581. {
  2582. "name": "Taylor Otwell",
  2583. "email": "taylor@laravel.com"
  2584. }
  2585. ],
  2586. "description": "Powerful REPL for the Laravel framework.",
  2587. "keywords": [
  2588. "REPL",
  2589. "Tinker",
  2590. "laravel",
  2591. "psysh"
  2592. ],
  2593. "support": {
  2594. "issues": "https://github.com/laravel/tinker/issues",
  2595. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2596. },
  2597. "time": "2024-01-04T16:10:04+00:00"
  2598. },
  2599. {
  2600. "name": "league/commonmark",
  2601. "version": "2.4.2",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://github.com/thephpleague/commonmark.git",
  2605. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2610. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  2611. "shasum": "",
  2612. "mirrors": [
  2613. {
  2614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2615. "preferred": true
  2616. }
  2617. ]
  2618. },
  2619. "require": {
  2620. "ext-mbstring": "*",
  2621. "league/config": "^1.1.1",
  2622. "php": "^7.4 || ^8.0",
  2623. "psr/event-dispatcher": "^1.0",
  2624. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2625. "symfony/polyfill-php80": "^1.16"
  2626. },
  2627. "require-dev": {
  2628. "cebe/markdown": "^1.0",
  2629. "commonmark/cmark": "0.30.3",
  2630. "commonmark/commonmark.js": "0.30.0",
  2631. "composer/package-versions-deprecated": "^1.8",
  2632. "embed/embed": "^4.4",
  2633. "erusev/parsedown": "^1.0",
  2634. "ext-json": "*",
  2635. "github/gfm": "0.29.0",
  2636. "michelf/php-markdown": "^1.4 || ^2.0",
  2637. "nyholm/psr7": "^1.5",
  2638. "phpstan/phpstan": "^1.8.2",
  2639. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2640. "scrutinizer/ocular": "^1.8.1",
  2641. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2642. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2643. "unleashedtech/php-coding-standard": "^3.1.1",
  2644. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2645. },
  2646. "suggest": {
  2647. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2648. },
  2649. "type": "library",
  2650. "extra": {
  2651. "branch-alias": {
  2652. "dev-main": "2.5-dev"
  2653. }
  2654. },
  2655. "autoload": {
  2656. "psr-4": {
  2657. "League\\CommonMark\\": "src"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "BSD-3-Clause"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Colin O'Dell",
  2667. "email": "colinodell@gmail.com",
  2668. "homepage": "https://www.colinodell.com",
  2669. "role": "Lead Developer"
  2670. }
  2671. ],
  2672. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2673. "homepage": "https://commonmark.thephpleague.com",
  2674. "keywords": [
  2675. "commonmark",
  2676. "flavored",
  2677. "gfm",
  2678. "github",
  2679. "github-flavored",
  2680. "markdown",
  2681. "md",
  2682. "parser"
  2683. ],
  2684. "support": {
  2685. "docs": "https://commonmark.thephpleague.com/",
  2686. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2687. "issues": "https://github.com/thephpleague/commonmark/issues",
  2688. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2689. "source": "https://github.com/thephpleague/commonmark"
  2690. },
  2691. "funding": [
  2692. {
  2693. "url": "https://www.colinodell.com/sponsor",
  2694. "type": "custom"
  2695. },
  2696. {
  2697. "url": "https://www.paypal.me/colinpodell/10.00",
  2698. "type": "custom"
  2699. },
  2700. {
  2701. "url": "https://github.com/colinodell",
  2702. "type": "github"
  2703. },
  2704. {
  2705. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2706. "type": "tidelift"
  2707. }
  2708. ],
  2709. "time": "2024-02-02T11:59:32+00:00"
  2710. },
  2711. {
  2712. "name": "league/config",
  2713. "version": "v1.2.0",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/thephpleague/config.git",
  2717. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2722. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2723. "shasum": "",
  2724. "mirrors": [
  2725. {
  2726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2727. "preferred": true
  2728. }
  2729. ]
  2730. },
  2731. "require": {
  2732. "dflydev/dot-access-data": "^3.0.1",
  2733. "nette/schema": "^1.2",
  2734. "php": "^7.4 || ^8.0"
  2735. },
  2736. "require-dev": {
  2737. "phpstan/phpstan": "^1.8.2",
  2738. "phpunit/phpunit": "^9.5.5",
  2739. "scrutinizer/ocular": "^1.8.1",
  2740. "unleashedtech/php-coding-standard": "^3.1",
  2741. "vimeo/psalm": "^4.7.3"
  2742. },
  2743. "type": "library",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-main": "1.2-dev"
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "League\\Config\\": "src"
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "BSD-3-Clause"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Colin O'Dell",
  2761. "email": "colinodell@gmail.com",
  2762. "homepage": "https://www.colinodell.com",
  2763. "role": "Lead Developer"
  2764. }
  2765. ],
  2766. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2767. "homepage": "https://config.thephpleague.com",
  2768. "keywords": [
  2769. "array",
  2770. "config",
  2771. "configuration",
  2772. "dot",
  2773. "dot-access",
  2774. "nested",
  2775. "schema"
  2776. ],
  2777. "support": {
  2778. "docs": "https://config.thephpleague.com/",
  2779. "issues": "https://github.com/thephpleague/config/issues",
  2780. "rss": "https://github.com/thephpleague/config/releases.atom",
  2781. "source": "https://github.com/thephpleague/config"
  2782. },
  2783. "funding": [
  2784. {
  2785. "url": "https://www.colinodell.com/sponsor",
  2786. "type": "custom"
  2787. },
  2788. {
  2789. "url": "https://www.paypal.me/colinpodell/10.00",
  2790. "type": "custom"
  2791. },
  2792. {
  2793. "url": "https://github.com/colinodell",
  2794. "type": "github"
  2795. }
  2796. ],
  2797. "time": "2022-12-11T20:36:23+00:00"
  2798. },
  2799. {
  2800. "name": "league/flysystem",
  2801. "version": "3.29.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/thephpleague/flysystem.git",
  2805. "reference": "0adc0d9a51852e170e0028a60bd271726626d3f0"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0adc0d9a51852e170e0028a60bd271726626d3f0",
  2810. "reference": "0adc0d9a51852e170e0028a60bd271726626d3f0",
  2811. "shasum": "",
  2812. "mirrors": [
  2813. {
  2814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2815. "preferred": true
  2816. }
  2817. ]
  2818. },
  2819. "require": {
  2820. "league/flysystem-local": "^3.0.0",
  2821. "league/mime-type-detection": "^1.0.0",
  2822. "php": "^8.0.2"
  2823. },
  2824. "conflict": {
  2825. "async-aws/core": "<1.19.0",
  2826. "async-aws/s3": "<1.14.0",
  2827. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2828. "guzzlehttp/guzzle": "<7.0",
  2829. "guzzlehttp/ringphp": "<1.1.1",
  2830. "phpseclib/phpseclib": "3.0.15",
  2831. "symfony/http-client": "<5.2"
  2832. },
  2833. "require-dev": {
  2834. "async-aws/s3": "^1.5 || ^2.0",
  2835. "async-aws/simple-s3": "^1.1 || ^2.0",
  2836. "aws/aws-sdk-php": "^3.295.10",
  2837. "composer/semver": "^3.0",
  2838. "ext-fileinfo": "*",
  2839. "ext-ftp": "*",
  2840. "ext-mongodb": "^1.3",
  2841. "ext-zip": "*",
  2842. "friendsofphp/php-cs-fixer": "^3.5",
  2843. "google/cloud-storage": "^1.23",
  2844. "guzzlehttp/psr7": "^2.6",
  2845. "microsoft/azure-storage-blob": "^1.1",
  2846. "mongodb/mongodb": "^1.2",
  2847. "phpseclib/phpseclib": "^3.0.36",
  2848. "phpstan/phpstan": "^1.10",
  2849. "phpunit/phpunit": "^9.5.11|^10.0",
  2850. "sabre/dav": "^4.6.0"
  2851. },
  2852. "type": "library",
  2853. "autoload": {
  2854. "psr-4": {
  2855. "League\\Flysystem\\": "src"
  2856. }
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "Frank de Jonge",
  2865. "email": "info@frankdejonge.nl"
  2866. }
  2867. ],
  2868. "description": "File storage abstraction for PHP",
  2869. "keywords": [
  2870. "WebDAV",
  2871. "aws",
  2872. "cloud",
  2873. "file",
  2874. "files",
  2875. "filesystem",
  2876. "filesystems",
  2877. "ftp",
  2878. "s3",
  2879. "sftp",
  2880. "storage"
  2881. ],
  2882. "support": {
  2883. "issues": "https://github.com/thephpleague/flysystem/issues",
  2884. "source": "https://github.com/thephpleague/flysystem/tree/3.29.0"
  2885. },
  2886. "time": "2024-09-29T11:59:11+00:00"
  2887. },
  2888. {
  2889. "name": "league/flysystem-local",
  2890. "version": "3.29.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/thephpleague/flysystem-local.git",
  2894. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2899. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2900. "shasum": "",
  2901. "mirrors": [
  2902. {
  2903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2904. "preferred": true
  2905. }
  2906. ]
  2907. },
  2908. "require": {
  2909. "ext-fileinfo": "*",
  2910. "league/flysystem": "^3.0.0",
  2911. "league/mime-type-detection": "^1.0.0",
  2912. "php": "^8.0.2"
  2913. },
  2914. "type": "library",
  2915. "autoload": {
  2916. "psr-4": {
  2917. "League\\Flysystem\\Local\\": ""
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Frank de Jonge",
  2927. "email": "info@frankdejonge.nl"
  2928. }
  2929. ],
  2930. "description": "Local filesystem adapter for Flysystem.",
  2931. "keywords": [
  2932. "Flysystem",
  2933. "file",
  2934. "files",
  2935. "filesystem",
  2936. "local"
  2937. ],
  2938. "support": {
  2939. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2940. },
  2941. "time": "2024-08-09T21:24:39+00:00"
  2942. },
  2943. {
  2944. "name": "league/mime-type-detection",
  2945. "version": "1.15.0",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2949. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2954. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2955. "shasum": "",
  2956. "mirrors": [
  2957. {
  2958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2959. "preferred": true
  2960. }
  2961. ]
  2962. },
  2963. "require": {
  2964. "ext-fileinfo": "*",
  2965. "php": "^7.4 || ^8.0"
  2966. },
  2967. "require-dev": {
  2968. "friendsofphp/php-cs-fixer": "^3.2",
  2969. "phpstan/phpstan": "^0.12.68",
  2970. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2971. },
  2972. "type": "library",
  2973. "autoload": {
  2974. "psr-4": {
  2975. "League\\MimeTypeDetection\\": "src"
  2976. }
  2977. },
  2978. "notification-url": "https://packagist.org/downloads/",
  2979. "license": [
  2980. "MIT"
  2981. ],
  2982. "authors": [
  2983. {
  2984. "name": "Frank de Jonge",
  2985. "email": "info@frankdejonge.nl"
  2986. }
  2987. ],
  2988. "description": "Mime-type detection for Flysystem",
  2989. "support": {
  2990. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2991. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2992. },
  2993. "funding": [
  2994. {
  2995. "url": "https://github.com/frankdejonge",
  2996. "type": "github"
  2997. },
  2998. {
  2999. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3000. "type": "tidelift"
  3001. }
  3002. ],
  3003. "time": "2024-01-28T23:22:08+00:00"
  3004. },
  3005. {
  3006. "name": "maennchen/zipstream-php",
  3007. "version": "3.1.1",
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://mirrors.cloud.tencent.com/repository/composer/maennchen/zipstream-php/3.1.1/maennchen-zipstream-php-3.1.1.zip",
  3011. "reference": "6187e9cc4493da94b9b63eb2315821552015fca9",
  3012. "shasum": ""
  3013. },
  3014. "require": {
  3015. "ext-mbstring": "*",
  3016. "ext-zlib": "*",
  3017. "php-64bit": "^8.1"
  3018. },
  3019. "require-dev": {
  3020. "ext-zip": "*",
  3021. "friendsofphp/php-cs-fixer": "^3.16",
  3022. "guzzlehttp/guzzle": "^7.5",
  3023. "mikey179/vfsstream": "^1.6",
  3024. "php-coveralls/php-coveralls": "^2.5",
  3025. "phpunit/phpunit": "^10.0",
  3026. "vimeo/psalm": "^5.0"
  3027. },
  3028. "suggest": {
  3029. "guzzlehttp/psr7": "^2.4",
  3030. "psr/http-message": "^2.0"
  3031. },
  3032. "type": "library",
  3033. "autoload": {
  3034. "psr-4": {
  3035. "ZipStream\\": "src/"
  3036. }
  3037. },
  3038. "license": [
  3039. "MIT"
  3040. ],
  3041. "authors": [
  3042. {
  3043. "name": "Paul Duncan",
  3044. "email": "pabs@pablotron.org"
  3045. },
  3046. {
  3047. "name": "Jonatan Männchen",
  3048. "email": "jonatan@maennchen.ch"
  3049. },
  3050. {
  3051. "name": "Jesse Donat",
  3052. "email": "donatj@gmail.com"
  3053. },
  3054. {
  3055. "name": "András Kolesár",
  3056. "email": "kolesar@kolesar.hu"
  3057. }
  3058. ],
  3059. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3060. "keywords": [
  3061. "stream",
  3062. "zip"
  3063. ],
  3064. "time": "2024-10-10T12:33:01+00:00"
  3065. },
  3066. {
  3067. "name": "markbaker/complex",
  3068. "version": "3.0.2",
  3069. "dist": {
  3070. "type": "zip",
  3071. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip",
  3072. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3073. "shasum": ""
  3074. },
  3075. "require": {
  3076. "php": "^7.2 || ^8.0"
  3077. },
  3078. "require-dev": {
  3079. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3080. "phpcompatibility/php-compatibility": "^9.3",
  3081. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3082. "squizlabs/php_codesniffer": "^3.7"
  3083. },
  3084. "type": "library",
  3085. "autoload": {
  3086. "psr-4": {
  3087. "Complex\\": "classes/src/"
  3088. }
  3089. },
  3090. "license": [
  3091. "MIT"
  3092. ],
  3093. "authors": [
  3094. {
  3095. "name": "Mark Baker",
  3096. "email": "mark@lange.demon.co.uk"
  3097. }
  3098. ],
  3099. "description": "PHP Class for working with complex numbers",
  3100. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3101. "keywords": [
  3102. "complex",
  3103. "mathematics"
  3104. ],
  3105. "time": "2022-12-06T16:21:08+00:00"
  3106. },
  3107. {
  3108. "name": "markbaker/matrix",
  3109. "version": "3.0.1",
  3110. "dist": {
  3111. "type": "zip",
  3112. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip",
  3113. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3114. "shasum": ""
  3115. },
  3116. "require": {
  3117. "php": "^7.1 || ^8.0"
  3118. },
  3119. "require-dev": {
  3120. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3121. "phpcompatibility/php-compatibility": "^9.3",
  3122. "phpdocumentor/phpdocumentor": "2.*",
  3123. "phploc/phploc": "^4.0",
  3124. "phpmd/phpmd": "2.*",
  3125. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3126. "sebastian/phpcpd": "^4.0",
  3127. "squizlabs/php_codesniffer": "^3.7"
  3128. },
  3129. "type": "library",
  3130. "autoload": {
  3131. "psr-4": {
  3132. "Matrix\\": "classes/src/"
  3133. }
  3134. },
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Mark Baker",
  3141. "email": "mark@demon-angel.eu"
  3142. }
  3143. ],
  3144. "description": "PHP Class for working with matrices",
  3145. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3146. "keywords": [
  3147. "mathematics",
  3148. "matrix",
  3149. "vector"
  3150. ],
  3151. "time": "2022-12-02T22:17:43+00:00"
  3152. },
  3153. {
  3154. "name": "monolog/monolog",
  3155. "version": "2.9.3",
  3156. "source": {
  3157. "type": "git",
  3158. "url": "https://github.com/Seldaek/monolog.git",
  3159. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  3160. },
  3161. "dist": {
  3162. "type": "zip",
  3163. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  3164. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  3165. "shasum": "",
  3166. "mirrors": [
  3167. {
  3168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3169. "preferred": true
  3170. }
  3171. ]
  3172. },
  3173. "require": {
  3174. "php": ">=7.2",
  3175. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3176. },
  3177. "provide": {
  3178. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3179. },
  3180. "require-dev": {
  3181. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3182. "doctrine/couchdb": "~1.0@dev",
  3183. "elasticsearch/elasticsearch": "^7 || ^8",
  3184. "ext-json": "*",
  3185. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3186. "guzzlehttp/guzzle": "^7.4",
  3187. "guzzlehttp/psr7": "^2.2",
  3188. "mongodb/mongodb": "^1.8",
  3189. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3190. "phpspec/prophecy": "^1.15",
  3191. "phpstan/phpstan": "^1.10",
  3192. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3193. "predis/predis": "^1.1 || ^2.0",
  3194. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3195. "ruflin/elastica": "^7",
  3196. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3197. "symfony/mailer": "^5.4 || ^6",
  3198. "symfony/mime": "^5.4 || ^6"
  3199. },
  3200. "suggest": {
  3201. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3202. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3203. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3204. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3205. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3206. "ext-mbstring": "Allow to work properly with unicode symbols",
  3207. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3208. "ext-openssl": "Required to send log messages using SSL",
  3209. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3210. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3211. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3212. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3213. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3214. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3215. },
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-main": "2.x-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "Monolog\\": "src/Monolog"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "MIT"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Jordi Boggiano",
  3234. "email": "j.boggiano@seld.be",
  3235. "homepage": "https://seld.be"
  3236. }
  3237. ],
  3238. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3239. "homepage": "https://github.com/Seldaek/monolog",
  3240. "keywords": [
  3241. "log",
  3242. "logging",
  3243. "psr-3"
  3244. ],
  3245. "support": {
  3246. "issues": "https://github.com/Seldaek/monolog/issues",
  3247. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://github.com/Seldaek",
  3252. "type": "github"
  3253. },
  3254. {
  3255. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3256. "type": "tidelift"
  3257. }
  3258. ],
  3259. "time": "2024-04-12T20:52:51+00:00"
  3260. },
  3261. {
  3262. "name": "nesbot/carbon",
  3263. "version": "2.72.5",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/briannesbitt/Carbon.git",
  3267. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  3272. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  3273. "shasum": "",
  3274. "mirrors": [
  3275. {
  3276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3277. "preferred": true
  3278. }
  3279. ]
  3280. },
  3281. "require": {
  3282. "carbonphp/carbon-doctrine-types": "*",
  3283. "ext-json": "*",
  3284. "php": "^7.1.8 || ^8.0",
  3285. "psr/clock": "^1.0",
  3286. "symfony/polyfill-mbstring": "^1.0",
  3287. "symfony/polyfill-php80": "^1.16",
  3288. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3289. },
  3290. "provide": {
  3291. "psr/clock-implementation": "1.0"
  3292. },
  3293. "require-dev": {
  3294. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3295. "doctrine/orm": "^2.7 || ^3.0",
  3296. "friendsofphp/php-cs-fixer": "^3.0",
  3297. "kylekatarnls/multi-tester": "^2.0",
  3298. "ondrejmirtes/better-reflection": "*",
  3299. "phpmd/phpmd": "^2.9",
  3300. "phpstan/extension-installer": "^1.0",
  3301. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3302. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3303. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3304. "squizlabs/php_codesniffer": "^3.4"
  3305. },
  3306. "bin": [
  3307. "bin/carbon"
  3308. ],
  3309. "type": "library",
  3310. "extra": {
  3311. "branch-alias": {
  3312. "dev-master": "3.x-dev",
  3313. "dev-2.x": "2.x-dev"
  3314. },
  3315. "laravel": {
  3316. "providers": [
  3317. "Carbon\\Laravel\\ServiceProvider"
  3318. ]
  3319. },
  3320. "phpstan": {
  3321. "includes": [
  3322. "extension.neon"
  3323. ]
  3324. }
  3325. },
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Carbon\\": "src/Carbon/"
  3329. }
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "Brian Nesbitt",
  3338. "email": "brian@nesbot.com",
  3339. "homepage": "https://markido.com"
  3340. },
  3341. {
  3342. "name": "kylekatarnls",
  3343. "homepage": "https://github.com/kylekatarnls"
  3344. }
  3345. ],
  3346. "description": "An API extension for DateTime that supports 281 different languages.",
  3347. "homepage": "https://carbon.nesbot.com",
  3348. "keywords": [
  3349. "date",
  3350. "datetime",
  3351. "time"
  3352. ],
  3353. "support": {
  3354. "docs": "https://carbon.nesbot.com/docs",
  3355. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3356. "source": "https://github.com/briannesbitt/Carbon"
  3357. },
  3358. "funding": [
  3359. {
  3360. "url": "https://github.com/sponsors/kylekatarnls",
  3361. "type": "github"
  3362. },
  3363. {
  3364. "url": "https://opencollective.com/Carbon#sponsor",
  3365. "type": "opencollective"
  3366. },
  3367. {
  3368. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3369. "type": "tidelift"
  3370. }
  3371. ],
  3372. "time": "2024-06-03T19:18:41+00:00"
  3373. },
  3374. {
  3375. "name": "nette/schema",
  3376. "version": "v1.3.1",
  3377. "source": {
  3378. "type": "git",
  3379. "url": "https://github.com/nette/schema.git",
  3380. "reference": "9522dad6211c4d995a01a9ac529da88d0b0ba7b5"
  3381. },
  3382. "dist": {
  3383. "type": "zip",
  3384. "url": "https://api.github.com/repos/nette/schema/zipball/9522dad6211c4d995a01a9ac529da88d0b0ba7b5",
  3385. "reference": "9522dad6211c4d995a01a9ac529da88d0b0ba7b5",
  3386. "shasum": "",
  3387. "mirrors": [
  3388. {
  3389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3390. "preferred": true
  3391. }
  3392. ]
  3393. },
  3394. "require": {
  3395. "nette/utils": "^4.0",
  3396. "php": "8.1 - 8.4"
  3397. },
  3398. "require-dev": {
  3399. "nette/tester": "^2.5.2",
  3400. "phpstan/phpstan-nette": "^1.0",
  3401. "tracy/tracy": "^2.8"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-master": "1.3-dev"
  3407. }
  3408. },
  3409. "autoload": {
  3410. "classmap": [
  3411. "src/"
  3412. ]
  3413. },
  3414. "notification-url": "https://packagist.org/downloads/",
  3415. "license": [
  3416. "BSD-3-Clause",
  3417. "GPL-2.0-only",
  3418. "GPL-3.0-only"
  3419. ],
  3420. "authors": [
  3421. {
  3422. "name": "David Grudl",
  3423. "homepage": "https://davidgrudl.com"
  3424. },
  3425. {
  3426. "name": "Nette Community",
  3427. "homepage": "https://nette.org/contributors"
  3428. }
  3429. ],
  3430. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3431. "homepage": "https://nette.org",
  3432. "keywords": [
  3433. "config",
  3434. "nette"
  3435. ],
  3436. "support": {
  3437. "issues": "https://github.com/nette/schema/issues",
  3438. "source": "https://github.com/nette/schema/tree/v1.3.1"
  3439. },
  3440. "time": "2024-10-05T03:01:50+00:00"
  3441. },
  3442. {
  3443. "name": "nette/utils",
  3444. "version": "v4.0.4",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/nette/utils.git",
  3448. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3453. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3454. "shasum": "",
  3455. "mirrors": [
  3456. {
  3457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3458. "preferred": true
  3459. }
  3460. ]
  3461. },
  3462. "require": {
  3463. "php": ">=8.0 <8.4"
  3464. },
  3465. "conflict": {
  3466. "nette/finder": "<3",
  3467. "nette/schema": "<1.2.2"
  3468. },
  3469. "require-dev": {
  3470. "jetbrains/phpstorm-attributes": "dev-master",
  3471. "nette/tester": "^2.5",
  3472. "phpstan/phpstan": "^1.0",
  3473. "tracy/tracy": "^2.9"
  3474. },
  3475. "suggest": {
  3476. "ext-gd": "to use Image",
  3477. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3478. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3479. "ext-json": "to use Nette\\Utils\\Json",
  3480. "ext-mbstring": "to use Strings::lower() etc...",
  3481. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "4.0-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "classmap": [
  3491. "src/"
  3492. ]
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "BSD-3-Clause",
  3497. "GPL-2.0-only",
  3498. "GPL-3.0-only"
  3499. ],
  3500. "authors": [
  3501. {
  3502. "name": "David Grudl",
  3503. "homepage": "https://davidgrudl.com"
  3504. },
  3505. {
  3506. "name": "Nette Community",
  3507. "homepage": "https://nette.org/contributors"
  3508. }
  3509. ],
  3510. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3511. "homepage": "https://nette.org",
  3512. "keywords": [
  3513. "array",
  3514. "core",
  3515. "datetime",
  3516. "images",
  3517. "json",
  3518. "nette",
  3519. "paginator",
  3520. "password",
  3521. "slugify",
  3522. "string",
  3523. "unicode",
  3524. "utf-8",
  3525. "utility",
  3526. "validation"
  3527. ],
  3528. "support": {
  3529. "issues": "https://github.com/nette/utils/issues",
  3530. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3531. },
  3532. "time": "2024-01-17T16:50:36+00:00"
  3533. },
  3534. {
  3535. "name": "nikic/php-parser",
  3536. "version": "v5.3.0",
  3537. "source": {
  3538. "type": "git",
  3539. "url": "https://github.com/nikic/PHP-Parser.git",
  3540. "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a"
  3541. },
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3abf7425cd284141dc5d8d14a9ee444de3345d1a",
  3545. "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a",
  3546. "shasum": "",
  3547. "mirrors": [
  3548. {
  3549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3550. "preferred": true
  3551. }
  3552. ]
  3553. },
  3554. "require": {
  3555. "ext-ctype": "*",
  3556. "ext-json": "*",
  3557. "ext-tokenizer": "*",
  3558. "php": ">=7.4"
  3559. },
  3560. "require-dev": {
  3561. "ircmaxell/php-yacc": "^0.0.7",
  3562. "phpunit/phpunit": "^9.0"
  3563. },
  3564. "bin": [
  3565. "bin/php-parse"
  3566. ],
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "5.0-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "psr-4": {
  3575. "PhpParser\\": "lib/PhpParser"
  3576. }
  3577. },
  3578. "notification-url": "https://packagist.org/downloads/",
  3579. "license": [
  3580. "BSD-3-Clause"
  3581. ],
  3582. "authors": [
  3583. {
  3584. "name": "Nikita Popov"
  3585. }
  3586. ],
  3587. "description": "A PHP parser written in PHP",
  3588. "keywords": [
  3589. "parser",
  3590. "php"
  3591. ],
  3592. "support": {
  3593. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3594. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.0"
  3595. },
  3596. "time": "2024-09-29T13:56:26+00:00"
  3597. },
  3598. {
  3599. "name": "nunomaduro/termwind",
  3600. "version": "v1.16.0",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/nunomaduro/termwind.git",
  3604. "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dcf1ec3dfa36137b7ce41d43866644a7ab8fc257",
  3609. "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257",
  3610. "shasum": "",
  3611. "mirrors": [
  3612. {
  3613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3614. "preferred": true
  3615. }
  3616. ]
  3617. },
  3618. "require": {
  3619. "ext-mbstring": "*",
  3620. "php": "^8.1",
  3621. "symfony/console": "^6.4.12"
  3622. },
  3623. "require-dev": {
  3624. "illuminate/console": "^10.48.22",
  3625. "illuminate/support": "^10.48.22",
  3626. "laravel/pint": "^1.18.1",
  3627. "pestphp/pest": "^2",
  3628. "pestphp/pest-plugin-mock": "2.0.0",
  3629. "phpstan/phpstan": "^1.12.6",
  3630. "phpstan/phpstan-strict-rules": "^1.6.1",
  3631. "symfony/var-dumper": "^6.4.11",
  3632. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3633. },
  3634. "type": "library",
  3635. "extra": {
  3636. "laravel": {
  3637. "providers": [
  3638. "Termwind\\Laravel\\TermwindServiceProvider"
  3639. ]
  3640. }
  3641. },
  3642. "autoload": {
  3643. "files": [
  3644. "src/Functions.php"
  3645. ],
  3646. "psr-4": {
  3647. "Termwind\\": "src/"
  3648. }
  3649. },
  3650. "notification-url": "https://packagist.org/downloads/",
  3651. "license": [
  3652. "MIT"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "Nuno Maduro",
  3657. "email": "enunomaduro@gmail.com"
  3658. }
  3659. ],
  3660. "description": "Its like Tailwind CSS, but for the console.",
  3661. "keywords": [
  3662. "cli",
  3663. "console",
  3664. "css",
  3665. "package",
  3666. "php",
  3667. "style"
  3668. ],
  3669. "support": {
  3670. "issues": "https://github.com/nunomaduro/termwind/issues",
  3671. "source": "https://github.com/nunomaduro/termwind/tree/v1.16.0"
  3672. },
  3673. "funding": [
  3674. {
  3675. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3676. "type": "custom"
  3677. },
  3678. {
  3679. "url": "https://github.com/nunomaduro",
  3680. "type": "github"
  3681. },
  3682. {
  3683. "url": "https://github.com/xiCO2k",
  3684. "type": "github"
  3685. }
  3686. ],
  3687. "time": "2024-10-15T15:27:12+00:00"
  3688. },
  3689. {
  3690. "name": "phpoffice/phpspreadsheet",
  3691. "version": "3.5.0",
  3692. "dist": {
  3693. "type": "zip",
  3694. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpoffice/phpspreadsheet/3.5.0/phpoffice-phpspreadsheet-3.5.0.zip",
  3695. "reference": "fb74dcdfa5b538763ab980e977529bc783039aec",
  3696. "shasum": ""
  3697. },
  3698. "require": {
  3699. "ext-ctype": "*",
  3700. "ext-dom": "*",
  3701. "ext-fileinfo": "*",
  3702. "ext-gd": "*",
  3703. "ext-iconv": "*",
  3704. "ext-libxml": "*",
  3705. "ext-mbstring": "*",
  3706. "ext-simplexml": "*",
  3707. "ext-xml": "*",
  3708. "ext-xmlreader": "*",
  3709. "ext-xmlwriter": "*",
  3710. "ext-zip": "*",
  3711. "ext-zlib": "*",
  3712. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3713. "markbaker/complex": "^3.0",
  3714. "markbaker/matrix": "^3.0",
  3715. "php": "^8.1",
  3716. "psr/http-client": "^1.0",
  3717. "psr/http-factory": "^1.0",
  3718. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3719. },
  3720. "require-dev": {
  3721. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3722. "dompdf/dompdf": "^2.0 || ^3.0",
  3723. "friendsofphp/php-cs-fixer": "^3.2",
  3724. "mitoteam/jpgraph": "^10.3",
  3725. "mpdf/mpdf": "^8.1.1",
  3726. "phpcompatibility/php-compatibility": "^9.3",
  3727. "phpstan/phpstan": "^1.1",
  3728. "phpstan/phpstan-phpunit": "^1.0",
  3729. "phpunit/phpunit": "^9.6 || ^10.5",
  3730. "squizlabs/php_codesniffer": "^3.7",
  3731. "tecnickcom/tcpdf": "^6.5"
  3732. },
  3733. "suggest": {
  3734. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3735. "ext-intl": "PHP Internationalization Functions",
  3736. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3737. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3738. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3739. },
  3740. "type": "library",
  3741. "autoload": {
  3742. "psr-4": {
  3743. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3744. }
  3745. },
  3746. "license": [
  3747. "MIT"
  3748. ],
  3749. "authors": [
  3750. {
  3751. "name": "Maarten Balliauw",
  3752. "homepage": "https://blog.maartenballiauw.be"
  3753. },
  3754. {
  3755. "name": "Mark Baker",
  3756. "homepage": "https://markbakeruk.net"
  3757. },
  3758. {
  3759. "name": "Franck Lefevre",
  3760. "homepage": "https://rootslabs.net"
  3761. },
  3762. {
  3763. "name": "Erik Tilt"
  3764. },
  3765. {
  3766. "name": "Adrien Crivelli"
  3767. }
  3768. ],
  3769. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3770. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3771. "keywords": [
  3772. "OpenXML",
  3773. "excel",
  3774. "gnumeric",
  3775. "ods",
  3776. "php",
  3777. "spreadsheet",
  3778. "xls",
  3779. "xlsx"
  3780. ],
  3781. "time": "2024-11-22T06:41:00+00:00"
  3782. },
  3783. {
  3784. "name": "phpoption/phpoption",
  3785. "version": "1.9.3",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://github.com/schmittjoh/php-option.git",
  3789. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3794. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3795. "shasum": "",
  3796. "mirrors": [
  3797. {
  3798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3799. "preferred": true
  3800. }
  3801. ]
  3802. },
  3803. "require": {
  3804. "php": "^7.2.5 || ^8.0"
  3805. },
  3806. "require-dev": {
  3807. "bamarni/composer-bin-plugin": "^1.8.2",
  3808. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3809. },
  3810. "type": "library",
  3811. "extra": {
  3812. "bamarni-bin": {
  3813. "bin-links": true,
  3814. "forward-command": false
  3815. },
  3816. "branch-alias": {
  3817. "dev-master": "1.9-dev"
  3818. }
  3819. },
  3820. "autoload": {
  3821. "psr-4": {
  3822. "PhpOption\\": "src/PhpOption/"
  3823. }
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "Apache-2.0"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "Johannes M. Schmitt",
  3832. "email": "schmittjoh@gmail.com",
  3833. "homepage": "https://github.com/schmittjoh"
  3834. },
  3835. {
  3836. "name": "Graham Campbell",
  3837. "email": "hello@gjcampbell.co.uk",
  3838. "homepage": "https://github.com/GrahamCampbell"
  3839. }
  3840. ],
  3841. "description": "Option Type for PHP",
  3842. "keywords": [
  3843. "language",
  3844. "option",
  3845. "php",
  3846. "type"
  3847. ],
  3848. "support": {
  3849. "issues": "https://github.com/schmittjoh/php-option/issues",
  3850. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3851. },
  3852. "funding": [
  3853. {
  3854. "url": "https://github.com/GrahamCampbell",
  3855. "type": "github"
  3856. },
  3857. {
  3858. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3859. "type": "tidelift"
  3860. }
  3861. ],
  3862. "time": "2024-07-20T21:41:07+00:00"
  3863. },
  3864. {
  3865. "name": "predis/predis",
  3866. "version": "v2.2.2",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/predis/predis.git",
  3870. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/predis/predis/zipball/b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  3875. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  3876. "shasum": "",
  3877. "mirrors": [
  3878. {
  3879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3880. "preferred": true
  3881. }
  3882. ]
  3883. },
  3884. "require": {
  3885. "php": "^7.2 || ^8.0"
  3886. },
  3887. "require-dev": {
  3888. "friendsofphp/php-cs-fixer": "^3.3",
  3889. "phpstan/phpstan": "^1.9",
  3890. "phpunit/phpunit": "^8.0 || ~9.4.4"
  3891. },
  3892. "suggest": {
  3893. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  3894. },
  3895. "type": "library",
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Predis\\": "src/"
  3899. }
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Till Krüss",
  3908. "homepage": "https://till.im",
  3909. "role": "Maintainer"
  3910. }
  3911. ],
  3912. "description": "A flexible and feature-complete Redis client for PHP.",
  3913. "homepage": "http://github.com/predis/predis",
  3914. "keywords": [
  3915. "nosql",
  3916. "predis",
  3917. "redis"
  3918. ],
  3919. "support": {
  3920. "issues": "https://github.com/predis/predis/issues",
  3921. "source": "https://github.com/predis/predis/tree/v2.2.2"
  3922. },
  3923. "funding": [
  3924. {
  3925. "url": "https://github.com/sponsors/tillkruss",
  3926. "type": "github"
  3927. }
  3928. ],
  3929. "time": "2023-09-13T16:42:03+00:00"
  3930. },
  3931. {
  3932. "name": "psr/cache",
  3933. "version": "3.0.0",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/php-fig/cache.git",
  3937. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3942. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3943. "shasum": "",
  3944. "mirrors": [
  3945. {
  3946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3947. "preferred": true
  3948. }
  3949. ]
  3950. },
  3951. "require": {
  3952. "php": ">=8.0.0"
  3953. },
  3954. "type": "library",
  3955. "extra": {
  3956. "branch-alias": {
  3957. "dev-master": "1.0.x-dev"
  3958. }
  3959. },
  3960. "autoload": {
  3961. "psr-4": {
  3962. "Psr\\Cache\\": "src/"
  3963. }
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "PHP-FIG",
  3972. "homepage": "https://www.php-fig.org/"
  3973. }
  3974. ],
  3975. "description": "Common interface for caching libraries",
  3976. "keywords": [
  3977. "cache",
  3978. "psr",
  3979. "psr-6"
  3980. ],
  3981. "support": {
  3982. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3983. },
  3984. "time": "2021-02-03T23:26:27+00:00"
  3985. },
  3986. {
  3987. "name": "psr/clock",
  3988. "version": "1.0.0",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/php-fig/clock.git",
  3992. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3997. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3998. "shasum": "",
  3999. "mirrors": [
  4000. {
  4001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4002. "preferred": true
  4003. }
  4004. ]
  4005. },
  4006. "require": {
  4007. "php": "^7.0 || ^8.0"
  4008. },
  4009. "type": "library",
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Psr\\Clock\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "PHP-FIG",
  4022. "homepage": "https://www.php-fig.org/"
  4023. }
  4024. ],
  4025. "description": "Common interface for reading the clock.",
  4026. "homepage": "https://github.com/php-fig/clock",
  4027. "keywords": [
  4028. "clock",
  4029. "now",
  4030. "psr",
  4031. "psr-20",
  4032. "time"
  4033. ],
  4034. "support": {
  4035. "issues": "https://github.com/php-fig/clock/issues",
  4036. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4037. },
  4038. "time": "2022-11-25T14:36:26+00:00"
  4039. },
  4040. {
  4041. "name": "psr/container",
  4042. "version": "2.0.2",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/php-fig/container.git",
  4046. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4051. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "php": ">=7.4.0"
  4062. },
  4063. "type": "library",
  4064. "extra": {
  4065. "branch-alias": {
  4066. "dev-master": "2.0.x-dev"
  4067. }
  4068. },
  4069. "autoload": {
  4070. "psr-4": {
  4071. "Psr\\Container\\": "src/"
  4072. }
  4073. },
  4074. "notification-url": "https://packagist.org/downloads/",
  4075. "license": [
  4076. "MIT"
  4077. ],
  4078. "authors": [
  4079. {
  4080. "name": "PHP-FIG",
  4081. "homepage": "https://www.php-fig.org/"
  4082. }
  4083. ],
  4084. "description": "Common Container Interface (PHP FIG PSR-11)",
  4085. "homepage": "https://github.com/php-fig/container",
  4086. "keywords": [
  4087. "PSR-11",
  4088. "container",
  4089. "container-interface",
  4090. "container-interop",
  4091. "psr"
  4092. ],
  4093. "support": {
  4094. "issues": "https://github.com/php-fig/container/issues",
  4095. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4096. },
  4097. "time": "2021-11-05T16:47:00+00:00"
  4098. },
  4099. {
  4100. "name": "psr/event-dispatcher",
  4101. "version": "1.0.0",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://github.com/php-fig/event-dispatcher.git",
  4105. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4106. },
  4107. "dist": {
  4108. "type": "zip",
  4109. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4110. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4111. "shasum": "",
  4112. "mirrors": [
  4113. {
  4114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4115. "preferred": true
  4116. }
  4117. ]
  4118. },
  4119. "require": {
  4120. "php": ">=7.2.0"
  4121. },
  4122. "type": "library",
  4123. "extra": {
  4124. "branch-alias": {
  4125. "dev-master": "1.0.x-dev"
  4126. }
  4127. },
  4128. "autoload": {
  4129. "psr-4": {
  4130. "Psr\\EventDispatcher\\": "src/"
  4131. }
  4132. },
  4133. "notification-url": "https://packagist.org/downloads/",
  4134. "license": [
  4135. "MIT"
  4136. ],
  4137. "authors": [
  4138. {
  4139. "name": "PHP-FIG",
  4140. "homepage": "http://www.php-fig.org/"
  4141. }
  4142. ],
  4143. "description": "Standard interfaces for event handling.",
  4144. "keywords": [
  4145. "events",
  4146. "psr",
  4147. "psr-14"
  4148. ],
  4149. "support": {
  4150. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4151. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4152. },
  4153. "time": "2019-01-08T18:20:26+00:00"
  4154. },
  4155. {
  4156. "name": "psr/http-client",
  4157. "version": "1.0.3",
  4158. "source": {
  4159. "type": "git",
  4160. "url": "https://github.com/php-fig/http-client.git",
  4161. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4162. },
  4163. "dist": {
  4164. "type": "zip",
  4165. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4166. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4167. "shasum": "",
  4168. "mirrors": [
  4169. {
  4170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4171. "preferred": true
  4172. }
  4173. ]
  4174. },
  4175. "require": {
  4176. "php": "^7.0 || ^8.0",
  4177. "psr/http-message": "^1.0 || ^2.0"
  4178. },
  4179. "type": "library",
  4180. "extra": {
  4181. "branch-alias": {
  4182. "dev-master": "1.0.x-dev"
  4183. }
  4184. },
  4185. "autoload": {
  4186. "psr-4": {
  4187. "Psr\\Http\\Client\\": "src/"
  4188. }
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "PHP-FIG",
  4197. "homepage": "https://www.php-fig.org/"
  4198. }
  4199. ],
  4200. "description": "Common interface for HTTP clients",
  4201. "homepage": "https://github.com/php-fig/http-client",
  4202. "keywords": [
  4203. "http",
  4204. "http-client",
  4205. "psr",
  4206. "psr-18"
  4207. ],
  4208. "support": {
  4209. "source": "https://github.com/php-fig/http-client"
  4210. },
  4211. "time": "2023-09-23T14:17:50+00:00"
  4212. },
  4213. {
  4214. "name": "psr/http-factory",
  4215. "version": "1.0.2",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://github.com/php-fig/http-factory.git",
  4219. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4224. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4225. "shasum": "",
  4226. "mirrors": [
  4227. {
  4228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4229. "preferred": true
  4230. }
  4231. ]
  4232. },
  4233. "require": {
  4234. "php": ">=7.0.0",
  4235. "psr/http-message": "^1.0 || ^2.0"
  4236. },
  4237. "type": "library",
  4238. "extra": {
  4239. "branch-alias": {
  4240. "dev-master": "1.0.x-dev"
  4241. }
  4242. },
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Psr\\Http\\Message\\": "src/"
  4246. }
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "MIT"
  4251. ],
  4252. "authors": [
  4253. {
  4254. "name": "PHP-FIG",
  4255. "homepage": "https://www.php-fig.org/"
  4256. }
  4257. ],
  4258. "description": "Common interfaces for PSR-7 HTTP message factories",
  4259. "keywords": [
  4260. "factory",
  4261. "http",
  4262. "message",
  4263. "psr",
  4264. "psr-17",
  4265. "psr-7",
  4266. "request",
  4267. "response"
  4268. ],
  4269. "support": {
  4270. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4271. },
  4272. "time": "2023-04-10T20:10:41+00:00"
  4273. },
  4274. {
  4275. "name": "psr/http-message",
  4276. "version": "2.0",
  4277. "source": {
  4278. "type": "git",
  4279. "url": "https://github.com/php-fig/http-message.git",
  4280. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4281. },
  4282. "dist": {
  4283. "type": "zip",
  4284. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4285. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4286. "shasum": "",
  4287. "mirrors": [
  4288. {
  4289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4290. "preferred": true
  4291. }
  4292. ]
  4293. },
  4294. "require": {
  4295. "php": "^7.2 || ^8.0"
  4296. },
  4297. "type": "library",
  4298. "extra": {
  4299. "branch-alias": {
  4300. "dev-master": "2.0.x-dev"
  4301. }
  4302. },
  4303. "autoload": {
  4304. "psr-4": {
  4305. "Psr\\Http\\Message\\": "src/"
  4306. }
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "PHP-FIG",
  4315. "homepage": "https://www.php-fig.org/"
  4316. }
  4317. ],
  4318. "description": "Common interface for HTTP messages",
  4319. "homepage": "https://github.com/php-fig/http-message",
  4320. "keywords": [
  4321. "http",
  4322. "http-message",
  4323. "psr",
  4324. "psr-7",
  4325. "request",
  4326. "response"
  4327. ],
  4328. "support": {
  4329. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4330. },
  4331. "time": "2023-04-04T09:54:51+00:00"
  4332. },
  4333. {
  4334. "name": "psr/log",
  4335. "version": "3.0.1",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://github.com/php-fig/log.git",
  4339. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  4344. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  4345. "shasum": "",
  4346. "mirrors": [
  4347. {
  4348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4349. "preferred": true
  4350. }
  4351. ]
  4352. },
  4353. "require": {
  4354. "php": ">=8.0.0"
  4355. },
  4356. "type": "library",
  4357. "extra": {
  4358. "branch-alias": {
  4359. "dev-master": "3.x-dev"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "psr-4": {
  4364. "Psr\\Log\\": "src"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "PHP-FIG",
  4374. "homepage": "https://www.php-fig.org/"
  4375. }
  4376. ],
  4377. "description": "Common interface for logging libraries",
  4378. "homepage": "https://github.com/php-fig/log",
  4379. "keywords": [
  4380. "log",
  4381. "psr",
  4382. "psr-3"
  4383. ],
  4384. "support": {
  4385. "source": "https://github.com/php-fig/log/tree/3.0.1"
  4386. },
  4387. "time": "2024-08-21T13:31:24+00:00"
  4388. },
  4389. {
  4390. "name": "psr/simple-cache",
  4391. "version": "3.0.0",
  4392. "source": {
  4393. "type": "git",
  4394. "url": "https://github.com/php-fig/simple-cache.git",
  4395. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4396. },
  4397. "dist": {
  4398. "type": "zip",
  4399. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4400. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4401. "shasum": "",
  4402. "mirrors": [
  4403. {
  4404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4405. "preferred": true
  4406. }
  4407. ]
  4408. },
  4409. "require": {
  4410. "php": ">=8.0.0"
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "3.0.x-dev"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Psr\\SimpleCache\\": "src/"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "PHP-FIG",
  4430. "homepage": "https://www.php-fig.org/"
  4431. }
  4432. ],
  4433. "description": "Common interfaces for simple caching",
  4434. "keywords": [
  4435. "cache",
  4436. "caching",
  4437. "psr",
  4438. "psr-16",
  4439. "simple-cache"
  4440. ],
  4441. "support": {
  4442. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4443. },
  4444. "time": "2021-10-29T13:26:27+00:00"
  4445. },
  4446. {
  4447. "name": "psy/psysh",
  4448. "version": "v0.12.4",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/bobthecow/psysh.git",
  4452. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4457. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4458. "shasum": "",
  4459. "mirrors": [
  4460. {
  4461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4462. "preferred": true
  4463. }
  4464. ]
  4465. },
  4466. "require": {
  4467. "ext-json": "*",
  4468. "ext-tokenizer": "*",
  4469. "nikic/php-parser": "^5.0 || ^4.0",
  4470. "php": "^8.0 || ^7.4",
  4471. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4472. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4473. },
  4474. "conflict": {
  4475. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4476. },
  4477. "require-dev": {
  4478. "bamarni/composer-bin-plugin": "^1.2"
  4479. },
  4480. "suggest": {
  4481. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4482. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4483. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4484. },
  4485. "bin": [
  4486. "bin/psysh"
  4487. ],
  4488. "type": "library",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-main": "0.12.x-dev"
  4492. },
  4493. "bamarni-bin": {
  4494. "bin-links": false,
  4495. "forward-command": false
  4496. }
  4497. },
  4498. "autoload": {
  4499. "files": [
  4500. "src/functions.php"
  4501. ],
  4502. "psr-4": {
  4503. "Psy\\": "src/"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Justin Hileman",
  4513. "email": "justin@justinhileman.info",
  4514. "homepage": "http://justinhileman.com"
  4515. }
  4516. ],
  4517. "description": "An interactive shell for modern PHP.",
  4518. "homepage": "http://psysh.org",
  4519. "keywords": [
  4520. "REPL",
  4521. "console",
  4522. "interactive",
  4523. "shell"
  4524. ],
  4525. "support": {
  4526. "issues": "https://github.com/bobthecow/psysh/issues",
  4527. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4528. },
  4529. "time": "2024-06-10T01:18:23+00:00"
  4530. },
  4531. {
  4532. "name": "qcloud/cos-sdk-v5",
  4533. "version": "v2.6.15",
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://mirrors.cloud.tencent.com/repository/composer/qcloud/cos-sdk-v5/v2.6.15/qcloud-cos-sdk-v5-v2.6.15.zip",
  4537. "reference": "17b973a388dc8848947054daace0fff8d2a4eee0",
  4538. "shasum": ""
  4539. },
  4540. "require": {
  4541. "ext-curl": "*",
  4542. "ext-json": "*",
  4543. "ext-libxml": "*",
  4544. "ext-mbstring": "*",
  4545. "ext-simplexml": "*",
  4546. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  4547. "guzzlehttp/guzzle-services": "^1.1",
  4548. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  4549. "php": ">=5.6"
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "2.4-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "files": [
  4559. "src/Common.php"
  4560. ],
  4561. "psr-4": {
  4562. "Qcloud\\Cos\\": "src/"
  4563. }
  4564. },
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "authors": [
  4569. {
  4570. "name": "yaozongyou",
  4571. "email": "yaozongyou@vip.qq.com"
  4572. },
  4573. {
  4574. "name": "lewzylu",
  4575. "email": "327874225@qq.com"
  4576. },
  4577. {
  4578. "name": "tuunalai",
  4579. "email": "550566181@qq.com"
  4580. }
  4581. ],
  4582. "description": "PHP SDK for QCloud COS",
  4583. "keywords": [
  4584. "cos",
  4585. "php",
  4586. "qcloud"
  4587. ],
  4588. "time": "2024-11-08T09:31:12+00:00"
  4589. },
  4590. {
  4591. "name": "ralouphie/getallheaders",
  4592. "version": "3.0.3",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/ralouphie/getallheaders.git",
  4596. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4601. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4602. "shasum": "",
  4603. "mirrors": [
  4604. {
  4605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4606. "preferred": true
  4607. }
  4608. ]
  4609. },
  4610. "require": {
  4611. "php": ">=5.6"
  4612. },
  4613. "require-dev": {
  4614. "php-coveralls/php-coveralls": "^2.1",
  4615. "phpunit/phpunit": "^5 || ^6.5"
  4616. },
  4617. "type": "library",
  4618. "autoload": {
  4619. "files": [
  4620. "src/getallheaders.php"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Ralph Khattar",
  4630. "email": "ralph.khattar@gmail.com"
  4631. }
  4632. ],
  4633. "description": "A polyfill for getallheaders.",
  4634. "support": {
  4635. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4636. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4637. },
  4638. "time": "2019-03-08T08:55:37+00:00"
  4639. },
  4640. {
  4641. "name": "ramsey/collection",
  4642. "version": "2.0.0",
  4643. "source": {
  4644. "type": "git",
  4645. "url": "https://github.com/ramsey/collection.git",
  4646. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4647. },
  4648. "dist": {
  4649. "type": "zip",
  4650. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4651. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4652. "shasum": "",
  4653. "mirrors": [
  4654. {
  4655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4656. "preferred": true
  4657. }
  4658. ]
  4659. },
  4660. "require": {
  4661. "php": "^8.1"
  4662. },
  4663. "require-dev": {
  4664. "captainhook/plugin-composer": "^5.3",
  4665. "ergebnis/composer-normalize": "^2.28.3",
  4666. "fakerphp/faker": "^1.21",
  4667. "hamcrest/hamcrest-php": "^2.0",
  4668. "jangregor/phpstan-prophecy": "^1.0",
  4669. "mockery/mockery": "^1.5",
  4670. "php-parallel-lint/php-console-highlighter": "^1.0",
  4671. "php-parallel-lint/php-parallel-lint": "^1.3",
  4672. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4673. "phpspec/prophecy-phpunit": "^2.0",
  4674. "phpstan/extension-installer": "^1.2",
  4675. "phpstan/phpstan": "^1.9",
  4676. "phpstan/phpstan-mockery": "^1.1",
  4677. "phpstan/phpstan-phpunit": "^1.3",
  4678. "phpunit/phpunit": "^9.5",
  4679. "psalm/plugin-mockery": "^1.1",
  4680. "psalm/plugin-phpunit": "^0.18.4",
  4681. "ramsey/coding-standard": "^2.0.3",
  4682. "ramsey/conventional-commits": "^1.3",
  4683. "vimeo/psalm": "^5.4"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "captainhook": {
  4688. "force-install": true
  4689. },
  4690. "ramsey/conventional-commits": {
  4691. "configFile": "conventional-commits.json"
  4692. }
  4693. },
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Ramsey\\Collection\\": "src/"
  4697. }
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "MIT"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "Ben Ramsey",
  4706. "email": "ben@benramsey.com",
  4707. "homepage": "https://benramsey.com"
  4708. }
  4709. ],
  4710. "description": "A PHP library for representing and manipulating collections.",
  4711. "keywords": [
  4712. "array",
  4713. "collection",
  4714. "hash",
  4715. "map",
  4716. "queue",
  4717. "set"
  4718. ],
  4719. "support": {
  4720. "issues": "https://github.com/ramsey/collection/issues",
  4721. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4722. },
  4723. "funding": [
  4724. {
  4725. "url": "https://github.com/ramsey",
  4726. "type": "github"
  4727. },
  4728. {
  4729. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4730. "type": "tidelift"
  4731. }
  4732. ],
  4733. "time": "2022-12-31T21:50:55+00:00"
  4734. },
  4735. {
  4736. "name": "ramsey/uuid",
  4737. "version": "4.7.5",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://github.com/ramsey/uuid.git",
  4741. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4746. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4747. "shasum": "",
  4748. "mirrors": [
  4749. {
  4750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4751. "preferred": true
  4752. }
  4753. ]
  4754. },
  4755. "require": {
  4756. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4757. "ext-json": "*",
  4758. "php": "^8.0",
  4759. "ramsey/collection": "^1.2 || ^2.0"
  4760. },
  4761. "replace": {
  4762. "rhumsaa/uuid": "self.version"
  4763. },
  4764. "require-dev": {
  4765. "captainhook/captainhook": "^5.10",
  4766. "captainhook/plugin-composer": "^5.3",
  4767. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4768. "doctrine/annotations": "^1.8",
  4769. "ergebnis/composer-normalize": "^2.15",
  4770. "mockery/mockery": "^1.3",
  4771. "paragonie/random-lib": "^2",
  4772. "php-mock/php-mock": "^2.2",
  4773. "php-mock/php-mock-mockery": "^1.3",
  4774. "php-parallel-lint/php-parallel-lint": "^1.1",
  4775. "phpbench/phpbench": "^1.0",
  4776. "phpstan/extension-installer": "^1.1",
  4777. "phpstan/phpstan": "^1.8",
  4778. "phpstan/phpstan-mockery": "^1.1",
  4779. "phpstan/phpstan-phpunit": "^1.1",
  4780. "phpunit/phpunit": "^8.5 || ^9",
  4781. "ramsey/composer-repl": "^1.4",
  4782. "slevomat/coding-standard": "^8.4",
  4783. "squizlabs/php_codesniffer": "^3.5",
  4784. "vimeo/psalm": "^4.9"
  4785. },
  4786. "suggest": {
  4787. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4788. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4789. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4790. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4791. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4792. },
  4793. "type": "library",
  4794. "extra": {
  4795. "captainhook": {
  4796. "force-install": true
  4797. }
  4798. },
  4799. "autoload": {
  4800. "files": [
  4801. "src/functions.php"
  4802. ],
  4803. "psr-4": {
  4804. "Ramsey\\Uuid\\": "src/"
  4805. }
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4812. "keywords": [
  4813. "guid",
  4814. "identifier",
  4815. "uuid"
  4816. ],
  4817. "support": {
  4818. "issues": "https://github.com/ramsey/uuid/issues",
  4819. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4820. },
  4821. "funding": [
  4822. {
  4823. "url": "https://github.com/ramsey",
  4824. "type": "github"
  4825. },
  4826. {
  4827. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4828. "type": "tidelift"
  4829. }
  4830. ],
  4831. "time": "2023-11-08T05:53:05+00:00"
  4832. },
  4833. {
  4834. "name": "simplesoftwareio/simple-qrcode",
  4835. "version": "4.2.0",
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://mirrors.cloud.tencent.com/repository/composer/simplesoftwareio/simple-qrcode/4.2.0/simplesoftwareio-simple-qrcode-4.2.0.zip",
  4839. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4840. "shasum": ""
  4841. },
  4842. "require": {
  4843. "bacon/bacon-qr-code": "^2.0",
  4844. "ext-gd": "*",
  4845. "php": ">=7.2|^8.0"
  4846. },
  4847. "require-dev": {
  4848. "mockery/mockery": "~1",
  4849. "phpunit/phpunit": "~9"
  4850. },
  4851. "suggest": {
  4852. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4853. "illuminate/support": "Allows for use within Laravel."
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "laravel": {
  4858. "providers": [
  4859. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4860. ],
  4861. "aliases": {
  4862. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4863. }
  4864. }
  4865. },
  4866. "autoload": {
  4867. "psr-4": {
  4868. "SimpleSoftwareIO\\QrCode\\": "src"
  4869. }
  4870. },
  4871. "license": [
  4872. "MIT"
  4873. ],
  4874. "authors": [
  4875. {
  4876. "name": "Simple Software LLC",
  4877. "email": "support@simplesoftware.io"
  4878. }
  4879. ],
  4880. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4881. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4882. "keywords": [
  4883. "Simple",
  4884. "generator",
  4885. "laravel",
  4886. "qrcode",
  4887. "wrapper"
  4888. ],
  4889. "time": "2021-02-08T20:43:55+00:00"
  4890. },
  4891. {
  4892. "name": "spatie/eloquent-sortable",
  4893. "version": "4.4.0",
  4894. "source": {
  4895. "type": "git",
  4896. "url": "https://github.com/spatie/eloquent-sortable.git",
  4897. "reference": "7a460c775d29741f42744bac52f993cb5b84be0f"
  4898. },
  4899. "dist": {
  4900. "type": "zip",
  4901. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/7a460c775d29741f42744bac52f993cb5b84be0f",
  4902. "reference": "7a460c775d29741f42744bac52f993cb5b84be0f",
  4903. "shasum": "",
  4904. "mirrors": [
  4905. {
  4906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4907. "preferred": true
  4908. }
  4909. ]
  4910. },
  4911. "require": {
  4912. "illuminate/database": "^9.31|^10.0|^11.0",
  4913. "illuminate/support": "^9.31|^10.0|^11.0",
  4914. "nesbot/carbon": "^2.63|^3.0",
  4915. "php": "^8.1",
  4916. "spatie/laravel-package-tools": "^1.9"
  4917. },
  4918. "require-dev": {
  4919. "orchestra/testbench": "^7.0|^8.0|^9.0",
  4920. "phpunit/phpunit": "^9.5|^10.0"
  4921. },
  4922. "type": "library",
  4923. "extra": {
  4924. "laravel": {
  4925. "providers": [
  4926. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4927. ]
  4928. }
  4929. },
  4930. "autoload": {
  4931. "psr-4": {
  4932. "Spatie\\EloquentSortable\\": "src/"
  4933. }
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Freek Van der Herten",
  4942. "email": "freek@spatie.be"
  4943. }
  4944. ],
  4945. "description": "Sortable behaviour for eloquent models",
  4946. "homepage": "https://github.com/spatie/eloquent-sortable",
  4947. "keywords": [
  4948. "behaviour",
  4949. "eloquent",
  4950. "laravel",
  4951. "model",
  4952. "sort",
  4953. "sortable"
  4954. ],
  4955. "support": {
  4956. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4957. "source": "https://github.com/spatie/eloquent-sortable/tree/4.4.0"
  4958. },
  4959. "funding": [
  4960. {
  4961. "url": "https://spatie.be/open-source/support-us",
  4962. "type": "custom"
  4963. },
  4964. {
  4965. "url": "https://github.com/spatie",
  4966. "type": "github"
  4967. }
  4968. ],
  4969. "time": "2024-06-04T11:09:54+00:00"
  4970. },
  4971. {
  4972. "name": "spatie/laravel-activitylog",
  4973. "version": "4.9.1",
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/laravel-activitylog/4.9.1/spatie-laravel-activitylog-4.9.1.zip",
  4977. "reference": "9abddaa9f2681d97943748c7fa04161cf4642e8c",
  4978. "shasum": ""
  4979. },
  4980. "require": {
  4981. "illuminate/config": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  4982. "illuminate/database": "^8.69 || ^9.27 || ^10.0 || ^11.0",
  4983. "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  4984. "php": "^8.1",
  4985. "spatie/laravel-package-tools": "^1.6.3"
  4986. },
  4987. "require-dev": {
  4988. "ext-json": "*",
  4989. "orchestra/testbench": "^6.23 || ^7.0 || ^8.0 || ^9.0",
  4990. "pestphp/pest": "^1.20 || ^2.0"
  4991. },
  4992. "type": "library",
  4993. "extra": {
  4994. "laravel": {
  4995. "providers": [
  4996. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  4997. ]
  4998. }
  4999. },
  5000. "autoload": {
  5001. "files": [
  5002. "src/helpers.php"
  5003. ],
  5004. "psr-4": {
  5005. "Spatie\\Activitylog\\": "src"
  5006. }
  5007. },
  5008. "license": [
  5009. "MIT"
  5010. ],
  5011. "authors": [
  5012. {
  5013. "name": "Freek Van der Herten",
  5014. "email": "freek@spatie.be",
  5015. "homepage": "https://spatie.be",
  5016. "role": "Developer"
  5017. },
  5018. {
  5019. "name": "Sebastian De Deyne",
  5020. "email": "sebastian@spatie.be",
  5021. "homepage": "https://spatie.be",
  5022. "role": "Developer"
  5023. },
  5024. {
  5025. "name": "Tom Witkowski",
  5026. "email": "dev.gummibeer@gmail.com",
  5027. "homepage": "https://gummibeer.de",
  5028. "role": "Developer"
  5029. }
  5030. ],
  5031. "description": "A very simple activity logger to monitor the users of your website or application",
  5032. "homepage": "https://github.com/spatie/activitylog",
  5033. "keywords": [
  5034. "activity",
  5035. "laravel",
  5036. "log",
  5037. "spatie",
  5038. "user"
  5039. ],
  5040. "time": "2024-11-18T11:31:57+00:00"
  5041. },
  5042. {
  5043. "name": "spatie/laravel-http-logger",
  5044. "version": "1.11.0",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://github.com/spatie/laravel-http-logger.git",
  5048. "reference": "96c18c32999e2e4142e157a71f51d467da29fa98"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://api.github.com/repos/spatie/laravel-http-logger/zipball/96c18c32999e2e4142e157a71f51d467da29fa98",
  5053. "reference": "96c18c32999e2e4142e157a71f51d467da29fa98",
  5054. "shasum": "",
  5055. "mirrors": [
  5056. {
  5057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5058. "preferred": true
  5059. }
  5060. ]
  5061. },
  5062. "require": {
  5063. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  5064. "php": "^7.4|^8.0"
  5065. },
  5066. "require-dev": {
  5067. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  5068. "pestphp/pest": "^1.22|^2.34",
  5069. "phpunit/phpunit": "^9.0|^10.5"
  5070. },
  5071. "type": "library",
  5072. "extra": {
  5073. "laravel": {
  5074. "providers": [
  5075. "Spatie\\HttpLogger\\HttpLoggerServiceProvider"
  5076. ]
  5077. }
  5078. },
  5079. "autoload": {
  5080. "psr-4": {
  5081. "Spatie\\HttpLogger\\": "src"
  5082. }
  5083. },
  5084. "notification-url": "https://packagist.org/downloads/",
  5085. "license": [
  5086. "MIT"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Brent Roose",
  5091. "email": "brent@spatie.be",
  5092. "homepage": "https://spatie.be",
  5093. "role": "Developer"
  5094. }
  5095. ],
  5096. "description": "A Laravel package to log HTTP requests",
  5097. "homepage": "https://github.com/spatie/laravel-http-logger",
  5098. "keywords": [
  5099. "laravel-http-logger",
  5100. "spatie"
  5101. ],
  5102. "support": {
  5103. "issues": "https://github.com/spatie/laravel-http-logger/issues",
  5104. "source": "https://github.com/spatie/laravel-http-logger/tree/1.11.0"
  5105. },
  5106. "funding": [
  5107. {
  5108. "url": "https://spatie.be/open-source/support-us",
  5109. "type": "custom"
  5110. }
  5111. ],
  5112. "time": "2024-03-02T05:42:55+00:00"
  5113. },
  5114. {
  5115. "name": "spatie/laravel-package-tools",
  5116. "version": "1.16.4",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/spatie/laravel-package-tools.git",
  5120. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  5125. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  5126. "shasum": "",
  5127. "mirrors": [
  5128. {
  5129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5130. "preferred": true
  5131. }
  5132. ]
  5133. },
  5134. "require": {
  5135. "illuminate/contracts": "^9.28|^10.0|^11.0",
  5136. "php": "^8.0"
  5137. },
  5138. "require-dev": {
  5139. "mockery/mockery": "^1.5",
  5140. "orchestra/testbench": "^7.7|^8.0",
  5141. "pestphp/pest": "^1.22",
  5142. "phpunit/phpunit": "^9.5.24",
  5143. "spatie/pest-plugin-test-time": "^1.1"
  5144. },
  5145. "type": "library",
  5146. "autoload": {
  5147. "psr-4": {
  5148. "Spatie\\LaravelPackageTools\\": "src"
  5149. }
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Freek Van der Herten",
  5158. "email": "freek@spatie.be",
  5159. "role": "Developer"
  5160. }
  5161. ],
  5162. "description": "Tools for creating Laravel packages",
  5163. "homepage": "https://github.com/spatie/laravel-package-tools",
  5164. "keywords": [
  5165. "laravel-package-tools",
  5166. "spatie"
  5167. ],
  5168. "support": {
  5169. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5170. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
  5171. },
  5172. "funding": [
  5173. {
  5174. "url": "https://github.com/spatie",
  5175. "type": "github"
  5176. }
  5177. ],
  5178. "time": "2024-03-20T07:29:11+00:00"
  5179. },
  5180. {
  5181. "name": "spatie/laravel-permission",
  5182. "version": "6.10.1",
  5183. "dist": {
  5184. "type": "zip",
  5185. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/laravel-permission/6.10.1/spatie-laravel-permission-6.10.1.zip",
  5186. "reference": "8bb69d6d67387f7a00d93a2f5fab98860f06e704",
  5187. "shasum": ""
  5188. },
  5189. "require": {
  5190. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  5191. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  5192. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  5193. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  5194. "php": "^8.0"
  5195. },
  5196. "require-dev": {
  5197. "larastan/larastan": "^1.0|^2.0",
  5198. "laravel/passport": "^11.0|^12.0",
  5199. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  5200. "phpunit/phpunit": "^9.4|^10.1"
  5201. },
  5202. "type": "library",
  5203. "extra": {
  5204. "laravel": {
  5205. "providers": [
  5206. "Spatie\\Permission\\PermissionServiceProvider"
  5207. ]
  5208. },
  5209. "branch-alias": {
  5210. "dev-main": "6.x-dev",
  5211. "dev-master": "6.x-dev"
  5212. }
  5213. },
  5214. "autoload": {
  5215. "files": [
  5216. "src/helpers.php"
  5217. ],
  5218. "psr-4": {
  5219. "Spatie\\Permission\\": "src"
  5220. }
  5221. },
  5222. "license": [
  5223. "MIT"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "Freek Van der Herten",
  5228. "email": "freek@spatie.be",
  5229. "homepage": "https://spatie.be",
  5230. "role": "Developer"
  5231. }
  5232. ],
  5233. "description": "Permission handling for Laravel 8.0 and up",
  5234. "homepage": "https://github.com/spatie/laravel-permission",
  5235. "keywords": [
  5236. "acl",
  5237. "laravel",
  5238. "permission",
  5239. "permissions",
  5240. "rbac",
  5241. "roles",
  5242. "security",
  5243. "spatie"
  5244. ],
  5245. "time": "2024-11-08T18:45:41+00:00"
  5246. },
  5247. {
  5248. "name": "symfony/console",
  5249. "version": "v6.4.13",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://github.com/symfony/console.git",
  5253. "reference": "f793dd5a7d9ae9923e35d0503d08ba734cec1d79"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://api.github.com/repos/symfony/console/zipball/f793dd5a7d9ae9923e35d0503d08ba734cec1d79",
  5258. "reference": "f793dd5a7d9ae9923e35d0503d08ba734cec1d79",
  5259. "shasum": "",
  5260. "mirrors": [
  5261. {
  5262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5263. "preferred": true
  5264. }
  5265. ]
  5266. },
  5267. "require": {
  5268. "php": ">=8.1",
  5269. "symfony/deprecation-contracts": "^2.5|^3",
  5270. "symfony/polyfill-mbstring": "~1.0",
  5271. "symfony/service-contracts": "^2.5|^3",
  5272. "symfony/string": "^5.4|^6.0|^7.0"
  5273. },
  5274. "conflict": {
  5275. "symfony/dependency-injection": "<5.4",
  5276. "symfony/dotenv": "<5.4",
  5277. "symfony/event-dispatcher": "<5.4",
  5278. "symfony/lock": "<5.4",
  5279. "symfony/process": "<5.4"
  5280. },
  5281. "provide": {
  5282. "psr/log-implementation": "1.0|2.0|3.0"
  5283. },
  5284. "require-dev": {
  5285. "psr/log": "^1|^2|^3",
  5286. "symfony/config": "^5.4|^6.0|^7.0",
  5287. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5288. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5289. "symfony/http-foundation": "^6.4|^7.0",
  5290. "symfony/http-kernel": "^6.4|^7.0",
  5291. "symfony/lock": "^5.4|^6.0|^7.0",
  5292. "symfony/messenger": "^5.4|^6.0|^7.0",
  5293. "symfony/process": "^5.4|^6.0|^7.0",
  5294. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5295. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5296. },
  5297. "type": "library",
  5298. "autoload": {
  5299. "psr-4": {
  5300. "Symfony\\Component\\Console\\": ""
  5301. },
  5302. "exclude-from-classmap": [
  5303. "/Tests/"
  5304. ]
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "MIT"
  5309. ],
  5310. "authors": [
  5311. {
  5312. "name": "Fabien Potencier",
  5313. "email": "fabien@symfony.com"
  5314. },
  5315. {
  5316. "name": "Symfony Community",
  5317. "homepage": "https://symfony.com/contributors"
  5318. }
  5319. ],
  5320. "description": "Eases the creation of beautiful and testable command line interfaces",
  5321. "homepage": "https://symfony.com",
  5322. "keywords": [
  5323. "cli",
  5324. "command-line",
  5325. "console",
  5326. "terminal"
  5327. ],
  5328. "support": {
  5329. "source": "https://github.com/symfony/console/tree/v6.4.13"
  5330. },
  5331. "funding": [
  5332. {
  5333. "url": "https://symfony.com/sponsor",
  5334. "type": "custom"
  5335. },
  5336. {
  5337. "url": "https://github.com/fabpot",
  5338. "type": "github"
  5339. },
  5340. {
  5341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5342. "type": "tidelift"
  5343. }
  5344. ],
  5345. "time": "2024-10-09T08:40:40+00:00"
  5346. },
  5347. {
  5348. "name": "symfony/css-selector",
  5349. "version": "v6.4.13",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/symfony/css-selector.git",
  5353. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  5358. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "php": ">=8.1"
  5369. },
  5370. "type": "library",
  5371. "autoload": {
  5372. "psr-4": {
  5373. "Symfony\\Component\\CssSelector\\": ""
  5374. },
  5375. "exclude-from-classmap": [
  5376. "/Tests/"
  5377. ]
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Fabien Potencier",
  5386. "email": "fabien@symfony.com"
  5387. },
  5388. {
  5389. "name": "Jean-François Simon",
  5390. "email": "jeanfrancois.simon@sensiolabs.com"
  5391. },
  5392. {
  5393. "name": "Symfony Community",
  5394. "homepage": "https://symfony.com/contributors"
  5395. }
  5396. ],
  5397. "description": "Converts CSS selectors to XPath expressions",
  5398. "homepage": "https://symfony.com",
  5399. "support": {
  5400. "source": "https://github.com/symfony/css-selector/tree/v6.4.13"
  5401. },
  5402. "funding": [
  5403. {
  5404. "url": "https://symfony.com/sponsor",
  5405. "type": "custom"
  5406. },
  5407. {
  5408. "url": "https://github.com/fabpot",
  5409. "type": "github"
  5410. },
  5411. {
  5412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5413. "type": "tidelift"
  5414. }
  5415. ],
  5416. "time": "2024-09-25T14:18:03+00:00"
  5417. },
  5418. {
  5419. "name": "symfony/deprecation-contracts",
  5420. "version": "v3.3.0",
  5421. "source": {
  5422. "type": "git",
  5423. "url": "https://github.com/symfony/deprecation-contracts.git",
  5424. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5425. },
  5426. "dist": {
  5427. "type": "zip",
  5428. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5429. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5430. "shasum": "",
  5431. "mirrors": [
  5432. {
  5433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5434. "preferred": true
  5435. }
  5436. ]
  5437. },
  5438. "require": {
  5439. "php": ">=8.1"
  5440. },
  5441. "type": "library",
  5442. "extra": {
  5443. "branch-alias": {
  5444. "dev-main": "3.4-dev"
  5445. },
  5446. "thanks": {
  5447. "name": "symfony/contracts",
  5448. "url": "https://github.com/symfony/contracts"
  5449. }
  5450. },
  5451. "autoload": {
  5452. "files": [
  5453. "function.php"
  5454. ]
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "MIT"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Nicolas Grekas",
  5463. "email": "p@tchwork.com"
  5464. },
  5465. {
  5466. "name": "Symfony Community",
  5467. "homepage": "https://symfony.com/contributors"
  5468. }
  5469. ],
  5470. "description": "A generic function and convention to trigger deprecation notices",
  5471. "homepage": "https://symfony.com",
  5472. "support": {
  5473. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5474. },
  5475. "funding": [
  5476. {
  5477. "url": "https://symfony.com/sponsor",
  5478. "type": "custom"
  5479. },
  5480. {
  5481. "url": "https://github.com/fabpot",
  5482. "type": "github"
  5483. },
  5484. {
  5485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5486. "type": "tidelift"
  5487. }
  5488. ],
  5489. "time": "2023-05-23T14:45:45+00:00"
  5490. },
  5491. {
  5492. "name": "symfony/error-handler",
  5493. "version": "v6.4.13",
  5494. "source": {
  5495. "type": "git",
  5496. "url": "https://github.com/symfony/error-handler.git",
  5497. "reference": "e3c78742f86a5b65fe2ac4c4b6b776d92fd7ca0c"
  5498. },
  5499. "dist": {
  5500. "type": "zip",
  5501. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e3c78742f86a5b65fe2ac4c4b6b776d92fd7ca0c",
  5502. "reference": "e3c78742f86a5b65fe2ac4c4b6b776d92fd7ca0c",
  5503. "shasum": "",
  5504. "mirrors": [
  5505. {
  5506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5507. "preferred": true
  5508. }
  5509. ]
  5510. },
  5511. "require": {
  5512. "php": ">=8.1",
  5513. "psr/log": "^1|^2|^3",
  5514. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5515. },
  5516. "conflict": {
  5517. "symfony/deprecation-contracts": "<2.5",
  5518. "symfony/http-kernel": "<6.4"
  5519. },
  5520. "require-dev": {
  5521. "symfony/deprecation-contracts": "^2.5|^3",
  5522. "symfony/http-kernel": "^6.4|^7.0",
  5523. "symfony/serializer": "^5.4|^6.0|^7.0"
  5524. },
  5525. "bin": [
  5526. "Resources/bin/patch-type-declarations"
  5527. ],
  5528. "type": "library",
  5529. "autoload": {
  5530. "psr-4": {
  5531. "Symfony\\Component\\ErrorHandler\\": ""
  5532. },
  5533. "exclude-from-classmap": [
  5534. "/Tests/"
  5535. ]
  5536. },
  5537. "notification-url": "https://packagist.org/downloads/",
  5538. "license": [
  5539. "MIT"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Fabien Potencier",
  5544. "email": "fabien@symfony.com"
  5545. },
  5546. {
  5547. "name": "Symfony Community",
  5548. "homepage": "https://symfony.com/contributors"
  5549. }
  5550. ],
  5551. "description": "Provides tools to manage errors and ease debugging PHP code",
  5552. "homepage": "https://symfony.com",
  5553. "support": {
  5554. "source": "https://github.com/symfony/error-handler/tree/v6.4.13"
  5555. },
  5556. "funding": [
  5557. {
  5558. "url": "https://symfony.com/sponsor",
  5559. "type": "custom"
  5560. },
  5561. {
  5562. "url": "https://github.com/fabpot",
  5563. "type": "github"
  5564. },
  5565. {
  5566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5567. "type": "tidelift"
  5568. }
  5569. ],
  5570. "time": "2024-09-25T14:18:03+00:00"
  5571. },
  5572. {
  5573. "name": "symfony/event-dispatcher",
  5574. "version": "v6.4.13",
  5575. "source": {
  5576. "type": "git",
  5577. "url": "https://github.com/symfony/event-dispatcher.git",
  5578. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  5579. },
  5580. "dist": {
  5581. "type": "zip",
  5582. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  5583. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  5584. "shasum": "",
  5585. "mirrors": [
  5586. {
  5587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5588. "preferred": true
  5589. }
  5590. ]
  5591. },
  5592. "require": {
  5593. "php": ">=8.1",
  5594. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5595. },
  5596. "conflict": {
  5597. "symfony/dependency-injection": "<5.4",
  5598. "symfony/service-contracts": "<2.5"
  5599. },
  5600. "provide": {
  5601. "psr/event-dispatcher-implementation": "1.0",
  5602. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5603. },
  5604. "require-dev": {
  5605. "psr/log": "^1|^2|^3",
  5606. "symfony/config": "^5.4|^6.0|^7.0",
  5607. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5608. "symfony/error-handler": "^5.4|^6.0|^7.0",
  5609. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5610. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5611. "symfony/service-contracts": "^2.5|^3",
  5612. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  5613. },
  5614. "type": "library",
  5615. "autoload": {
  5616. "psr-4": {
  5617. "Symfony\\Component\\EventDispatcher\\": ""
  5618. },
  5619. "exclude-from-classmap": [
  5620. "/Tests/"
  5621. ]
  5622. },
  5623. "notification-url": "https://packagist.org/downloads/",
  5624. "license": [
  5625. "MIT"
  5626. ],
  5627. "authors": [
  5628. {
  5629. "name": "Fabien Potencier",
  5630. "email": "fabien@symfony.com"
  5631. },
  5632. {
  5633. "name": "Symfony Community",
  5634. "homepage": "https://symfony.com/contributors"
  5635. }
  5636. ],
  5637. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5638. "homepage": "https://symfony.com",
  5639. "support": {
  5640. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  5641. },
  5642. "funding": [
  5643. {
  5644. "url": "https://symfony.com/sponsor",
  5645. "type": "custom"
  5646. },
  5647. {
  5648. "url": "https://github.com/fabpot",
  5649. "type": "github"
  5650. },
  5651. {
  5652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5653. "type": "tidelift"
  5654. }
  5655. ],
  5656. "time": "2024-09-25T14:18:03+00:00"
  5657. },
  5658. {
  5659. "name": "symfony/event-dispatcher-contracts",
  5660. "version": "v3.4.0",
  5661. "source": {
  5662. "type": "git",
  5663. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5664. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  5665. },
  5666. "dist": {
  5667. "type": "zip",
  5668. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  5669. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  5670. "shasum": "",
  5671. "mirrors": [
  5672. {
  5673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5674. "preferred": true
  5675. }
  5676. ]
  5677. },
  5678. "require": {
  5679. "php": ">=8.1",
  5680. "psr/event-dispatcher": "^1"
  5681. },
  5682. "type": "library",
  5683. "extra": {
  5684. "branch-alias": {
  5685. "dev-main": "3.4-dev"
  5686. },
  5687. "thanks": {
  5688. "name": "symfony/contracts",
  5689. "url": "https://github.com/symfony/contracts"
  5690. }
  5691. },
  5692. "autoload": {
  5693. "psr-4": {
  5694. "Symfony\\Contracts\\EventDispatcher\\": ""
  5695. }
  5696. },
  5697. "notification-url": "https://packagist.org/downloads/",
  5698. "license": [
  5699. "MIT"
  5700. ],
  5701. "authors": [
  5702. {
  5703. "name": "Nicolas Grekas",
  5704. "email": "p@tchwork.com"
  5705. },
  5706. {
  5707. "name": "Symfony Community",
  5708. "homepage": "https://symfony.com/contributors"
  5709. }
  5710. ],
  5711. "description": "Generic abstractions related to dispatching event",
  5712. "homepage": "https://symfony.com",
  5713. "keywords": [
  5714. "abstractions",
  5715. "contracts",
  5716. "decoupling",
  5717. "interfaces",
  5718. "interoperability",
  5719. "standards"
  5720. ],
  5721. "support": {
  5722. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  5723. },
  5724. "funding": [
  5725. {
  5726. "url": "https://symfony.com/sponsor",
  5727. "type": "custom"
  5728. },
  5729. {
  5730. "url": "https://github.com/fabpot",
  5731. "type": "github"
  5732. },
  5733. {
  5734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5735. "type": "tidelift"
  5736. }
  5737. ],
  5738. "time": "2023-05-23T14:45:45+00:00"
  5739. },
  5740. {
  5741. "name": "symfony/finder",
  5742. "version": "v6.4.13",
  5743. "source": {
  5744. "type": "git",
  5745. "url": "https://github.com/symfony/finder.git",
  5746. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  5747. },
  5748. "dist": {
  5749. "type": "zip",
  5750. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5751. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5752. "shasum": "",
  5753. "mirrors": [
  5754. {
  5755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5756. "preferred": true
  5757. }
  5758. ]
  5759. },
  5760. "require": {
  5761. "php": ">=8.1"
  5762. },
  5763. "require-dev": {
  5764. "symfony/filesystem": "^6.0|^7.0"
  5765. },
  5766. "type": "library",
  5767. "autoload": {
  5768. "psr-4": {
  5769. "Symfony\\Component\\Finder\\": ""
  5770. },
  5771. "exclude-from-classmap": [
  5772. "/Tests/"
  5773. ]
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Fabien Potencier",
  5782. "email": "fabien@symfony.com"
  5783. },
  5784. {
  5785. "name": "Symfony Community",
  5786. "homepage": "https://symfony.com/contributors"
  5787. }
  5788. ],
  5789. "description": "Finds files and directories via an intuitive fluent interface",
  5790. "homepage": "https://symfony.com",
  5791. "support": {
  5792. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  5793. },
  5794. "funding": [
  5795. {
  5796. "url": "https://symfony.com/sponsor",
  5797. "type": "custom"
  5798. },
  5799. {
  5800. "url": "https://github.com/fabpot",
  5801. "type": "github"
  5802. },
  5803. {
  5804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5805. "type": "tidelift"
  5806. }
  5807. ],
  5808. "time": "2024-10-01T08:30:56+00:00"
  5809. },
  5810. {
  5811. "name": "symfony/http-foundation",
  5812. "version": "v6.4.13",
  5813. "source": {
  5814. "type": "git",
  5815. "url": "https://github.com/symfony/http-foundation.git",
  5816. "reference": "4c0341b3e0a7291e752c69d2a1ed9a84b68d604c"
  5817. },
  5818. "dist": {
  5819. "type": "zip",
  5820. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4c0341b3e0a7291e752c69d2a1ed9a84b68d604c",
  5821. "reference": "4c0341b3e0a7291e752c69d2a1ed9a84b68d604c",
  5822. "shasum": "",
  5823. "mirrors": [
  5824. {
  5825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5826. "preferred": true
  5827. }
  5828. ]
  5829. },
  5830. "require": {
  5831. "php": ">=8.1",
  5832. "symfony/deprecation-contracts": "^2.5|^3",
  5833. "symfony/polyfill-mbstring": "~1.1",
  5834. "symfony/polyfill-php83": "^1.27"
  5835. },
  5836. "conflict": {
  5837. "symfony/cache": "<6.3"
  5838. },
  5839. "require-dev": {
  5840. "doctrine/dbal": "^2.13.1|^3|^4",
  5841. "predis/predis": "^1.1|^2.0",
  5842. "symfony/cache": "^6.3|^7.0",
  5843. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5844. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5845. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  5846. "symfony/mime": "^5.4|^6.0|^7.0",
  5847. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  5848. },
  5849. "type": "library",
  5850. "autoload": {
  5851. "psr-4": {
  5852. "Symfony\\Component\\HttpFoundation\\": ""
  5853. },
  5854. "exclude-from-classmap": [
  5855. "/Tests/"
  5856. ]
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "MIT"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "Fabien Potencier",
  5865. "email": "fabien@symfony.com"
  5866. },
  5867. {
  5868. "name": "Symfony Community",
  5869. "homepage": "https://symfony.com/contributors"
  5870. }
  5871. ],
  5872. "description": "Defines an object-oriented layer for the HTTP specification",
  5873. "homepage": "https://symfony.com",
  5874. "support": {
  5875. "source": "https://github.com/symfony/http-foundation/tree/v6.4.13"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2024-10-11T19:20:58+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/http-kernel",
  5895. "version": "v6.4.13",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/http-kernel.git",
  5899. "reference": "4474015c363ec0cd3bf47d55657e68630dbae66e"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4474015c363ec0cd3bf47d55657e68630dbae66e",
  5904. "reference": "4474015c363ec0cd3bf47d55657e68630dbae66e",
  5905. "shasum": "",
  5906. "mirrors": [
  5907. {
  5908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5909. "preferred": true
  5910. }
  5911. ]
  5912. },
  5913. "require": {
  5914. "php": ">=8.1",
  5915. "psr/log": "^1|^2|^3",
  5916. "symfony/deprecation-contracts": "^2.5|^3",
  5917. "symfony/error-handler": "^6.4|^7.0",
  5918. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5919. "symfony/http-foundation": "^6.4|^7.0",
  5920. "symfony/polyfill-ctype": "^1.8"
  5921. },
  5922. "conflict": {
  5923. "symfony/browser-kit": "<5.4",
  5924. "symfony/cache": "<5.4",
  5925. "symfony/config": "<6.1",
  5926. "symfony/console": "<5.4",
  5927. "symfony/dependency-injection": "<6.4",
  5928. "symfony/doctrine-bridge": "<5.4",
  5929. "symfony/form": "<5.4",
  5930. "symfony/http-client": "<5.4",
  5931. "symfony/http-client-contracts": "<2.5",
  5932. "symfony/mailer": "<5.4",
  5933. "symfony/messenger": "<5.4",
  5934. "symfony/translation": "<5.4",
  5935. "symfony/translation-contracts": "<2.5",
  5936. "symfony/twig-bridge": "<5.4",
  5937. "symfony/validator": "<6.4",
  5938. "symfony/var-dumper": "<6.3",
  5939. "twig/twig": "<2.13"
  5940. },
  5941. "provide": {
  5942. "psr/log-implementation": "1.0|2.0|3.0"
  5943. },
  5944. "require-dev": {
  5945. "psr/cache": "^1.0|^2.0|^3.0",
  5946. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5947. "symfony/clock": "^6.2|^7.0",
  5948. "symfony/config": "^6.1|^7.0",
  5949. "symfony/console": "^5.4|^6.0|^7.0",
  5950. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5951. "symfony/dependency-injection": "^6.4|^7.0",
  5952. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5953. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5954. "symfony/finder": "^5.4|^6.0|^7.0",
  5955. "symfony/http-client-contracts": "^2.5|^3",
  5956. "symfony/process": "^5.4|^6.0|^7.0",
  5957. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5958. "symfony/routing": "^5.4|^6.0|^7.0",
  5959. "symfony/serializer": "^6.4.4|^7.0.4",
  5960. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5961. "symfony/translation": "^5.4|^6.0|^7.0",
  5962. "symfony/translation-contracts": "^2.5|^3",
  5963. "symfony/uid": "^5.4|^6.0|^7.0",
  5964. "symfony/validator": "^6.4|^7.0",
  5965. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  5966. "symfony/var-exporter": "^6.2|^7.0",
  5967. "twig/twig": "^2.13|^3.0.4"
  5968. },
  5969. "type": "library",
  5970. "autoload": {
  5971. "psr-4": {
  5972. "Symfony\\Component\\HttpKernel\\": ""
  5973. },
  5974. "exclude-from-classmap": [
  5975. "/Tests/"
  5976. ]
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Fabien Potencier",
  5985. "email": "fabien@symfony.com"
  5986. },
  5987. {
  5988. "name": "Symfony Community",
  5989. "homepage": "https://symfony.com/contributors"
  5990. }
  5991. ],
  5992. "description": "Provides a structured process for converting a Request into a Response",
  5993. "homepage": "https://symfony.com",
  5994. "support": {
  5995. "source": "https://github.com/symfony/http-kernel/tree/v6.4.13"
  5996. },
  5997. "funding": [
  5998. {
  5999. "url": "https://symfony.com/sponsor",
  6000. "type": "custom"
  6001. },
  6002. {
  6003. "url": "https://github.com/fabpot",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2024-10-27T13:00:29+00:00"
  6012. },
  6013. {
  6014. "name": "symfony/mailer",
  6015. "version": "v6.4.8",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/symfony/mailer.git",
  6019. "reference": "76326421d44c07f7824b19487cfbf87870b37efc"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc",
  6024. "reference": "76326421d44c07f7824b19487cfbf87870b37efc",
  6025. "shasum": "",
  6026. "mirrors": [
  6027. {
  6028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6029. "preferred": true
  6030. }
  6031. ]
  6032. },
  6033. "require": {
  6034. "egulias/email-validator": "^2.1.10|^3|^4",
  6035. "php": ">=8.1",
  6036. "psr/event-dispatcher": "^1",
  6037. "psr/log": "^1|^2|^3",
  6038. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6039. "symfony/mime": "^6.2|^7.0",
  6040. "symfony/service-contracts": "^2.5|^3"
  6041. },
  6042. "conflict": {
  6043. "symfony/http-client-contracts": "<2.5",
  6044. "symfony/http-kernel": "<5.4",
  6045. "symfony/messenger": "<6.2",
  6046. "symfony/mime": "<6.2",
  6047. "symfony/twig-bridge": "<6.2.1"
  6048. },
  6049. "require-dev": {
  6050. "symfony/console": "^5.4|^6.0|^7.0",
  6051. "symfony/http-client": "^5.4|^6.0|^7.0",
  6052. "symfony/messenger": "^6.2|^7.0",
  6053. "symfony/twig-bridge": "^6.2|^7.0"
  6054. },
  6055. "type": "library",
  6056. "autoload": {
  6057. "psr-4": {
  6058. "Symfony\\Component\\Mailer\\": ""
  6059. },
  6060. "exclude-from-classmap": [
  6061. "/Tests/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Fabien Potencier",
  6071. "email": "fabien@symfony.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Helps sending emails",
  6079. "homepage": "https://symfony.com",
  6080. "support": {
  6081. "source": "https://github.com/symfony/mailer/tree/v6.4.8"
  6082. },
  6083. "funding": [
  6084. {
  6085. "url": "https://symfony.com/sponsor",
  6086. "type": "custom"
  6087. },
  6088. {
  6089. "url": "https://github.com/fabpot",
  6090. "type": "github"
  6091. },
  6092. {
  6093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6094. "type": "tidelift"
  6095. }
  6096. ],
  6097. "time": "2024-05-31T14:49:08+00:00"
  6098. },
  6099. {
  6100. "name": "symfony/mime",
  6101. "version": "v6.4.13",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/symfony/mime.git",
  6105. "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855",
  6110. "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855",
  6111. "shasum": "",
  6112. "mirrors": [
  6113. {
  6114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6115. "preferred": true
  6116. }
  6117. ]
  6118. },
  6119. "require": {
  6120. "php": ">=8.1",
  6121. "symfony/deprecation-contracts": "^2.5|^3",
  6122. "symfony/polyfill-intl-idn": "^1.10",
  6123. "symfony/polyfill-mbstring": "^1.0"
  6124. },
  6125. "conflict": {
  6126. "egulias/email-validator": "~3.0.0",
  6127. "phpdocumentor/reflection-docblock": "<3.2.2",
  6128. "phpdocumentor/type-resolver": "<1.4.0",
  6129. "symfony/mailer": "<5.4",
  6130. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6131. },
  6132. "require-dev": {
  6133. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6134. "league/html-to-markdown": "^5.0",
  6135. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6136. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6137. "symfony/process": "^5.4|^6.4|^7.0",
  6138. "symfony/property-access": "^5.4|^6.0|^7.0",
  6139. "symfony/property-info": "^5.4|^6.0|^7.0",
  6140. "symfony/serializer": "^6.4.3|^7.0.3"
  6141. },
  6142. "type": "library",
  6143. "autoload": {
  6144. "psr-4": {
  6145. "Symfony\\Component\\Mime\\": ""
  6146. },
  6147. "exclude-from-classmap": [
  6148. "/Tests/"
  6149. ]
  6150. },
  6151. "notification-url": "https://packagist.org/downloads/",
  6152. "license": [
  6153. "MIT"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "Fabien Potencier",
  6158. "email": "fabien@symfony.com"
  6159. },
  6160. {
  6161. "name": "Symfony Community",
  6162. "homepage": "https://symfony.com/contributors"
  6163. }
  6164. ],
  6165. "description": "Allows manipulating MIME messages",
  6166. "homepage": "https://symfony.com",
  6167. "keywords": [
  6168. "mime",
  6169. "mime-type"
  6170. ],
  6171. "support": {
  6172. "source": "https://github.com/symfony/mime/tree/v6.4.13"
  6173. },
  6174. "funding": [
  6175. {
  6176. "url": "https://symfony.com/sponsor",
  6177. "type": "custom"
  6178. },
  6179. {
  6180. "url": "https://github.com/fabpot",
  6181. "type": "github"
  6182. },
  6183. {
  6184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6185. "type": "tidelift"
  6186. }
  6187. ],
  6188. "time": "2024-10-25T15:07:50+00:00"
  6189. },
  6190. {
  6191. "name": "symfony/polyfill-ctype",
  6192. "version": "v1.31.0",
  6193. "source": {
  6194. "type": "git",
  6195. "url": "https://github.com/symfony/polyfill-ctype.git",
  6196. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6197. },
  6198. "dist": {
  6199. "type": "zip",
  6200. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6201. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6202. "shasum": "",
  6203. "mirrors": [
  6204. {
  6205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6206. "preferred": true
  6207. }
  6208. ]
  6209. },
  6210. "require": {
  6211. "php": ">=7.2"
  6212. },
  6213. "provide": {
  6214. "ext-ctype": "*"
  6215. },
  6216. "suggest": {
  6217. "ext-ctype": "For best performance"
  6218. },
  6219. "type": "library",
  6220. "extra": {
  6221. "thanks": {
  6222. "name": "symfony/polyfill",
  6223. "url": "https://github.com/symfony/polyfill"
  6224. }
  6225. },
  6226. "autoload": {
  6227. "files": [
  6228. "bootstrap.php"
  6229. ],
  6230. "psr-4": {
  6231. "Symfony\\Polyfill\\Ctype\\": ""
  6232. }
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "Gert de Pagter",
  6241. "email": "BackEndTea@gmail.com"
  6242. },
  6243. {
  6244. "name": "Symfony Community",
  6245. "homepage": "https://symfony.com/contributors"
  6246. }
  6247. ],
  6248. "description": "Symfony polyfill for ctype functions",
  6249. "homepage": "https://symfony.com",
  6250. "keywords": [
  6251. "compatibility",
  6252. "ctype",
  6253. "polyfill",
  6254. "portable"
  6255. ],
  6256. "support": {
  6257. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6258. },
  6259. "funding": [
  6260. {
  6261. "url": "https://symfony.com/sponsor",
  6262. "type": "custom"
  6263. },
  6264. {
  6265. "url": "https://github.com/fabpot",
  6266. "type": "github"
  6267. },
  6268. {
  6269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6270. "type": "tidelift"
  6271. }
  6272. ],
  6273. "time": "2024-09-09T11:45:10+00:00"
  6274. },
  6275. {
  6276. "name": "symfony/polyfill-intl-grapheme",
  6277. "version": "v1.31.0",
  6278. "source": {
  6279. "type": "git",
  6280. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6281. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6282. },
  6283. "dist": {
  6284. "type": "zip",
  6285. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6286. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6287. "shasum": "",
  6288. "mirrors": [
  6289. {
  6290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6291. "preferred": true
  6292. }
  6293. ]
  6294. },
  6295. "require": {
  6296. "php": ">=7.2"
  6297. },
  6298. "suggest": {
  6299. "ext-intl": "For best performance"
  6300. },
  6301. "type": "library",
  6302. "extra": {
  6303. "thanks": {
  6304. "name": "symfony/polyfill",
  6305. "url": "https://github.com/symfony/polyfill"
  6306. }
  6307. },
  6308. "autoload": {
  6309. "files": [
  6310. "bootstrap.php"
  6311. ],
  6312. "psr-4": {
  6313. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6314. }
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Nicolas Grekas",
  6323. "email": "p@tchwork.com"
  6324. },
  6325. {
  6326. "name": "Symfony Community",
  6327. "homepage": "https://symfony.com/contributors"
  6328. }
  6329. ],
  6330. "description": "Symfony polyfill for intl's grapheme_* functions",
  6331. "homepage": "https://symfony.com",
  6332. "keywords": [
  6333. "compatibility",
  6334. "grapheme",
  6335. "intl",
  6336. "polyfill",
  6337. "portable",
  6338. "shim"
  6339. ],
  6340. "support": {
  6341. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6342. },
  6343. "funding": [
  6344. {
  6345. "url": "https://symfony.com/sponsor",
  6346. "type": "custom"
  6347. },
  6348. {
  6349. "url": "https://github.com/fabpot",
  6350. "type": "github"
  6351. },
  6352. {
  6353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6354. "type": "tidelift"
  6355. }
  6356. ],
  6357. "time": "2024-09-09T11:45:10+00:00"
  6358. },
  6359. {
  6360. "name": "symfony/polyfill-intl-idn",
  6361. "version": "v1.31.0",
  6362. "source": {
  6363. "type": "git",
  6364. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6365. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6366. },
  6367. "dist": {
  6368. "type": "zip",
  6369. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6370. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6371. "shasum": "",
  6372. "mirrors": [
  6373. {
  6374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6375. "preferred": true
  6376. }
  6377. ]
  6378. },
  6379. "require": {
  6380. "php": ">=7.2",
  6381. "symfony/polyfill-intl-normalizer": "^1.10"
  6382. },
  6383. "suggest": {
  6384. "ext-intl": "For best performance"
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "thanks": {
  6389. "name": "symfony/polyfill",
  6390. "url": "https://github.com/symfony/polyfill"
  6391. }
  6392. },
  6393. "autoload": {
  6394. "files": [
  6395. "bootstrap.php"
  6396. ],
  6397. "psr-4": {
  6398. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Laurent Bassin",
  6408. "email": "laurent@bassin.info"
  6409. },
  6410. {
  6411. "name": "Trevor Rowbotham",
  6412. "email": "trevor.rowbotham@pm.me"
  6413. },
  6414. {
  6415. "name": "Symfony Community",
  6416. "homepage": "https://symfony.com/contributors"
  6417. }
  6418. ],
  6419. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6420. "homepage": "https://symfony.com",
  6421. "keywords": [
  6422. "compatibility",
  6423. "idn",
  6424. "intl",
  6425. "polyfill",
  6426. "portable",
  6427. "shim"
  6428. ],
  6429. "support": {
  6430. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6431. },
  6432. "funding": [
  6433. {
  6434. "url": "https://symfony.com/sponsor",
  6435. "type": "custom"
  6436. },
  6437. {
  6438. "url": "https://github.com/fabpot",
  6439. "type": "github"
  6440. },
  6441. {
  6442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6443. "type": "tidelift"
  6444. }
  6445. ],
  6446. "time": "2024-09-09T11:45:10+00:00"
  6447. },
  6448. {
  6449. "name": "symfony/polyfill-intl-normalizer",
  6450. "version": "v1.31.0",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6454. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6459. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6460. "shasum": "",
  6461. "mirrors": [
  6462. {
  6463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6464. "preferred": true
  6465. }
  6466. ]
  6467. },
  6468. "require": {
  6469. "php": ">=7.2"
  6470. },
  6471. "suggest": {
  6472. "ext-intl": "For best performance"
  6473. },
  6474. "type": "library",
  6475. "extra": {
  6476. "thanks": {
  6477. "name": "symfony/polyfill",
  6478. "url": "https://github.com/symfony/polyfill"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "files": [
  6483. "bootstrap.php"
  6484. ],
  6485. "psr-4": {
  6486. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6487. },
  6488. "classmap": [
  6489. "Resources/stubs"
  6490. ]
  6491. },
  6492. "notification-url": "https://packagist.org/downloads/",
  6493. "license": [
  6494. "MIT"
  6495. ],
  6496. "authors": [
  6497. {
  6498. "name": "Nicolas Grekas",
  6499. "email": "p@tchwork.com"
  6500. },
  6501. {
  6502. "name": "Symfony Community",
  6503. "homepage": "https://symfony.com/contributors"
  6504. }
  6505. ],
  6506. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6507. "homepage": "https://symfony.com",
  6508. "keywords": [
  6509. "compatibility",
  6510. "intl",
  6511. "normalizer",
  6512. "polyfill",
  6513. "portable",
  6514. "shim"
  6515. ],
  6516. "support": {
  6517. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6518. },
  6519. "funding": [
  6520. {
  6521. "url": "https://symfony.com/sponsor",
  6522. "type": "custom"
  6523. },
  6524. {
  6525. "url": "https://github.com/fabpot",
  6526. "type": "github"
  6527. },
  6528. {
  6529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6530. "type": "tidelift"
  6531. }
  6532. ],
  6533. "time": "2024-09-09T11:45:10+00:00"
  6534. },
  6535. {
  6536. "name": "symfony/polyfill-mbstring",
  6537. "version": "v1.29.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6541. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6546. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6547. "shasum": "",
  6548. "mirrors": [
  6549. {
  6550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6551. "preferred": true
  6552. }
  6553. ]
  6554. },
  6555. "require": {
  6556. "php": ">=7.1"
  6557. },
  6558. "provide": {
  6559. "ext-mbstring": "*"
  6560. },
  6561. "suggest": {
  6562. "ext-mbstring": "For best performance"
  6563. },
  6564. "type": "library",
  6565. "extra": {
  6566. "thanks": {
  6567. "name": "symfony/polyfill",
  6568. "url": "https://github.com/symfony/polyfill"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "files": [
  6573. "bootstrap.php"
  6574. ],
  6575. "psr-4": {
  6576. "Symfony\\Polyfill\\Mbstring\\": ""
  6577. }
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "MIT"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Nicolas Grekas",
  6586. "email": "p@tchwork.com"
  6587. },
  6588. {
  6589. "name": "Symfony Community",
  6590. "homepage": "https://symfony.com/contributors"
  6591. }
  6592. ],
  6593. "description": "Symfony polyfill for the Mbstring extension",
  6594. "homepage": "https://symfony.com",
  6595. "keywords": [
  6596. "compatibility",
  6597. "mbstring",
  6598. "polyfill",
  6599. "portable",
  6600. "shim"
  6601. ],
  6602. "support": {
  6603. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6604. },
  6605. "funding": [
  6606. {
  6607. "url": "https://symfony.com/sponsor",
  6608. "type": "custom"
  6609. },
  6610. {
  6611. "url": "https://github.com/fabpot",
  6612. "type": "github"
  6613. },
  6614. {
  6615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6616. "type": "tidelift"
  6617. }
  6618. ],
  6619. "time": "2024-01-29T20:11:03+00:00"
  6620. },
  6621. {
  6622. "name": "symfony/polyfill-php80",
  6623. "version": "v1.31.0",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/symfony/polyfill-php80.git",
  6627. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6632. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6633. "shasum": "",
  6634. "mirrors": [
  6635. {
  6636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6637. "preferred": true
  6638. }
  6639. ]
  6640. },
  6641. "require": {
  6642. "php": ">=7.2"
  6643. },
  6644. "type": "library",
  6645. "extra": {
  6646. "thanks": {
  6647. "name": "symfony/polyfill",
  6648. "url": "https://github.com/symfony/polyfill"
  6649. }
  6650. },
  6651. "autoload": {
  6652. "files": [
  6653. "bootstrap.php"
  6654. ],
  6655. "psr-4": {
  6656. "Symfony\\Polyfill\\Php80\\": ""
  6657. },
  6658. "classmap": [
  6659. "Resources/stubs"
  6660. ]
  6661. },
  6662. "notification-url": "https://packagist.org/downloads/",
  6663. "license": [
  6664. "MIT"
  6665. ],
  6666. "authors": [
  6667. {
  6668. "name": "Ion Bazan",
  6669. "email": "ion.bazan@gmail.com"
  6670. },
  6671. {
  6672. "name": "Nicolas Grekas",
  6673. "email": "p@tchwork.com"
  6674. },
  6675. {
  6676. "name": "Symfony Community",
  6677. "homepage": "https://symfony.com/contributors"
  6678. }
  6679. ],
  6680. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6681. "homepage": "https://symfony.com",
  6682. "keywords": [
  6683. "compatibility",
  6684. "polyfill",
  6685. "portable",
  6686. "shim"
  6687. ],
  6688. "support": {
  6689. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6690. },
  6691. "funding": [
  6692. {
  6693. "url": "https://symfony.com/sponsor",
  6694. "type": "custom"
  6695. },
  6696. {
  6697. "url": "https://github.com/fabpot",
  6698. "type": "github"
  6699. },
  6700. {
  6701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6702. "type": "tidelift"
  6703. }
  6704. ],
  6705. "time": "2024-09-09T11:45:10+00:00"
  6706. },
  6707. {
  6708. "name": "symfony/polyfill-php83",
  6709. "version": "v1.31.0",
  6710. "source": {
  6711. "type": "git",
  6712. "url": "https://github.com/symfony/polyfill-php83.git",
  6713. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6714. },
  6715. "dist": {
  6716. "type": "zip",
  6717. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6718. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6719. "shasum": "",
  6720. "mirrors": [
  6721. {
  6722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6723. "preferred": true
  6724. }
  6725. ]
  6726. },
  6727. "require": {
  6728. "php": ">=7.2"
  6729. },
  6730. "type": "library",
  6731. "extra": {
  6732. "thanks": {
  6733. "name": "symfony/polyfill",
  6734. "url": "https://github.com/symfony/polyfill"
  6735. }
  6736. },
  6737. "autoload": {
  6738. "files": [
  6739. "bootstrap.php"
  6740. ],
  6741. "psr-4": {
  6742. "Symfony\\Polyfill\\Php83\\": ""
  6743. },
  6744. "classmap": [
  6745. "Resources/stubs"
  6746. ]
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Nicolas Grekas",
  6755. "email": "p@tchwork.com"
  6756. },
  6757. {
  6758. "name": "Symfony Community",
  6759. "homepage": "https://symfony.com/contributors"
  6760. }
  6761. ],
  6762. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6763. "homepage": "https://symfony.com",
  6764. "keywords": [
  6765. "compatibility",
  6766. "polyfill",
  6767. "portable",
  6768. "shim"
  6769. ],
  6770. "support": {
  6771. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6772. },
  6773. "funding": [
  6774. {
  6775. "url": "https://symfony.com/sponsor",
  6776. "type": "custom"
  6777. },
  6778. {
  6779. "url": "https://github.com/fabpot",
  6780. "type": "github"
  6781. },
  6782. {
  6783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6784. "type": "tidelift"
  6785. }
  6786. ],
  6787. "time": "2024-09-09T11:45:10+00:00"
  6788. },
  6789. {
  6790. "name": "symfony/polyfill-uuid",
  6791. "version": "v1.31.0",
  6792. "source": {
  6793. "type": "git",
  6794. "url": "https://github.com/symfony/polyfill-uuid.git",
  6795. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6796. },
  6797. "dist": {
  6798. "type": "zip",
  6799. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6800. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6801. "shasum": "",
  6802. "mirrors": [
  6803. {
  6804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6805. "preferred": true
  6806. }
  6807. ]
  6808. },
  6809. "require": {
  6810. "php": ">=7.2"
  6811. },
  6812. "provide": {
  6813. "ext-uuid": "*"
  6814. },
  6815. "suggest": {
  6816. "ext-uuid": "For best performance"
  6817. },
  6818. "type": "library",
  6819. "extra": {
  6820. "thanks": {
  6821. "name": "symfony/polyfill",
  6822. "url": "https://github.com/symfony/polyfill"
  6823. }
  6824. },
  6825. "autoload": {
  6826. "files": [
  6827. "bootstrap.php"
  6828. ],
  6829. "psr-4": {
  6830. "Symfony\\Polyfill\\Uuid\\": ""
  6831. }
  6832. },
  6833. "notification-url": "https://packagist.org/downloads/",
  6834. "license": [
  6835. "MIT"
  6836. ],
  6837. "authors": [
  6838. {
  6839. "name": "Grégoire Pineau",
  6840. "email": "lyrixx@lyrixx.info"
  6841. },
  6842. {
  6843. "name": "Symfony Community",
  6844. "homepage": "https://symfony.com/contributors"
  6845. }
  6846. ],
  6847. "description": "Symfony polyfill for uuid functions",
  6848. "homepage": "https://symfony.com",
  6849. "keywords": [
  6850. "compatibility",
  6851. "polyfill",
  6852. "portable",
  6853. "uuid"
  6854. ],
  6855. "support": {
  6856. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6857. },
  6858. "funding": [
  6859. {
  6860. "url": "https://symfony.com/sponsor",
  6861. "type": "custom"
  6862. },
  6863. {
  6864. "url": "https://github.com/fabpot",
  6865. "type": "github"
  6866. },
  6867. {
  6868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6869. "type": "tidelift"
  6870. }
  6871. ],
  6872. "time": "2024-09-09T11:45:10+00:00"
  6873. },
  6874. {
  6875. "name": "symfony/process",
  6876. "version": "v6.4.8",
  6877. "source": {
  6878. "type": "git",
  6879. "url": "https://github.com/symfony/process.git",
  6880. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  6881. },
  6882. "dist": {
  6883. "type": "zip",
  6884. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6885. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  6886. "shasum": "",
  6887. "mirrors": [
  6888. {
  6889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6890. "preferred": true
  6891. }
  6892. ]
  6893. },
  6894. "require": {
  6895. "php": ">=8.1"
  6896. },
  6897. "type": "library",
  6898. "autoload": {
  6899. "psr-4": {
  6900. "Symfony\\Component\\Process\\": ""
  6901. },
  6902. "exclude-from-classmap": [
  6903. "/Tests/"
  6904. ]
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "Fabien Potencier",
  6913. "email": "fabien@symfony.com"
  6914. },
  6915. {
  6916. "name": "Symfony Community",
  6917. "homepage": "https://symfony.com/contributors"
  6918. }
  6919. ],
  6920. "description": "Executes commands in sub-processes",
  6921. "homepage": "https://symfony.com",
  6922. "support": {
  6923. "source": "https://github.com/symfony/process/tree/v6.4.8"
  6924. },
  6925. "funding": [
  6926. {
  6927. "url": "https://symfony.com/sponsor",
  6928. "type": "custom"
  6929. },
  6930. {
  6931. "url": "https://github.com/fabpot",
  6932. "type": "github"
  6933. },
  6934. {
  6935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6936. "type": "tidelift"
  6937. }
  6938. ],
  6939. "time": "2024-05-31T14:49:08+00:00"
  6940. },
  6941. {
  6942. "name": "symfony/routing",
  6943. "version": "v6.4.13",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/symfony/routing.git",
  6947. "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/symfony/routing/zipball/640a74250d13f9c30d5ca045b6aaaabcc8215278",
  6952. "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278",
  6953. "shasum": "",
  6954. "mirrors": [
  6955. {
  6956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6957. "preferred": true
  6958. }
  6959. ]
  6960. },
  6961. "require": {
  6962. "php": ">=8.1",
  6963. "symfony/deprecation-contracts": "^2.5|^3"
  6964. },
  6965. "conflict": {
  6966. "doctrine/annotations": "<1.12",
  6967. "symfony/config": "<6.2",
  6968. "symfony/dependency-injection": "<5.4",
  6969. "symfony/yaml": "<5.4"
  6970. },
  6971. "require-dev": {
  6972. "doctrine/annotations": "^1.12|^2",
  6973. "psr/log": "^1|^2|^3",
  6974. "symfony/config": "^6.2|^7.0",
  6975. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6976. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6977. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6978. "symfony/yaml": "^5.4|^6.0|^7.0"
  6979. },
  6980. "type": "library",
  6981. "autoload": {
  6982. "psr-4": {
  6983. "Symfony\\Component\\Routing\\": ""
  6984. },
  6985. "exclude-from-classmap": [
  6986. "/Tests/"
  6987. ]
  6988. },
  6989. "notification-url": "https://packagist.org/downloads/",
  6990. "license": [
  6991. "MIT"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "Fabien Potencier",
  6996. "email": "fabien@symfony.com"
  6997. },
  6998. {
  6999. "name": "Symfony Community",
  7000. "homepage": "https://symfony.com/contributors"
  7001. }
  7002. ],
  7003. "description": "Maps an HTTP request to a set of configuration variables",
  7004. "homepage": "https://symfony.com",
  7005. "keywords": [
  7006. "router",
  7007. "routing",
  7008. "uri",
  7009. "url"
  7010. ],
  7011. "support": {
  7012. "source": "https://github.com/symfony/routing/tree/v6.4.13"
  7013. },
  7014. "funding": [
  7015. {
  7016. "url": "https://symfony.com/sponsor",
  7017. "type": "custom"
  7018. },
  7019. {
  7020. "url": "https://github.com/fabpot",
  7021. "type": "github"
  7022. },
  7023. {
  7024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7025. "type": "tidelift"
  7026. }
  7027. ],
  7028. "time": "2024-10-01T08:30:56+00:00"
  7029. },
  7030. {
  7031. "name": "symfony/service-contracts",
  7032. "version": "v3.4.0",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/symfony/service-contracts.git",
  7036. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7041. "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
  7042. "shasum": "",
  7043. "mirrors": [
  7044. {
  7045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7046. "preferred": true
  7047. }
  7048. ]
  7049. },
  7050. "require": {
  7051. "php": ">=8.1",
  7052. "psr/container": "^2.0"
  7053. },
  7054. "conflict": {
  7055. "ext-psr": "<1.1|>=2"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "branch-alias": {
  7060. "dev-main": "3.4-dev"
  7061. },
  7062. "thanks": {
  7063. "name": "symfony/contracts",
  7064. "url": "https://github.com/symfony/contracts"
  7065. }
  7066. },
  7067. "autoload": {
  7068. "psr-4": {
  7069. "Symfony\\Contracts\\Service\\": ""
  7070. },
  7071. "exclude-from-classmap": [
  7072. "/Test/"
  7073. ]
  7074. },
  7075. "notification-url": "https://packagist.org/downloads/",
  7076. "license": [
  7077. "MIT"
  7078. ],
  7079. "authors": [
  7080. {
  7081. "name": "Nicolas Grekas",
  7082. "email": "p@tchwork.com"
  7083. },
  7084. {
  7085. "name": "Symfony Community",
  7086. "homepage": "https://symfony.com/contributors"
  7087. }
  7088. ],
  7089. "description": "Generic abstractions related to writing services",
  7090. "homepage": "https://symfony.com",
  7091. "keywords": [
  7092. "abstractions",
  7093. "contracts",
  7094. "decoupling",
  7095. "interfaces",
  7096. "interoperability",
  7097. "standards"
  7098. ],
  7099. "support": {
  7100. "source": "https://github.com/symfony/service-contracts/tree/v3.4.0"
  7101. },
  7102. "funding": [
  7103. {
  7104. "url": "https://symfony.com/sponsor",
  7105. "type": "custom"
  7106. },
  7107. {
  7108. "url": "https://github.com/fabpot",
  7109. "type": "github"
  7110. },
  7111. {
  7112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7113. "type": "tidelift"
  7114. }
  7115. ],
  7116. "time": "2023-07-30T20:28:31+00:00"
  7117. },
  7118. {
  7119. "name": "symfony/string",
  7120. "version": "v6.4.12",
  7121. "source": {
  7122. "type": "git",
  7123. "url": "https://github.com/symfony/string.git",
  7124. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b"
  7125. },
  7126. "dist": {
  7127. "type": "zip",
  7128. "url": "https://api.github.com/repos/symfony/string/zipball/f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  7129. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  7130. "shasum": "",
  7131. "mirrors": [
  7132. {
  7133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7134. "preferred": true
  7135. }
  7136. ]
  7137. },
  7138. "require": {
  7139. "php": ">=8.1",
  7140. "symfony/polyfill-ctype": "~1.8",
  7141. "symfony/polyfill-intl-grapheme": "~1.0",
  7142. "symfony/polyfill-intl-normalizer": "~1.0",
  7143. "symfony/polyfill-mbstring": "~1.0"
  7144. },
  7145. "conflict": {
  7146. "symfony/translation-contracts": "<2.5"
  7147. },
  7148. "require-dev": {
  7149. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7150. "symfony/http-client": "^5.4|^6.0|^7.0",
  7151. "symfony/intl": "^6.2|^7.0",
  7152. "symfony/translation-contracts": "^2.5|^3.0",
  7153. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7154. },
  7155. "type": "library",
  7156. "autoload": {
  7157. "files": [
  7158. "Resources/functions.php"
  7159. ],
  7160. "psr-4": {
  7161. "Symfony\\Component\\String\\": ""
  7162. },
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Nicolas Grekas",
  7174. "email": "p@tchwork.com"
  7175. },
  7176. {
  7177. "name": "Symfony Community",
  7178. "homepage": "https://symfony.com/contributors"
  7179. }
  7180. ],
  7181. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7182. "homepage": "https://symfony.com",
  7183. "keywords": [
  7184. "grapheme",
  7185. "i18n",
  7186. "string",
  7187. "unicode",
  7188. "utf-8",
  7189. "utf8"
  7190. ],
  7191. "support": {
  7192. "source": "https://github.com/symfony/string/tree/v6.4.12"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2024-09-20T08:15:52+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/translation",
  7212. "version": "v6.4.8",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/translation.git",
  7216. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7221. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7222. "shasum": "",
  7223. "mirrors": [
  7224. {
  7225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7226. "preferred": true
  7227. }
  7228. ]
  7229. },
  7230. "require": {
  7231. "php": ">=8.1",
  7232. "symfony/deprecation-contracts": "^2.5|^3",
  7233. "symfony/polyfill-mbstring": "~1.0",
  7234. "symfony/translation-contracts": "^2.5|^3.0"
  7235. },
  7236. "conflict": {
  7237. "symfony/config": "<5.4",
  7238. "symfony/console": "<5.4",
  7239. "symfony/dependency-injection": "<5.4",
  7240. "symfony/http-client-contracts": "<2.5",
  7241. "symfony/http-kernel": "<5.4",
  7242. "symfony/service-contracts": "<2.5",
  7243. "symfony/twig-bundle": "<5.4",
  7244. "symfony/yaml": "<5.4"
  7245. },
  7246. "provide": {
  7247. "symfony/translation-implementation": "2.3|3.0"
  7248. },
  7249. "require-dev": {
  7250. "nikic/php-parser": "^4.18|^5.0",
  7251. "psr/log": "^1|^2|^3",
  7252. "symfony/config": "^5.4|^6.0|^7.0",
  7253. "symfony/console": "^5.4|^6.0|^7.0",
  7254. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7255. "symfony/finder": "^5.4|^6.0|^7.0",
  7256. "symfony/http-client-contracts": "^2.5|^3.0",
  7257. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7258. "symfony/intl": "^5.4|^6.0|^7.0",
  7259. "symfony/polyfill-intl-icu": "^1.21",
  7260. "symfony/routing": "^5.4|^6.0|^7.0",
  7261. "symfony/service-contracts": "^2.5|^3",
  7262. "symfony/yaml": "^5.4|^6.0|^7.0"
  7263. },
  7264. "type": "library",
  7265. "autoload": {
  7266. "files": [
  7267. "Resources/functions.php"
  7268. ],
  7269. "psr-4": {
  7270. "Symfony\\Component\\Translation\\": ""
  7271. },
  7272. "exclude-from-classmap": [
  7273. "/Tests/"
  7274. ]
  7275. },
  7276. "notification-url": "https://packagist.org/downloads/",
  7277. "license": [
  7278. "MIT"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "Fabien Potencier",
  7283. "email": "fabien@symfony.com"
  7284. },
  7285. {
  7286. "name": "Symfony Community",
  7287. "homepage": "https://symfony.com/contributors"
  7288. }
  7289. ],
  7290. "description": "Provides tools to internationalize your application",
  7291. "homepage": "https://symfony.com",
  7292. "support": {
  7293. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7294. },
  7295. "funding": [
  7296. {
  7297. "url": "https://symfony.com/sponsor",
  7298. "type": "custom"
  7299. },
  7300. {
  7301. "url": "https://github.com/fabpot",
  7302. "type": "github"
  7303. },
  7304. {
  7305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7306. "type": "tidelift"
  7307. }
  7308. ],
  7309. "time": "2024-05-31T14:49:08+00:00"
  7310. },
  7311. {
  7312. "name": "symfony/translation-contracts",
  7313. "version": "v3.4.1",
  7314. "source": {
  7315. "type": "git",
  7316. "url": "https://github.com/symfony/translation-contracts.git",
  7317. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  7318. },
  7319. "dist": {
  7320. "type": "zip",
  7321. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  7322. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  7323. "shasum": "",
  7324. "mirrors": [
  7325. {
  7326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7327. "preferred": true
  7328. }
  7329. ]
  7330. },
  7331. "require": {
  7332. "php": ">=8.1"
  7333. },
  7334. "type": "library",
  7335. "extra": {
  7336. "branch-alias": {
  7337. "dev-main": "3.4-dev"
  7338. },
  7339. "thanks": {
  7340. "name": "symfony/contracts",
  7341. "url": "https://github.com/symfony/contracts"
  7342. }
  7343. },
  7344. "autoload": {
  7345. "psr-4": {
  7346. "Symfony\\Contracts\\Translation\\": ""
  7347. },
  7348. "exclude-from-classmap": [
  7349. "/Test/"
  7350. ]
  7351. },
  7352. "notification-url": "https://packagist.org/downloads/",
  7353. "license": [
  7354. "MIT"
  7355. ],
  7356. "authors": [
  7357. {
  7358. "name": "Nicolas Grekas",
  7359. "email": "p@tchwork.com"
  7360. },
  7361. {
  7362. "name": "Symfony Community",
  7363. "homepage": "https://symfony.com/contributors"
  7364. }
  7365. ],
  7366. "description": "Generic abstractions related to translation",
  7367. "homepage": "https://symfony.com",
  7368. "keywords": [
  7369. "abstractions",
  7370. "contracts",
  7371. "decoupling",
  7372. "interfaces",
  7373. "interoperability",
  7374. "standards"
  7375. ],
  7376. "support": {
  7377. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://symfony.com/sponsor",
  7382. "type": "custom"
  7383. },
  7384. {
  7385. "url": "https://github.com/fabpot",
  7386. "type": "github"
  7387. },
  7388. {
  7389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7390. "type": "tidelift"
  7391. }
  7392. ],
  7393. "time": "2023-12-26T14:02:43+00:00"
  7394. },
  7395. {
  7396. "name": "symfony/uid",
  7397. "version": "v6.4.13",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/symfony/uid.git",
  7401. "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/symfony/uid/zipball/18eb207f0436a993fffbdd811b5b8fa35fa5e007",
  7406. "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007",
  7407. "shasum": "",
  7408. "mirrors": [
  7409. {
  7410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7411. "preferred": true
  7412. }
  7413. ]
  7414. },
  7415. "require": {
  7416. "php": ">=8.1",
  7417. "symfony/polyfill-uuid": "^1.15"
  7418. },
  7419. "require-dev": {
  7420. "symfony/console": "^5.4|^6.0|^7.0"
  7421. },
  7422. "type": "library",
  7423. "autoload": {
  7424. "psr-4": {
  7425. "Symfony\\Component\\Uid\\": ""
  7426. },
  7427. "exclude-from-classmap": [
  7428. "/Tests/"
  7429. ]
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Grégoire Pineau",
  7438. "email": "lyrixx@lyrixx.info"
  7439. },
  7440. {
  7441. "name": "Nicolas Grekas",
  7442. "email": "p@tchwork.com"
  7443. },
  7444. {
  7445. "name": "Symfony Community",
  7446. "homepage": "https://symfony.com/contributors"
  7447. }
  7448. ],
  7449. "description": "Provides an object-oriented API to generate and represent UIDs",
  7450. "homepage": "https://symfony.com",
  7451. "keywords": [
  7452. "UID",
  7453. "ulid",
  7454. "uuid"
  7455. ],
  7456. "support": {
  7457. "source": "https://github.com/symfony/uid/tree/v6.4.13"
  7458. },
  7459. "funding": [
  7460. {
  7461. "url": "https://symfony.com/sponsor",
  7462. "type": "custom"
  7463. },
  7464. {
  7465. "url": "https://github.com/fabpot",
  7466. "type": "github"
  7467. },
  7468. {
  7469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7470. "type": "tidelift"
  7471. }
  7472. ],
  7473. "time": "2024-09-25T14:18:03+00:00"
  7474. },
  7475. {
  7476. "name": "symfony/var-dumper",
  7477. "version": "v6.4.13",
  7478. "source": {
  7479. "type": "git",
  7480. "url": "https://github.com/symfony/var-dumper.git",
  7481. "reference": "2acb151474ed8cb43624e3f41a0bf7c4c8ce4f41"
  7482. },
  7483. "dist": {
  7484. "type": "zip",
  7485. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2acb151474ed8cb43624e3f41a0bf7c4c8ce4f41",
  7486. "reference": "2acb151474ed8cb43624e3f41a0bf7c4c8ce4f41",
  7487. "shasum": "",
  7488. "mirrors": [
  7489. {
  7490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7491. "preferred": true
  7492. }
  7493. ]
  7494. },
  7495. "require": {
  7496. "php": ">=8.1",
  7497. "symfony/deprecation-contracts": "^2.5|^3",
  7498. "symfony/polyfill-mbstring": "~1.0"
  7499. },
  7500. "conflict": {
  7501. "symfony/console": "<5.4"
  7502. },
  7503. "require-dev": {
  7504. "ext-iconv": "*",
  7505. "symfony/console": "^5.4|^6.0|^7.0",
  7506. "symfony/error-handler": "^6.3|^7.0",
  7507. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7508. "symfony/process": "^5.4|^6.0|^7.0",
  7509. "symfony/uid": "^5.4|^6.0|^7.0",
  7510. "twig/twig": "^2.13|^3.0.4"
  7511. },
  7512. "bin": [
  7513. "Resources/bin/var-dump-server"
  7514. ],
  7515. "type": "library",
  7516. "autoload": {
  7517. "files": [
  7518. "Resources/functions/dump.php"
  7519. ],
  7520. "psr-4": {
  7521. "Symfony\\Component\\VarDumper\\": ""
  7522. },
  7523. "exclude-from-classmap": [
  7524. "/Tests/"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Nicolas Grekas",
  7534. "email": "p@tchwork.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7542. "homepage": "https://symfony.com",
  7543. "keywords": [
  7544. "debug",
  7545. "dump"
  7546. ],
  7547. "support": {
  7548. "source": "https://github.com/symfony/var-dumper/tree/v6.4.13"
  7549. },
  7550. "funding": [
  7551. {
  7552. "url": "https://symfony.com/sponsor",
  7553. "type": "custom"
  7554. },
  7555. {
  7556. "url": "https://github.com/fabpot",
  7557. "type": "github"
  7558. },
  7559. {
  7560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7561. "type": "tidelift"
  7562. }
  7563. ],
  7564. "time": "2024-09-25T14:18:03+00:00"
  7565. },
  7566. {
  7567. "name": "tencentcloud/common",
  7568. "version": "3.0.1271",
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://mirrors.cloud.tencent.com/repository/composer/tencentcloud/common/3.0.1271/tencentcloud-common-3.0.1271.zip",
  7572. "reference": "d489cbd11e3af464b7b4a44381350a28c388c9a1",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "guzzlehttp/guzzle": "^6.3||^7.0",
  7577. "php": ">=5.6.0"
  7578. },
  7579. "type": "library",
  7580. "autoload": {
  7581. "psr-4": {
  7582. "TencentCloud\\": "./src/TencentCloud"
  7583. }
  7584. },
  7585. "license": [
  7586. "Apache-2.0"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "tencentcloudapi",
  7591. "email": "tencentcloudapi@tencent.com",
  7592. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7593. "role": "Developer"
  7594. }
  7595. ],
  7596. "description": "TencentCloudApi php sdk",
  7597. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7598. "time": "2024-11-28T20:30:41+00:00"
  7599. },
  7600. {
  7601. "name": "tencentcloud/ocr",
  7602. "version": "3.0.1271",
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://mirrors.cloud.tencent.com/repository/composer/tencentcloud/ocr/3.0.1271/tencentcloud-ocr-3.0.1271.zip",
  7606. "reference": "dde9fcd15a155da1285438516459f3928c174147",
  7607. "shasum": ""
  7608. },
  7609. "require": {
  7610. "tencentcloud/common": "3.0.1271"
  7611. },
  7612. "type": "library",
  7613. "autoload": {
  7614. "psr-4": {
  7615. "TencentCloud\\": "./src/TencentCloud"
  7616. }
  7617. },
  7618. "license": [
  7619. "Apache-2.0"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "tencentcloudapi",
  7624. "email": "tencentcloudapi@tencent.com",
  7625. "homepage": "https://github.com/tencentcloud-sdk-php/ocr",
  7626. "role": "Developer"
  7627. }
  7628. ],
  7629. "description": "TencentCloudApi php sdk ocr",
  7630. "homepage": "https://github.com/tencentcloud-sdk-php/ocr",
  7631. "time": "2024-11-28T21:03:04+00:00"
  7632. },
  7633. {
  7634. "name": "tencentcloud/sms",
  7635. "version": "3.0.1271",
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://mirrors.cloud.tencent.com/repository/composer/tencentcloud/sms/3.0.1271/tencentcloud-sms-3.0.1271.zip",
  7639. "reference": "4f1db9aa4a35f6b261ec0f45109ee587f95c90dc",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "tencentcloud/common": "3.0.1271"
  7644. },
  7645. "type": "library",
  7646. "autoload": {
  7647. "psr-4": {
  7648. "TencentCloud\\": "./src/TencentCloud"
  7649. }
  7650. },
  7651. "license": [
  7652. "Apache-2.0"
  7653. ],
  7654. "authors": [
  7655. {
  7656. "name": "tencentcloudapi",
  7657. "email": "tencentcloudapi@tencent.com",
  7658. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7659. "role": "Developer"
  7660. }
  7661. ],
  7662. "description": "TencentCloudApi php sdk sms",
  7663. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7664. "time": "2024-11-28T21:09:32+00:00"
  7665. },
  7666. {
  7667. "name": "tijsverkoyen/css-to-inline-styles",
  7668. "version": "v2.2.7",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7672. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7677. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7678. "shasum": "",
  7679. "mirrors": [
  7680. {
  7681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7682. "preferred": true
  7683. }
  7684. ]
  7685. },
  7686. "require": {
  7687. "ext-dom": "*",
  7688. "ext-libxml": "*",
  7689. "php": "^5.5 || ^7.0 || ^8.0",
  7690. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7691. },
  7692. "require-dev": {
  7693. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7694. },
  7695. "type": "library",
  7696. "extra": {
  7697. "branch-alias": {
  7698. "dev-master": "2.2.x-dev"
  7699. }
  7700. },
  7701. "autoload": {
  7702. "psr-4": {
  7703. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7704. }
  7705. },
  7706. "notification-url": "https://packagist.org/downloads/",
  7707. "license": [
  7708. "BSD-3-Clause"
  7709. ],
  7710. "authors": [
  7711. {
  7712. "name": "Tijs Verkoyen",
  7713. "email": "css_to_inline_styles@verkoyen.eu",
  7714. "role": "Developer"
  7715. }
  7716. ],
  7717. "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.",
  7718. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7719. "support": {
  7720. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7721. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7722. },
  7723. "time": "2023-12-08T13:03:43+00:00"
  7724. },
  7725. {
  7726. "name": "vinkla/hashids",
  7727. "version": "10.0.1",
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://mirrors.cloud.tencent.com/repository/composer/vinkla/hashids/10.0.1/vinkla-hashids-10.0.1.zip",
  7731. "reference": "9dbcfc1b20ecc25e73bba6e8c724d1648fa15fdd",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "graham-campbell/manager": "^4.7",
  7736. "hashids/hashids": "^4.1",
  7737. "illuminate/contracts": "^9.0",
  7738. "illuminate/support": "^9.0",
  7739. "php": "^8.0"
  7740. },
  7741. "require-dev": {
  7742. "graham-campbell/analyzer": "^3.0",
  7743. "graham-campbell/testbench": "^5.7",
  7744. "mockery/mockery": "^1.3",
  7745. "phpunit/phpunit": "^9.3",
  7746. "squizlabs/php_codesniffer": "^3.5"
  7747. },
  7748. "type": "library",
  7749. "extra": {
  7750. "branch-alias": {
  7751. "dev-master": "10.0-dev"
  7752. },
  7753. "laravel": {
  7754. "aliases": {
  7755. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7756. },
  7757. "providers": [
  7758. "Vinkla\\Hashids\\HashidsServiceProvider"
  7759. ]
  7760. }
  7761. },
  7762. "autoload": {
  7763. "psr-4": {
  7764. "Vinkla\\Hashids\\": "src/"
  7765. }
  7766. },
  7767. "license": [
  7768. "MIT"
  7769. ],
  7770. "authors": [
  7771. {
  7772. "name": "Vincent Klaiber",
  7773. "email": "hello@doubledip.se"
  7774. }
  7775. ],
  7776. "description": "A Hashids bridge for Laravel",
  7777. "keywords": [
  7778. "hashids",
  7779. "laravel"
  7780. ],
  7781. "time": "2022-04-10T18:38:38+00:00"
  7782. },
  7783. {
  7784. "name": "vlucas/phpdotenv",
  7785. "version": "v5.6.1",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/vlucas/phpdotenv.git",
  7789. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7794. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7795. "shasum": "",
  7796. "mirrors": [
  7797. {
  7798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7799. "preferred": true
  7800. }
  7801. ]
  7802. },
  7803. "require": {
  7804. "ext-pcre": "*",
  7805. "graham-campbell/result-type": "^1.1.3",
  7806. "php": "^7.2.5 || ^8.0",
  7807. "phpoption/phpoption": "^1.9.3",
  7808. "symfony/polyfill-ctype": "^1.24",
  7809. "symfony/polyfill-mbstring": "^1.24",
  7810. "symfony/polyfill-php80": "^1.24"
  7811. },
  7812. "require-dev": {
  7813. "bamarni/composer-bin-plugin": "^1.8.2",
  7814. "ext-filter": "*",
  7815. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7816. },
  7817. "suggest": {
  7818. "ext-filter": "Required to use the boolean validator."
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "bamarni-bin": {
  7823. "bin-links": true,
  7824. "forward-command": false
  7825. },
  7826. "branch-alias": {
  7827. "dev-master": "5.6-dev"
  7828. }
  7829. },
  7830. "autoload": {
  7831. "psr-4": {
  7832. "Dotenv\\": "src/"
  7833. }
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "BSD-3-Clause"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Graham Campbell",
  7842. "email": "hello@gjcampbell.co.uk",
  7843. "homepage": "https://github.com/GrahamCampbell"
  7844. },
  7845. {
  7846. "name": "Vance Lucas",
  7847. "email": "vance@vancelucas.com",
  7848. "homepage": "https://github.com/vlucas"
  7849. }
  7850. ],
  7851. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7852. "keywords": [
  7853. "dotenv",
  7854. "env",
  7855. "environment"
  7856. ],
  7857. "support": {
  7858. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7859. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7860. },
  7861. "funding": [
  7862. {
  7863. "url": "https://github.com/GrahamCampbell",
  7864. "type": "github"
  7865. },
  7866. {
  7867. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7868. "type": "tidelift"
  7869. }
  7870. ],
  7871. "time": "2024-07-20T21:52:34+00:00"
  7872. },
  7873. {
  7874. "name": "voku/portable-ascii",
  7875. "version": "2.0.1",
  7876. "source": {
  7877. "type": "git",
  7878. "url": "https://github.com/voku/portable-ascii.git",
  7879. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7880. },
  7881. "dist": {
  7882. "type": "zip",
  7883. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7884. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7885. "shasum": "",
  7886. "mirrors": [
  7887. {
  7888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7889. "preferred": true
  7890. }
  7891. ]
  7892. },
  7893. "require": {
  7894. "php": ">=7.0.0"
  7895. },
  7896. "require-dev": {
  7897. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7898. },
  7899. "suggest": {
  7900. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7901. },
  7902. "type": "library",
  7903. "autoload": {
  7904. "psr-4": {
  7905. "voku\\": "src/voku/"
  7906. }
  7907. },
  7908. "notification-url": "https://packagist.org/downloads/",
  7909. "license": [
  7910. "MIT"
  7911. ],
  7912. "authors": [
  7913. {
  7914. "name": "Lars Moelleken",
  7915. "homepage": "http://www.moelleken.org/"
  7916. }
  7917. ],
  7918. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7919. "homepage": "https://github.com/voku/portable-ascii",
  7920. "keywords": [
  7921. "ascii",
  7922. "clean",
  7923. "php"
  7924. ],
  7925. "support": {
  7926. "issues": "https://github.com/voku/portable-ascii/issues",
  7927. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://www.paypal.me/moelleken",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/voku",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://opencollective.com/portable-ascii",
  7940. "type": "open_collective"
  7941. },
  7942. {
  7943. "url": "https://www.patreon.com/voku",
  7944. "type": "patreon"
  7945. },
  7946. {
  7947. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7948. "type": "tidelift"
  7949. }
  7950. ],
  7951. "time": "2022-03-08T17:03:00+00:00"
  7952. },
  7953. {
  7954. "name": "webmozart/assert",
  7955. "version": "1.11.0",
  7956. "source": {
  7957. "type": "git",
  7958. "url": "https://github.com/webmozarts/assert.git",
  7959. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7960. },
  7961. "dist": {
  7962. "type": "zip",
  7963. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7964. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7965. "shasum": "",
  7966. "mirrors": [
  7967. {
  7968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7969. "preferred": true
  7970. }
  7971. ]
  7972. },
  7973. "require": {
  7974. "ext-ctype": "*",
  7975. "php": "^7.2 || ^8.0"
  7976. },
  7977. "conflict": {
  7978. "phpstan/phpstan": "<0.12.20",
  7979. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7980. },
  7981. "require-dev": {
  7982. "phpunit/phpunit": "^8.5.13"
  7983. },
  7984. "type": "library",
  7985. "extra": {
  7986. "branch-alias": {
  7987. "dev-master": "1.10-dev"
  7988. }
  7989. },
  7990. "autoload": {
  7991. "psr-4": {
  7992. "Webmozart\\Assert\\": "src/"
  7993. }
  7994. },
  7995. "notification-url": "https://packagist.org/downloads/",
  7996. "license": [
  7997. "MIT"
  7998. ],
  7999. "authors": [
  8000. {
  8001. "name": "Bernhard Schussek",
  8002. "email": "bschussek@gmail.com"
  8003. }
  8004. ],
  8005. "description": "Assertions to validate method input/output with nice error messages.",
  8006. "keywords": [
  8007. "assert",
  8008. "check",
  8009. "validate"
  8010. ],
  8011. "support": {
  8012. "issues": "https://github.com/webmozarts/assert/issues",
  8013. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8014. },
  8015. "time": "2022-06-03T18:03:27+00:00"
  8016. }
  8017. ],
  8018. "packages-dev": [
  8019. {
  8020. "name": "doctrine/instantiator",
  8021. "version": "2.0.0",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/doctrine/instantiator.git",
  8025. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8030. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8031. "shasum": "",
  8032. "mirrors": [
  8033. {
  8034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8035. "preferred": true
  8036. }
  8037. ]
  8038. },
  8039. "require": {
  8040. "php": "^8.1"
  8041. },
  8042. "require-dev": {
  8043. "doctrine/coding-standard": "^11",
  8044. "ext-pdo": "*",
  8045. "ext-phar": "*",
  8046. "phpbench/phpbench": "^1.2",
  8047. "phpstan/phpstan": "^1.9.4",
  8048. "phpstan/phpstan-phpunit": "^1.3",
  8049. "phpunit/phpunit": "^9.5.27",
  8050. "vimeo/psalm": "^5.4"
  8051. },
  8052. "type": "library",
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8056. }
  8057. },
  8058. "notification-url": "https://packagist.org/downloads/",
  8059. "license": [
  8060. "MIT"
  8061. ],
  8062. "authors": [
  8063. {
  8064. "name": "Marco Pivetta",
  8065. "email": "ocramius@gmail.com",
  8066. "homepage": "https://ocramius.github.io/"
  8067. }
  8068. ],
  8069. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8070. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8071. "keywords": [
  8072. "constructor",
  8073. "instantiate"
  8074. ],
  8075. "support": {
  8076. "issues": "https://github.com/doctrine/instantiator/issues",
  8077. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8078. },
  8079. "funding": [
  8080. {
  8081. "url": "https://www.doctrine-project.org/sponsorship.html",
  8082. "type": "custom"
  8083. },
  8084. {
  8085. "url": "https://www.patreon.com/phpdoctrine",
  8086. "type": "patreon"
  8087. },
  8088. {
  8089. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8090. "type": "tidelift"
  8091. }
  8092. ],
  8093. "time": "2022-12-30T00:23:10+00:00"
  8094. },
  8095. {
  8096. "name": "fakerphp/faker",
  8097. "version": "v1.23.1",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/FakerPHP/Faker.git",
  8101. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8106. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8107. "shasum": "",
  8108. "mirrors": [
  8109. {
  8110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8111. "preferred": true
  8112. }
  8113. ]
  8114. },
  8115. "require": {
  8116. "php": "^7.4 || ^8.0",
  8117. "psr/container": "^1.0 || ^2.0",
  8118. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8119. },
  8120. "conflict": {
  8121. "fzaninotto/faker": "*"
  8122. },
  8123. "require-dev": {
  8124. "bamarni/composer-bin-plugin": "^1.4.1",
  8125. "doctrine/persistence": "^1.3 || ^2.0",
  8126. "ext-intl": "*",
  8127. "phpunit/phpunit": "^9.5.26",
  8128. "symfony/phpunit-bridge": "^5.4.16"
  8129. },
  8130. "suggest": {
  8131. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8132. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8133. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8134. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8135. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8136. },
  8137. "type": "library",
  8138. "autoload": {
  8139. "psr-4": {
  8140. "Faker\\": "src/Faker/"
  8141. }
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "François Zaninotto"
  8150. }
  8151. ],
  8152. "description": "Faker is a PHP library that generates fake data for you.",
  8153. "keywords": [
  8154. "data",
  8155. "faker",
  8156. "fixtures"
  8157. ],
  8158. "support": {
  8159. "issues": "https://github.com/FakerPHP/Faker/issues",
  8160. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8161. },
  8162. "time": "2024-01-02T13:46:09+00:00"
  8163. },
  8164. {
  8165. "name": "filp/whoops",
  8166. "version": "2.16.0",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/filp/whoops.git",
  8170. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8175. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8176. "shasum": "",
  8177. "mirrors": [
  8178. {
  8179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8180. "preferred": true
  8181. }
  8182. ]
  8183. },
  8184. "require": {
  8185. "php": "^7.1 || ^8.0",
  8186. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8187. },
  8188. "require-dev": {
  8189. "mockery/mockery": "^1.0",
  8190. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8191. "symfony/var-dumper": "^4.0 || ^5.0"
  8192. },
  8193. "suggest": {
  8194. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8195. "whoops/soap": "Formats errors as SOAP responses"
  8196. },
  8197. "type": "library",
  8198. "extra": {
  8199. "branch-alias": {
  8200. "dev-master": "2.7-dev"
  8201. }
  8202. },
  8203. "autoload": {
  8204. "psr-4": {
  8205. "Whoops\\": "src/Whoops/"
  8206. }
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "MIT"
  8211. ],
  8212. "authors": [
  8213. {
  8214. "name": "Filipe Dobreira",
  8215. "homepage": "https://github.com/filp",
  8216. "role": "Developer"
  8217. }
  8218. ],
  8219. "description": "php error handling for cool kids",
  8220. "homepage": "https://filp.github.io/whoops/",
  8221. "keywords": [
  8222. "error",
  8223. "exception",
  8224. "handling",
  8225. "library",
  8226. "throwable",
  8227. "whoops"
  8228. ],
  8229. "support": {
  8230. "issues": "https://github.com/filp/whoops/issues",
  8231. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8232. },
  8233. "funding": [
  8234. {
  8235. "url": "https://github.com/denis-sokolov",
  8236. "type": "github"
  8237. }
  8238. ],
  8239. "time": "2024-09-25T12:00:00+00:00"
  8240. },
  8241. {
  8242. "name": "hamcrest/hamcrest-php",
  8243. "version": "v2.0.1",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8247. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8252. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8253. "shasum": "",
  8254. "mirrors": [
  8255. {
  8256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8257. "preferred": true
  8258. }
  8259. ]
  8260. },
  8261. "require": {
  8262. "php": "^5.3|^7.0|^8.0"
  8263. },
  8264. "replace": {
  8265. "cordoval/hamcrest-php": "*",
  8266. "davedevelopment/hamcrest-php": "*",
  8267. "kodova/hamcrest-php": "*"
  8268. },
  8269. "require-dev": {
  8270. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8271. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "branch-alias": {
  8276. "dev-master": "2.1-dev"
  8277. }
  8278. },
  8279. "autoload": {
  8280. "classmap": [
  8281. "hamcrest"
  8282. ]
  8283. },
  8284. "notification-url": "https://packagist.org/downloads/",
  8285. "license": [
  8286. "BSD-3-Clause"
  8287. ],
  8288. "description": "This is the PHP port of Hamcrest Matchers",
  8289. "keywords": [
  8290. "test"
  8291. ],
  8292. "support": {
  8293. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8294. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8295. },
  8296. "time": "2020-07-09T08:09:16+00:00"
  8297. },
  8298. {
  8299. "name": "laravel/sail",
  8300. "version": "v1.33.0",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/laravel/sail.git",
  8304. "reference": "d54af9d5745e3680d8a6463ffd9f314aa53eb2d1"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/laravel/sail/zipball/d54af9d5745e3680d8a6463ffd9f314aa53eb2d1",
  8309. "reference": "d54af9d5745e3680d8a6463ffd9f314aa53eb2d1",
  8310. "shasum": "",
  8311. "mirrors": [
  8312. {
  8313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8314. "preferred": true
  8315. }
  8316. ]
  8317. },
  8318. "require": {
  8319. "illuminate/console": "^9.52.16|^10.0|^11.0",
  8320. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  8321. "illuminate/support": "^9.52.16|^10.0|^11.0",
  8322. "php": "^8.0",
  8323. "symfony/console": "^6.0|^7.0",
  8324. "symfony/yaml": "^6.0|^7.0"
  8325. },
  8326. "require-dev": {
  8327. "orchestra/testbench": "^7.0|^8.0|^9.0",
  8328. "phpstan/phpstan": "^1.10"
  8329. },
  8330. "bin": [
  8331. "bin/sail"
  8332. ],
  8333. "type": "library",
  8334. "extra": {
  8335. "laravel": {
  8336. "providers": [
  8337. "Laravel\\Sail\\SailServiceProvider"
  8338. ]
  8339. }
  8340. },
  8341. "autoload": {
  8342. "psr-4": {
  8343. "Laravel\\Sail\\": "src/"
  8344. }
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "MIT"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Taylor Otwell",
  8353. "email": "taylor@laravel.com"
  8354. }
  8355. ],
  8356. "description": "Docker files for running a basic Laravel application.",
  8357. "keywords": [
  8358. "docker",
  8359. "laravel"
  8360. ],
  8361. "support": {
  8362. "issues": "https://github.com/laravel/sail/issues",
  8363. "source": "https://github.com/laravel/sail"
  8364. },
  8365. "time": "2024-09-22T19:04:21+00:00"
  8366. },
  8367. {
  8368. "name": "mockery/mockery",
  8369. "version": "1.6.12",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/mockery/mockery.git",
  8373. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8378. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8379. "shasum": "",
  8380. "mirrors": [
  8381. {
  8382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8383. "preferred": true
  8384. }
  8385. ]
  8386. },
  8387. "require": {
  8388. "hamcrest/hamcrest-php": "^2.0.1",
  8389. "lib-pcre": ">=7.0",
  8390. "php": ">=7.3"
  8391. },
  8392. "conflict": {
  8393. "phpunit/phpunit": "<8.0"
  8394. },
  8395. "require-dev": {
  8396. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8397. "symplify/easy-coding-standard": "^12.1.14"
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "files": [
  8402. "library/helpers.php",
  8403. "library/Mockery.php"
  8404. ],
  8405. "psr-4": {
  8406. "Mockery\\": "library/Mockery"
  8407. }
  8408. },
  8409. "notification-url": "https://packagist.org/downloads/",
  8410. "license": [
  8411. "BSD-3-Clause"
  8412. ],
  8413. "authors": [
  8414. {
  8415. "name": "Pádraic Brady",
  8416. "email": "padraic.brady@gmail.com",
  8417. "homepage": "https://github.com/padraic",
  8418. "role": "Author"
  8419. },
  8420. {
  8421. "name": "Dave Marshall",
  8422. "email": "dave.marshall@atstsolutions.co.uk",
  8423. "homepage": "https://davedevelopment.co.uk",
  8424. "role": "Developer"
  8425. },
  8426. {
  8427. "name": "Nathanael Esayeas",
  8428. "email": "nathanael.esayeas@protonmail.com",
  8429. "homepage": "https://github.com/ghostwriter",
  8430. "role": "Lead Developer"
  8431. }
  8432. ],
  8433. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8434. "homepage": "https://github.com/mockery/mockery",
  8435. "keywords": [
  8436. "BDD",
  8437. "TDD",
  8438. "library",
  8439. "mock",
  8440. "mock objects",
  8441. "mockery",
  8442. "stub",
  8443. "test",
  8444. "test double",
  8445. "testing"
  8446. ],
  8447. "support": {
  8448. "docs": "https://docs.mockery.io/",
  8449. "issues": "https://github.com/mockery/mockery/issues",
  8450. "rss": "https://github.com/mockery/mockery/releases.atom",
  8451. "security": "https://github.com/mockery/mockery/security/advisories",
  8452. "source": "https://github.com/mockery/mockery"
  8453. },
  8454. "time": "2024-05-16T03:13:13+00:00"
  8455. },
  8456. {
  8457. "name": "myclabs/deep-copy",
  8458. "version": "1.11.1",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/myclabs/DeepCopy.git",
  8462. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8467. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8468. "shasum": "",
  8469. "mirrors": [
  8470. {
  8471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8472. "preferred": true
  8473. }
  8474. ]
  8475. },
  8476. "require": {
  8477. "php": "^7.1 || ^8.0"
  8478. },
  8479. "conflict": {
  8480. "doctrine/collections": "<1.6.8",
  8481. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8482. },
  8483. "require-dev": {
  8484. "doctrine/collections": "^1.6.8",
  8485. "doctrine/common": "^2.13.3 || ^3.2.2",
  8486. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8487. },
  8488. "type": "library",
  8489. "autoload": {
  8490. "files": [
  8491. "src/DeepCopy/deep_copy.php"
  8492. ],
  8493. "psr-4": {
  8494. "DeepCopy\\": "src/DeepCopy/"
  8495. }
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "MIT"
  8500. ],
  8501. "description": "Create deep copies (clones) of your objects",
  8502. "keywords": [
  8503. "clone",
  8504. "copy",
  8505. "duplicate",
  8506. "object",
  8507. "object graph"
  8508. ],
  8509. "support": {
  8510. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8511. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8512. },
  8513. "funding": [
  8514. {
  8515. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8516. "type": "tidelift"
  8517. }
  8518. ],
  8519. "time": "2023-03-08T13:26:56+00:00"
  8520. },
  8521. {
  8522. "name": "nunomaduro/collision",
  8523. "version": "v6.4.0",
  8524. "source": {
  8525. "type": "git",
  8526. "url": "https://github.com/nunomaduro/collision.git",
  8527. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  8528. },
  8529. "dist": {
  8530. "type": "zip",
  8531. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  8532. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  8533. "shasum": "",
  8534. "mirrors": [
  8535. {
  8536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8537. "preferred": true
  8538. }
  8539. ]
  8540. },
  8541. "require": {
  8542. "filp/whoops": "^2.14.5",
  8543. "php": "^8.0.0",
  8544. "symfony/console": "^6.0.2"
  8545. },
  8546. "require-dev": {
  8547. "brianium/paratest": "^6.4.1",
  8548. "laravel/framework": "^9.26.1",
  8549. "laravel/pint": "^1.1.1",
  8550. "nunomaduro/larastan": "^1.0.3",
  8551. "nunomaduro/mock-final-classes": "^1.1.0",
  8552. "orchestra/testbench": "^7.7",
  8553. "phpunit/phpunit": "^9.5.23",
  8554. "spatie/ignition": "^1.4.1"
  8555. },
  8556. "type": "library",
  8557. "extra": {
  8558. "branch-alias": {
  8559. "dev-develop": "6.x-dev"
  8560. },
  8561. "laravel": {
  8562. "providers": [
  8563. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8564. ]
  8565. }
  8566. },
  8567. "autoload": {
  8568. "psr-4": {
  8569. "NunoMaduro\\Collision\\": "src/"
  8570. }
  8571. },
  8572. "notification-url": "https://packagist.org/downloads/",
  8573. "license": [
  8574. "MIT"
  8575. ],
  8576. "authors": [
  8577. {
  8578. "name": "Nuno Maduro",
  8579. "email": "enunomaduro@gmail.com"
  8580. }
  8581. ],
  8582. "description": "Cli error handling for console/command-line PHP applications.",
  8583. "keywords": [
  8584. "artisan",
  8585. "cli",
  8586. "command-line",
  8587. "console",
  8588. "error",
  8589. "handling",
  8590. "laravel",
  8591. "laravel-zero",
  8592. "php",
  8593. "symfony"
  8594. ],
  8595. "support": {
  8596. "issues": "https://github.com/nunomaduro/collision/issues",
  8597. "source": "https://github.com/nunomaduro/collision"
  8598. },
  8599. "funding": [
  8600. {
  8601. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8602. "type": "custom"
  8603. },
  8604. {
  8605. "url": "https://github.com/nunomaduro",
  8606. "type": "github"
  8607. },
  8608. {
  8609. "url": "https://www.patreon.com/nunomaduro",
  8610. "type": "patreon"
  8611. }
  8612. ],
  8613. "time": "2023-01-03T12:54:54+00:00"
  8614. },
  8615. {
  8616. "name": "phar-io/manifest",
  8617. "version": "2.0.3",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/phar-io/manifest.git",
  8621. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8626. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8627. "shasum": "",
  8628. "mirrors": [
  8629. {
  8630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8631. "preferred": true
  8632. }
  8633. ]
  8634. },
  8635. "require": {
  8636. "ext-dom": "*",
  8637. "ext-phar": "*",
  8638. "ext-xmlwriter": "*",
  8639. "phar-io/version": "^3.0.1",
  8640. "php": "^7.2 || ^8.0"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "2.0.x-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "classmap": [
  8650. "src/"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "BSD-3-Clause"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Arne Blankerts",
  8660. "email": "arne@blankerts.de",
  8661. "role": "Developer"
  8662. },
  8663. {
  8664. "name": "Sebastian Heuer",
  8665. "email": "sebastian@phpeople.de",
  8666. "role": "Developer"
  8667. },
  8668. {
  8669. "name": "Sebastian Bergmann",
  8670. "email": "sebastian@phpunit.de",
  8671. "role": "Developer"
  8672. }
  8673. ],
  8674. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8675. "support": {
  8676. "issues": "https://github.com/phar-io/manifest/issues",
  8677. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8678. },
  8679. "time": "2021-07-20T11:28:43+00:00"
  8680. },
  8681. {
  8682. "name": "phar-io/version",
  8683. "version": "3.2.1",
  8684. "source": {
  8685. "type": "git",
  8686. "url": "https://github.com/phar-io/version.git",
  8687. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8688. },
  8689. "dist": {
  8690. "type": "zip",
  8691. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8692. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8693. "shasum": "",
  8694. "mirrors": [
  8695. {
  8696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8697. "preferred": true
  8698. }
  8699. ]
  8700. },
  8701. "require": {
  8702. "php": "^7.2 || ^8.0"
  8703. },
  8704. "type": "library",
  8705. "autoload": {
  8706. "classmap": [
  8707. "src/"
  8708. ]
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "BSD-3-Clause"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Arne Blankerts",
  8717. "email": "arne@blankerts.de",
  8718. "role": "Developer"
  8719. },
  8720. {
  8721. "name": "Sebastian Heuer",
  8722. "email": "sebastian@phpeople.de",
  8723. "role": "Developer"
  8724. },
  8725. {
  8726. "name": "Sebastian Bergmann",
  8727. "email": "sebastian@phpunit.de",
  8728. "role": "Developer"
  8729. }
  8730. ],
  8731. "description": "Library for handling version information and constraints",
  8732. "support": {
  8733. "issues": "https://github.com/phar-io/version/issues",
  8734. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8735. },
  8736. "time": "2022-02-21T01:04:05+00:00"
  8737. },
  8738. {
  8739. "name": "phpunit/php-code-coverage",
  8740. "version": "9.2.31",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8744. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
  8749. "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
  8750. "shasum": "",
  8751. "mirrors": [
  8752. {
  8753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8754. "preferred": true
  8755. }
  8756. ]
  8757. },
  8758. "require": {
  8759. "ext-dom": "*",
  8760. "ext-libxml": "*",
  8761. "ext-xmlwriter": "*",
  8762. "nikic/php-parser": "^4.18 || ^5.0",
  8763. "php": ">=7.3",
  8764. "phpunit/php-file-iterator": "^3.0.3",
  8765. "phpunit/php-text-template": "^2.0.2",
  8766. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8767. "sebastian/complexity": "^2.0",
  8768. "sebastian/environment": "^5.1.2",
  8769. "sebastian/lines-of-code": "^1.0.3",
  8770. "sebastian/version": "^3.0.1",
  8771. "theseer/tokenizer": "^1.2.0"
  8772. },
  8773. "require-dev": {
  8774. "phpunit/phpunit": "^9.3"
  8775. },
  8776. "suggest": {
  8777. "ext-pcov": "PHP extension that provides line coverage",
  8778. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-master": "9.2-dev"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "classmap": [
  8788. "src/"
  8789. ]
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "BSD-3-Clause"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Sebastian Bergmann",
  8798. "email": "sebastian@phpunit.de",
  8799. "role": "lead"
  8800. }
  8801. ],
  8802. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8803. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8804. "keywords": [
  8805. "coverage",
  8806. "testing",
  8807. "xunit"
  8808. ],
  8809. "support": {
  8810. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8811. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8812. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://github.com/sebastianbergmann",
  8817. "type": "github"
  8818. }
  8819. ],
  8820. "time": "2024-03-02T06:37:42+00:00"
  8821. },
  8822. {
  8823. "name": "phpunit/php-file-iterator",
  8824. "version": "3.0.6",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8828. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8833. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8834. "shasum": "",
  8835. "mirrors": [
  8836. {
  8837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8838. "preferred": true
  8839. }
  8840. ]
  8841. },
  8842. "require": {
  8843. "php": ">=7.3"
  8844. },
  8845. "require-dev": {
  8846. "phpunit/phpunit": "^9.3"
  8847. },
  8848. "type": "library",
  8849. "extra": {
  8850. "branch-alias": {
  8851. "dev-master": "3.0-dev"
  8852. }
  8853. },
  8854. "autoload": {
  8855. "classmap": [
  8856. "src/"
  8857. ]
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "BSD-3-Clause"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Sebastian Bergmann",
  8866. "email": "sebastian@phpunit.de",
  8867. "role": "lead"
  8868. }
  8869. ],
  8870. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8871. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8872. "keywords": [
  8873. "filesystem",
  8874. "iterator"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8878. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://github.com/sebastianbergmann",
  8883. "type": "github"
  8884. }
  8885. ],
  8886. "time": "2021-12-02T12:48:52+00:00"
  8887. },
  8888. {
  8889. "name": "phpunit/php-invoker",
  8890. "version": "3.1.1",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8894. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8899. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8900. "shasum": "",
  8901. "mirrors": [
  8902. {
  8903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8904. "preferred": true
  8905. }
  8906. ]
  8907. },
  8908. "require": {
  8909. "php": ">=7.3"
  8910. },
  8911. "require-dev": {
  8912. "ext-pcntl": "*",
  8913. "phpunit/phpunit": "^9.3"
  8914. },
  8915. "suggest": {
  8916. "ext-pcntl": "*"
  8917. },
  8918. "type": "library",
  8919. "extra": {
  8920. "branch-alias": {
  8921. "dev-master": "3.1-dev"
  8922. }
  8923. },
  8924. "autoload": {
  8925. "classmap": [
  8926. "src/"
  8927. ]
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "BSD-3-Clause"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Sebastian Bergmann",
  8936. "email": "sebastian@phpunit.de",
  8937. "role": "lead"
  8938. }
  8939. ],
  8940. "description": "Invoke callables with a timeout",
  8941. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8942. "keywords": [
  8943. "process"
  8944. ],
  8945. "support": {
  8946. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8947. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8948. },
  8949. "funding": [
  8950. {
  8951. "url": "https://github.com/sebastianbergmann",
  8952. "type": "github"
  8953. }
  8954. ],
  8955. "time": "2020-09-28T05:58:55+00:00"
  8956. },
  8957. {
  8958. "name": "phpunit/php-text-template",
  8959. "version": "2.0.4",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8963. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8968. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8969. "shasum": "",
  8970. "mirrors": [
  8971. {
  8972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8973. "preferred": true
  8974. }
  8975. ]
  8976. },
  8977. "require": {
  8978. "php": ">=7.3"
  8979. },
  8980. "require-dev": {
  8981. "phpunit/phpunit": "^9.3"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-master": "2.0-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "classmap": [
  8991. "src/"
  8992. ]
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Sebastian Bergmann",
  9001. "email": "sebastian@phpunit.de",
  9002. "role": "lead"
  9003. }
  9004. ],
  9005. "description": "Simple template engine.",
  9006. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9007. "keywords": [
  9008. "template"
  9009. ],
  9010. "support": {
  9011. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9012. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9013. },
  9014. "funding": [
  9015. {
  9016. "url": "https://github.com/sebastianbergmann",
  9017. "type": "github"
  9018. }
  9019. ],
  9020. "time": "2020-10-26T05:33:50+00:00"
  9021. },
  9022. {
  9023. "name": "phpunit/php-timer",
  9024. "version": "5.0.3",
  9025. "source": {
  9026. "type": "git",
  9027. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9028. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9029. },
  9030. "dist": {
  9031. "type": "zip",
  9032. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9033. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9034. "shasum": "",
  9035. "mirrors": [
  9036. {
  9037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9038. "preferred": true
  9039. }
  9040. ]
  9041. },
  9042. "require": {
  9043. "php": ">=7.3"
  9044. },
  9045. "require-dev": {
  9046. "phpunit/phpunit": "^9.3"
  9047. },
  9048. "type": "library",
  9049. "extra": {
  9050. "branch-alias": {
  9051. "dev-master": "5.0-dev"
  9052. }
  9053. },
  9054. "autoload": {
  9055. "classmap": [
  9056. "src/"
  9057. ]
  9058. },
  9059. "notification-url": "https://packagist.org/downloads/",
  9060. "license": [
  9061. "BSD-3-Clause"
  9062. ],
  9063. "authors": [
  9064. {
  9065. "name": "Sebastian Bergmann",
  9066. "email": "sebastian@phpunit.de",
  9067. "role": "lead"
  9068. }
  9069. ],
  9070. "description": "Utility class for timing",
  9071. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9072. "keywords": [
  9073. "timer"
  9074. ],
  9075. "support": {
  9076. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9077. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9078. },
  9079. "funding": [
  9080. {
  9081. "url": "https://github.com/sebastianbergmann",
  9082. "type": "github"
  9083. }
  9084. ],
  9085. "time": "2020-10-26T13:16:10+00:00"
  9086. },
  9087. {
  9088. "name": "phpunit/phpunit",
  9089. "version": "9.6.19",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9093. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8",
  9098. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8",
  9099. "shasum": "",
  9100. "mirrors": [
  9101. {
  9102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9103. "preferred": true
  9104. }
  9105. ]
  9106. },
  9107. "require": {
  9108. "doctrine/instantiator": "^1.3.1 || ^2",
  9109. "ext-dom": "*",
  9110. "ext-json": "*",
  9111. "ext-libxml": "*",
  9112. "ext-mbstring": "*",
  9113. "ext-xml": "*",
  9114. "ext-xmlwriter": "*",
  9115. "myclabs/deep-copy": "^1.10.1",
  9116. "phar-io/manifest": "^2.0.3",
  9117. "phar-io/version": "^3.0.2",
  9118. "php": ">=7.3",
  9119. "phpunit/php-code-coverage": "^9.2.28",
  9120. "phpunit/php-file-iterator": "^3.0.5",
  9121. "phpunit/php-invoker": "^3.1.1",
  9122. "phpunit/php-text-template": "^2.0.3",
  9123. "phpunit/php-timer": "^5.0.2",
  9124. "sebastian/cli-parser": "^1.0.1",
  9125. "sebastian/code-unit": "^1.0.6",
  9126. "sebastian/comparator": "^4.0.8",
  9127. "sebastian/diff": "^4.0.3",
  9128. "sebastian/environment": "^5.1.3",
  9129. "sebastian/exporter": "^4.0.5",
  9130. "sebastian/global-state": "^5.0.1",
  9131. "sebastian/object-enumerator": "^4.0.3",
  9132. "sebastian/resource-operations": "^3.0.3",
  9133. "sebastian/type": "^3.2",
  9134. "sebastian/version": "^3.0.2"
  9135. },
  9136. "suggest": {
  9137. "ext-soap": "To be able to generate mocks based on WSDL files",
  9138. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9139. },
  9140. "bin": [
  9141. "phpunit"
  9142. ],
  9143. "type": "library",
  9144. "extra": {
  9145. "branch-alias": {
  9146. "dev-master": "9.6-dev"
  9147. }
  9148. },
  9149. "autoload": {
  9150. "files": [
  9151. "src/Framework/Assert/Functions.php"
  9152. ],
  9153. "classmap": [
  9154. "src/"
  9155. ]
  9156. },
  9157. "notification-url": "https://packagist.org/downloads/",
  9158. "license": [
  9159. "BSD-3-Clause"
  9160. ],
  9161. "authors": [
  9162. {
  9163. "name": "Sebastian Bergmann",
  9164. "email": "sebastian@phpunit.de",
  9165. "role": "lead"
  9166. }
  9167. ],
  9168. "description": "The PHP Unit Testing framework.",
  9169. "homepage": "https://phpunit.de/",
  9170. "keywords": [
  9171. "phpunit",
  9172. "testing",
  9173. "xunit"
  9174. ],
  9175. "support": {
  9176. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9177. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9178. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19"
  9179. },
  9180. "funding": [
  9181. {
  9182. "url": "https://phpunit.de/sponsors.html",
  9183. "type": "custom"
  9184. },
  9185. {
  9186. "url": "https://github.com/sebastianbergmann",
  9187. "type": "github"
  9188. },
  9189. {
  9190. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9191. "type": "tidelift"
  9192. }
  9193. ],
  9194. "time": "2024-04-05T04:35:58+00:00"
  9195. },
  9196. {
  9197. "name": "sebastian/cli-parser",
  9198. "version": "1.0.2",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9202. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9207. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9208. "shasum": "",
  9209. "mirrors": [
  9210. {
  9211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9212. "preferred": true
  9213. }
  9214. ]
  9215. },
  9216. "require": {
  9217. "php": ">=7.3"
  9218. },
  9219. "require-dev": {
  9220. "phpunit/phpunit": "^9.3"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "branch-alias": {
  9225. "dev-master": "1.0-dev"
  9226. }
  9227. },
  9228. "autoload": {
  9229. "classmap": [
  9230. "src/"
  9231. ]
  9232. },
  9233. "notification-url": "https://packagist.org/downloads/",
  9234. "license": [
  9235. "BSD-3-Clause"
  9236. ],
  9237. "authors": [
  9238. {
  9239. "name": "Sebastian Bergmann",
  9240. "email": "sebastian@phpunit.de",
  9241. "role": "lead"
  9242. }
  9243. ],
  9244. "description": "Library for parsing CLI options",
  9245. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9246. "support": {
  9247. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9248. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9249. },
  9250. "funding": [
  9251. {
  9252. "url": "https://github.com/sebastianbergmann",
  9253. "type": "github"
  9254. }
  9255. ],
  9256. "time": "2024-03-02T06:27:43+00:00"
  9257. },
  9258. {
  9259. "name": "sebastian/code-unit",
  9260. "version": "1.0.8",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9264. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9269. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9270. "shasum": "",
  9271. "mirrors": [
  9272. {
  9273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9274. "preferred": true
  9275. }
  9276. ]
  9277. },
  9278. "require": {
  9279. "php": ">=7.3"
  9280. },
  9281. "require-dev": {
  9282. "phpunit/phpunit": "^9.3"
  9283. },
  9284. "type": "library",
  9285. "extra": {
  9286. "branch-alias": {
  9287. "dev-master": "1.0-dev"
  9288. }
  9289. },
  9290. "autoload": {
  9291. "classmap": [
  9292. "src/"
  9293. ]
  9294. },
  9295. "notification-url": "https://packagist.org/downloads/",
  9296. "license": [
  9297. "BSD-3-Clause"
  9298. ],
  9299. "authors": [
  9300. {
  9301. "name": "Sebastian Bergmann",
  9302. "email": "sebastian@phpunit.de",
  9303. "role": "lead"
  9304. }
  9305. ],
  9306. "description": "Collection of value objects that represent the PHP code units",
  9307. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9308. "support": {
  9309. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9310. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9311. },
  9312. "funding": [
  9313. {
  9314. "url": "https://github.com/sebastianbergmann",
  9315. "type": "github"
  9316. }
  9317. ],
  9318. "time": "2020-10-26T13:08:54+00:00"
  9319. },
  9320. {
  9321. "name": "sebastian/code-unit-reverse-lookup",
  9322. "version": "2.0.3",
  9323. "source": {
  9324. "type": "git",
  9325. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9326. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9327. },
  9328. "dist": {
  9329. "type": "zip",
  9330. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9331. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9332. "shasum": "",
  9333. "mirrors": [
  9334. {
  9335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9336. "preferred": true
  9337. }
  9338. ]
  9339. },
  9340. "require": {
  9341. "php": ">=7.3"
  9342. },
  9343. "require-dev": {
  9344. "phpunit/phpunit": "^9.3"
  9345. },
  9346. "type": "library",
  9347. "extra": {
  9348. "branch-alias": {
  9349. "dev-master": "2.0-dev"
  9350. }
  9351. },
  9352. "autoload": {
  9353. "classmap": [
  9354. "src/"
  9355. ]
  9356. },
  9357. "notification-url": "https://packagist.org/downloads/",
  9358. "license": [
  9359. "BSD-3-Clause"
  9360. ],
  9361. "authors": [
  9362. {
  9363. "name": "Sebastian Bergmann",
  9364. "email": "sebastian@phpunit.de"
  9365. }
  9366. ],
  9367. "description": "Looks up which function or method a line of code belongs to",
  9368. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9369. "support": {
  9370. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9371. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://github.com/sebastianbergmann",
  9376. "type": "github"
  9377. }
  9378. ],
  9379. "time": "2020-09-28T05:30:19+00:00"
  9380. },
  9381. {
  9382. "name": "sebastian/comparator",
  9383. "version": "4.0.8",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/sebastianbergmann/comparator.git",
  9387. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9392. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9393. "shasum": "",
  9394. "mirrors": [
  9395. {
  9396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9397. "preferred": true
  9398. }
  9399. ]
  9400. },
  9401. "require": {
  9402. "php": ">=7.3",
  9403. "sebastian/diff": "^4.0",
  9404. "sebastian/exporter": "^4.0"
  9405. },
  9406. "require-dev": {
  9407. "phpunit/phpunit": "^9.3"
  9408. },
  9409. "type": "library",
  9410. "extra": {
  9411. "branch-alias": {
  9412. "dev-master": "4.0-dev"
  9413. }
  9414. },
  9415. "autoload": {
  9416. "classmap": [
  9417. "src/"
  9418. ]
  9419. },
  9420. "notification-url": "https://packagist.org/downloads/",
  9421. "license": [
  9422. "BSD-3-Clause"
  9423. ],
  9424. "authors": [
  9425. {
  9426. "name": "Sebastian Bergmann",
  9427. "email": "sebastian@phpunit.de"
  9428. },
  9429. {
  9430. "name": "Jeff Welch",
  9431. "email": "whatthejeff@gmail.com"
  9432. },
  9433. {
  9434. "name": "Volker Dusch",
  9435. "email": "github@wallbash.com"
  9436. },
  9437. {
  9438. "name": "Bernhard Schussek",
  9439. "email": "bschussek@2bepublished.at"
  9440. }
  9441. ],
  9442. "description": "Provides the functionality to compare PHP values for equality",
  9443. "homepage": "https://github.com/sebastianbergmann/comparator",
  9444. "keywords": [
  9445. "comparator",
  9446. "compare",
  9447. "equality"
  9448. ],
  9449. "support": {
  9450. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9451. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9452. },
  9453. "funding": [
  9454. {
  9455. "url": "https://github.com/sebastianbergmann",
  9456. "type": "github"
  9457. }
  9458. ],
  9459. "time": "2022-09-14T12:41:17+00:00"
  9460. },
  9461. {
  9462. "name": "sebastian/complexity",
  9463. "version": "2.0.3",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/complexity.git",
  9467. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9472. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9473. "shasum": "",
  9474. "mirrors": [
  9475. {
  9476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9477. "preferred": true
  9478. }
  9479. ]
  9480. },
  9481. "require": {
  9482. "nikic/php-parser": "^4.18 || ^5.0",
  9483. "php": ">=7.3"
  9484. },
  9485. "require-dev": {
  9486. "phpunit/phpunit": "^9.3"
  9487. },
  9488. "type": "library",
  9489. "extra": {
  9490. "branch-alias": {
  9491. "dev-master": "2.0-dev"
  9492. }
  9493. },
  9494. "autoload": {
  9495. "classmap": [
  9496. "src/"
  9497. ]
  9498. },
  9499. "notification-url": "https://packagist.org/downloads/",
  9500. "license": [
  9501. "BSD-3-Clause"
  9502. ],
  9503. "authors": [
  9504. {
  9505. "name": "Sebastian Bergmann",
  9506. "email": "sebastian@phpunit.de",
  9507. "role": "lead"
  9508. }
  9509. ],
  9510. "description": "Library for calculating the complexity of PHP code units",
  9511. "homepage": "https://github.com/sebastianbergmann/complexity",
  9512. "support": {
  9513. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9514. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9515. },
  9516. "funding": [
  9517. {
  9518. "url": "https://github.com/sebastianbergmann",
  9519. "type": "github"
  9520. }
  9521. ],
  9522. "time": "2023-12-22T06:19:30+00:00"
  9523. },
  9524. {
  9525. "name": "sebastian/diff",
  9526. "version": "4.0.6",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/sebastianbergmann/diff.git",
  9530. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9535. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9536. "shasum": "",
  9537. "mirrors": [
  9538. {
  9539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9540. "preferred": true
  9541. }
  9542. ]
  9543. },
  9544. "require": {
  9545. "php": ">=7.3"
  9546. },
  9547. "require-dev": {
  9548. "phpunit/phpunit": "^9.3",
  9549. "symfony/process": "^4.2 || ^5"
  9550. },
  9551. "type": "library",
  9552. "extra": {
  9553. "branch-alias": {
  9554. "dev-master": "4.0-dev"
  9555. }
  9556. },
  9557. "autoload": {
  9558. "classmap": [
  9559. "src/"
  9560. ]
  9561. },
  9562. "notification-url": "https://packagist.org/downloads/",
  9563. "license": [
  9564. "BSD-3-Clause"
  9565. ],
  9566. "authors": [
  9567. {
  9568. "name": "Sebastian Bergmann",
  9569. "email": "sebastian@phpunit.de"
  9570. },
  9571. {
  9572. "name": "Kore Nordmann",
  9573. "email": "mail@kore-nordmann.de"
  9574. }
  9575. ],
  9576. "description": "Diff implementation",
  9577. "homepage": "https://github.com/sebastianbergmann/diff",
  9578. "keywords": [
  9579. "diff",
  9580. "udiff",
  9581. "unidiff",
  9582. "unified diff"
  9583. ],
  9584. "support": {
  9585. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9586. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://github.com/sebastianbergmann",
  9591. "type": "github"
  9592. }
  9593. ],
  9594. "time": "2024-03-02T06:30:58+00:00"
  9595. },
  9596. {
  9597. "name": "sebastian/environment",
  9598. "version": "5.1.5",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/sebastianbergmann/environment.git",
  9602. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9607. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9608. "shasum": "",
  9609. "mirrors": [
  9610. {
  9611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9612. "preferred": true
  9613. }
  9614. ]
  9615. },
  9616. "require": {
  9617. "php": ">=7.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^9.3"
  9621. },
  9622. "suggest": {
  9623. "ext-posix": "*"
  9624. },
  9625. "type": "library",
  9626. "extra": {
  9627. "branch-alias": {
  9628. "dev-master": "5.1-dev"
  9629. }
  9630. },
  9631. "autoload": {
  9632. "classmap": [
  9633. "src/"
  9634. ]
  9635. },
  9636. "notification-url": "https://packagist.org/downloads/",
  9637. "license": [
  9638. "BSD-3-Clause"
  9639. ],
  9640. "authors": [
  9641. {
  9642. "name": "Sebastian Bergmann",
  9643. "email": "sebastian@phpunit.de"
  9644. }
  9645. ],
  9646. "description": "Provides functionality to handle HHVM/PHP environments",
  9647. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9648. "keywords": [
  9649. "Xdebug",
  9650. "environment",
  9651. "hhvm"
  9652. ],
  9653. "support": {
  9654. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9655. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9656. },
  9657. "funding": [
  9658. {
  9659. "url": "https://github.com/sebastianbergmann",
  9660. "type": "github"
  9661. }
  9662. ],
  9663. "time": "2023-02-03T06:03:51+00:00"
  9664. },
  9665. {
  9666. "name": "sebastian/exporter",
  9667. "version": "4.0.6",
  9668. "source": {
  9669. "type": "git",
  9670. "url": "https://github.com/sebastianbergmann/exporter.git",
  9671. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9672. },
  9673. "dist": {
  9674. "type": "zip",
  9675. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9676. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9677. "shasum": "",
  9678. "mirrors": [
  9679. {
  9680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9681. "preferred": true
  9682. }
  9683. ]
  9684. },
  9685. "require": {
  9686. "php": ">=7.3",
  9687. "sebastian/recursion-context": "^4.0"
  9688. },
  9689. "require-dev": {
  9690. "ext-mbstring": "*",
  9691. "phpunit/phpunit": "^9.3"
  9692. },
  9693. "type": "library",
  9694. "extra": {
  9695. "branch-alias": {
  9696. "dev-master": "4.0-dev"
  9697. }
  9698. },
  9699. "autoload": {
  9700. "classmap": [
  9701. "src/"
  9702. ]
  9703. },
  9704. "notification-url": "https://packagist.org/downloads/",
  9705. "license": [
  9706. "BSD-3-Clause"
  9707. ],
  9708. "authors": [
  9709. {
  9710. "name": "Sebastian Bergmann",
  9711. "email": "sebastian@phpunit.de"
  9712. },
  9713. {
  9714. "name": "Jeff Welch",
  9715. "email": "whatthejeff@gmail.com"
  9716. },
  9717. {
  9718. "name": "Volker Dusch",
  9719. "email": "github@wallbash.com"
  9720. },
  9721. {
  9722. "name": "Adam Harvey",
  9723. "email": "aharvey@php.net"
  9724. },
  9725. {
  9726. "name": "Bernhard Schussek",
  9727. "email": "bschussek@gmail.com"
  9728. }
  9729. ],
  9730. "description": "Provides the functionality to export PHP variables for visualization",
  9731. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9732. "keywords": [
  9733. "export",
  9734. "exporter"
  9735. ],
  9736. "support": {
  9737. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9738. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://github.com/sebastianbergmann",
  9743. "type": "github"
  9744. }
  9745. ],
  9746. "time": "2024-03-02T06:33:00+00:00"
  9747. },
  9748. {
  9749. "name": "sebastian/global-state",
  9750. "version": "5.0.7",
  9751. "source": {
  9752. "type": "git",
  9753. "url": "https://github.com/sebastianbergmann/global-state.git",
  9754. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9755. },
  9756. "dist": {
  9757. "type": "zip",
  9758. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9759. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9760. "shasum": "",
  9761. "mirrors": [
  9762. {
  9763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9764. "preferred": true
  9765. }
  9766. ]
  9767. },
  9768. "require": {
  9769. "php": ">=7.3",
  9770. "sebastian/object-reflector": "^2.0",
  9771. "sebastian/recursion-context": "^4.0"
  9772. },
  9773. "require-dev": {
  9774. "ext-dom": "*",
  9775. "phpunit/phpunit": "^9.3"
  9776. },
  9777. "suggest": {
  9778. "ext-uopz": "*"
  9779. },
  9780. "type": "library",
  9781. "extra": {
  9782. "branch-alias": {
  9783. "dev-master": "5.0-dev"
  9784. }
  9785. },
  9786. "autoload": {
  9787. "classmap": [
  9788. "src/"
  9789. ]
  9790. },
  9791. "notification-url": "https://packagist.org/downloads/",
  9792. "license": [
  9793. "BSD-3-Clause"
  9794. ],
  9795. "authors": [
  9796. {
  9797. "name": "Sebastian Bergmann",
  9798. "email": "sebastian@phpunit.de"
  9799. }
  9800. ],
  9801. "description": "Snapshotting of global state",
  9802. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9803. "keywords": [
  9804. "global state"
  9805. ],
  9806. "support": {
  9807. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9808. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9809. },
  9810. "funding": [
  9811. {
  9812. "url": "https://github.com/sebastianbergmann",
  9813. "type": "github"
  9814. }
  9815. ],
  9816. "time": "2024-03-02T06:35:11+00:00"
  9817. },
  9818. {
  9819. "name": "sebastian/lines-of-code",
  9820. "version": "1.0.4",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9824. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9829. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9830. "shasum": "",
  9831. "mirrors": [
  9832. {
  9833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9834. "preferred": true
  9835. }
  9836. ]
  9837. },
  9838. "require": {
  9839. "nikic/php-parser": "^4.18 || ^5.0",
  9840. "php": ">=7.3"
  9841. },
  9842. "require-dev": {
  9843. "phpunit/phpunit": "^9.3"
  9844. },
  9845. "type": "library",
  9846. "extra": {
  9847. "branch-alias": {
  9848. "dev-master": "1.0-dev"
  9849. }
  9850. },
  9851. "autoload": {
  9852. "classmap": [
  9853. "src/"
  9854. ]
  9855. },
  9856. "notification-url": "https://packagist.org/downloads/",
  9857. "license": [
  9858. "BSD-3-Clause"
  9859. ],
  9860. "authors": [
  9861. {
  9862. "name": "Sebastian Bergmann",
  9863. "email": "sebastian@phpunit.de",
  9864. "role": "lead"
  9865. }
  9866. ],
  9867. "description": "Library for counting the lines of code in PHP source code",
  9868. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9869. "support": {
  9870. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9871. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://github.com/sebastianbergmann",
  9876. "type": "github"
  9877. }
  9878. ],
  9879. "time": "2023-12-22T06:20:34+00:00"
  9880. },
  9881. {
  9882. "name": "sebastian/object-enumerator",
  9883. "version": "4.0.4",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9887. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9892. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9893. "shasum": "",
  9894. "mirrors": [
  9895. {
  9896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9897. "preferred": true
  9898. }
  9899. ]
  9900. },
  9901. "require": {
  9902. "php": ">=7.3",
  9903. "sebastian/object-reflector": "^2.0",
  9904. "sebastian/recursion-context": "^4.0"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^9.3"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "4.0-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de"
  9928. }
  9929. ],
  9930. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9931. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9932. "support": {
  9933. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9934. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://github.com/sebastianbergmann",
  9939. "type": "github"
  9940. }
  9941. ],
  9942. "time": "2020-10-26T13:12:34+00:00"
  9943. },
  9944. {
  9945. "name": "sebastian/object-reflector",
  9946. "version": "2.0.4",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9950. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9955. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9956. "shasum": "",
  9957. "mirrors": [
  9958. {
  9959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9960. "preferred": true
  9961. }
  9962. ]
  9963. },
  9964. "require": {
  9965. "php": ">=7.3"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^9.3"
  9969. },
  9970. "type": "library",
  9971. "extra": {
  9972. "branch-alias": {
  9973. "dev-master": "2.0-dev"
  9974. }
  9975. },
  9976. "autoload": {
  9977. "classmap": [
  9978. "src/"
  9979. ]
  9980. },
  9981. "notification-url": "https://packagist.org/downloads/",
  9982. "license": [
  9983. "BSD-3-Clause"
  9984. ],
  9985. "authors": [
  9986. {
  9987. "name": "Sebastian Bergmann",
  9988. "email": "sebastian@phpunit.de"
  9989. }
  9990. ],
  9991. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9992. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9993. "support": {
  9994. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9995. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://github.com/sebastianbergmann",
  10000. "type": "github"
  10001. }
  10002. ],
  10003. "time": "2020-10-26T13:14:26+00:00"
  10004. },
  10005. {
  10006. "name": "sebastian/recursion-context",
  10007. "version": "4.0.5",
  10008. "source": {
  10009. "type": "git",
  10010. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10011. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10012. },
  10013. "dist": {
  10014. "type": "zip",
  10015. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10016. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10017. "shasum": "",
  10018. "mirrors": [
  10019. {
  10020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10021. "preferred": true
  10022. }
  10023. ]
  10024. },
  10025. "require": {
  10026. "php": ">=7.3"
  10027. },
  10028. "require-dev": {
  10029. "phpunit/phpunit": "^9.3"
  10030. },
  10031. "type": "library",
  10032. "extra": {
  10033. "branch-alias": {
  10034. "dev-master": "4.0-dev"
  10035. }
  10036. },
  10037. "autoload": {
  10038. "classmap": [
  10039. "src/"
  10040. ]
  10041. },
  10042. "notification-url": "https://packagist.org/downloads/",
  10043. "license": [
  10044. "BSD-3-Clause"
  10045. ],
  10046. "authors": [
  10047. {
  10048. "name": "Sebastian Bergmann",
  10049. "email": "sebastian@phpunit.de"
  10050. },
  10051. {
  10052. "name": "Jeff Welch",
  10053. "email": "whatthejeff@gmail.com"
  10054. },
  10055. {
  10056. "name": "Adam Harvey",
  10057. "email": "aharvey@php.net"
  10058. }
  10059. ],
  10060. "description": "Provides functionality to recursively process PHP variables",
  10061. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10062. "support": {
  10063. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10064. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10065. },
  10066. "funding": [
  10067. {
  10068. "url": "https://github.com/sebastianbergmann",
  10069. "type": "github"
  10070. }
  10071. ],
  10072. "time": "2023-02-03T06:07:39+00:00"
  10073. },
  10074. {
  10075. "name": "sebastian/resource-operations",
  10076. "version": "3.0.4",
  10077. "source": {
  10078. "type": "git",
  10079. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10080. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10081. },
  10082. "dist": {
  10083. "type": "zip",
  10084. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10085. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10086. "shasum": "",
  10087. "mirrors": [
  10088. {
  10089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10090. "preferred": true
  10091. }
  10092. ]
  10093. },
  10094. "require": {
  10095. "php": ">=7.3"
  10096. },
  10097. "require-dev": {
  10098. "phpunit/phpunit": "^9.0"
  10099. },
  10100. "type": "library",
  10101. "extra": {
  10102. "branch-alias": {
  10103. "dev-main": "3.0-dev"
  10104. }
  10105. },
  10106. "autoload": {
  10107. "classmap": [
  10108. "src/"
  10109. ]
  10110. },
  10111. "notification-url": "https://packagist.org/downloads/",
  10112. "license": [
  10113. "BSD-3-Clause"
  10114. ],
  10115. "authors": [
  10116. {
  10117. "name": "Sebastian Bergmann",
  10118. "email": "sebastian@phpunit.de"
  10119. }
  10120. ],
  10121. "description": "Provides a list of PHP built-in functions that operate on resources",
  10122. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10123. "support": {
  10124. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://github.com/sebastianbergmann",
  10129. "type": "github"
  10130. }
  10131. ],
  10132. "abandoned": true,
  10133. "time": "2024-03-14T16:00:52+00:00"
  10134. },
  10135. {
  10136. "name": "sebastian/type",
  10137. "version": "3.2.1",
  10138. "source": {
  10139. "type": "git",
  10140. "url": "https://github.com/sebastianbergmann/type.git",
  10141. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10142. },
  10143. "dist": {
  10144. "type": "zip",
  10145. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10146. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10147. "shasum": "",
  10148. "mirrors": [
  10149. {
  10150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10151. "preferred": true
  10152. }
  10153. ]
  10154. },
  10155. "require": {
  10156. "php": ">=7.3"
  10157. },
  10158. "require-dev": {
  10159. "phpunit/phpunit": "^9.5"
  10160. },
  10161. "type": "library",
  10162. "extra": {
  10163. "branch-alias": {
  10164. "dev-master": "3.2-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "classmap": [
  10169. "src/"
  10170. ]
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "BSD-3-Clause"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Sebastian Bergmann",
  10179. "email": "sebastian@phpunit.de",
  10180. "role": "lead"
  10181. }
  10182. ],
  10183. "description": "Collection of value objects that represent the types of the PHP type system",
  10184. "homepage": "https://github.com/sebastianbergmann/type",
  10185. "support": {
  10186. "issues": "https://github.com/sebastianbergmann/type/issues",
  10187. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10188. },
  10189. "funding": [
  10190. {
  10191. "url": "https://github.com/sebastianbergmann",
  10192. "type": "github"
  10193. }
  10194. ],
  10195. "time": "2023-02-03T06:13:03+00:00"
  10196. },
  10197. {
  10198. "name": "sebastian/version",
  10199. "version": "3.0.2",
  10200. "source": {
  10201. "type": "git",
  10202. "url": "https://github.com/sebastianbergmann/version.git",
  10203. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10204. },
  10205. "dist": {
  10206. "type": "zip",
  10207. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10208. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10209. "shasum": "",
  10210. "mirrors": [
  10211. {
  10212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10213. "preferred": true
  10214. }
  10215. ]
  10216. },
  10217. "require": {
  10218. "php": ">=7.3"
  10219. },
  10220. "type": "library",
  10221. "extra": {
  10222. "branch-alias": {
  10223. "dev-master": "3.0-dev"
  10224. }
  10225. },
  10226. "autoload": {
  10227. "classmap": [
  10228. "src/"
  10229. ]
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "BSD-3-Clause"
  10234. ],
  10235. "authors": [
  10236. {
  10237. "name": "Sebastian Bergmann",
  10238. "email": "sebastian@phpunit.de",
  10239. "role": "lead"
  10240. }
  10241. ],
  10242. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10243. "homepage": "https://github.com/sebastianbergmann/version",
  10244. "support": {
  10245. "issues": "https://github.com/sebastianbergmann/version/issues",
  10246. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://github.com/sebastianbergmann",
  10251. "type": "github"
  10252. }
  10253. ],
  10254. "time": "2020-09-28T06:39:44+00:00"
  10255. },
  10256. {
  10257. "name": "spatie/backtrace",
  10258. "version": "1.5.3",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/spatie/backtrace.git",
  10262. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10267. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": "^7.3|^8.0"
  10278. },
  10279. "require-dev": {
  10280. "ext-json": "*",
  10281. "phpunit/phpunit": "^9.3",
  10282. "spatie/phpunit-snapshot-assertions": "^4.2",
  10283. "symfony/var-dumper": "^5.1"
  10284. },
  10285. "type": "library",
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Spatie\\Backtrace\\": "src"
  10289. }
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "MIT"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Freek Van de Herten",
  10298. "email": "freek@spatie.be",
  10299. "homepage": "https://spatie.be",
  10300. "role": "Developer"
  10301. }
  10302. ],
  10303. "description": "A better backtrace",
  10304. "homepage": "https://github.com/spatie/backtrace",
  10305. "keywords": [
  10306. "Backtrace",
  10307. "spatie"
  10308. ],
  10309. "support": {
  10310. "source": "https://github.com/spatie/backtrace/tree/1.5.3"
  10311. },
  10312. "funding": [
  10313. {
  10314. "url": "https://github.com/sponsors/spatie",
  10315. "type": "github"
  10316. },
  10317. {
  10318. "url": "https://spatie.be/open-source/support-us",
  10319. "type": "other"
  10320. }
  10321. ],
  10322. "time": "2023-06-28T12:59:17+00:00"
  10323. },
  10324. {
  10325. "name": "spatie/flare-client-php",
  10326. "version": "1.6.0",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/spatie/flare-client-php.git",
  10330. "reference": "220a7c8745e9fa427d54099f47147c4b97fe6462"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/220a7c8745e9fa427d54099f47147c4b97fe6462",
  10335. "reference": "220a7c8745e9fa427d54099f47147c4b97fe6462",
  10336. "shasum": "",
  10337. "mirrors": [
  10338. {
  10339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10340. "preferred": true
  10341. }
  10342. ]
  10343. },
  10344. "require": {
  10345. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  10346. "php": "^8.0",
  10347. "spatie/backtrace": "^1.5.2",
  10348. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  10349. "symfony/mime": "^5.2|^6.0|^7.0",
  10350. "symfony/process": "^5.2|^6.0|^7.0",
  10351. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  10352. },
  10353. "require-dev": {
  10354. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  10355. "pestphp/pest": "^1.20|^2.0",
  10356. "phpstan/extension-installer": "^1.1",
  10357. "phpstan/phpstan-deprecation-rules": "^1.0",
  10358. "phpstan/phpstan-phpunit": "^1.0",
  10359. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  10360. },
  10361. "type": "library",
  10362. "extra": {
  10363. "branch-alias": {
  10364. "dev-main": "1.3.x-dev"
  10365. }
  10366. },
  10367. "autoload": {
  10368. "files": [
  10369. "src/helpers.php"
  10370. ],
  10371. "psr-4": {
  10372. "Spatie\\FlareClient\\": "src"
  10373. }
  10374. },
  10375. "notification-url": "https://packagist.org/downloads/",
  10376. "license": [
  10377. "MIT"
  10378. ],
  10379. "description": "Send PHP errors to Flare",
  10380. "homepage": "https://github.com/spatie/flare-client-php",
  10381. "keywords": [
  10382. "exception",
  10383. "flare",
  10384. "reporting",
  10385. "spatie"
  10386. ],
  10387. "support": {
  10388. "issues": "https://github.com/spatie/flare-client-php/issues",
  10389. "source": "https://github.com/spatie/flare-client-php/tree/1.6.0"
  10390. },
  10391. "funding": [
  10392. {
  10393. "url": "https://github.com/spatie",
  10394. "type": "github"
  10395. }
  10396. ],
  10397. "time": "2024-05-22T09:45:39+00:00"
  10398. },
  10399. {
  10400. "name": "spatie/ignition",
  10401. "version": "1.14.2",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/spatie/ignition.git",
  10405. "reference": "5e11c11f675bb5251f061491a493e04a1a571532"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/spatie/ignition/zipball/5e11c11f675bb5251f061491a493e04a1a571532",
  10410. "reference": "5e11c11f675bb5251f061491a493e04a1a571532",
  10411. "shasum": "",
  10412. "mirrors": [
  10413. {
  10414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10415. "preferred": true
  10416. }
  10417. ]
  10418. },
  10419. "require": {
  10420. "ext-json": "*",
  10421. "ext-mbstring": "*",
  10422. "php": "^8.0",
  10423. "spatie/backtrace": "^1.5.3",
  10424. "spatie/flare-client-php": "^1.4.0",
  10425. "symfony/console": "^5.4|^6.0|^7.0",
  10426. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10427. },
  10428. "require-dev": {
  10429. "illuminate/cache": "^9.52|^10.0|^11.0",
  10430. "mockery/mockery": "^1.4",
  10431. "pestphp/pest": "^1.20|^2.0",
  10432. "phpstan/extension-installer": "^1.1",
  10433. "phpstan/phpstan-deprecation-rules": "^1.0",
  10434. "phpstan/phpstan-phpunit": "^1.0",
  10435. "psr/simple-cache-implementation": "*",
  10436. "symfony/cache": "^5.4|^6.0|^7.0",
  10437. "symfony/process": "^5.4|^6.0|^7.0",
  10438. "vlucas/phpdotenv": "^5.5"
  10439. },
  10440. "suggest": {
  10441. "openai-php/client": "Require get solutions from OpenAI",
  10442. "simple-cache-implementation": "To cache solutions from OpenAI"
  10443. },
  10444. "type": "library",
  10445. "extra": {
  10446. "branch-alias": {
  10447. "dev-main": "1.5.x-dev"
  10448. }
  10449. },
  10450. "autoload": {
  10451. "psr-4": {
  10452. "Spatie\\Ignition\\": "src"
  10453. }
  10454. },
  10455. "notification-url": "https://packagist.org/downloads/",
  10456. "license": [
  10457. "MIT"
  10458. ],
  10459. "authors": [
  10460. {
  10461. "name": "Spatie",
  10462. "email": "info@spatie.be",
  10463. "role": "Developer"
  10464. }
  10465. ],
  10466. "description": "A beautiful error page for PHP applications.",
  10467. "homepage": "https://flareapp.io/ignition",
  10468. "keywords": [
  10469. "error",
  10470. "flare",
  10471. "laravel",
  10472. "page"
  10473. ],
  10474. "support": {
  10475. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10476. "forum": "https://twitter.com/flareappio",
  10477. "issues": "https://github.com/spatie/ignition/issues",
  10478. "source": "https://github.com/spatie/ignition"
  10479. },
  10480. "funding": [
  10481. {
  10482. "url": "https://github.com/spatie",
  10483. "type": "github"
  10484. }
  10485. ],
  10486. "time": "2024-05-29T08:10:20+00:00"
  10487. },
  10488. {
  10489. "name": "spatie/laravel-ignition",
  10490. "version": "1.6.4",
  10491. "source": {
  10492. "type": "git",
  10493. "url": "https://github.com/spatie/laravel-ignition.git",
  10494. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10495. },
  10496. "dist": {
  10497. "type": "zip",
  10498. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10499. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10500. "shasum": "",
  10501. "mirrors": [
  10502. {
  10503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10504. "preferred": true
  10505. }
  10506. ]
  10507. },
  10508. "require": {
  10509. "ext-curl": "*",
  10510. "ext-json": "*",
  10511. "ext-mbstring": "*",
  10512. "illuminate/support": "^8.77|^9.27",
  10513. "monolog/monolog": "^2.3",
  10514. "php": "^8.0",
  10515. "spatie/flare-client-php": "^1.0.1",
  10516. "spatie/ignition": "^1.4.1",
  10517. "symfony/console": "^5.0|^6.0",
  10518. "symfony/var-dumper": "^5.0|^6.0"
  10519. },
  10520. "require-dev": {
  10521. "filp/whoops": "^2.14",
  10522. "livewire/livewire": "^2.8|dev-develop",
  10523. "mockery/mockery": "^1.4",
  10524. "nunomaduro/larastan": "^1.0",
  10525. "orchestra/testbench": "^6.23|^7.0",
  10526. "pestphp/pest": "^1.20",
  10527. "phpstan/extension-installer": "^1.1",
  10528. "phpstan/phpstan-deprecation-rules": "^1.0",
  10529. "phpstan/phpstan-phpunit": "^1.0",
  10530. "spatie/laravel-ray": "^1.27"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "laravel": {
  10535. "providers": [
  10536. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10537. ],
  10538. "aliases": {
  10539. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10540. }
  10541. }
  10542. },
  10543. "autoload": {
  10544. "files": [
  10545. "src/helpers.php"
  10546. ],
  10547. "psr-4": {
  10548. "Spatie\\LaravelIgnition\\": "src"
  10549. }
  10550. },
  10551. "notification-url": "https://packagist.org/downloads/",
  10552. "license": [
  10553. "MIT"
  10554. ],
  10555. "authors": [
  10556. {
  10557. "name": "Spatie",
  10558. "email": "info@spatie.be",
  10559. "role": "Developer"
  10560. }
  10561. ],
  10562. "description": "A beautiful error page for Laravel applications.",
  10563. "homepage": "https://flareapp.io/ignition",
  10564. "keywords": [
  10565. "error",
  10566. "flare",
  10567. "laravel",
  10568. "page"
  10569. ],
  10570. "support": {
  10571. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10572. "forum": "https://twitter.com/flareappio",
  10573. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10574. "source": "https://github.com/spatie/laravel-ignition"
  10575. },
  10576. "funding": [
  10577. {
  10578. "url": "https://github.com/spatie",
  10579. "type": "github"
  10580. }
  10581. ],
  10582. "time": "2023-01-03T19:28:04+00:00"
  10583. },
  10584. {
  10585. "name": "symfony/yaml",
  10586. "version": "v6.4.13",
  10587. "source": {
  10588. "type": "git",
  10589. "url": "https://github.com/symfony/yaml.git",
  10590. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9"
  10591. },
  10592. "dist": {
  10593. "type": "zip",
  10594. "url": "https://api.github.com/repos/symfony/yaml/zipball/e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  10595. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  10596. "shasum": "",
  10597. "mirrors": [
  10598. {
  10599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10600. "preferred": true
  10601. }
  10602. ]
  10603. },
  10604. "require": {
  10605. "php": ">=8.1",
  10606. "symfony/deprecation-contracts": "^2.5|^3",
  10607. "symfony/polyfill-ctype": "^1.8"
  10608. },
  10609. "conflict": {
  10610. "symfony/console": "<5.4"
  10611. },
  10612. "require-dev": {
  10613. "symfony/console": "^5.4|^6.0|^7.0"
  10614. },
  10615. "bin": [
  10616. "Resources/bin/yaml-lint"
  10617. ],
  10618. "type": "library",
  10619. "autoload": {
  10620. "psr-4": {
  10621. "Symfony\\Component\\Yaml\\": ""
  10622. },
  10623. "exclude-from-classmap": [
  10624. "/Tests/"
  10625. ]
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "MIT"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "Fabien Potencier",
  10634. "email": "fabien@symfony.com"
  10635. },
  10636. {
  10637. "name": "Symfony Community",
  10638. "homepage": "https://symfony.com/contributors"
  10639. }
  10640. ],
  10641. "description": "Loads and dumps YAML files",
  10642. "homepage": "https://symfony.com",
  10643. "support": {
  10644. "source": "https://github.com/symfony/yaml/tree/v6.4.13"
  10645. },
  10646. "funding": [
  10647. {
  10648. "url": "https://symfony.com/sponsor",
  10649. "type": "custom"
  10650. },
  10651. {
  10652. "url": "https://github.com/fabpot",
  10653. "type": "github"
  10654. },
  10655. {
  10656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10657. "type": "tidelift"
  10658. }
  10659. ],
  10660. "time": "2024-09-25T14:18:03+00:00"
  10661. },
  10662. {
  10663. "name": "theseer/tokenizer",
  10664. "version": "1.2.3",
  10665. "source": {
  10666. "type": "git",
  10667. "url": "https://github.com/theseer/tokenizer.git",
  10668. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10669. },
  10670. "dist": {
  10671. "type": "zip",
  10672. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10673. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10674. "shasum": "",
  10675. "mirrors": [
  10676. {
  10677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10678. "preferred": true
  10679. }
  10680. ]
  10681. },
  10682. "require": {
  10683. "ext-dom": "*",
  10684. "ext-tokenizer": "*",
  10685. "ext-xmlwriter": "*",
  10686. "php": "^7.2 || ^8.0"
  10687. },
  10688. "type": "library",
  10689. "autoload": {
  10690. "classmap": [
  10691. "src/"
  10692. ]
  10693. },
  10694. "notification-url": "https://packagist.org/downloads/",
  10695. "license": [
  10696. "BSD-3-Clause"
  10697. ],
  10698. "authors": [
  10699. {
  10700. "name": "Arne Blankerts",
  10701. "email": "arne@blankerts.de",
  10702. "role": "Developer"
  10703. }
  10704. ],
  10705. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10706. "support": {
  10707. "issues": "https://github.com/theseer/tokenizer/issues",
  10708. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10709. },
  10710. "funding": [
  10711. {
  10712. "url": "https://github.com/theseer",
  10713. "type": "github"
  10714. }
  10715. ],
  10716. "time": "2024-03-03T12:36:25+00:00"
  10717. }
  10718. ],
  10719. "aliases": [],
  10720. "minimum-stability": "dev",
  10721. "stability-flags": [],
  10722. "prefer-stable": true,
  10723. "prefer-lowest": false,
  10724. "platform": {
  10725. "php": "^8.0.2"
  10726. },
  10727. "platform-dev": [],
  10728. "plugin-api-version": "2.6.0"
  10729. }