composer.lock 308 KB

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