composer.lock 327 KB

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