composer.lock 236 KB

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