composer.lock 286 KB

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