composer.lock 279 KB

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