composer.lock 286 KB

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