composer.lock 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588
  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": "a8a45b0f4001cb3c8e61821f0cc50383",
  8. "packages": [
  9. {
  10. "name": "awobaz/compoships",
  11. "version": "2.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/topclaudy/compoships.git",
  15. "reference": "df6a9eb558d03c2c8be2ebb07e277568eb3302c0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/topclaudy/compoships/zipball/df6a9eb558d03c2c8be2ebb07e277568eb3302c0",
  20. "reference": "df6a9eb558d03c2c8be2ebb07e277568eb3302c0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/database": ">=5.6 <9.0"
  25. },
  26. "require-dev": {
  27. "ext-sqlite3": "*"
  28. },
  29. "suggest": {
  30. "awobaz/blade-active": "Blade directives for the Laravel 'Active' package",
  31. "awobaz/eloquent-auto-append": "Automatically append accessors to model serialization",
  32. "awobaz/eloquent-mutators": "Reusable mutators (getters/setters) for Laravel 5's Eloquent",
  33. "awobaz/syntactic": "Syntactic sugar for named and indexed parameters call."
  34. },
  35. "type": "library",
  36. "autoload": {
  37. "psr-4": {
  38. "Awobaz\\Compoships\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Claudin J. Daniel",
  48. "email": "cdaniel@awobaz.com"
  49. }
  50. ],
  51. "description": "Laravel relationships with support for composite/multiple keys",
  52. "keywords": [
  53. "laravel",
  54. "laravel composite keys",
  55. "laravel relationships"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/topclaudy/compoships/issues",
  59. "source": "https://github.com/topclaudy/compoships/tree/2.1.2"
  60. },
  61. "funding": [
  62. {
  63. "url": "https://paypal.me/awobaz",
  64. "type": "custom"
  65. }
  66. ],
  67. "time": "2021-09-04T16:00:10+00:00"
  68. },
  69. {
  70. "name": "bacon/bacon-qr-code",
  71. "version": "2.0.4",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/Bacon/BaconQrCode.git",
  75. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  80. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "dasprid/enum": "^1.0.3",
  91. "ext-iconv": "*",
  92. "php": "^7.1 || ^8.0"
  93. },
  94. "require-dev": {
  95. "phly/keep-a-changelog": "^1.4",
  96. "phpunit/phpunit": "^7 | ^8 | ^9",
  97. "squizlabs/php_codesniffer": "^3.4"
  98. },
  99. "suggest": {
  100. "ext-imagick": "to generate QR code images"
  101. },
  102. "type": "library",
  103. "autoload": {
  104. "psr-4": {
  105. "BaconQrCode\\": "src/"
  106. }
  107. },
  108. "notification-url": "https://packagist.org/downloads/",
  109. "license": [
  110. "BSD-2-Clause"
  111. ],
  112. "authors": [
  113. {
  114. "name": "Ben Scholzen 'DASPRiD'",
  115. "email": "mail@dasprids.de",
  116. "homepage": "https://dasprids.de/",
  117. "role": "Developer"
  118. }
  119. ],
  120. "description": "BaconQrCode is a QR code generator for PHP.",
  121. "homepage": "https://github.com/Bacon/BaconQrCode",
  122. "support": {
  123. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  124. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  125. },
  126. "time": "2021-06-18T13:26:35+00:00"
  127. },
  128. {
  129. "name": "brick/math",
  130. "version": "0.9.3",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/brick/math.git",
  134. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  139. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  140. "shasum": "",
  141. "mirrors": [
  142. {
  143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  144. "preferred": true
  145. }
  146. ]
  147. },
  148. "require": {
  149. "ext-json": "*",
  150. "php": "^7.1 || ^8.0"
  151. },
  152. "require-dev": {
  153. "php-coveralls/php-coveralls": "^2.2",
  154. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  155. "vimeo/psalm": "4.9.2"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Brick\\Math\\": "src/"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "MIT"
  166. ],
  167. "description": "Arbitrary-precision arithmetic library",
  168. "keywords": [
  169. "Arbitrary-precision",
  170. "BigInteger",
  171. "BigRational",
  172. "arithmetic",
  173. "bigdecimal",
  174. "bignum",
  175. "brick",
  176. "math"
  177. ],
  178. "support": {
  179. "issues": "https://github.com/brick/math/issues",
  180. "source": "https://github.com/brick/math/tree/0.9.3"
  181. },
  182. "funding": [
  183. {
  184. "url": "https://github.com/BenMorel",
  185. "type": "github"
  186. },
  187. {
  188. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  189. "type": "tidelift"
  190. }
  191. ],
  192. "time": "2021-08-15T20:50:18+00:00"
  193. },
  194. {
  195. "name": "cakephp/chronos",
  196. "version": "2.3.0",
  197. "source": {
  198. "type": "git",
  199. "url": "https://github.com/cakephp/chronos.git",
  200. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd"
  201. },
  202. "dist": {
  203. "type": "zip",
  204. "url": "https://api.github.com/repos/cakephp/chronos/zipball/3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  205. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  206. "shasum": "",
  207. "mirrors": [
  208. {
  209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  210. "preferred": true
  211. }
  212. ]
  213. },
  214. "require": {
  215. "php": ">=7.2"
  216. },
  217. "require-dev": {
  218. "cakephp/cakephp-codesniffer": "^4.5",
  219. "phpunit/phpunit": "^8.0 || ^9.0"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "Cake\\Chronos\\": "src/"
  225. },
  226. "files": [
  227. "src/carbon_compat.php"
  228. ]
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Brian Nesbitt",
  237. "email": "brian@nesbot.com",
  238. "homepage": "http://nesbot.com"
  239. },
  240. {
  241. "name": "The CakePHP Team",
  242. "homepage": "http://cakephp.org"
  243. }
  244. ],
  245. "description": "A simple API extension for DateTime.",
  246. "homepage": "http://cakephp.org",
  247. "keywords": [
  248. "date",
  249. "datetime",
  250. "time"
  251. ],
  252. "support": {
  253. "irc": "irc://irc.freenode.org/cakephp",
  254. "issues": "https://github.com/cakephp/chronos/issues",
  255. "source": "https://github.com/cakephp/chronos"
  256. },
  257. "time": "2021-10-17T02:44:05+00:00"
  258. },
  259. {
  260. "name": "dasprid/enum",
  261. "version": "1.0.3",
  262. "source": {
  263. "type": "git",
  264. "url": "https://github.com/DASPRiD/Enum.git",
  265. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  266. },
  267. "dist": {
  268. "type": "zip",
  269. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  270. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  271. "shasum": "",
  272. "mirrors": [
  273. {
  274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  275. "preferred": true
  276. }
  277. ]
  278. },
  279. "require-dev": {
  280. "phpunit/phpunit": "^7 | ^8 | ^9",
  281. "squizlabs/php_codesniffer": "^3.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "DASPRiD\\Enum\\": "src/"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "BSD-2-Clause"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Ben Scholzen 'DASPRiD'",
  296. "email": "mail@dasprids.de",
  297. "homepage": "https://dasprids.de/",
  298. "role": "Developer"
  299. }
  300. ],
  301. "description": "PHP 7.1 enum implementation",
  302. "keywords": [
  303. "enum",
  304. "map"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/DASPRiD/Enum/issues",
  308. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  309. },
  310. "time": "2020-10-02T16:03:48+00:00"
  311. },
  312. {
  313. "name": "doctrine/cache",
  314. "version": "2.1.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/doctrine/cache.git",
  318. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  323. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "php": "~7.1 || ^8.0"
  334. },
  335. "conflict": {
  336. "doctrine/common": ">2.2,<2.4"
  337. },
  338. "require-dev": {
  339. "alcaeus/mongo-php-adapter": "^1.1",
  340. "cache/integration-tests": "dev-master",
  341. "doctrine/coding-standard": "^8.0",
  342. "mongodb/mongodb": "^1.1",
  343. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  344. "predis/predis": "~1.0",
  345. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  346. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  347. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  348. },
  349. "suggest": {
  350. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  351. },
  352. "type": "library",
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. },
  379. {
  380. "name": "Johannes Schmitt",
  381. "email": "schmittjoh@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  385. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  386. "keywords": [
  387. "abstraction",
  388. "apcu",
  389. "cache",
  390. "caching",
  391. "couchdb",
  392. "memcached",
  393. "php",
  394. "redis",
  395. "xcache"
  396. ],
  397. "support": {
  398. "issues": "https://github.com/doctrine/cache/issues",
  399. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  400. },
  401. "funding": [
  402. {
  403. "url": "https://www.doctrine-project.org/sponsorship.html",
  404. "type": "custom"
  405. },
  406. {
  407. "url": "https://www.patreon.com/phpdoctrine",
  408. "type": "patreon"
  409. },
  410. {
  411. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  412. "type": "tidelift"
  413. }
  414. ],
  415. "time": "2021-07-17T14:49:29+00:00"
  416. },
  417. {
  418. "name": "doctrine/dbal",
  419. "version": "2.13.4",
  420. "source": {
  421. "type": "git",
  422. "url": "https://github.com/doctrine/dbal.git",
  423. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e"
  424. },
  425. "dist": {
  426. "type": "zip",
  427. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2411a55a2a628e6d8dd598388ab13474802c7b6e",
  428. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e",
  429. "shasum": "",
  430. "mirrors": [
  431. {
  432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  433. "preferred": true
  434. }
  435. ]
  436. },
  437. "require": {
  438. "doctrine/cache": "^1.0|^2.0",
  439. "doctrine/deprecations": "^0.5.3",
  440. "doctrine/event-manager": "^1.0",
  441. "ext-pdo": "*",
  442. "php": "^7.1 || ^8"
  443. },
  444. "require-dev": {
  445. "doctrine/coding-standard": "9.0.0",
  446. "jetbrains/phpstorm-stubs": "2021.1",
  447. "phpstan/phpstan": "0.12.99",
  448. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  449. "psalm/plugin-phpunit": "0.16.1",
  450. "squizlabs/php_codesniffer": "3.6.0",
  451. "symfony/cache": "^4.4",
  452. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  453. "vimeo/psalm": "4.10.0"
  454. },
  455. "suggest": {
  456. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  457. },
  458. "bin": [
  459. "bin/doctrine-dbal"
  460. ],
  461. "type": "library",
  462. "autoload": {
  463. "psr-4": {
  464. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Guilherme Blanco",
  474. "email": "guilhermeblanco@gmail.com"
  475. },
  476. {
  477. "name": "Roman Borschel",
  478. "email": "roman@code-factory.org"
  479. },
  480. {
  481. "name": "Benjamin Eberlei",
  482. "email": "kontakt@beberlei.de"
  483. },
  484. {
  485. "name": "Jonathan Wage",
  486. "email": "jonwage@gmail.com"
  487. }
  488. ],
  489. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  490. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  491. "keywords": [
  492. "abstraction",
  493. "database",
  494. "db2",
  495. "dbal",
  496. "mariadb",
  497. "mssql",
  498. "mysql",
  499. "oci8",
  500. "oracle",
  501. "pdo",
  502. "pgsql",
  503. "postgresql",
  504. "queryobject",
  505. "sasql",
  506. "sql",
  507. "sqlanywhere",
  508. "sqlite",
  509. "sqlserver",
  510. "sqlsrv"
  511. ],
  512. "support": {
  513. "issues": "https://github.com/doctrine/dbal/issues",
  514. "source": "https://github.com/doctrine/dbal/tree/2.13.4"
  515. },
  516. "funding": [
  517. {
  518. "url": "https://www.doctrine-project.org/sponsorship.html",
  519. "type": "custom"
  520. },
  521. {
  522. "url": "https://www.patreon.com/phpdoctrine",
  523. "type": "patreon"
  524. },
  525. {
  526. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  527. "type": "tidelift"
  528. }
  529. ],
  530. "time": "2021-10-02T15:59:26+00:00"
  531. },
  532. {
  533. "name": "doctrine/deprecations",
  534. "version": "v0.5.3",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/doctrine/deprecations.git",
  538. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  543. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  544. "shasum": "",
  545. "mirrors": [
  546. {
  547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  548. "preferred": true
  549. }
  550. ]
  551. },
  552. "require": {
  553. "php": "^7.1|^8.0"
  554. },
  555. "require-dev": {
  556. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  557. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  558. "psr/log": "^1.0"
  559. },
  560. "suggest": {
  561. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-4": {
  566. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  574. "homepage": "https://www.doctrine-project.org/",
  575. "support": {
  576. "issues": "https://github.com/doctrine/deprecations/issues",
  577. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  578. },
  579. "time": "2021-03-21T12:59:47+00:00"
  580. },
  581. {
  582. "name": "doctrine/event-manager",
  583. "version": "1.1.1",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/doctrine/event-manager.git",
  587. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  592. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  593. "shasum": "",
  594. "mirrors": [
  595. {
  596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  597. "preferred": true
  598. }
  599. ]
  600. },
  601. "require": {
  602. "php": "^7.1 || ^8.0"
  603. },
  604. "conflict": {
  605. "doctrine/common": "<2.9@dev"
  606. },
  607. "require-dev": {
  608. "doctrine/coding-standard": "^6.0",
  609. "phpunit/phpunit": "^7.0"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-master": "1.0.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Doctrine\\Common\\": "lib/Doctrine/Common"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Guilherme Blanco",
  629. "email": "guilhermeblanco@gmail.com"
  630. },
  631. {
  632. "name": "Roman Borschel",
  633. "email": "roman@code-factory.org"
  634. },
  635. {
  636. "name": "Benjamin Eberlei",
  637. "email": "kontakt@beberlei.de"
  638. },
  639. {
  640. "name": "Jonathan Wage",
  641. "email": "jonwage@gmail.com"
  642. },
  643. {
  644. "name": "Johannes Schmitt",
  645. "email": "schmittjoh@gmail.com"
  646. },
  647. {
  648. "name": "Marco Pivetta",
  649. "email": "ocramius@gmail.com"
  650. }
  651. ],
  652. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  653. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  654. "keywords": [
  655. "event",
  656. "event dispatcher",
  657. "event manager",
  658. "event system",
  659. "events"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/doctrine/event-manager/issues",
  663. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  664. },
  665. "funding": [
  666. {
  667. "url": "https://www.doctrine-project.org/sponsorship.html",
  668. "type": "custom"
  669. },
  670. {
  671. "url": "https://www.patreon.com/phpdoctrine",
  672. "type": "patreon"
  673. },
  674. {
  675. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  676. "type": "tidelift"
  677. }
  678. ],
  679. "time": "2020-05-29T18:28:51+00:00"
  680. },
  681. {
  682. "name": "doctrine/inflector",
  683. "version": "2.0.4",
  684. "source": {
  685. "type": "git",
  686. "url": "https://github.com/doctrine/inflector.git",
  687. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  688. },
  689. "dist": {
  690. "type": "zip",
  691. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  692. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  693. "shasum": "",
  694. "mirrors": [
  695. {
  696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  697. "preferred": true
  698. }
  699. ]
  700. },
  701. "require": {
  702. "php": "^7.2 || ^8.0"
  703. },
  704. "require-dev": {
  705. "doctrine/coding-standard": "^8.2",
  706. "phpstan/phpstan": "^0.12",
  707. "phpstan/phpstan-phpunit": "^0.12",
  708. "phpstan/phpstan-strict-rules": "^0.12",
  709. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  710. "vimeo/psalm": "^4.10"
  711. },
  712. "type": "library",
  713. "autoload": {
  714. "psr-4": {
  715. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Guilherme Blanco",
  725. "email": "guilhermeblanco@gmail.com"
  726. },
  727. {
  728. "name": "Roman Borschel",
  729. "email": "roman@code-factory.org"
  730. },
  731. {
  732. "name": "Benjamin Eberlei",
  733. "email": "kontakt@beberlei.de"
  734. },
  735. {
  736. "name": "Jonathan Wage",
  737. "email": "jonwage@gmail.com"
  738. },
  739. {
  740. "name": "Johannes Schmitt",
  741. "email": "schmittjoh@gmail.com"
  742. }
  743. ],
  744. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  745. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  746. "keywords": [
  747. "inflection",
  748. "inflector",
  749. "lowercase",
  750. "manipulation",
  751. "php",
  752. "plural",
  753. "singular",
  754. "strings",
  755. "uppercase",
  756. "words"
  757. ],
  758. "support": {
  759. "issues": "https://github.com/doctrine/inflector/issues",
  760. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  761. },
  762. "funding": [
  763. {
  764. "url": "https://www.doctrine-project.org/sponsorship.html",
  765. "type": "custom"
  766. },
  767. {
  768. "url": "https://www.patreon.com/phpdoctrine",
  769. "type": "patreon"
  770. },
  771. {
  772. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  773. "type": "tidelift"
  774. }
  775. ],
  776. "time": "2021-10-22T20:16:43+00:00"
  777. },
  778. {
  779. "name": "doctrine/lexer",
  780. "version": "1.2.1",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/doctrine/lexer.git",
  784. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  789. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  790. "shasum": "",
  791. "mirrors": [
  792. {
  793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  794. "preferred": true
  795. }
  796. ]
  797. },
  798. "require": {
  799. "php": "^7.2 || ^8.0"
  800. },
  801. "require-dev": {
  802. "doctrine/coding-standard": "^6.0",
  803. "phpstan/phpstan": "^0.11.8",
  804. "phpunit/phpunit": "^8.2"
  805. },
  806. "type": "library",
  807. "extra": {
  808. "branch-alias": {
  809. "dev-master": "1.2.x-dev"
  810. }
  811. },
  812. "autoload": {
  813. "psr-4": {
  814. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Guilherme Blanco",
  824. "email": "guilhermeblanco@gmail.com"
  825. },
  826. {
  827. "name": "Roman Borschel",
  828. "email": "roman@code-factory.org"
  829. },
  830. {
  831. "name": "Johannes Schmitt",
  832. "email": "schmittjoh@gmail.com"
  833. }
  834. ],
  835. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  836. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  837. "keywords": [
  838. "annotations",
  839. "docblock",
  840. "lexer",
  841. "parser",
  842. "php"
  843. ],
  844. "support": {
  845. "issues": "https://github.com/doctrine/lexer/issues",
  846. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  847. },
  848. "funding": [
  849. {
  850. "url": "https://www.doctrine-project.org/sponsorship.html",
  851. "type": "custom"
  852. },
  853. {
  854. "url": "https://www.patreon.com/phpdoctrine",
  855. "type": "patreon"
  856. },
  857. {
  858. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  859. "type": "tidelift"
  860. }
  861. ],
  862. "time": "2020-05-25T17:44:05+00:00"
  863. },
  864. {
  865. "name": "dragonmantank/cron-expression",
  866. "version": "v2.3.1",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/dragonmantank/cron-expression.git",
  870. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  875. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  876. "shasum": "",
  877. "mirrors": [
  878. {
  879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  880. "preferred": true
  881. }
  882. ]
  883. },
  884. "require": {
  885. "php": "^7.0|^8.0"
  886. },
  887. "require-dev": {
  888. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-master": "2.3-dev"
  894. }
  895. },
  896. "autoload": {
  897. "psr-4": {
  898. "Cron\\": "src/Cron/"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Michael Dowling",
  908. "email": "mtdowling@gmail.com",
  909. "homepage": "https://github.com/mtdowling"
  910. },
  911. {
  912. "name": "Chris Tankersley",
  913. "email": "chris@ctankersley.com",
  914. "homepage": "https://github.com/dragonmantank"
  915. }
  916. ],
  917. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  918. "keywords": [
  919. "cron",
  920. "schedule"
  921. ],
  922. "support": {
  923. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  924. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  925. },
  926. "funding": [
  927. {
  928. "url": "https://github.com/dragonmantank",
  929. "type": "github"
  930. }
  931. ],
  932. "time": "2020-10-13T00:52:37+00:00"
  933. },
  934. {
  935. "name": "egulias/email-validator",
  936. "version": "2.1.25",
  937. "source": {
  938. "type": "git",
  939. "url": "https://github.com/egulias/EmailValidator.git",
  940. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  941. },
  942. "dist": {
  943. "type": "zip",
  944. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  945. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  946. "shasum": "",
  947. "mirrors": [
  948. {
  949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  950. "preferred": true
  951. }
  952. ]
  953. },
  954. "require": {
  955. "doctrine/lexer": "^1.0.1",
  956. "php": ">=5.5",
  957. "symfony/polyfill-intl-idn": "^1.10"
  958. },
  959. "require-dev": {
  960. "dominicsayers/isemail": "^3.0.7",
  961. "phpunit/phpunit": "^4.8.36|^7.5.15",
  962. "satooshi/php-coveralls": "^1.0.1"
  963. },
  964. "suggest": {
  965. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  966. },
  967. "type": "library",
  968. "extra": {
  969. "branch-alias": {
  970. "dev-master": "2.1.x-dev"
  971. }
  972. },
  973. "autoload": {
  974. "psr-4": {
  975. "Egulias\\EmailValidator\\": "src"
  976. }
  977. },
  978. "notification-url": "https://packagist.org/downloads/",
  979. "license": [
  980. "MIT"
  981. ],
  982. "authors": [
  983. {
  984. "name": "Eduardo Gulias Davis"
  985. }
  986. ],
  987. "description": "A library for validating emails against several RFCs",
  988. "homepage": "https://github.com/egulias/EmailValidator",
  989. "keywords": [
  990. "email",
  991. "emailvalidation",
  992. "emailvalidator",
  993. "validation",
  994. "validator"
  995. ],
  996. "support": {
  997. "issues": "https://github.com/egulias/EmailValidator/issues",
  998. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  999. },
  1000. "funding": [
  1001. {
  1002. "url": "https://github.com/egulias",
  1003. "type": "github"
  1004. }
  1005. ],
  1006. "time": "2020-12-29T14:50:06+00:00"
  1007. },
  1008. {
  1009. "name": "endroid/qr-code",
  1010. "version": "3.9.7",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/endroid/qr-code.git",
  1014. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1019. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1020. "shasum": "",
  1021. "mirrors": [
  1022. {
  1023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1024. "preferred": true
  1025. }
  1026. ]
  1027. },
  1028. "require": {
  1029. "bacon/bacon-qr-code": "^2.0",
  1030. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1031. "myclabs/php-enum": "^1.5",
  1032. "php": "^7.3||^8.0",
  1033. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1034. "symfony/property-access": "^3.4||^4.4||^5.0"
  1035. },
  1036. "require-dev": {
  1037. "endroid/quality": "^1.5.2",
  1038. "setasign/fpdf": "^1.8"
  1039. },
  1040. "suggest": {
  1041. "ext-gd": "Required for generating PNG images",
  1042. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1043. "setasign/fpdf": "Required to use the FPDF writer.",
  1044. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1045. },
  1046. "type": "library",
  1047. "extra": {
  1048. "branch-alias": {
  1049. "dev-master": "3.x-dev"
  1050. }
  1051. },
  1052. "autoload": {
  1053. "psr-4": {
  1054. "Endroid\\QrCode\\": "src/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Jeroen van den Enden",
  1064. "email": "info@endroid.nl"
  1065. }
  1066. ],
  1067. "description": "Endroid QR Code",
  1068. "homepage": "https://github.com/endroid/qr-code",
  1069. "keywords": [
  1070. "bundle",
  1071. "code",
  1072. "endroid",
  1073. "php",
  1074. "qr",
  1075. "qrcode"
  1076. ],
  1077. "support": {
  1078. "issues": "https://github.com/endroid/qr-code/issues",
  1079. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1080. },
  1081. "funding": [
  1082. {
  1083. "url": "https://github.com/endroid",
  1084. "type": "github"
  1085. }
  1086. ],
  1087. "time": "2021-04-20T19:10:54+00:00"
  1088. },
  1089. {
  1090. "name": "ezyang/htmlpurifier",
  1091. "version": "v4.13.0",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/ezyang/htmlpurifier.git",
  1095. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1100. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1101. "shasum": "",
  1102. "mirrors": [
  1103. {
  1104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1105. "preferred": true
  1106. }
  1107. ]
  1108. },
  1109. "require": {
  1110. "php": ">=5.2"
  1111. },
  1112. "require-dev": {
  1113. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1114. },
  1115. "type": "library",
  1116. "autoload": {
  1117. "psr-0": {
  1118. "HTMLPurifier": "library/"
  1119. },
  1120. "files": [
  1121. "library/HTMLPurifier.composer.php"
  1122. ],
  1123. "exclude-from-classmap": [
  1124. "/library/HTMLPurifier/Language/"
  1125. ]
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "LGPL-2.1-or-later"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "Edward Z. Yang",
  1134. "email": "admin@htmlpurifier.org",
  1135. "homepage": "http://ezyang.com"
  1136. }
  1137. ],
  1138. "description": "Standards compliant HTML filter written in PHP",
  1139. "homepage": "http://htmlpurifier.org/",
  1140. "keywords": [
  1141. "html"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1145. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1146. },
  1147. "time": "2020-06-29T00:56:53+00:00"
  1148. },
  1149. {
  1150. "name": "facade/flare-client-php",
  1151. "version": "1.9.1",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/facade/flare-client-php.git",
  1155. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1160. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1161. "shasum": "",
  1162. "mirrors": [
  1163. {
  1164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1165. "preferred": true
  1166. }
  1167. ]
  1168. },
  1169. "require": {
  1170. "facade/ignition-contracts": "~1.0",
  1171. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1172. "php": "^7.1|^8.0",
  1173. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1174. "symfony/mime": "^3.4|^4.0|^5.1",
  1175. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1176. },
  1177. "require-dev": {
  1178. "friendsofphp/php-cs-fixer": "^2.14",
  1179. "phpunit/phpunit": "^7.5.16",
  1180. "spatie/phpunit-snapshot-assertions": "^2.0"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.0-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Facade\\FlareClient\\": "src"
  1191. },
  1192. "files": [
  1193. "src/helpers.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "description": "Send PHP errors to Flare",
  1201. "homepage": "https://github.com/facade/flare-client-php",
  1202. "keywords": [
  1203. "exception",
  1204. "facade",
  1205. "flare",
  1206. "reporting"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/facade/flare-client-php/issues",
  1210. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  1211. },
  1212. "funding": [
  1213. {
  1214. "url": "https://github.com/spatie",
  1215. "type": "github"
  1216. }
  1217. ],
  1218. "time": "2021-09-13T12:16:46+00:00"
  1219. },
  1220. {
  1221. "name": "facade/ignition",
  1222. "version": "2.15.0",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "https://github.com/facade/ignition.git",
  1226. "reference": "3ee6e94815462bcf09bca0efc1c9069685df8da3"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://api.github.com/repos/facade/ignition/zipball/3ee6e94815462bcf09bca0efc1c9069685df8da3",
  1231. "reference": "3ee6e94815462bcf09bca0efc1c9069685df8da3",
  1232. "shasum": "",
  1233. "mirrors": [
  1234. {
  1235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1236. "preferred": true
  1237. }
  1238. ]
  1239. },
  1240. "require": {
  1241. "ext-curl": "*",
  1242. "ext-json": "*",
  1243. "ext-mbstring": "*",
  1244. "facade/flare-client-php": "^1.9.1",
  1245. "facade/ignition-contracts": "^1.0.2",
  1246. "illuminate/support": "^7.0|^8.0",
  1247. "monolog/monolog": "^2.0",
  1248. "php": "^7.2.5|^8.0",
  1249. "symfony/console": "^5.0",
  1250. "symfony/var-dumper": "^5.0"
  1251. },
  1252. "require-dev": {
  1253. "friendsofphp/php-cs-fixer": "^2.14",
  1254. "mockery/mockery": "^1.3",
  1255. "orchestra/testbench": "^5.0|^6.0",
  1256. "psalm/plugin-laravel": "^1.2"
  1257. },
  1258. "suggest": {
  1259. "laravel/telescope": "^3.1"
  1260. },
  1261. "type": "library",
  1262. "extra": {
  1263. "branch-alias": {
  1264. "dev-master": "2.x-dev"
  1265. },
  1266. "laravel": {
  1267. "providers": [
  1268. "Facade\\Ignition\\IgnitionServiceProvider"
  1269. ],
  1270. "aliases": {
  1271. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1272. }
  1273. }
  1274. },
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Facade\\Ignition\\": "src"
  1278. },
  1279. "files": [
  1280. "src/helpers.php"
  1281. ]
  1282. },
  1283. "notification-url": "https://packagist.org/downloads/",
  1284. "license": [
  1285. "MIT"
  1286. ],
  1287. "description": "A beautiful error page for Laravel applications.",
  1288. "homepage": "https://github.com/facade/ignition",
  1289. "keywords": [
  1290. "error",
  1291. "flare",
  1292. "laravel",
  1293. "page"
  1294. ],
  1295. "support": {
  1296. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1297. "forum": "https://twitter.com/flareappio",
  1298. "issues": "https://github.com/facade/ignition/issues",
  1299. "source": "https://github.com/facade/ignition"
  1300. },
  1301. "time": "2021-10-11T15:24:06+00:00"
  1302. },
  1303. {
  1304. "name": "facade/ignition-contracts",
  1305. "version": "1.0.2",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/facade/ignition-contracts.git",
  1309. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1314. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1315. "shasum": "",
  1316. "mirrors": [
  1317. {
  1318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1319. "preferred": true
  1320. }
  1321. ]
  1322. },
  1323. "require": {
  1324. "php": "^7.3|^8.0"
  1325. },
  1326. "require-dev": {
  1327. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1328. "phpunit/phpunit": "^9.3.11",
  1329. "vimeo/psalm": "^3.17.1"
  1330. },
  1331. "type": "library",
  1332. "autoload": {
  1333. "psr-4": {
  1334. "Facade\\IgnitionContracts\\": "src"
  1335. }
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "Freek Van der Herten",
  1344. "email": "freek@spatie.be",
  1345. "homepage": "https://flareapp.io",
  1346. "role": "Developer"
  1347. }
  1348. ],
  1349. "description": "Solution contracts for Ignition",
  1350. "homepage": "https://github.com/facade/ignition-contracts",
  1351. "keywords": [
  1352. "contracts",
  1353. "flare",
  1354. "ignition"
  1355. ],
  1356. "support": {
  1357. "issues": "https://github.com/facade/ignition-contracts/issues",
  1358. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1359. },
  1360. "time": "2020-10-16T08:27:54+00:00"
  1361. },
  1362. {
  1363. "name": "fideloper/proxy",
  1364. "version": "4.4.1",
  1365. "source": {
  1366. "type": "git",
  1367. "url": "https://github.com/fideloper/TrustedProxy.git",
  1368. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1369. },
  1370. "dist": {
  1371. "type": "zip",
  1372. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1373. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1374. "shasum": "",
  1375. "mirrors": [
  1376. {
  1377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1378. "preferred": true
  1379. }
  1380. ]
  1381. },
  1382. "require": {
  1383. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1384. "php": ">=5.4.0"
  1385. },
  1386. "require-dev": {
  1387. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1388. "mockery/mockery": "^1.0",
  1389. "phpunit/phpunit": "^6.0"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "laravel": {
  1394. "providers": [
  1395. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1396. ]
  1397. }
  1398. },
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Fideloper\\Proxy\\": "src/"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Chris Fidao",
  1411. "email": "fideloper@gmail.com"
  1412. }
  1413. ],
  1414. "description": "Set trusted proxies for Laravel",
  1415. "keywords": [
  1416. "load balancing",
  1417. "proxy",
  1418. "trusted proxy"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1422. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1423. },
  1424. "time": "2020-10-22T13:48:01+00:00"
  1425. },
  1426. {
  1427. "name": "firebase/php-jwt",
  1428. "version": "v5.4.0",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/firebase/php-jwt.git",
  1432. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1437. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1438. "shasum": "",
  1439. "mirrors": [
  1440. {
  1441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1442. "preferred": true
  1443. }
  1444. ]
  1445. },
  1446. "require": {
  1447. "php": ">=5.3.0"
  1448. },
  1449. "require-dev": {
  1450. "phpunit/phpunit": ">=4.8 <=9"
  1451. },
  1452. "suggest": {
  1453. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1454. },
  1455. "type": "library",
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Firebase\\JWT\\": "src"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "BSD-3-Clause"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Neuman Vong",
  1468. "email": "neuman+pear@twilio.com",
  1469. "role": "Developer"
  1470. },
  1471. {
  1472. "name": "Anant Narayanan",
  1473. "email": "anant@php.net",
  1474. "role": "Developer"
  1475. }
  1476. ],
  1477. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1478. "homepage": "https://github.com/firebase/php-jwt",
  1479. "keywords": [
  1480. "jwt",
  1481. "php"
  1482. ],
  1483. "support": {
  1484. "issues": "https://github.com/firebase/php-jwt/issues",
  1485. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1486. },
  1487. "time": "2021-06-23T19:00:23+00:00"
  1488. },
  1489. {
  1490. "name": "guzzlehttp/guzzle",
  1491. "version": "6.5.5",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/guzzle/guzzle.git",
  1495. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1500. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1501. "shasum": "",
  1502. "mirrors": [
  1503. {
  1504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1505. "preferred": true
  1506. }
  1507. ]
  1508. },
  1509. "require": {
  1510. "ext-json": "*",
  1511. "guzzlehttp/promises": "^1.0",
  1512. "guzzlehttp/psr7": "^1.6.1",
  1513. "php": ">=5.5",
  1514. "symfony/polyfill-intl-idn": "^1.17.0"
  1515. },
  1516. "require-dev": {
  1517. "ext-curl": "*",
  1518. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1519. "psr/log": "^1.1"
  1520. },
  1521. "suggest": {
  1522. "psr/log": "Required for using the Log middleware"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "6.5-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "GuzzleHttp\\": "src/"
  1533. },
  1534. "files": [
  1535. "src/functions_include.php"
  1536. ]
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Michael Dowling",
  1545. "email": "mtdowling@gmail.com",
  1546. "homepage": "https://github.com/mtdowling"
  1547. }
  1548. ],
  1549. "description": "Guzzle is a PHP HTTP client library",
  1550. "homepage": "http://guzzlephp.org/",
  1551. "keywords": [
  1552. "client",
  1553. "curl",
  1554. "framework",
  1555. "http",
  1556. "http client",
  1557. "rest",
  1558. "web service"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/guzzle/guzzle/issues",
  1562. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1563. },
  1564. "time": "2020-06-16T21:01:06+00:00"
  1565. },
  1566. {
  1567. "name": "guzzlehttp/promises",
  1568. "version": "1.5.1",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/guzzle/promises.git",
  1572. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1577. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1578. "shasum": "",
  1579. "mirrors": [
  1580. {
  1581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1582. "preferred": true
  1583. }
  1584. ]
  1585. },
  1586. "require": {
  1587. "php": ">=5.5"
  1588. },
  1589. "require-dev": {
  1590. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1591. },
  1592. "type": "library",
  1593. "extra": {
  1594. "branch-alias": {
  1595. "dev-master": "1.5-dev"
  1596. }
  1597. },
  1598. "autoload": {
  1599. "psr-4": {
  1600. "GuzzleHttp\\Promise\\": "src/"
  1601. },
  1602. "files": [
  1603. "src/functions_include.php"
  1604. ]
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Graham Campbell",
  1613. "email": "hello@gjcampbell.co.uk",
  1614. "homepage": "https://github.com/GrahamCampbell"
  1615. },
  1616. {
  1617. "name": "Michael Dowling",
  1618. "email": "mtdowling@gmail.com",
  1619. "homepage": "https://github.com/mtdowling"
  1620. },
  1621. {
  1622. "name": "Tobias Nyholm",
  1623. "email": "tobias.nyholm@gmail.com",
  1624. "homepage": "https://github.com/Nyholm"
  1625. },
  1626. {
  1627. "name": "Tobias Schultze",
  1628. "email": "webmaster@tubo-world.de",
  1629. "homepage": "https://github.com/Tobion"
  1630. }
  1631. ],
  1632. "description": "Guzzle promises library",
  1633. "keywords": [
  1634. "promise"
  1635. ],
  1636. "support": {
  1637. "issues": "https://github.com/guzzle/promises/issues",
  1638. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1639. },
  1640. "funding": [
  1641. {
  1642. "url": "https://github.com/GrahamCampbell",
  1643. "type": "github"
  1644. },
  1645. {
  1646. "url": "https://github.com/Nyholm",
  1647. "type": "github"
  1648. },
  1649. {
  1650. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1651. "type": "tidelift"
  1652. }
  1653. ],
  1654. "time": "2021-10-22T20:56:57+00:00"
  1655. },
  1656. {
  1657. "name": "guzzlehttp/psr7",
  1658. "version": "1.8.3",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/guzzle/psr7.git",
  1662. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1667. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1668. "shasum": "",
  1669. "mirrors": [
  1670. {
  1671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1672. "preferred": true
  1673. }
  1674. ]
  1675. },
  1676. "require": {
  1677. "php": ">=5.4.0",
  1678. "psr/http-message": "~1.0",
  1679. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1680. },
  1681. "provide": {
  1682. "psr/http-message-implementation": "1.0"
  1683. },
  1684. "require-dev": {
  1685. "ext-zlib": "*",
  1686. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1687. },
  1688. "suggest": {
  1689. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1690. },
  1691. "type": "library",
  1692. "extra": {
  1693. "branch-alias": {
  1694. "dev-master": "1.7-dev"
  1695. }
  1696. },
  1697. "autoload": {
  1698. "psr-4": {
  1699. "GuzzleHttp\\Psr7\\": "src/"
  1700. },
  1701. "files": [
  1702. "src/functions_include.php"
  1703. ]
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Graham Campbell",
  1712. "email": "hello@gjcampbell.co.uk",
  1713. "homepage": "https://github.com/GrahamCampbell"
  1714. },
  1715. {
  1716. "name": "Michael Dowling",
  1717. "email": "mtdowling@gmail.com",
  1718. "homepage": "https://github.com/mtdowling"
  1719. },
  1720. {
  1721. "name": "George Mponos",
  1722. "email": "gmponos@gmail.com",
  1723. "homepage": "https://github.com/gmponos"
  1724. },
  1725. {
  1726. "name": "Tobias Nyholm",
  1727. "email": "tobias.nyholm@gmail.com",
  1728. "homepage": "https://github.com/Nyholm"
  1729. },
  1730. {
  1731. "name": "Márk Sági-Kazár",
  1732. "email": "mark.sagikazar@gmail.com",
  1733. "homepage": "https://github.com/sagikazarmark"
  1734. },
  1735. {
  1736. "name": "Tobias Schultze",
  1737. "email": "webmaster@tubo-world.de",
  1738. "homepage": "https://github.com/Tobion"
  1739. }
  1740. ],
  1741. "description": "PSR-7 message implementation that also provides common utility methods",
  1742. "keywords": [
  1743. "http",
  1744. "message",
  1745. "psr-7",
  1746. "request",
  1747. "response",
  1748. "stream",
  1749. "uri",
  1750. "url"
  1751. ],
  1752. "support": {
  1753. "issues": "https://github.com/guzzle/psr7/issues",
  1754. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1755. },
  1756. "funding": [
  1757. {
  1758. "url": "https://github.com/GrahamCampbell",
  1759. "type": "github"
  1760. },
  1761. {
  1762. "url": "https://github.com/Nyholm",
  1763. "type": "github"
  1764. },
  1765. {
  1766. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1767. "type": "tidelift"
  1768. }
  1769. ],
  1770. "time": "2021-10-05T13:56:00+00:00"
  1771. },
  1772. {
  1773. "name": "intervention/image",
  1774. "version": "2.7.0",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/Intervention/image.git",
  1778. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1783. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1784. "shasum": "",
  1785. "mirrors": [
  1786. {
  1787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1788. "preferred": true
  1789. }
  1790. ]
  1791. },
  1792. "require": {
  1793. "ext-fileinfo": "*",
  1794. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1795. "php": ">=5.4.0"
  1796. },
  1797. "require-dev": {
  1798. "mockery/mockery": "~0.9.2",
  1799. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1800. },
  1801. "suggest": {
  1802. "ext-gd": "to use GD library based image processing.",
  1803. "ext-imagick": "to use Imagick based image processing.",
  1804. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "2.4-dev"
  1810. },
  1811. "laravel": {
  1812. "providers": [
  1813. "Intervention\\Image\\ImageServiceProvider"
  1814. ],
  1815. "aliases": {
  1816. "Image": "Intervention\\Image\\Facades\\Image"
  1817. }
  1818. }
  1819. },
  1820. "autoload": {
  1821. "psr-4": {
  1822. "Intervention\\Image\\": "src/Intervention/Image"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "Oliver Vogel",
  1832. "email": "oliver@olivervogel.com",
  1833. "homepage": "http://olivervogel.com/"
  1834. }
  1835. ],
  1836. "description": "Image handling and manipulation library with support for Laravel integration",
  1837. "homepage": "http://image.intervention.io/",
  1838. "keywords": [
  1839. "gd",
  1840. "image",
  1841. "imagick",
  1842. "laravel",
  1843. "thumbnail",
  1844. "watermark"
  1845. ],
  1846. "support": {
  1847. "issues": "https://github.com/Intervention/image/issues",
  1848. "source": "https://github.com/Intervention/image/tree/2.7.0"
  1849. },
  1850. "funding": [
  1851. {
  1852. "url": "https://www.paypal.me/interventionphp",
  1853. "type": "custom"
  1854. },
  1855. {
  1856. "url": "https://github.com/Intervention",
  1857. "type": "github"
  1858. }
  1859. ],
  1860. "time": "2021-10-03T14:17:12+00:00"
  1861. },
  1862. {
  1863. "name": "khanamiryan/qrcode-detector-decoder",
  1864. "version": "1.0.5.2",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1868. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1873. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1874. "shasum": "",
  1875. "mirrors": [
  1876. {
  1877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1878. "preferred": true
  1879. }
  1880. ]
  1881. },
  1882. "require": {
  1883. "php": ">=5.6"
  1884. },
  1885. "require-dev": {
  1886. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1887. },
  1888. "type": "library",
  1889. "autoload": {
  1890. "psr-4": {
  1891. "Zxing\\": "lib/"
  1892. },
  1893. "files": [
  1894. "lib/Common/customFunctions.php"
  1895. ]
  1896. },
  1897. "notification-url": "https://packagist.org/downloads/",
  1898. "license": [
  1899. "MIT",
  1900. "Apache-2.0"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Ashot Khanamiryan",
  1905. "email": "a.khanamiryan@gmail.com",
  1906. "homepage": "https://github.com/khanamiryan",
  1907. "role": "Developer"
  1908. }
  1909. ],
  1910. "description": "QR code decoder / reader",
  1911. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1912. "keywords": [
  1913. "barcode",
  1914. "qr",
  1915. "zxing"
  1916. ],
  1917. "support": {
  1918. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1919. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1920. },
  1921. "time": "2021-07-13T18:46:38+00:00"
  1922. },
  1923. {
  1924. "name": "kitetail/zttp",
  1925. "version": "v0.6.0",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/kitetail/zttp.git",
  1929. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1934. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1935. "shasum": "",
  1936. "mirrors": [
  1937. {
  1938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1939. "preferred": true
  1940. }
  1941. ]
  1942. },
  1943. "require": {
  1944. "guzzlehttp/guzzle": "^6.0",
  1945. "php": ">=7.0",
  1946. "tightenco/collect": "^5.4"
  1947. },
  1948. "require-dev": {
  1949. "laravel/lumen-framework": "5.5.*",
  1950. "phpunit/phpunit": "^6.0"
  1951. },
  1952. "type": "library",
  1953. "autoload": {
  1954. "files": [
  1955. "src/Zttp.php"
  1956. ]
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Adam Wathan",
  1965. "email": "adam.wathan@gmail.com"
  1966. }
  1967. ],
  1968. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1969. "keywords": [
  1970. "Guzzle",
  1971. "http"
  1972. ],
  1973. "support": {
  1974. "issues": "https://github.com/kitetail/zttp/issues",
  1975. "source": "https://github.com/kitetail/zttp/tree/master"
  1976. },
  1977. "time": "2019-06-10T12:18:52+00:00"
  1978. },
  1979. {
  1980. "name": "laravel/framework",
  1981. "version": "v7.30.4",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/laravel/framework.git",
  1985. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1990. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1991. "shasum": "",
  1992. "mirrors": [
  1993. {
  1994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1995. "preferred": true
  1996. }
  1997. ]
  1998. },
  1999. "require": {
  2000. "doctrine/inflector": "^1.4|^2.0",
  2001. "dragonmantank/cron-expression": "^2.3.1",
  2002. "egulias/email-validator": "^2.1.10",
  2003. "ext-json": "*",
  2004. "ext-mbstring": "*",
  2005. "ext-openssl": "*",
  2006. "league/commonmark": "^1.3",
  2007. "league/flysystem": "^1.1",
  2008. "monolog/monolog": "^2.0",
  2009. "nesbot/carbon": "^2.31",
  2010. "opis/closure": "^3.6",
  2011. "php": "^7.2.5|^8.0",
  2012. "psr/container": "^1.0",
  2013. "psr/simple-cache": "^1.0",
  2014. "ramsey/uuid": "^3.7|^4.0",
  2015. "swiftmailer/swiftmailer": "^6.0",
  2016. "symfony/console": "^5.0",
  2017. "symfony/error-handler": "^5.0",
  2018. "symfony/finder": "^5.0",
  2019. "symfony/http-foundation": "^5.0",
  2020. "symfony/http-kernel": "^5.0",
  2021. "symfony/mime": "^5.0",
  2022. "symfony/polyfill-php73": "^1.17",
  2023. "symfony/process": "^5.0",
  2024. "symfony/routing": "^5.0",
  2025. "symfony/var-dumper": "^5.0",
  2026. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2027. "vlucas/phpdotenv": "^4.0",
  2028. "voku/portable-ascii": "^1.4.8"
  2029. },
  2030. "conflict": {
  2031. "tightenco/collect": "<5.5.33"
  2032. },
  2033. "provide": {
  2034. "psr/container-implementation": "1.0"
  2035. },
  2036. "replace": {
  2037. "illuminate/auth": "self.version",
  2038. "illuminate/broadcasting": "self.version",
  2039. "illuminate/bus": "self.version",
  2040. "illuminate/cache": "self.version",
  2041. "illuminate/config": "self.version",
  2042. "illuminate/console": "self.version",
  2043. "illuminate/container": "self.version",
  2044. "illuminate/contracts": "self.version",
  2045. "illuminate/cookie": "self.version",
  2046. "illuminate/database": "self.version",
  2047. "illuminate/encryption": "self.version",
  2048. "illuminate/events": "self.version",
  2049. "illuminate/filesystem": "self.version",
  2050. "illuminate/hashing": "self.version",
  2051. "illuminate/http": "self.version",
  2052. "illuminate/log": "self.version",
  2053. "illuminate/mail": "self.version",
  2054. "illuminate/notifications": "self.version",
  2055. "illuminate/pagination": "self.version",
  2056. "illuminate/pipeline": "self.version",
  2057. "illuminate/queue": "self.version",
  2058. "illuminate/redis": "self.version",
  2059. "illuminate/routing": "self.version",
  2060. "illuminate/session": "self.version",
  2061. "illuminate/support": "self.version",
  2062. "illuminate/testing": "self.version",
  2063. "illuminate/translation": "self.version",
  2064. "illuminate/validation": "self.version",
  2065. "illuminate/view": "self.version"
  2066. },
  2067. "require-dev": {
  2068. "aws/aws-sdk-php": "^3.155",
  2069. "doctrine/dbal": "^2.6",
  2070. "filp/whoops": "^2.8",
  2071. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2072. "league/flysystem-cached-adapter": "^1.0",
  2073. "mockery/mockery": "~1.3.3|^1.4.2",
  2074. "moontoast/math": "^1.1",
  2075. "orchestra/testbench-core": "^5.8",
  2076. "pda/pheanstalk": "^4.0",
  2077. "phpunit/phpunit": "^8.4|^9.3.3",
  2078. "predis/predis": "^1.1.1",
  2079. "symfony/cache": "^5.0"
  2080. },
  2081. "suggest": {
  2082. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2083. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2084. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2085. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2086. "ext-memcached": "Required to use the memcache cache driver.",
  2087. "ext-pcntl": "Required to use all features of the queue worker.",
  2088. "ext-posix": "Required to use all features of the queue worker.",
  2089. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2090. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2091. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2092. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2093. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2094. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2095. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2096. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2097. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2098. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2099. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2100. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2101. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2102. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2103. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2104. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2105. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2106. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2107. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2108. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2109. },
  2110. "type": "library",
  2111. "extra": {
  2112. "branch-alias": {
  2113. "dev-master": "7.x-dev"
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "src/Illuminate/Foundation/helpers.php",
  2119. "src/Illuminate/Support/helpers.php"
  2120. ],
  2121. "psr-4": {
  2122. "Illuminate\\": "src/Illuminate/"
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "MIT"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "Taylor Otwell",
  2132. "email": "taylor@laravel.com"
  2133. }
  2134. ],
  2135. "description": "The Laravel Framework.",
  2136. "homepage": "https://laravel.com",
  2137. "keywords": [
  2138. "framework",
  2139. "laravel"
  2140. ],
  2141. "support": {
  2142. "issues": "https://github.com/laravel/framework/issues",
  2143. "source": "https://github.com/laravel/framework"
  2144. },
  2145. "time": "2021-01-21T14:10:48+00:00"
  2146. },
  2147. {
  2148. "name": "laravel/horizon",
  2149. "version": "v4.3.5",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://github.com/laravel/horizon.git",
  2153. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2158. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2159. "shasum": "",
  2160. "mirrors": [
  2161. {
  2162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2163. "preferred": true
  2164. }
  2165. ]
  2166. },
  2167. "require": {
  2168. "cakephp/chronos": "^2.0",
  2169. "ext-json": "*",
  2170. "ext-pcntl": "*",
  2171. "ext-posix": "*",
  2172. "illuminate/contracts": "^7.0",
  2173. "illuminate/queue": "^7.0",
  2174. "illuminate/support": "^7.0",
  2175. "php": "^7.2",
  2176. "ramsey/uuid": "^3.5|^4.0",
  2177. "symfony/error-handler": "^5.0",
  2178. "symfony/process": "^5.0"
  2179. },
  2180. "require-dev": {
  2181. "mockery/mockery": "^1.0",
  2182. "orchestra/testbench": "^5.0",
  2183. "phpunit/phpunit": "^8.0",
  2184. "predis/predis": "^1.1"
  2185. },
  2186. "suggest": {
  2187. "ext-redis": "Required to use the Redis PHP driver.",
  2188. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2189. },
  2190. "type": "library",
  2191. "extra": {
  2192. "branch-alias": {
  2193. "dev-master": "4.x-dev"
  2194. },
  2195. "laravel": {
  2196. "providers": [
  2197. "Laravel\\Horizon\\HorizonServiceProvider"
  2198. ],
  2199. "aliases": {
  2200. "Horizon": "Laravel\\Horizon\\Horizon"
  2201. }
  2202. }
  2203. },
  2204. "autoload": {
  2205. "psr-4": {
  2206. "Laravel\\Horizon\\": "src/"
  2207. }
  2208. },
  2209. "notification-url": "https://packagist.org/downloads/",
  2210. "license": [
  2211. "MIT"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "Taylor Otwell",
  2216. "email": "taylor@laravel.com"
  2217. }
  2218. ],
  2219. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2220. "keywords": [
  2221. "laravel",
  2222. "queue"
  2223. ],
  2224. "support": {
  2225. "issues": "https://github.com/laravel/horizon/issues",
  2226. "source": "https://github.com/laravel/horizon/tree/4.x"
  2227. },
  2228. "time": "2020-09-08T13:19:23+00:00"
  2229. },
  2230. {
  2231. "name": "laravel/tinker",
  2232. "version": "v2.6.2",
  2233. "source": {
  2234. "type": "git",
  2235. "url": "https://github.com/laravel/tinker.git",
  2236. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc"
  2237. },
  2238. "dist": {
  2239. "type": "zip",
  2240. "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2241. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2242. "shasum": "",
  2243. "mirrors": [
  2244. {
  2245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2246. "preferred": true
  2247. }
  2248. ]
  2249. },
  2250. "require": {
  2251. "illuminate/console": "^6.0|^7.0|^8.0",
  2252. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2253. "illuminate/support": "^6.0|^7.0|^8.0",
  2254. "php": "^7.2.5|^8.0",
  2255. "psy/psysh": "^0.10.4",
  2256. "symfony/var-dumper": "^4.3.4|^5.0"
  2257. },
  2258. "require-dev": {
  2259. "mockery/mockery": "~1.3.3|^1.4.2",
  2260. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2261. },
  2262. "suggest": {
  2263. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2264. },
  2265. "type": "library",
  2266. "extra": {
  2267. "branch-alias": {
  2268. "dev-master": "2.x-dev"
  2269. },
  2270. "laravel": {
  2271. "providers": [
  2272. "Laravel\\Tinker\\TinkerServiceProvider"
  2273. ]
  2274. }
  2275. },
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Laravel\\Tinker\\": "src/"
  2279. }
  2280. },
  2281. "notification-url": "https://packagist.org/downloads/",
  2282. "license": [
  2283. "MIT"
  2284. ],
  2285. "authors": [
  2286. {
  2287. "name": "Taylor Otwell",
  2288. "email": "taylor@laravel.com"
  2289. }
  2290. ],
  2291. "description": "Powerful REPL for the Laravel framework.",
  2292. "keywords": [
  2293. "REPL",
  2294. "Tinker",
  2295. "laravel",
  2296. "psysh"
  2297. ],
  2298. "support": {
  2299. "issues": "https://github.com/laravel/tinker/issues",
  2300. "source": "https://github.com/laravel/tinker/tree/v2.6.2"
  2301. },
  2302. "time": "2021-09-28T15:47:34+00:00"
  2303. },
  2304. {
  2305. "name": "laravel/ui",
  2306. "version": "v2.5.0",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/laravel/ui.git",
  2310. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2315. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2316. "shasum": "",
  2317. "mirrors": [
  2318. {
  2319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2320. "preferred": true
  2321. }
  2322. ]
  2323. },
  2324. "require": {
  2325. "illuminate/console": "^7.0",
  2326. "illuminate/filesystem": "^7.0",
  2327. "illuminate/support": "^7.0",
  2328. "php": "^7.2.5|^8.0"
  2329. },
  2330. "type": "library",
  2331. "extra": {
  2332. "laravel": {
  2333. "providers": [
  2334. "Laravel\\Ui\\UiServiceProvider"
  2335. ]
  2336. }
  2337. },
  2338. "autoload": {
  2339. "psr-4": {
  2340. "Laravel\\Ui\\": "src/",
  2341. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Taylor Otwell",
  2351. "email": "taylor@laravel.com"
  2352. }
  2353. ],
  2354. "description": "Laravel UI utilities and presets.",
  2355. "keywords": [
  2356. "laravel",
  2357. "ui"
  2358. ],
  2359. "support": {
  2360. "issues": "https://github.com/laravel/ui/issues",
  2361. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2362. },
  2363. "time": "2020-11-03T19:45:19+00:00"
  2364. },
  2365. {
  2366. "name": "league/commonmark",
  2367. "version": "1.6.6",
  2368. "source": {
  2369. "type": "git",
  2370. "url": "https://github.com/thephpleague/commonmark.git",
  2371. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2372. },
  2373. "dist": {
  2374. "type": "zip",
  2375. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2376. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2377. "shasum": "",
  2378. "mirrors": [
  2379. {
  2380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2381. "preferred": true
  2382. }
  2383. ]
  2384. },
  2385. "require": {
  2386. "ext-mbstring": "*",
  2387. "php": "^7.1 || ^8.0"
  2388. },
  2389. "conflict": {
  2390. "scrutinizer/ocular": "1.7.*"
  2391. },
  2392. "require-dev": {
  2393. "cebe/markdown": "~1.0",
  2394. "commonmark/commonmark.js": "0.29.2",
  2395. "erusev/parsedown": "~1.0",
  2396. "ext-json": "*",
  2397. "github/gfm": "0.29.0",
  2398. "michelf/php-markdown": "~1.4",
  2399. "mikehaertl/php-shellcommand": "^1.4",
  2400. "phpstan/phpstan": "^0.12.90",
  2401. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2402. "scrutinizer/ocular": "^1.5",
  2403. "symfony/finder": "^4.2"
  2404. },
  2405. "bin": [
  2406. "bin/commonmark"
  2407. ],
  2408. "type": "library",
  2409. "autoload": {
  2410. "psr-4": {
  2411. "League\\CommonMark\\": "src"
  2412. }
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "BSD-3-Clause"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Colin O'Dell",
  2421. "email": "colinodell@gmail.com",
  2422. "homepage": "https://www.colinodell.com",
  2423. "role": "Lead Developer"
  2424. }
  2425. ],
  2426. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2427. "homepage": "https://commonmark.thephpleague.com",
  2428. "keywords": [
  2429. "commonmark",
  2430. "flavored",
  2431. "gfm",
  2432. "github",
  2433. "github-flavored",
  2434. "markdown",
  2435. "md",
  2436. "parser"
  2437. ],
  2438. "support": {
  2439. "docs": "https://commonmark.thephpleague.com/",
  2440. "issues": "https://github.com/thephpleague/commonmark/issues",
  2441. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2442. "source": "https://github.com/thephpleague/commonmark"
  2443. },
  2444. "funding": [
  2445. {
  2446. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2447. "type": "custom"
  2448. },
  2449. {
  2450. "url": "https://www.colinodell.com/sponsor",
  2451. "type": "custom"
  2452. },
  2453. {
  2454. "url": "https://www.paypal.me/colinpodell/10.00",
  2455. "type": "custom"
  2456. },
  2457. {
  2458. "url": "https://github.com/colinodell",
  2459. "type": "github"
  2460. },
  2461. {
  2462. "url": "https://www.patreon.com/colinodell",
  2463. "type": "patreon"
  2464. },
  2465. {
  2466. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2467. "type": "tidelift"
  2468. }
  2469. ],
  2470. "time": "2021-07-17T17:13:23+00:00"
  2471. },
  2472. {
  2473. "name": "league/flysystem",
  2474. "version": "1.1.5",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/thephpleague/flysystem.git",
  2478. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2483. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2484. "shasum": "",
  2485. "mirrors": [
  2486. {
  2487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2488. "preferred": true
  2489. }
  2490. ]
  2491. },
  2492. "require": {
  2493. "ext-fileinfo": "*",
  2494. "league/mime-type-detection": "^1.3",
  2495. "php": "^7.2.5 || ^8.0"
  2496. },
  2497. "conflict": {
  2498. "league/flysystem-sftp": "<1.0.6"
  2499. },
  2500. "require-dev": {
  2501. "phpspec/prophecy": "^1.11.1",
  2502. "phpunit/phpunit": "^8.5.8"
  2503. },
  2504. "suggest": {
  2505. "ext-ftp": "Allows you to use FTP server storage",
  2506. "ext-openssl": "Allows you to use FTPS server storage",
  2507. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2508. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2509. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2510. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2511. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2512. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2513. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2514. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2515. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2516. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2517. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2518. },
  2519. "type": "library",
  2520. "extra": {
  2521. "branch-alias": {
  2522. "dev-master": "1.1-dev"
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "League\\Flysystem\\": "src/"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "MIT"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Frank de Jonge",
  2537. "email": "info@frenky.net"
  2538. }
  2539. ],
  2540. "description": "Filesystem abstraction: Many filesystems, one API.",
  2541. "keywords": [
  2542. "Cloud Files",
  2543. "WebDAV",
  2544. "abstraction",
  2545. "aws",
  2546. "cloud",
  2547. "copy.com",
  2548. "dropbox",
  2549. "file systems",
  2550. "files",
  2551. "filesystem",
  2552. "filesystems",
  2553. "ftp",
  2554. "rackspace",
  2555. "remote",
  2556. "s3",
  2557. "sftp",
  2558. "storage"
  2559. ],
  2560. "support": {
  2561. "issues": "https://github.com/thephpleague/flysystem/issues",
  2562. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://offset.earth/frankdejonge",
  2567. "type": "other"
  2568. }
  2569. ],
  2570. "time": "2021-08-17T13:49:42+00:00"
  2571. },
  2572. {
  2573. "name": "league/mime-type-detection",
  2574. "version": "1.8.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2578. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b38b25d7b372e9fddb00335400467b223349fd7e",
  2583. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e",
  2584. "shasum": "",
  2585. "mirrors": [
  2586. {
  2587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2588. "preferred": true
  2589. }
  2590. ]
  2591. },
  2592. "require": {
  2593. "ext-fileinfo": "*",
  2594. "php": "^7.2 || ^8.0"
  2595. },
  2596. "require-dev": {
  2597. "friendsofphp/php-cs-fixer": "^2.18",
  2598. "phpstan/phpstan": "^0.12.68",
  2599. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2600. },
  2601. "type": "library",
  2602. "autoload": {
  2603. "psr-4": {
  2604. "League\\MimeTypeDetection\\": "src"
  2605. }
  2606. },
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "MIT"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "Frank de Jonge",
  2614. "email": "info@frankdejonge.nl"
  2615. }
  2616. ],
  2617. "description": "Mime-type detection for Flysystem",
  2618. "support": {
  2619. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2620. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.8.0"
  2621. },
  2622. "funding": [
  2623. {
  2624. "url": "https://github.com/frankdejonge",
  2625. "type": "github"
  2626. },
  2627. {
  2628. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2629. "type": "tidelift"
  2630. }
  2631. ],
  2632. "time": "2021-09-25T08:23:19+00:00"
  2633. },
  2634. {
  2635. "name": "maatwebsite/excel",
  2636. "version": "3.1.32",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2640. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2645. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2646. "shasum": "",
  2647. "mirrors": [
  2648. {
  2649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2650. "preferred": true
  2651. }
  2652. ]
  2653. },
  2654. "require": {
  2655. "ext-json": "*",
  2656. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2657. "php": "^7.0|^8.0",
  2658. "phpoffice/phpspreadsheet": "^1.18"
  2659. },
  2660. "require-dev": {
  2661. "orchestra/testbench": "^6.0",
  2662. "predis/predis": "^1.1"
  2663. },
  2664. "type": "library",
  2665. "extra": {
  2666. "laravel": {
  2667. "providers": [
  2668. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2669. ],
  2670. "aliases": {
  2671. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2672. }
  2673. }
  2674. },
  2675. "autoload": {
  2676. "psr-4": {
  2677. "Maatwebsite\\Excel\\": "src/"
  2678. }
  2679. },
  2680. "notification-url": "https://packagist.org/downloads/",
  2681. "license": [
  2682. "MIT"
  2683. ],
  2684. "authors": [
  2685. {
  2686. "name": "Patrick Brouwers",
  2687. "email": "patrick@maatwebsite.nl"
  2688. }
  2689. ],
  2690. "description": "Supercharged Excel exports and imports in Laravel",
  2691. "keywords": [
  2692. "PHPExcel",
  2693. "batch",
  2694. "csv",
  2695. "excel",
  2696. "export",
  2697. "import",
  2698. "laravel",
  2699. "php",
  2700. "phpspreadsheet"
  2701. ],
  2702. "support": {
  2703. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2704. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2705. },
  2706. "funding": [
  2707. {
  2708. "url": "https://laravel-excel.com/commercial-support",
  2709. "type": "custom"
  2710. },
  2711. {
  2712. "url": "https://github.com/patrickbrouwers",
  2713. "type": "github"
  2714. }
  2715. ],
  2716. "time": "2021-07-08T10:11:21+00:00"
  2717. },
  2718. {
  2719. "name": "maennchen/zipstream-php",
  2720. "version": "2.1.0",
  2721. "source": {
  2722. "type": "git",
  2723. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2724. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2725. },
  2726. "dist": {
  2727. "type": "zip",
  2728. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2729. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2730. "shasum": "",
  2731. "mirrors": [
  2732. {
  2733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2734. "preferred": true
  2735. }
  2736. ]
  2737. },
  2738. "require": {
  2739. "myclabs/php-enum": "^1.5",
  2740. "php": ">= 7.1",
  2741. "psr/http-message": "^1.0",
  2742. "symfony/polyfill-mbstring": "^1.0"
  2743. },
  2744. "require-dev": {
  2745. "ext-zip": "*",
  2746. "guzzlehttp/guzzle": ">= 6.3",
  2747. "mikey179/vfsstream": "^1.6",
  2748. "phpunit/phpunit": ">= 7.5"
  2749. },
  2750. "type": "library",
  2751. "autoload": {
  2752. "psr-4": {
  2753. "ZipStream\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Paul Duncan",
  2763. "email": "pabs@pablotron.org"
  2764. },
  2765. {
  2766. "name": "Jonatan Männchen",
  2767. "email": "jonatan@maennchen.ch"
  2768. },
  2769. {
  2770. "name": "Jesse Donat",
  2771. "email": "donatj@gmail.com"
  2772. },
  2773. {
  2774. "name": "András Kolesár",
  2775. "email": "kolesar@kolesar.hu"
  2776. }
  2777. ],
  2778. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2779. "keywords": [
  2780. "stream",
  2781. "zip"
  2782. ],
  2783. "support": {
  2784. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2785. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2786. },
  2787. "funding": [
  2788. {
  2789. "url": "https://opencollective.com/zipstream",
  2790. "type": "open_collective"
  2791. }
  2792. ],
  2793. "time": "2020-05-30T13:11:16+00:00"
  2794. },
  2795. {
  2796. "name": "markbaker/complex",
  2797. "version": "2.0.3",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2801. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2806. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2807. "shasum": "",
  2808. "mirrors": [
  2809. {
  2810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2811. "preferred": true
  2812. }
  2813. ]
  2814. },
  2815. "require": {
  2816. "php": "^7.2 || ^8.0"
  2817. },
  2818. "require-dev": {
  2819. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2820. "phpcompatibility/php-compatibility": "^9.0",
  2821. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2822. "squizlabs/php_codesniffer": "^3.4"
  2823. },
  2824. "type": "library",
  2825. "autoload": {
  2826. "psr-4": {
  2827. "Complex\\": "classes/src/"
  2828. },
  2829. "files": [
  2830. "classes/src/functions/abs.php",
  2831. "classes/src/functions/acos.php",
  2832. "classes/src/functions/acosh.php",
  2833. "classes/src/functions/acot.php",
  2834. "classes/src/functions/acoth.php",
  2835. "classes/src/functions/acsc.php",
  2836. "classes/src/functions/acsch.php",
  2837. "classes/src/functions/argument.php",
  2838. "classes/src/functions/asec.php",
  2839. "classes/src/functions/asech.php",
  2840. "classes/src/functions/asin.php",
  2841. "classes/src/functions/asinh.php",
  2842. "classes/src/functions/atan.php",
  2843. "classes/src/functions/atanh.php",
  2844. "classes/src/functions/conjugate.php",
  2845. "classes/src/functions/cos.php",
  2846. "classes/src/functions/cosh.php",
  2847. "classes/src/functions/cot.php",
  2848. "classes/src/functions/coth.php",
  2849. "classes/src/functions/csc.php",
  2850. "classes/src/functions/csch.php",
  2851. "classes/src/functions/exp.php",
  2852. "classes/src/functions/inverse.php",
  2853. "classes/src/functions/ln.php",
  2854. "classes/src/functions/log2.php",
  2855. "classes/src/functions/log10.php",
  2856. "classes/src/functions/negative.php",
  2857. "classes/src/functions/pow.php",
  2858. "classes/src/functions/rho.php",
  2859. "classes/src/functions/sec.php",
  2860. "classes/src/functions/sech.php",
  2861. "classes/src/functions/sin.php",
  2862. "classes/src/functions/sinh.php",
  2863. "classes/src/functions/sqrt.php",
  2864. "classes/src/functions/tan.php",
  2865. "classes/src/functions/tanh.php",
  2866. "classes/src/functions/theta.php",
  2867. "classes/src/operations/add.php",
  2868. "classes/src/operations/subtract.php",
  2869. "classes/src/operations/multiply.php",
  2870. "classes/src/operations/divideby.php",
  2871. "classes/src/operations/divideinto.php"
  2872. ]
  2873. },
  2874. "notification-url": "https://packagist.org/downloads/",
  2875. "license": [
  2876. "MIT"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "Mark Baker",
  2881. "email": "mark@lange.demon.co.uk"
  2882. }
  2883. ],
  2884. "description": "PHP Class for working with complex numbers",
  2885. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2886. "keywords": [
  2887. "complex",
  2888. "mathematics"
  2889. ],
  2890. "support": {
  2891. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2892. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2893. },
  2894. "time": "2021-06-02T09:44:11+00:00"
  2895. },
  2896. {
  2897. "name": "markbaker/matrix",
  2898. "version": "2.1.3",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2902. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2907. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2908. "shasum": "",
  2909. "mirrors": [
  2910. {
  2911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2912. "preferred": true
  2913. }
  2914. ]
  2915. },
  2916. "require": {
  2917. "php": "^7.1 || ^8.0"
  2918. },
  2919. "require-dev": {
  2920. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2921. "phpcompatibility/php-compatibility": "^9.0",
  2922. "phpdocumentor/phpdocumentor": "2.*",
  2923. "phploc/phploc": "^4.0",
  2924. "phpmd/phpmd": "2.*",
  2925. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2926. "sebastian/phpcpd": "^4.0",
  2927. "squizlabs/php_codesniffer": "^3.4"
  2928. },
  2929. "type": "library",
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Matrix\\": "classes/src/"
  2933. },
  2934. "files": [
  2935. "classes/src/Functions/adjoint.php",
  2936. "classes/src/Functions/antidiagonal.php",
  2937. "classes/src/Functions/cofactors.php",
  2938. "classes/src/Functions/determinant.php",
  2939. "classes/src/Functions/diagonal.php",
  2940. "classes/src/Functions/identity.php",
  2941. "classes/src/Functions/inverse.php",
  2942. "classes/src/Functions/minors.php",
  2943. "classes/src/Functions/trace.php",
  2944. "classes/src/Functions/transpose.php",
  2945. "classes/src/Operations/add.php",
  2946. "classes/src/Operations/directsum.php",
  2947. "classes/src/Operations/subtract.php",
  2948. "classes/src/Operations/multiply.php",
  2949. "classes/src/Operations/divideby.php",
  2950. "classes/src/Operations/divideinto.php"
  2951. ]
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "Mark Baker",
  2960. "email": "mark@demon-angel.eu"
  2961. }
  2962. ],
  2963. "description": "PHP Class for working with matrices",
  2964. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2965. "keywords": [
  2966. "mathematics",
  2967. "matrix",
  2968. "vector"
  2969. ],
  2970. "support": {
  2971. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2972. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2973. },
  2974. "time": "2021-05-25T15:42:17+00:00"
  2975. },
  2976. {
  2977. "name": "monolog/monolog",
  2978. "version": "2.3.5",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/Seldaek/monolog.git",
  2982. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  2987. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  2988. "shasum": "",
  2989. "mirrors": [
  2990. {
  2991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2992. "preferred": true
  2993. }
  2994. ]
  2995. },
  2996. "require": {
  2997. "php": ">=7.2",
  2998. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2999. },
  3000. "provide": {
  3001. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3002. },
  3003. "require-dev": {
  3004. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3005. "doctrine/couchdb": "~1.0@dev",
  3006. "elasticsearch/elasticsearch": "^7",
  3007. "graylog2/gelf-php": "^1.4.2",
  3008. "mongodb/mongodb": "^1.8",
  3009. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3010. "php-console/php-console": "^3.1.3",
  3011. "phpspec/prophecy": "^1.6.1",
  3012. "phpstan/phpstan": "^0.12.91",
  3013. "phpunit/phpunit": "^8.5",
  3014. "predis/predis": "^1.1",
  3015. "rollbar/rollbar": "^1.3",
  3016. "ruflin/elastica": ">=0.90@dev",
  3017. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3018. },
  3019. "suggest": {
  3020. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3021. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3022. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3023. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3024. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3025. "ext-mbstring": "Allow to work properly with unicode symbols",
  3026. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3027. "ext-openssl": "Required to send log messages using SSL",
  3028. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3029. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3030. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3031. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3032. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3033. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3034. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3035. },
  3036. "type": "library",
  3037. "extra": {
  3038. "branch-alias": {
  3039. "dev-main": "2.x-dev"
  3040. }
  3041. },
  3042. "autoload": {
  3043. "psr-4": {
  3044. "Monolog\\": "src/Monolog"
  3045. }
  3046. },
  3047. "notification-url": "https://packagist.org/downloads/",
  3048. "license": [
  3049. "MIT"
  3050. ],
  3051. "authors": [
  3052. {
  3053. "name": "Jordi Boggiano",
  3054. "email": "j.boggiano@seld.be",
  3055. "homepage": "https://seld.be"
  3056. }
  3057. ],
  3058. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3059. "homepage": "https://github.com/Seldaek/monolog",
  3060. "keywords": [
  3061. "log",
  3062. "logging",
  3063. "psr-3"
  3064. ],
  3065. "support": {
  3066. "issues": "https://github.com/Seldaek/monolog/issues",
  3067. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3068. },
  3069. "funding": [
  3070. {
  3071. "url": "https://github.com/Seldaek",
  3072. "type": "github"
  3073. },
  3074. {
  3075. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3076. "type": "tidelift"
  3077. }
  3078. ],
  3079. "time": "2021-10-01T21:08:31+00:00"
  3080. },
  3081. {
  3082. "name": "myclabs/php-enum",
  3083. "version": "1.8.3",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/myclabs/php-enum.git",
  3087. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3092. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3093. "shasum": "",
  3094. "mirrors": [
  3095. {
  3096. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3097. "preferred": true
  3098. }
  3099. ]
  3100. },
  3101. "require": {
  3102. "ext-json": "*",
  3103. "php": "^7.3 || ^8.0"
  3104. },
  3105. "require-dev": {
  3106. "phpunit/phpunit": "^9.5",
  3107. "squizlabs/php_codesniffer": "1.*",
  3108. "vimeo/psalm": "^4.6.2"
  3109. },
  3110. "type": "library",
  3111. "autoload": {
  3112. "psr-4": {
  3113. "MyCLabs\\Enum\\": "src/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "PHP Enum contributors",
  3123. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3124. }
  3125. ],
  3126. "description": "PHP Enum implementation",
  3127. "homepage": "http://github.com/myclabs/php-enum",
  3128. "keywords": [
  3129. "enum"
  3130. ],
  3131. "support": {
  3132. "issues": "https://github.com/myclabs/php-enum/issues",
  3133. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3134. },
  3135. "funding": [
  3136. {
  3137. "url": "https://github.com/mnapoli",
  3138. "type": "github"
  3139. },
  3140. {
  3141. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3142. "type": "tidelift"
  3143. }
  3144. ],
  3145. "time": "2021-07-05T08:18:36+00:00"
  3146. },
  3147. {
  3148. "name": "nesbot/carbon",
  3149. "version": "2.53.1",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/briannesbitt/Carbon.git",
  3153. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f4655858a784988f880c1b8c7feabbf02dfdf045",
  3158. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045",
  3159. "shasum": "",
  3160. "mirrors": [
  3161. {
  3162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3163. "preferred": true
  3164. }
  3165. ]
  3166. },
  3167. "require": {
  3168. "ext-json": "*",
  3169. "php": "^7.1.8 || ^8.0",
  3170. "symfony/polyfill-mbstring": "^1.0",
  3171. "symfony/polyfill-php80": "^1.16",
  3172. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3173. },
  3174. "require-dev": {
  3175. "doctrine/orm": "^2.7",
  3176. "friendsofphp/php-cs-fixer": "^3.0",
  3177. "kylekatarnls/multi-tester": "^2.0",
  3178. "phpmd/phpmd": "^2.9",
  3179. "phpstan/extension-installer": "^1.0",
  3180. "phpstan/phpstan": "^0.12.54",
  3181. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3182. "squizlabs/php_codesniffer": "^3.4"
  3183. },
  3184. "bin": [
  3185. "bin/carbon"
  3186. ],
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-3.x": "3.x-dev",
  3191. "dev-master": "2.x-dev"
  3192. },
  3193. "laravel": {
  3194. "providers": [
  3195. "Carbon\\Laravel\\ServiceProvider"
  3196. ]
  3197. },
  3198. "phpstan": {
  3199. "includes": [
  3200. "extension.neon"
  3201. ]
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Carbon\\": "src/Carbon/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Brian Nesbitt",
  3216. "email": "brian@nesbot.com",
  3217. "homepage": "https://markido.com"
  3218. },
  3219. {
  3220. "name": "kylekatarnls",
  3221. "homepage": "https://github.com/kylekatarnls"
  3222. }
  3223. ],
  3224. "description": "An API extension for DateTime that supports 281 different languages.",
  3225. "homepage": "https://carbon.nesbot.com",
  3226. "keywords": [
  3227. "date",
  3228. "datetime",
  3229. "time"
  3230. ],
  3231. "support": {
  3232. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3233. "source": "https://github.com/briannesbitt/Carbon"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://opencollective.com/Carbon",
  3238. "type": "open_collective"
  3239. },
  3240. {
  3241. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3242. "type": "tidelift"
  3243. }
  3244. ],
  3245. "time": "2021-09-06T09:29:23+00:00"
  3246. },
  3247. {
  3248. "name": "nikic/php-parser",
  3249. "version": "v4.13.0",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/nikic/PHP-Parser.git",
  3253. "reference": "50953a2691a922aa1769461637869a0a2faa3f53"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53",
  3258. "reference": "50953a2691a922aa1769461637869a0a2faa3f53",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "require": {
  3268. "ext-tokenizer": "*",
  3269. "php": ">=7.0"
  3270. },
  3271. "require-dev": {
  3272. "ircmaxell/php-yacc": "^0.0.7",
  3273. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3274. },
  3275. "bin": [
  3276. "bin/php-parse"
  3277. ],
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "4.9-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "PhpParser\\": "lib/PhpParser"
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "BSD-3-Clause"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "Nikita Popov"
  3296. }
  3297. ],
  3298. "description": "A PHP parser written in PHP",
  3299. "keywords": [
  3300. "parser",
  3301. "php"
  3302. ],
  3303. "support": {
  3304. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3305. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.0"
  3306. },
  3307. "time": "2021-09-20T12:20:58+00:00"
  3308. },
  3309. {
  3310. "name": "opis/closure",
  3311. "version": "3.6.2",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://github.com/opis/closure.git",
  3315. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3320. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3321. "shasum": "",
  3322. "mirrors": [
  3323. {
  3324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3325. "preferred": true
  3326. }
  3327. ]
  3328. },
  3329. "require": {
  3330. "php": "^5.4 || ^7.0 || ^8.0"
  3331. },
  3332. "require-dev": {
  3333. "jeremeamia/superclosure": "^2.0",
  3334. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "branch-alias": {
  3339. "dev-master": "3.6.x-dev"
  3340. }
  3341. },
  3342. "autoload": {
  3343. "psr-4": {
  3344. "Opis\\Closure\\": "src/"
  3345. },
  3346. "files": [
  3347. "functions.php"
  3348. ]
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "authors": [
  3355. {
  3356. "name": "Marius Sarca",
  3357. "email": "marius.sarca@gmail.com"
  3358. },
  3359. {
  3360. "name": "Sorin Sarca",
  3361. "email": "sarca_sorin@hotmail.com"
  3362. }
  3363. ],
  3364. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3365. "homepage": "https://opis.io/closure",
  3366. "keywords": [
  3367. "anonymous functions",
  3368. "closure",
  3369. "function",
  3370. "serializable",
  3371. "serialization",
  3372. "serialize"
  3373. ],
  3374. "support": {
  3375. "issues": "https://github.com/opis/closure/issues",
  3376. "source": "https://github.com/opis/closure/tree/3.6.2"
  3377. },
  3378. "time": "2021-04-09T13:42:10+00:00"
  3379. },
  3380. {
  3381. "name": "oursdreams/export",
  3382. "version": "0.0.7",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/oursdreams/export.git",
  3386. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3391. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3392. "shasum": "",
  3393. "mirrors": [
  3394. {
  3395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3396. "preferred": true
  3397. }
  3398. ]
  3399. },
  3400. "type": "library",
  3401. "extra": {
  3402. "laravel": {
  3403. "providers": [
  3404. "Oursdreams\\Export\\ExportServiceProvider"
  3405. ]
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Oursdreams\\Export\\": "./src"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "oursdreams",
  3420. "email": "z1792524653@163.com"
  3421. }
  3422. ],
  3423. "description": "A simple export plug-in",
  3424. "support": {
  3425. "issues": "https://github.com/oursdreams/export/issues",
  3426. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3427. },
  3428. "time": "2021-06-01T03:01:13+00:00"
  3429. },
  3430. {
  3431. "name": "overtrue/laravel-pinyin",
  3432. "version": "4.0.0",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3436. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3441. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3442. "shasum": "",
  3443. "mirrors": [
  3444. {
  3445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3446. "preferred": true
  3447. }
  3448. ]
  3449. },
  3450. "require": {
  3451. "overtrue/pinyin": "~4.0"
  3452. },
  3453. "type": "library",
  3454. "extra": {
  3455. "laravel": {
  3456. "providers": [
  3457. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3458. ],
  3459. "aliases": {
  3460. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3461. }
  3462. }
  3463. },
  3464. "autoload": {
  3465. "psr-4": {
  3466. "Overtrue\\LaravelPinyin\\": "src/"
  3467. },
  3468. "files": [
  3469. "src/helpers.php"
  3470. ]
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "overtrue",
  3479. "email": "anzhengchao@gmail.com"
  3480. }
  3481. ],
  3482. "description": "Chinese to Pinyin translator.",
  3483. "keywords": [
  3484. "Chinese",
  3485. "Pinyin",
  3486. "laravel",
  3487. "overtrue"
  3488. ],
  3489. "support": {
  3490. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3491. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3492. },
  3493. "time": "2018-10-10T09:02:46+00:00"
  3494. },
  3495. {
  3496. "name": "overtrue/pinyin",
  3497. "version": "4.0.8",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/overtrue/pinyin.git",
  3501. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3506. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3507. "shasum": "",
  3508. "mirrors": [
  3509. {
  3510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3511. "preferred": true
  3512. }
  3513. ]
  3514. },
  3515. "require": {
  3516. "php": ">=7.1"
  3517. },
  3518. "require-dev": {
  3519. "brainmaestro/composer-git-hooks": "^2.7",
  3520. "friendsofphp/php-cs-fixer": "^2.16",
  3521. "phpunit/phpunit": "~8.0"
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "hooks": {
  3526. "pre-commit": [
  3527. "composer test",
  3528. "composer fix-style"
  3529. ],
  3530. "pre-push": [
  3531. "composer test",
  3532. "composer check-style"
  3533. ]
  3534. }
  3535. },
  3536. "autoload": {
  3537. "psr-4": {
  3538. "Overtrue\\Pinyin\\": "src/"
  3539. },
  3540. "files": [
  3541. "src/const.php"
  3542. ]
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "MIT"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "overtrue",
  3551. "email": "anzhengchao@gmail.com",
  3552. "homepage": "http://github.com/overtrue"
  3553. }
  3554. ],
  3555. "description": "Chinese to pinyin translator.",
  3556. "homepage": "https://github.com/overtrue/pinyin",
  3557. "keywords": [
  3558. "Chinese",
  3559. "Pinyin",
  3560. "cn2pinyin"
  3561. ],
  3562. "support": {
  3563. "issues": "https://github.com/overtrue/pinyin/issues",
  3564. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3565. },
  3566. "funding": [
  3567. {
  3568. "url": "https://www.patreon.com/overtrue",
  3569. "type": "patreon"
  3570. }
  3571. ],
  3572. "time": "2021-07-19T03:43:32+00:00"
  3573. },
  3574. {
  3575. "name": "paragonie/random_compat",
  3576. "version": "v9.99.100",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/paragonie/random_compat.git",
  3580. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3585. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  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": ">= 7"
  3596. },
  3597. "require-dev": {
  3598. "phpunit/phpunit": "4.*|5.*",
  3599. "vimeo/psalm": "^1"
  3600. },
  3601. "suggest": {
  3602. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3603. },
  3604. "type": "library",
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "MIT"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "Paragon Initiative Enterprises",
  3612. "email": "security@paragonie.com",
  3613. "homepage": "https://paragonie.com"
  3614. }
  3615. ],
  3616. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3617. "keywords": [
  3618. "csprng",
  3619. "polyfill",
  3620. "pseudorandom",
  3621. "random"
  3622. ],
  3623. "support": {
  3624. "email": "info@paragonie.com",
  3625. "issues": "https://github.com/paragonie/random_compat/issues",
  3626. "source": "https://github.com/paragonie/random_compat"
  3627. },
  3628. "time": "2020-10-15T08:29:30+00:00"
  3629. },
  3630. {
  3631. "name": "paragonie/sodium_compat",
  3632. "version": "v1.17.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/paragonie/sodium_compat.git",
  3636. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3641. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3642. "shasum": "",
  3643. "mirrors": [
  3644. {
  3645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3646. "preferred": true
  3647. }
  3648. ]
  3649. },
  3650. "require": {
  3651. "paragonie/random_compat": ">=1",
  3652. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3653. },
  3654. "require-dev": {
  3655. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3656. },
  3657. "suggest": {
  3658. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3659. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3660. },
  3661. "type": "library",
  3662. "autoload": {
  3663. "files": [
  3664. "autoload.php"
  3665. ]
  3666. },
  3667. "notification-url": "https://packagist.org/downloads/",
  3668. "license": [
  3669. "ISC"
  3670. ],
  3671. "authors": [
  3672. {
  3673. "name": "Paragon Initiative Enterprises",
  3674. "email": "security@paragonie.com"
  3675. },
  3676. {
  3677. "name": "Frank Denis",
  3678. "email": "jedisct1@pureftpd.org"
  3679. }
  3680. ],
  3681. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3682. "keywords": [
  3683. "Authentication",
  3684. "BLAKE2b",
  3685. "ChaCha20",
  3686. "ChaCha20-Poly1305",
  3687. "Chapoly",
  3688. "Curve25519",
  3689. "Ed25519",
  3690. "EdDSA",
  3691. "Edwards-curve Digital Signature Algorithm",
  3692. "Elliptic Curve Diffie-Hellman",
  3693. "Poly1305",
  3694. "Pure-PHP cryptography",
  3695. "RFC 7748",
  3696. "RFC 8032",
  3697. "Salpoly",
  3698. "Salsa20",
  3699. "X25519",
  3700. "XChaCha20-Poly1305",
  3701. "XSalsa20-Poly1305",
  3702. "Xchacha20",
  3703. "Xsalsa20",
  3704. "aead",
  3705. "cryptography",
  3706. "ecdh",
  3707. "elliptic curve",
  3708. "elliptic curve cryptography",
  3709. "encryption",
  3710. "libsodium",
  3711. "php",
  3712. "public-key cryptography",
  3713. "secret-key cryptography",
  3714. "side-channel resistant"
  3715. ],
  3716. "support": {
  3717. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3718. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3719. },
  3720. "time": "2021-08-10T02:43:50+00:00"
  3721. },
  3722. {
  3723. "name": "phpoffice/phpspreadsheet",
  3724. "version": "1.18.0",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3728. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3733. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3734. "shasum": "",
  3735. "mirrors": [
  3736. {
  3737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3738. "preferred": true
  3739. }
  3740. ]
  3741. },
  3742. "require": {
  3743. "ext-ctype": "*",
  3744. "ext-dom": "*",
  3745. "ext-fileinfo": "*",
  3746. "ext-gd": "*",
  3747. "ext-iconv": "*",
  3748. "ext-libxml": "*",
  3749. "ext-mbstring": "*",
  3750. "ext-simplexml": "*",
  3751. "ext-xml": "*",
  3752. "ext-xmlreader": "*",
  3753. "ext-xmlwriter": "*",
  3754. "ext-zip": "*",
  3755. "ext-zlib": "*",
  3756. "ezyang/htmlpurifier": "^4.13",
  3757. "maennchen/zipstream-php": "^2.1",
  3758. "markbaker/complex": "^2.0",
  3759. "markbaker/matrix": "^2.0",
  3760. "php": "^7.2 || ^8.0",
  3761. "psr/http-client": "^1.0",
  3762. "psr/http-factory": "^1.0",
  3763. "psr/simple-cache": "^1.0"
  3764. },
  3765. "require-dev": {
  3766. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3767. "dompdf/dompdf": "^1.0",
  3768. "friendsofphp/php-cs-fixer": "^2.18",
  3769. "jpgraph/jpgraph": "^4.0",
  3770. "mpdf/mpdf": "^8.0",
  3771. "phpcompatibility/php-compatibility": "^9.3",
  3772. "phpstan/phpstan": "^0.12.82",
  3773. "phpstan/phpstan-phpunit": "^0.12.18",
  3774. "phpunit/phpunit": "^8.5",
  3775. "squizlabs/php_codesniffer": "^3.5",
  3776. "tecnickcom/tcpdf": "^6.3"
  3777. },
  3778. "suggest": {
  3779. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3780. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3781. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3782. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3783. },
  3784. "type": "library",
  3785. "autoload": {
  3786. "psr-4": {
  3787. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Maarten Balliauw",
  3797. "homepage": "https://blog.maartenballiauw.be"
  3798. },
  3799. {
  3800. "name": "Mark Baker",
  3801. "homepage": "https://markbakeruk.net"
  3802. },
  3803. {
  3804. "name": "Franck Lefevre",
  3805. "homepage": "https://rootslabs.net"
  3806. },
  3807. {
  3808. "name": "Erik Tilt"
  3809. },
  3810. {
  3811. "name": "Adrien Crivelli"
  3812. }
  3813. ],
  3814. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3815. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3816. "keywords": [
  3817. "OpenXML",
  3818. "excel",
  3819. "gnumeric",
  3820. "ods",
  3821. "php",
  3822. "spreadsheet",
  3823. "xls",
  3824. "xlsx"
  3825. ],
  3826. "support": {
  3827. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3828. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3829. },
  3830. "time": "2021-05-31T18:21:15+00:00"
  3831. },
  3832. {
  3833. "name": "phpoption/phpoption",
  3834. "version": "1.8.0",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/schmittjoh/php-option.git",
  3838. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3843. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3844. "shasum": "",
  3845. "mirrors": [
  3846. {
  3847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3848. "preferred": true
  3849. }
  3850. ]
  3851. },
  3852. "require": {
  3853. "php": "^7.0 || ^8.0"
  3854. },
  3855. "require-dev": {
  3856. "bamarni/composer-bin-plugin": "^1.4.1",
  3857. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3858. },
  3859. "type": "library",
  3860. "extra": {
  3861. "branch-alias": {
  3862. "dev-master": "1.8-dev"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "PhpOption\\": "src/PhpOption/"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "Apache-2.0"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "Johannes M. Schmitt",
  3877. "email": "schmittjoh@gmail.com"
  3878. },
  3879. {
  3880. "name": "Graham Campbell",
  3881. "email": "hello@gjcampbell.co.uk"
  3882. }
  3883. ],
  3884. "description": "Option Type for PHP",
  3885. "keywords": [
  3886. "language",
  3887. "option",
  3888. "php",
  3889. "type"
  3890. ],
  3891. "support": {
  3892. "issues": "https://github.com/schmittjoh/php-option/issues",
  3893. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3894. },
  3895. "funding": [
  3896. {
  3897. "url": "https://github.com/GrahamCampbell",
  3898. "type": "github"
  3899. },
  3900. {
  3901. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3902. "type": "tidelift"
  3903. }
  3904. ],
  3905. "time": "2021-08-28T21:27:29+00:00"
  3906. },
  3907. {
  3908. "name": "picqer/php-barcode-generator",
  3909. "version": "v2.2.0",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/picqer/php-barcode-generator.git",
  3913. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3918. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3919. "shasum": "",
  3920. "mirrors": [
  3921. {
  3922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3923. "preferred": true
  3924. }
  3925. ]
  3926. },
  3927. "require": {
  3928. "ext-mbstring": "*",
  3929. "php": "^7.3|^8.0"
  3930. },
  3931. "require-dev": {
  3932. "phpunit/phpunit": "^9.5"
  3933. },
  3934. "suggest": {
  3935. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3936. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3937. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3938. },
  3939. "type": "library",
  3940. "autoload": {
  3941. "psr-4": {
  3942. "Picqer\\Barcode\\": "src"
  3943. }
  3944. },
  3945. "notification-url": "https://packagist.org/downloads/",
  3946. "license": [
  3947. "LGPL-3.0-or-later"
  3948. ],
  3949. "authors": [
  3950. {
  3951. "name": "Nicola Asuni",
  3952. "email": "info@tecnick.com",
  3953. "homepage": "http://nicolaasuni.tecnick.com"
  3954. },
  3955. {
  3956. "name": "Casper Bakker",
  3957. "email": "info@picqer.com",
  3958. "homepage": "https://picqer.com"
  3959. }
  3960. ],
  3961. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3962. "homepage": "https://github.com/picqer/php-barcode-generator",
  3963. "keywords": [
  3964. "CODABAR",
  3965. "Code11",
  3966. "Code93",
  3967. "EAN13",
  3968. "KIX",
  3969. "KIXCODE",
  3970. "MSI",
  3971. "POSTNET",
  3972. "Pharma",
  3973. "Standard 2 of 5",
  3974. "barcode",
  3975. "barcode generator",
  3976. "code128",
  3977. "code39",
  3978. "ean",
  3979. "html",
  3980. "jpeg",
  3981. "jpg",
  3982. "php",
  3983. "png",
  3984. "svg",
  3985. "upc"
  3986. ],
  3987. "support": {
  3988. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3989. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3990. },
  3991. "funding": [
  3992. {
  3993. "url": "https://github.com/casperbakker",
  3994. "type": "github"
  3995. }
  3996. ],
  3997. "time": "2021-03-27T09:06:22+00:00"
  3998. },
  3999. {
  4000. "name": "predis/predis",
  4001. "version": "v1.1.9",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/predis/predis.git",
  4005. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4010. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  4011. "shasum": "",
  4012. "mirrors": [
  4013. {
  4014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4015. "preferred": true
  4016. }
  4017. ]
  4018. },
  4019. "require": {
  4020. "php": ">=5.3.9"
  4021. },
  4022. "require-dev": {
  4023. "phpunit/phpunit": "~4.8"
  4024. },
  4025. "suggest": {
  4026. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4027. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4028. },
  4029. "type": "library",
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Predis\\": "src/"
  4033. }
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "Daniele Alessandri",
  4042. "email": "suppakilla@gmail.com",
  4043. "homepage": "http://clorophilla.net",
  4044. "role": "Creator & Maintainer"
  4045. },
  4046. {
  4047. "name": "Till Krüss",
  4048. "homepage": "https://till.im",
  4049. "role": "Maintainer"
  4050. }
  4051. ],
  4052. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4053. "homepage": "http://github.com/predis/predis",
  4054. "keywords": [
  4055. "nosql",
  4056. "predis",
  4057. "redis"
  4058. ],
  4059. "support": {
  4060. "issues": "https://github.com/predis/predis/issues",
  4061. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4062. },
  4063. "funding": [
  4064. {
  4065. "url": "https://github.com/sponsors/tillkruss",
  4066. "type": "github"
  4067. }
  4068. ],
  4069. "time": "2021-10-05T19:02:38+00:00"
  4070. },
  4071. {
  4072. "name": "psr/container",
  4073. "version": "1.1.1",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/php-fig/container.git",
  4077. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4082. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4083. "shasum": "",
  4084. "mirrors": [
  4085. {
  4086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4087. "preferred": true
  4088. }
  4089. ]
  4090. },
  4091. "require": {
  4092. "php": ">=7.2.0"
  4093. },
  4094. "type": "library",
  4095. "autoload": {
  4096. "psr-4": {
  4097. "Psr\\Container\\": "src/"
  4098. }
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "PHP-FIG",
  4107. "homepage": "https://www.php-fig.org/"
  4108. }
  4109. ],
  4110. "description": "Common Container Interface (PHP FIG PSR-11)",
  4111. "homepage": "https://github.com/php-fig/container",
  4112. "keywords": [
  4113. "PSR-11",
  4114. "container",
  4115. "container-interface",
  4116. "container-interop",
  4117. "psr"
  4118. ],
  4119. "support": {
  4120. "issues": "https://github.com/php-fig/container/issues",
  4121. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4122. },
  4123. "time": "2021-03-05T17:36:06+00:00"
  4124. },
  4125. {
  4126. "name": "psr/event-dispatcher",
  4127. "version": "1.0.0",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://github.com/php-fig/event-dispatcher.git",
  4131. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4132. },
  4133. "dist": {
  4134. "type": "zip",
  4135. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4136. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4137. "shasum": "",
  4138. "mirrors": [
  4139. {
  4140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4141. "preferred": true
  4142. }
  4143. ]
  4144. },
  4145. "require": {
  4146. "php": ">=7.2.0"
  4147. },
  4148. "type": "library",
  4149. "extra": {
  4150. "branch-alias": {
  4151. "dev-master": "1.0.x-dev"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Psr\\EventDispatcher\\": "src/"
  4157. }
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "PHP-FIG",
  4166. "homepage": "http://www.php-fig.org/"
  4167. }
  4168. ],
  4169. "description": "Standard interfaces for event handling.",
  4170. "keywords": [
  4171. "events",
  4172. "psr",
  4173. "psr-14"
  4174. ],
  4175. "support": {
  4176. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4177. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4178. },
  4179. "time": "2019-01-08T18:20:26+00:00"
  4180. },
  4181. {
  4182. "name": "psr/http-client",
  4183. "version": "1.0.1",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/php-fig/http-client.git",
  4187. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4192. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4193. "shasum": "",
  4194. "mirrors": [
  4195. {
  4196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4197. "preferred": true
  4198. }
  4199. ]
  4200. },
  4201. "require": {
  4202. "php": "^7.0 || ^8.0",
  4203. "psr/http-message": "^1.0"
  4204. },
  4205. "type": "library",
  4206. "extra": {
  4207. "branch-alias": {
  4208. "dev-master": "1.0.x-dev"
  4209. }
  4210. },
  4211. "autoload": {
  4212. "psr-4": {
  4213. "Psr\\Http\\Client\\": "src/"
  4214. }
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "PHP-FIG",
  4223. "homepage": "http://www.php-fig.org/"
  4224. }
  4225. ],
  4226. "description": "Common interface for HTTP clients",
  4227. "homepage": "https://github.com/php-fig/http-client",
  4228. "keywords": [
  4229. "http",
  4230. "http-client",
  4231. "psr",
  4232. "psr-18"
  4233. ],
  4234. "support": {
  4235. "source": "https://github.com/php-fig/http-client/tree/master"
  4236. },
  4237. "time": "2020-06-29T06:28:15+00:00"
  4238. },
  4239. {
  4240. "name": "psr/http-factory",
  4241. "version": "1.0.1",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/php-fig/http-factory.git",
  4245. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4250. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4251. "shasum": "",
  4252. "mirrors": [
  4253. {
  4254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4255. "preferred": true
  4256. }
  4257. ]
  4258. },
  4259. "require": {
  4260. "php": ">=7.0.0",
  4261. "psr/http-message": "^1.0"
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-master": "1.0.x-dev"
  4267. }
  4268. },
  4269. "autoload": {
  4270. "psr-4": {
  4271. "Psr\\Http\\Message\\": "src/"
  4272. }
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "authors": [
  4279. {
  4280. "name": "PHP-FIG",
  4281. "homepage": "http://www.php-fig.org/"
  4282. }
  4283. ],
  4284. "description": "Common interfaces for PSR-7 HTTP message factories",
  4285. "keywords": [
  4286. "factory",
  4287. "http",
  4288. "message",
  4289. "psr",
  4290. "psr-17",
  4291. "psr-7",
  4292. "request",
  4293. "response"
  4294. ],
  4295. "support": {
  4296. "source": "https://github.com/php-fig/http-factory/tree/master"
  4297. },
  4298. "time": "2019-04-30T12:38:16+00:00"
  4299. },
  4300. {
  4301. "name": "psr/http-message",
  4302. "version": "1.0.1",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://github.com/php-fig/http-message.git",
  4306. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4311. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4312. "shasum": "",
  4313. "mirrors": [
  4314. {
  4315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4316. "preferred": true
  4317. }
  4318. ]
  4319. },
  4320. "require": {
  4321. "php": ">=5.3.0"
  4322. },
  4323. "type": "library",
  4324. "extra": {
  4325. "branch-alias": {
  4326. "dev-master": "1.0.x-dev"
  4327. }
  4328. },
  4329. "autoload": {
  4330. "psr-4": {
  4331. "Psr\\Http\\Message\\": "src/"
  4332. }
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "PHP-FIG",
  4341. "homepage": "http://www.php-fig.org/"
  4342. }
  4343. ],
  4344. "description": "Common interface for HTTP messages",
  4345. "homepage": "https://github.com/php-fig/http-message",
  4346. "keywords": [
  4347. "http",
  4348. "http-message",
  4349. "psr",
  4350. "psr-7",
  4351. "request",
  4352. "response"
  4353. ],
  4354. "support": {
  4355. "source": "https://github.com/php-fig/http-message/tree/master"
  4356. },
  4357. "time": "2016-08-06T14:39:51+00:00"
  4358. },
  4359. {
  4360. "name": "psr/log",
  4361. "version": "1.1.4",
  4362. "source": {
  4363. "type": "git",
  4364. "url": "https://github.com/php-fig/log.git",
  4365. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4366. },
  4367. "dist": {
  4368. "type": "zip",
  4369. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4370. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4371. "shasum": "",
  4372. "mirrors": [
  4373. {
  4374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4375. "preferred": true
  4376. }
  4377. ]
  4378. },
  4379. "require": {
  4380. "php": ">=5.3.0"
  4381. },
  4382. "type": "library",
  4383. "extra": {
  4384. "branch-alias": {
  4385. "dev-master": "1.1.x-dev"
  4386. }
  4387. },
  4388. "autoload": {
  4389. "psr-4": {
  4390. "Psr\\Log\\": "Psr/Log/"
  4391. }
  4392. },
  4393. "notification-url": "https://packagist.org/downloads/",
  4394. "license": [
  4395. "MIT"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "PHP-FIG",
  4400. "homepage": "https://www.php-fig.org/"
  4401. }
  4402. ],
  4403. "description": "Common interface for logging libraries",
  4404. "homepage": "https://github.com/php-fig/log",
  4405. "keywords": [
  4406. "log",
  4407. "psr",
  4408. "psr-3"
  4409. ],
  4410. "support": {
  4411. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4412. },
  4413. "time": "2021-05-03T11:20:27+00:00"
  4414. },
  4415. {
  4416. "name": "psr/simple-cache",
  4417. "version": "1.0.1",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/php-fig/simple-cache.git",
  4421. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4426. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4427. "shasum": "",
  4428. "mirrors": [
  4429. {
  4430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4431. "preferred": true
  4432. }
  4433. ]
  4434. },
  4435. "require": {
  4436. "php": ">=5.3.0"
  4437. },
  4438. "type": "library",
  4439. "extra": {
  4440. "branch-alias": {
  4441. "dev-master": "1.0.x-dev"
  4442. }
  4443. },
  4444. "autoload": {
  4445. "psr-4": {
  4446. "Psr\\SimpleCache\\": "src/"
  4447. }
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "MIT"
  4452. ],
  4453. "authors": [
  4454. {
  4455. "name": "PHP-FIG",
  4456. "homepage": "http://www.php-fig.org/"
  4457. }
  4458. ],
  4459. "description": "Common interfaces for simple caching",
  4460. "keywords": [
  4461. "cache",
  4462. "caching",
  4463. "psr",
  4464. "psr-16",
  4465. "simple-cache"
  4466. ],
  4467. "support": {
  4468. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4469. },
  4470. "time": "2017-10-23T01:57:42+00:00"
  4471. },
  4472. {
  4473. "name": "psy/psysh",
  4474. "version": "v0.10.9",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/bobthecow/psysh.git",
  4478. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/01281336c4ae557fe4a994544f30d3a1bc204375",
  4483. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375",
  4484. "shasum": "",
  4485. "mirrors": [
  4486. {
  4487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4488. "preferred": true
  4489. }
  4490. ]
  4491. },
  4492. "require": {
  4493. "ext-json": "*",
  4494. "ext-tokenizer": "*",
  4495. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4496. "php": "^8.0 || ^7.0 || ^5.5.9",
  4497. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4498. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4499. },
  4500. "require-dev": {
  4501. "bamarni/composer-bin-plugin": "^1.2",
  4502. "hoa/console": "3.17.*"
  4503. },
  4504. "suggest": {
  4505. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4506. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4507. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4508. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4509. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4510. },
  4511. "bin": [
  4512. "bin/psysh"
  4513. ],
  4514. "type": "library",
  4515. "extra": {
  4516. "branch-alias": {
  4517. "dev-main": "0.10.x-dev"
  4518. }
  4519. },
  4520. "autoload": {
  4521. "files": [
  4522. "src/functions.php"
  4523. ],
  4524. "psr-4": {
  4525. "Psy\\": "src/"
  4526. }
  4527. },
  4528. "notification-url": "https://packagist.org/downloads/",
  4529. "license": [
  4530. "MIT"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "Justin Hileman",
  4535. "email": "justin@justinhileman.info",
  4536. "homepage": "http://justinhileman.com"
  4537. }
  4538. ],
  4539. "description": "An interactive shell for modern PHP.",
  4540. "homepage": "http://psysh.org",
  4541. "keywords": [
  4542. "REPL",
  4543. "console",
  4544. "interactive",
  4545. "shell"
  4546. ],
  4547. "support": {
  4548. "issues": "https://github.com/bobthecow/psysh/issues",
  4549. "source": "https://github.com/bobthecow/psysh/tree/v0.10.9"
  4550. },
  4551. "time": "2021-10-10T13:37:39+00:00"
  4552. },
  4553. {
  4554. "name": "pusher/pusher-php-server",
  4555. "version": "v4.1.5",
  4556. "source": {
  4557. "type": "git",
  4558. "url": "https://github.com/pusher/pusher-http-php.git",
  4559. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4560. },
  4561. "dist": {
  4562. "type": "zip",
  4563. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4564. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4565. "shasum": "",
  4566. "mirrors": [
  4567. {
  4568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4569. "preferred": true
  4570. }
  4571. ]
  4572. },
  4573. "require": {
  4574. "ext-curl": "*",
  4575. "paragonie/sodium_compat": "^1.6",
  4576. "php": "^7.1|^8.0",
  4577. "psr/log": "^1.0"
  4578. },
  4579. "require-dev": {
  4580. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4581. },
  4582. "type": "library",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-master": "3.4-dev"
  4586. }
  4587. },
  4588. "autoload": {
  4589. "psr-4": {
  4590. "Pusher\\": "src/"
  4591. }
  4592. },
  4593. "notification-url": "https://packagist.org/downloads/",
  4594. "license": [
  4595. "MIT"
  4596. ],
  4597. "description": "Library for interacting with the Pusher REST API",
  4598. "keywords": [
  4599. "events",
  4600. "messaging",
  4601. "php-pusher-server",
  4602. "publish",
  4603. "push",
  4604. "pusher",
  4605. "real time",
  4606. "real-time",
  4607. "realtime",
  4608. "rest",
  4609. "trigger"
  4610. ],
  4611. "support": {
  4612. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4613. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4614. },
  4615. "time": "2020-12-09T09:38:19+00:00"
  4616. },
  4617. {
  4618. "name": "ralouphie/getallheaders",
  4619. "version": "3.0.3",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/ralouphie/getallheaders.git",
  4623. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4628. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4629. "shasum": "",
  4630. "mirrors": [
  4631. {
  4632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4633. "preferred": true
  4634. }
  4635. ]
  4636. },
  4637. "require": {
  4638. "php": ">=5.6"
  4639. },
  4640. "require-dev": {
  4641. "php-coveralls/php-coveralls": "^2.1",
  4642. "phpunit/phpunit": "^5 || ^6.5"
  4643. },
  4644. "type": "library",
  4645. "autoload": {
  4646. "files": [
  4647. "src/getallheaders.php"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Ralph Khattar",
  4657. "email": "ralph.khattar@gmail.com"
  4658. }
  4659. ],
  4660. "description": "A polyfill for getallheaders.",
  4661. "support": {
  4662. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4663. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4664. },
  4665. "time": "2019-03-08T08:55:37+00:00"
  4666. },
  4667. {
  4668. "name": "ramsey/collection",
  4669. "version": "1.2.2",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://github.com/ramsey/collection.git",
  4673. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4678. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4679. "shasum": "",
  4680. "mirrors": [
  4681. {
  4682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4683. "preferred": true
  4684. }
  4685. ]
  4686. },
  4687. "require": {
  4688. "php": "^7.3 || ^8",
  4689. "symfony/polyfill-php81": "^1.23"
  4690. },
  4691. "require-dev": {
  4692. "captainhook/captainhook": "^5.3",
  4693. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4694. "ergebnis/composer-normalize": "^2.6",
  4695. "fakerphp/faker": "^1.5",
  4696. "hamcrest/hamcrest-php": "^2",
  4697. "jangregor/phpstan-prophecy": "^0.8",
  4698. "mockery/mockery": "^1.3",
  4699. "phpspec/prophecy-phpunit": "^2.0",
  4700. "phpstan/extension-installer": "^1",
  4701. "phpstan/phpstan": "^0.12.32",
  4702. "phpstan/phpstan-mockery": "^0.12.5",
  4703. "phpstan/phpstan-phpunit": "^0.12.11",
  4704. "phpunit/phpunit": "^8.5 || ^9",
  4705. "psy/psysh": "^0.10.4",
  4706. "slevomat/coding-standard": "^6.3",
  4707. "squizlabs/php_codesniffer": "^3.5",
  4708. "vimeo/psalm": "^4.4"
  4709. },
  4710. "type": "library",
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Ramsey\\Collection\\": "src/"
  4714. }
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "authors": [
  4721. {
  4722. "name": "Ben Ramsey",
  4723. "email": "ben@benramsey.com",
  4724. "homepage": "https://benramsey.com"
  4725. }
  4726. ],
  4727. "description": "A PHP library for representing and manipulating collections.",
  4728. "keywords": [
  4729. "array",
  4730. "collection",
  4731. "hash",
  4732. "map",
  4733. "queue",
  4734. "set"
  4735. ],
  4736. "support": {
  4737. "issues": "https://github.com/ramsey/collection/issues",
  4738. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4739. },
  4740. "funding": [
  4741. {
  4742. "url": "https://github.com/ramsey",
  4743. "type": "github"
  4744. },
  4745. {
  4746. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4747. "type": "tidelift"
  4748. }
  4749. ],
  4750. "time": "2021-10-10T03:01:02+00:00"
  4751. },
  4752. {
  4753. "name": "ramsey/uuid",
  4754. "version": "4.2.3",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/ramsey/uuid.git",
  4758. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4763. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4764. "shasum": "",
  4765. "mirrors": [
  4766. {
  4767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4768. "preferred": true
  4769. }
  4770. ]
  4771. },
  4772. "require": {
  4773. "brick/math": "^0.8 || ^0.9",
  4774. "ext-json": "*",
  4775. "php": "^7.2 || ^8.0",
  4776. "ramsey/collection": "^1.0",
  4777. "symfony/polyfill-ctype": "^1.8",
  4778. "symfony/polyfill-php80": "^1.14"
  4779. },
  4780. "replace": {
  4781. "rhumsaa/uuid": "self.version"
  4782. },
  4783. "require-dev": {
  4784. "captainhook/captainhook": "^5.10",
  4785. "captainhook/plugin-composer": "^5.3",
  4786. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4787. "doctrine/annotations": "^1.8",
  4788. "ergebnis/composer-normalize": "^2.15",
  4789. "mockery/mockery": "^1.3",
  4790. "moontoast/math": "^1.1",
  4791. "paragonie/random-lib": "^2",
  4792. "php-mock/php-mock": "^2.2",
  4793. "php-mock/php-mock-mockery": "^1.3",
  4794. "php-parallel-lint/php-parallel-lint": "^1.1",
  4795. "phpbench/phpbench": "^1.0",
  4796. "phpstan/extension-installer": "^1.0",
  4797. "phpstan/phpstan": "^0.12",
  4798. "phpstan/phpstan-mockery": "^0.12",
  4799. "phpstan/phpstan-phpunit": "^0.12",
  4800. "phpunit/phpunit": "^8.5 || ^9",
  4801. "slevomat/coding-standard": "^7.0",
  4802. "squizlabs/php_codesniffer": "^3.5",
  4803. "vimeo/psalm": "^4.9"
  4804. },
  4805. "suggest": {
  4806. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4807. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4808. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4809. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4810. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4811. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4812. },
  4813. "type": "library",
  4814. "extra": {
  4815. "branch-alias": {
  4816. "dev-main": "4.x-dev"
  4817. },
  4818. "captainhook": {
  4819. "force-install": true
  4820. }
  4821. },
  4822. "autoload": {
  4823. "psr-4": {
  4824. "Ramsey\\Uuid\\": "src/"
  4825. },
  4826. "files": [
  4827. "src/functions.php"
  4828. ]
  4829. },
  4830. "notification-url": "https://packagist.org/downloads/",
  4831. "license": [
  4832. "MIT"
  4833. ],
  4834. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4835. "keywords": [
  4836. "guid",
  4837. "identifier",
  4838. "uuid"
  4839. ],
  4840. "support": {
  4841. "issues": "https://github.com/ramsey/uuid/issues",
  4842. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4843. },
  4844. "funding": [
  4845. {
  4846. "url": "https://github.com/ramsey",
  4847. "type": "github"
  4848. },
  4849. {
  4850. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4851. "type": "tidelift"
  4852. }
  4853. ],
  4854. "time": "2021-09-25T23:10:38+00:00"
  4855. },
  4856. {
  4857. "name": "swiftmailer/swiftmailer",
  4858. "version": "v6.3.0",
  4859. "source": {
  4860. "type": "git",
  4861. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4862. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4863. },
  4864. "dist": {
  4865. "type": "zip",
  4866. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4867. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4868. "shasum": "",
  4869. "mirrors": [
  4870. {
  4871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4872. "preferred": true
  4873. }
  4874. ]
  4875. },
  4876. "require": {
  4877. "egulias/email-validator": "^2.0|^3.1",
  4878. "php": ">=7.0.0",
  4879. "symfony/polyfill-iconv": "^1.0",
  4880. "symfony/polyfill-intl-idn": "^1.10",
  4881. "symfony/polyfill-mbstring": "^1.0"
  4882. },
  4883. "require-dev": {
  4884. "mockery/mockery": "^1.0",
  4885. "symfony/phpunit-bridge": "^4.4|^5.4"
  4886. },
  4887. "suggest": {
  4888. "ext-intl": "Needed to support internationalized email addresses"
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "branch-alias": {
  4893. "dev-master": "6.2-dev"
  4894. }
  4895. },
  4896. "autoload": {
  4897. "files": [
  4898. "lib/swift_required.php"
  4899. ]
  4900. },
  4901. "notification-url": "https://packagist.org/downloads/",
  4902. "license": [
  4903. "MIT"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Chris Corbyn"
  4908. },
  4909. {
  4910. "name": "Fabien Potencier",
  4911. "email": "fabien@symfony.com"
  4912. }
  4913. ],
  4914. "description": "Swiftmailer, free feature-rich PHP mailer",
  4915. "homepage": "https://swiftmailer.symfony.com",
  4916. "keywords": [
  4917. "email",
  4918. "mail",
  4919. "mailer"
  4920. ],
  4921. "support": {
  4922. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4923. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4924. },
  4925. "funding": [
  4926. {
  4927. "url": "https://github.com/fabpot",
  4928. "type": "github"
  4929. },
  4930. {
  4931. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4932. "type": "tidelift"
  4933. }
  4934. ],
  4935. "time": "2021-10-18T15:26:12+00:00"
  4936. },
  4937. {
  4938. "name": "symfony/console",
  4939. "version": "v5.3.7",
  4940. "source": {
  4941. "type": "git",
  4942. "url": "https://github.com/symfony/console.git",
  4943. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a"
  4944. },
  4945. "dist": {
  4946. "type": "zip",
  4947. "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a",
  4948. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a",
  4949. "shasum": "",
  4950. "mirrors": [
  4951. {
  4952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4953. "preferred": true
  4954. }
  4955. ]
  4956. },
  4957. "require": {
  4958. "php": ">=7.2.5",
  4959. "symfony/deprecation-contracts": "^2.1",
  4960. "symfony/polyfill-mbstring": "~1.0",
  4961. "symfony/polyfill-php73": "^1.8",
  4962. "symfony/polyfill-php80": "^1.16",
  4963. "symfony/service-contracts": "^1.1|^2",
  4964. "symfony/string": "^5.1"
  4965. },
  4966. "conflict": {
  4967. "psr/log": ">=3",
  4968. "symfony/dependency-injection": "<4.4",
  4969. "symfony/dotenv": "<5.1",
  4970. "symfony/event-dispatcher": "<4.4",
  4971. "symfony/lock": "<4.4",
  4972. "symfony/process": "<4.4"
  4973. },
  4974. "provide": {
  4975. "psr/log-implementation": "1.0|2.0"
  4976. },
  4977. "require-dev": {
  4978. "psr/log": "^1|^2",
  4979. "symfony/config": "^4.4|^5.0",
  4980. "symfony/dependency-injection": "^4.4|^5.0",
  4981. "symfony/event-dispatcher": "^4.4|^5.0",
  4982. "symfony/lock": "^4.4|^5.0",
  4983. "symfony/process": "^4.4|^5.0",
  4984. "symfony/var-dumper": "^4.4|^5.0"
  4985. },
  4986. "suggest": {
  4987. "psr/log": "For using the console logger",
  4988. "symfony/event-dispatcher": "",
  4989. "symfony/lock": "",
  4990. "symfony/process": ""
  4991. },
  4992. "type": "library",
  4993. "autoload": {
  4994. "psr-4": {
  4995. "Symfony\\Component\\Console\\": ""
  4996. },
  4997. "exclude-from-classmap": [
  4998. "/Tests/"
  4999. ]
  5000. },
  5001. "notification-url": "https://packagist.org/downloads/",
  5002. "license": [
  5003. "MIT"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "Fabien Potencier",
  5008. "email": "fabien@symfony.com"
  5009. },
  5010. {
  5011. "name": "Symfony Community",
  5012. "homepage": "https://symfony.com/contributors"
  5013. }
  5014. ],
  5015. "description": "Eases the creation of beautiful and testable command line interfaces",
  5016. "homepage": "https://symfony.com",
  5017. "keywords": [
  5018. "cli",
  5019. "command line",
  5020. "console",
  5021. "terminal"
  5022. ],
  5023. "support": {
  5024. "source": "https://github.com/symfony/console/tree/v5.3.7"
  5025. },
  5026. "funding": [
  5027. {
  5028. "url": "https://symfony.com/sponsor",
  5029. "type": "custom"
  5030. },
  5031. {
  5032. "url": "https://github.com/fabpot",
  5033. "type": "github"
  5034. },
  5035. {
  5036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5037. "type": "tidelift"
  5038. }
  5039. ],
  5040. "time": "2021-08-25T20:02:16+00:00"
  5041. },
  5042. {
  5043. "name": "symfony/css-selector",
  5044. "version": "v5.3.4",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://github.com/symfony/css-selector.git",
  5048. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  5053. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  5054. "shasum": "",
  5055. "mirrors": [
  5056. {
  5057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5058. "preferred": true
  5059. }
  5060. ]
  5061. },
  5062. "require": {
  5063. "php": ">=7.2.5",
  5064. "symfony/polyfill-php80": "^1.16"
  5065. },
  5066. "type": "library",
  5067. "autoload": {
  5068. "psr-4": {
  5069. "Symfony\\Component\\CssSelector\\": ""
  5070. },
  5071. "exclude-from-classmap": [
  5072. "/Tests/"
  5073. ]
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Fabien Potencier",
  5082. "email": "fabien@symfony.com"
  5083. },
  5084. {
  5085. "name": "Jean-François Simon",
  5086. "email": "jeanfrancois.simon@sensiolabs.com"
  5087. },
  5088. {
  5089. "name": "Symfony Community",
  5090. "homepage": "https://symfony.com/contributors"
  5091. }
  5092. ],
  5093. "description": "Converts CSS selectors to XPath expressions",
  5094. "homepage": "https://symfony.com",
  5095. "support": {
  5096. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  5097. },
  5098. "funding": [
  5099. {
  5100. "url": "https://symfony.com/sponsor",
  5101. "type": "custom"
  5102. },
  5103. {
  5104. "url": "https://github.com/fabpot",
  5105. "type": "github"
  5106. },
  5107. {
  5108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5109. "type": "tidelift"
  5110. }
  5111. ],
  5112. "time": "2021-07-21T12:38:00+00:00"
  5113. },
  5114. {
  5115. "name": "symfony/deprecation-contracts",
  5116. "version": "v2.4.0",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/symfony/deprecation-contracts.git",
  5120. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5125. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5126. "shasum": "",
  5127. "mirrors": [
  5128. {
  5129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5130. "preferred": true
  5131. }
  5132. ]
  5133. },
  5134. "require": {
  5135. "php": ">=7.1"
  5136. },
  5137. "type": "library",
  5138. "extra": {
  5139. "branch-alias": {
  5140. "dev-main": "2.4-dev"
  5141. },
  5142. "thanks": {
  5143. "name": "symfony/contracts",
  5144. "url": "https://github.com/symfony/contracts"
  5145. }
  5146. },
  5147. "autoload": {
  5148. "files": [
  5149. "function.php"
  5150. ]
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Nicolas Grekas",
  5159. "email": "p@tchwork.com"
  5160. },
  5161. {
  5162. "name": "Symfony Community",
  5163. "homepage": "https://symfony.com/contributors"
  5164. }
  5165. ],
  5166. "description": "A generic function and convention to trigger deprecation notices",
  5167. "homepage": "https://symfony.com",
  5168. "support": {
  5169. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5170. },
  5171. "funding": [
  5172. {
  5173. "url": "https://symfony.com/sponsor",
  5174. "type": "custom"
  5175. },
  5176. {
  5177. "url": "https://github.com/fabpot",
  5178. "type": "github"
  5179. },
  5180. {
  5181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5182. "type": "tidelift"
  5183. }
  5184. ],
  5185. "time": "2021-03-23T23:28:01+00:00"
  5186. },
  5187. {
  5188. "name": "symfony/error-handler",
  5189. "version": "v5.3.7",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/symfony/error-handler.git",
  5193. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5198. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5199. "shasum": "",
  5200. "mirrors": [
  5201. {
  5202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5203. "preferred": true
  5204. }
  5205. ]
  5206. },
  5207. "require": {
  5208. "php": ">=7.2.5",
  5209. "psr/log": "^1|^2|^3",
  5210. "symfony/var-dumper": "^4.4|^5.0"
  5211. },
  5212. "require-dev": {
  5213. "symfony/deprecation-contracts": "^2.1",
  5214. "symfony/http-kernel": "^4.4|^5.0",
  5215. "symfony/serializer": "^4.4|^5.0"
  5216. },
  5217. "type": "library",
  5218. "autoload": {
  5219. "psr-4": {
  5220. "Symfony\\Component\\ErrorHandler\\": ""
  5221. },
  5222. "exclude-from-classmap": [
  5223. "/Tests/"
  5224. ]
  5225. },
  5226. "notification-url": "https://packagist.org/downloads/",
  5227. "license": [
  5228. "MIT"
  5229. ],
  5230. "authors": [
  5231. {
  5232. "name": "Fabien Potencier",
  5233. "email": "fabien@symfony.com"
  5234. },
  5235. {
  5236. "name": "Symfony Community",
  5237. "homepage": "https://symfony.com/contributors"
  5238. }
  5239. ],
  5240. "description": "Provides tools to manage errors and ease debugging PHP code",
  5241. "homepage": "https://symfony.com",
  5242. "support": {
  5243. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5244. },
  5245. "funding": [
  5246. {
  5247. "url": "https://symfony.com/sponsor",
  5248. "type": "custom"
  5249. },
  5250. {
  5251. "url": "https://github.com/fabpot",
  5252. "type": "github"
  5253. },
  5254. {
  5255. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5256. "type": "tidelift"
  5257. }
  5258. ],
  5259. "time": "2021-08-28T15:07:08+00:00"
  5260. },
  5261. {
  5262. "name": "symfony/event-dispatcher",
  5263. "version": "v5.3.7",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/symfony/event-dispatcher.git",
  5267. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5272. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  5273. "shasum": "",
  5274. "mirrors": [
  5275. {
  5276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5277. "preferred": true
  5278. }
  5279. ]
  5280. },
  5281. "require": {
  5282. "php": ">=7.2.5",
  5283. "symfony/deprecation-contracts": "^2.1",
  5284. "symfony/event-dispatcher-contracts": "^2",
  5285. "symfony/polyfill-php80": "^1.16"
  5286. },
  5287. "conflict": {
  5288. "symfony/dependency-injection": "<4.4"
  5289. },
  5290. "provide": {
  5291. "psr/event-dispatcher-implementation": "1.0",
  5292. "symfony/event-dispatcher-implementation": "2.0"
  5293. },
  5294. "require-dev": {
  5295. "psr/log": "^1|^2|^3",
  5296. "symfony/config": "^4.4|^5.0",
  5297. "symfony/dependency-injection": "^4.4|^5.0",
  5298. "symfony/error-handler": "^4.4|^5.0",
  5299. "symfony/expression-language": "^4.4|^5.0",
  5300. "symfony/http-foundation": "^4.4|^5.0",
  5301. "symfony/service-contracts": "^1.1|^2",
  5302. "symfony/stopwatch": "^4.4|^5.0"
  5303. },
  5304. "suggest": {
  5305. "symfony/dependency-injection": "",
  5306. "symfony/http-kernel": ""
  5307. },
  5308. "type": "library",
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Symfony\\Component\\EventDispatcher\\": ""
  5312. },
  5313. "exclude-from-classmap": [
  5314. "/Tests/"
  5315. ]
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Fabien Potencier",
  5324. "email": "fabien@symfony.com"
  5325. },
  5326. {
  5327. "name": "Symfony Community",
  5328. "homepage": "https://symfony.com/contributors"
  5329. }
  5330. ],
  5331. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5332. "homepage": "https://symfony.com",
  5333. "support": {
  5334. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5335. },
  5336. "funding": [
  5337. {
  5338. "url": "https://symfony.com/sponsor",
  5339. "type": "custom"
  5340. },
  5341. {
  5342. "url": "https://github.com/fabpot",
  5343. "type": "github"
  5344. },
  5345. {
  5346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5347. "type": "tidelift"
  5348. }
  5349. ],
  5350. "time": "2021-08-04T21:20:46+00:00"
  5351. },
  5352. {
  5353. "name": "symfony/event-dispatcher-contracts",
  5354. "version": "v2.4.0",
  5355. "source": {
  5356. "type": "git",
  5357. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5358. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5359. },
  5360. "dist": {
  5361. "type": "zip",
  5362. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5363. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5364. "shasum": "",
  5365. "mirrors": [
  5366. {
  5367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5368. "preferred": true
  5369. }
  5370. ]
  5371. },
  5372. "require": {
  5373. "php": ">=7.2.5",
  5374. "psr/event-dispatcher": "^1"
  5375. },
  5376. "suggest": {
  5377. "symfony/event-dispatcher-implementation": ""
  5378. },
  5379. "type": "library",
  5380. "extra": {
  5381. "branch-alias": {
  5382. "dev-main": "2.4-dev"
  5383. },
  5384. "thanks": {
  5385. "name": "symfony/contracts",
  5386. "url": "https://github.com/symfony/contracts"
  5387. }
  5388. },
  5389. "autoload": {
  5390. "psr-4": {
  5391. "Symfony\\Contracts\\EventDispatcher\\": ""
  5392. }
  5393. },
  5394. "notification-url": "https://packagist.org/downloads/",
  5395. "license": [
  5396. "MIT"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Nicolas Grekas",
  5401. "email": "p@tchwork.com"
  5402. },
  5403. {
  5404. "name": "Symfony Community",
  5405. "homepage": "https://symfony.com/contributors"
  5406. }
  5407. ],
  5408. "description": "Generic abstractions related to dispatching event",
  5409. "homepage": "https://symfony.com",
  5410. "keywords": [
  5411. "abstractions",
  5412. "contracts",
  5413. "decoupling",
  5414. "interfaces",
  5415. "interoperability",
  5416. "standards"
  5417. ],
  5418. "support": {
  5419. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5420. },
  5421. "funding": [
  5422. {
  5423. "url": "https://symfony.com/sponsor",
  5424. "type": "custom"
  5425. },
  5426. {
  5427. "url": "https://github.com/fabpot",
  5428. "type": "github"
  5429. },
  5430. {
  5431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5432. "type": "tidelift"
  5433. }
  5434. ],
  5435. "time": "2021-03-23T23:28:01+00:00"
  5436. },
  5437. {
  5438. "name": "symfony/finder",
  5439. "version": "v5.3.7",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/symfony/finder.git",
  5443. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5448. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5449. "shasum": "",
  5450. "mirrors": [
  5451. {
  5452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5453. "preferred": true
  5454. }
  5455. ]
  5456. },
  5457. "require": {
  5458. "php": ">=7.2.5",
  5459. "symfony/polyfill-php80": "^1.16"
  5460. },
  5461. "type": "library",
  5462. "autoload": {
  5463. "psr-4": {
  5464. "Symfony\\Component\\Finder\\": ""
  5465. },
  5466. "exclude-from-classmap": [
  5467. "/Tests/"
  5468. ]
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "MIT"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Fabien Potencier",
  5477. "email": "fabien@symfony.com"
  5478. },
  5479. {
  5480. "name": "Symfony Community",
  5481. "homepage": "https://symfony.com/contributors"
  5482. }
  5483. ],
  5484. "description": "Finds files and directories via an intuitive fluent interface",
  5485. "homepage": "https://symfony.com",
  5486. "support": {
  5487. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  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-08-04T21:20:46+00:00"
  5504. },
  5505. {
  5506. "name": "symfony/http-client-contracts",
  5507. "version": "v2.4.0",
  5508. "source": {
  5509. "type": "git",
  5510. "url": "https://github.com/symfony/http-client-contracts.git",
  5511. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5512. },
  5513. "dist": {
  5514. "type": "zip",
  5515. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5516. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  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. "php": ">=7.2.5"
  5527. },
  5528. "suggest": {
  5529. "symfony/http-client-implementation": ""
  5530. },
  5531. "type": "library",
  5532. "extra": {
  5533. "branch-alias": {
  5534. "dev-main": "2.4-dev"
  5535. },
  5536. "thanks": {
  5537. "name": "symfony/contracts",
  5538. "url": "https://github.com/symfony/contracts"
  5539. }
  5540. },
  5541. "autoload": {
  5542. "psr-4": {
  5543. "Symfony\\Contracts\\HttpClient\\": ""
  5544. }
  5545. },
  5546. "notification-url": "https://packagist.org/downloads/",
  5547. "license": [
  5548. "MIT"
  5549. ],
  5550. "authors": [
  5551. {
  5552. "name": "Nicolas Grekas",
  5553. "email": "p@tchwork.com"
  5554. },
  5555. {
  5556. "name": "Symfony Community",
  5557. "homepage": "https://symfony.com/contributors"
  5558. }
  5559. ],
  5560. "description": "Generic abstractions related to HTTP clients",
  5561. "homepage": "https://symfony.com",
  5562. "keywords": [
  5563. "abstractions",
  5564. "contracts",
  5565. "decoupling",
  5566. "interfaces",
  5567. "interoperability",
  5568. "standards"
  5569. ],
  5570. "support": {
  5571. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5572. },
  5573. "funding": [
  5574. {
  5575. "url": "https://symfony.com/sponsor",
  5576. "type": "custom"
  5577. },
  5578. {
  5579. "url": "https://github.com/fabpot",
  5580. "type": "github"
  5581. },
  5582. {
  5583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5584. "type": "tidelift"
  5585. }
  5586. ],
  5587. "time": "2021-04-11T23:07:08+00:00"
  5588. },
  5589. {
  5590. "name": "symfony/http-foundation",
  5591. "version": "v5.3.7",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/symfony/http-foundation.git",
  5595. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5600. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5601. "shasum": "",
  5602. "mirrors": [
  5603. {
  5604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5605. "preferred": true
  5606. }
  5607. ]
  5608. },
  5609. "require": {
  5610. "php": ">=7.2.5",
  5611. "symfony/deprecation-contracts": "^2.1",
  5612. "symfony/polyfill-mbstring": "~1.1",
  5613. "symfony/polyfill-php80": "^1.16"
  5614. },
  5615. "require-dev": {
  5616. "predis/predis": "~1.0",
  5617. "symfony/cache": "^4.4|^5.0",
  5618. "symfony/expression-language": "^4.4|^5.0",
  5619. "symfony/mime": "^4.4|^5.0"
  5620. },
  5621. "suggest": {
  5622. "symfony/mime": "To use the file extension guesser"
  5623. },
  5624. "type": "library",
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Symfony\\Component\\HttpFoundation\\": ""
  5628. },
  5629. "exclude-from-classmap": [
  5630. "/Tests/"
  5631. ]
  5632. },
  5633. "notification-url": "https://packagist.org/downloads/",
  5634. "license": [
  5635. "MIT"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "Fabien Potencier",
  5640. "email": "fabien@symfony.com"
  5641. },
  5642. {
  5643. "name": "Symfony Community",
  5644. "homepage": "https://symfony.com/contributors"
  5645. }
  5646. ],
  5647. "description": "Defines an object-oriented layer for the HTTP specification",
  5648. "homepage": "https://symfony.com",
  5649. "support": {
  5650. "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
  5651. },
  5652. "funding": [
  5653. {
  5654. "url": "https://symfony.com/sponsor",
  5655. "type": "custom"
  5656. },
  5657. {
  5658. "url": "https://github.com/fabpot",
  5659. "type": "github"
  5660. },
  5661. {
  5662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5663. "type": "tidelift"
  5664. }
  5665. ],
  5666. "time": "2021-08-27T11:20:35+00:00"
  5667. },
  5668. {
  5669. "name": "symfony/http-kernel",
  5670. "version": "v5.3.9",
  5671. "source": {
  5672. "type": "git",
  5673. "url": "https://github.com/symfony/http-kernel.git",
  5674. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5"
  5675. },
  5676. "dist": {
  5677. "type": "zip",
  5678. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ceaf46a992f60e90645e7279825a830f733a17c5",
  5679. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5",
  5680. "shasum": "",
  5681. "mirrors": [
  5682. {
  5683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5684. "preferred": true
  5685. }
  5686. ]
  5687. },
  5688. "require": {
  5689. "php": ">=7.2.5",
  5690. "psr/log": "^1|^2",
  5691. "symfony/deprecation-contracts": "^2.1",
  5692. "symfony/error-handler": "^4.4|^5.0",
  5693. "symfony/event-dispatcher": "^5.0",
  5694. "symfony/http-client-contracts": "^1.1|^2",
  5695. "symfony/http-foundation": "^5.3.7",
  5696. "symfony/polyfill-ctype": "^1.8",
  5697. "symfony/polyfill-php73": "^1.9",
  5698. "symfony/polyfill-php80": "^1.16"
  5699. },
  5700. "conflict": {
  5701. "symfony/browser-kit": "<4.4",
  5702. "symfony/cache": "<5.0",
  5703. "symfony/config": "<5.0",
  5704. "symfony/console": "<4.4",
  5705. "symfony/dependency-injection": "<5.3",
  5706. "symfony/doctrine-bridge": "<5.0",
  5707. "symfony/form": "<5.0",
  5708. "symfony/http-client": "<5.0",
  5709. "symfony/mailer": "<5.0",
  5710. "symfony/messenger": "<5.0",
  5711. "symfony/translation": "<5.0",
  5712. "symfony/twig-bridge": "<5.0",
  5713. "symfony/validator": "<5.0",
  5714. "twig/twig": "<2.13"
  5715. },
  5716. "provide": {
  5717. "psr/log-implementation": "1.0|2.0"
  5718. },
  5719. "require-dev": {
  5720. "psr/cache": "^1.0|^2.0|^3.0",
  5721. "symfony/browser-kit": "^4.4|^5.0",
  5722. "symfony/config": "^5.0",
  5723. "symfony/console": "^4.4|^5.0",
  5724. "symfony/css-selector": "^4.4|^5.0",
  5725. "symfony/dependency-injection": "^5.3",
  5726. "symfony/dom-crawler": "^4.4|^5.0",
  5727. "symfony/expression-language": "^4.4|^5.0",
  5728. "symfony/finder": "^4.4|^5.0",
  5729. "symfony/process": "^4.4|^5.0",
  5730. "symfony/routing": "^4.4|^5.0",
  5731. "symfony/stopwatch": "^4.4|^5.0",
  5732. "symfony/translation": "^4.4|^5.0",
  5733. "symfony/translation-contracts": "^1.1|^2",
  5734. "twig/twig": "^2.13|^3.0.4"
  5735. },
  5736. "suggest": {
  5737. "symfony/browser-kit": "",
  5738. "symfony/config": "",
  5739. "symfony/console": "",
  5740. "symfony/dependency-injection": ""
  5741. },
  5742. "type": "library",
  5743. "autoload": {
  5744. "psr-4": {
  5745. "Symfony\\Component\\HttpKernel\\": ""
  5746. },
  5747. "exclude-from-classmap": [
  5748. "/Tests/"
  5749. ]
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Fabien Potencier",
  5758. "email": "fabien@symfony.com"
  5759. },
  5760. {
  5761. "name": "Symfony Community",
  5762. "homepage": "https://symfony.com/contributors"
  5763. }
  5764. ],
  5765. "description": "Provides a structured process for converting a Request into a Response",
  5766. "homepage": "https://symfony.com",
  5767. "support": {
  5768. "source": "https://github.com/symfony/http-kernel/tree/v5.3.9"
  5769. },
  5770. "funding": [
  5771. {
  5772. "url": "https://symfony.com/sponsor",
  5773. "type": "custom"
  5774. },
  5775. {
  5776. "url": "https://github.com/fabpot",
  5777. "type": "github"
  5778. },
  5779. {
  5780. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5781. "type": "tidelift"
  5782. }
  5783. ],
  5784. "time": "2021-09-28T10:25:11+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/mime",
  5788. "version": "v5.3.8",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/mime.git",
  5792. "reference": "a756033d0a7e53db389618653ae991eba5a19a11"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/mime/zipball/a756033d0a7e53db389618653ae991eba5a19a11",
  5797. "reference": "a756033d0a7e53db389618653ae991eba5a19a11",
  5798. "shasum": "",
  5799. "mirrors": [
  5800. {
  5801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5802. "preferred": true
  5803. }
  5804. ]
  5805. },
  5806. "require": {
  5807. "php": ">=7.2.5",
  5808. "symfony/deprecation-contracts": "^2.1",
  5809. "symfony/polyfill-intl-idn": "^1.10",
  5810. "symfony/polyfill-mbstring": "^1.0",
  5811. "symfony/polyfill-php80": "^1.16"
  5812. },
  5813. "conflict": {
  5814. "egulias/email-validator": "~3.0.0",
  5815. "phpdocumentor/reflection-docblock": "<3.2.2",
  5816. "phpdocumentor/type-resolver": "<1.4.0",
  5817. "symfony/mailer": "<4.4"
  5818. },
  5819. "require-dev": {
  5820. "egulias/email-validator": "^2.1.10|^3.1",
  5821. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5822. "symfony/dependency-injection": "^4.4|^5.0",
  5823. "symfony/property-access": "^4.4|^5.1",
  5824. "symfony/property-info": "^4.4|^5.1",
  5825. "symfony/serializer": "^5.2"
  5826. },
  5827. "type": "library",
  5828. "autoload": {
  5829. "psr-4": {
  5830. "Symfony\\Component\\Mime\\": ""
  5831. },
  5832. "exclude-from-classmap": [
  5833. "/Tests/"
  5834. ]
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Fabien Potencier",
  5843. "email": "fabien@symfony.com"
  5844. },
  5845. {
  5846. "name": "Symfony Community",
  5847. "homepage": "https://symfony.com/contributors"
  5848. }
  5849. ],
  5850. "description": "Allows manipulating MIME messages",
  5851. "homepage": "https://symfony.com",
  5852. "keywords": [
  5853. "mime",
  5854. "mime-type"
  5855. ],
  5856. "support": {
  5857. "source": "https://github.com/symfony/mime/tree/v5.3.8"
  5858. },
  5859. "funding": [
  5860. {
  5861. "url": "https://symfony.com/sponsor",
  5862. "type": "custom"
  5863. },
  5864. {
  5865. "url": "https://github.com/fabpot",
  5866. "type": "github"
  5867. },
  5868. {
  5869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5870. "type": "tidelift"
  5871. }
  5872. ],
  5873. "time": "2021-09-10T12:30:38+00:00"
  5874. },
  5875. {
  5876. "name": "symfony/options-resolver",
  5877. "version": "v5.3.7",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://github.com/symfony/options-resolver.git",
  5881. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5886. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5887. "shasum": "",
  5888. "mirrors": [
  5889. {
  5890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5891. "preferred": true
  5892. }
  5893. ]
  5894. },
  5895. "require": {
  5896. "php": ">=7.2.5",
  5897. "symfony/deprecation-contracts": "^2.1",
  5898. "symfony/polyfill-php73": "~1.0",
  5899. "symfony/polyfill-php80": "^1.16"
  5900. },
  5901. "type": "library",
  5902. "autoload": {
  5903. "psr-4": {
  5904. "Symfony\\Component\\OptionsResolver\\": ""
  5905. },
  5906. "exclude-from-classmap": [
  5907. "/Tests/"
  5908. ]
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Fabien Potencier",
  5917. "email": "fabien@symfony.com"
  5918. },
  5919. {
  5920. "name": "Symfony Community",
  5921. "homepage": "https://symfony.com/contributors"
  5922. }
  5923. ],
  5924. "description": "Provides an improved replacement for the array_replace PHP function",
  5925. "homepage": "https://symfony.com",
  5926. "keywords": [
  5927. "config",
  5928. "configuration",
  5929. "options"
  5930. ],
  5931. "support": {
  5932. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5933. },
  5934. "funding": [
  5935. {
  5936. "url": "https://symfony.com/sponsor",
  5937. "type": "custom"
  5938. },
  5939. {
  5940. "url": "https://github.com/fabpot",
  5941. "type": "github"
  5942. },
  5943. {
  5944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5945. "type": "tidelift"
  5946. }
  5947. ],
  5948. "time": "2021-08-04T21:20:46+00:00"
  5949. },
  5950. {
  5951. "name": "symfony/polyfill-ctype",
  5952. "version": "v1.23.0",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/symfony/polyfill-ctype.git",
  5956. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5961. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5962. "shasum": "",
  5963. "mirrors": [
  5964. {
  5965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5966. "preferred": true
  5967. }
  5968. ]
  5969. },
  5970. "require": {
  5971. "php": ">=7.1"
  5972. },
  5973. "suggest": {
  5974. "ext-ctype": "For best performance"
  5975. },
  5976. "type": "library",
  5977. "extra": {
  5978. "branch-alias": {
  5979. "dev-main": "1.23-dev"
  5980. },
  5981. "thanks": {
  5982. "name": "symfony/polyfill",
  5983. "url": "https://github.com/symfony/polyfill"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Polyfill\\Ctype\\": ""
  5989. },
  5990. "files": [
  5991. "bootstrap.php"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Gert de Pagter",
  6001. "email": "BackEndTea@gmail.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Symfony polyfill for ctype functions",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "compatibility",
  6012. "ctype",
  6013. "polyfill",
  6014. "portable"
  6015. ],
  6016. "support": {
  6017. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2021-02-19T12:13:01+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/polyfill-iconv",
  6037. "version": "v1.23.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/polyfill-iconv.git",
  6041. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  6046. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  6047. "shasum": "",
  6048. "mirrors": [
  6049. {
  6050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6051. "preferred": true
  6052. }
  6053. ]
  6054. },
  6055. "require": {
  6056. "php": ">=7.1"
  6057. },
  6058. "suggest": {
  6059. "ext-iconv": "For best performance"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "branch-alias": {
  6064. "dev-main": "1.23-dev"
  6065. },
  6066. "thanks": {
  6067. "name": "symfony/polyfill",
  6068. "url": "https://github.com/symfony/polyfill"
  6069. }
  6070. },
  6071. "autoload": {
  6072. "psr-4": {
  6073. "Symfony\\Polyfill\\Iconv\\": ""
  6074. },
  6075. "files": [
  6076. "bootstrap.php"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Nicolas Grekas",
  6086. "email": "p@tchwork.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Symfony polyfill for the Iconv extension",
  6094. "homepage": "https://symfony.com",
  6095. "keywords": [
  6096. "compatibility",
  6097. "iconv",
  6098. "polyfill",
  6099. "portable",
  6100. "shim"
  6101. ],
  6102. "support": {
  6103. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6104. },
  6105. "funding": [
  6106. {
  6107. "url": "https://symfony.com/sponsor",
  6108. "type": "custom"
  6109. },
  6110. {
  6111. "url": "https://github.com/fabpot",
  6112. "type": "github"
  6113. },
  6114. {
  6115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6116. "type": "tidelift"
  6117. }
  6118. ],
  6119. "time": "2021-05-27T09:27:20+00:00"
  6120. },
  6121. {
  6122. "name": "symfony/polyfill-intl-grapheme",
  6123. "version": "v1.23.1",
  6124. "source": {
  6125. "type": "git",
  6126. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6127. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6128. },
  6129. "dist": {
  6130. "type": "zip",
  6131. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6132. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6133. "shasum": "",
  6134. "mirrors": [
  6135. {
  6136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6137. "preferred": true
  6138. }
  6139. ]
  6140. },
  6141. "require": {
  6142. "php": ">=7.1"
  6143. },
  6144. "suggest": {
  6145. "ext-intl": "For best performance"
  6146. },
  6147. "type": "library",
  6148. "extra": {
  6149. "branch-alias": {
  6150. "dev-main": "1.23-dev"
  6151. },
  6152. "thanks": {
  6153. "name": "symfony/polyfill",
  6154. "url": "https://github.com/symfony/polyfill"
  6155. }
  6156. },
  6157. "autoload": {
  6158. "psr-4": {
  6159. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6160. },
  6161. "files": [
  6162. "bootstrap.php"
  6163. ]
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "MIT"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "Nicolas Grekas",
  6172. "email": "p@tchwork.com"
  6173. },
  6174. {
  6175. "name": "Symfony Community",
  6176. "homepage": "https://symfony.com/contributors"
  6177. }
  6178. ],
  6179. "description": "Symfony polyfill for intl's grapheme_* functions",
  6180. "homepage": "https://symfony.com",
  6181. "keywords": [
  6182. "compatibility",
  6183. "grapheme",
  6184. "intl",
  6185. "polyfill",
  6186. "portable",
  6187. "shim"
  6188. ],
  6189. "support": {
  6190. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://symfony.com/sponsor",
  6195. "type": "custom"
  6196. },
  6197. {
  6198. "url": "https://github.com/fabpot",
  6199. "type": "github"
  6200. },
  6201. {
  6202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6203. "type": "tidelift"
  6204. }
  6205. ],
  6206. "time": "2021-05-27T12:26:48+00:00"
  6207. },
  6208. {
  6209. "name": "symfony/polyfill-intl-idn",
  6210. "version": "v1.23.0",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6214. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6219. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6220. "shasum": "",
  6221. "mirrors": [
  6222. {
  6223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6224. "preferred": true
  6225. }
  6226. ]
  6227. },
  6228. "require": {
  6229. "php": ">=7.1",
  6230. "symfony/polyfill-intl-normalizer": "^1.10",
  6231. "symfony/polyfill-php72": "^1.10"
  6232. },
  6233. "suggest": {
  6234. "ext-intl": "For best performance"
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-main": "1.23-dev"
  6240. },
  6241. "thanks": {
  6242. "name": "symfony/polyfill",
  6243. "url": "https://github.com/symfony/polyfill"
  6244. }
  6245. },
  6246. "autoload": {
  6247. "psr-4": {
  6248. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6249. },
  6250. "files": [
  6251. "bootstrap.php"
  6252. ]
  6253. },
  6254. "notification-url": "https://packagist.org/downloads/",
  6255. "license": [
  6256. "MIT"
  6257. ],
  6258. "authors": [
  6259. {
  6260. "name": "Laurent Bassin",
  6261. "email": "laurent@bassin.info"
  6262. },
  6263. {
  6264. "name": "Trevor Rowbotham",
  6265. "email": "trevor.rowbotham@pm.me"
  6266. },
  6267. {
  6268. "name": "Symfony Community",
  6269. "homepage": "https://symfony.com/contributors"
  6270. }
  6271. ],
  6272. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6273. "homepage": "https://symfony.com",
  6274. "keywords": [
  6275. "compatibility",
  6276. "idn",
  6277. "intl",
  6278. "polyfill",
  6279. "portable",
  6280. "shim"
  6281. ],
  6282. "support": {
  6283. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6284. },
  6285. "funding": [
  6286. {
  6287. "url": "https://symfony.com/sponsor",
  6288. "type": "custom"
  6289. },
  6290. {
  6291. "url": "https://github.com/fabpot",
  6292. "type": "github"
  6293. },
  6294. {
  6295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6296. "type": "tidelift"
  6297. }
  6298. ],
  6299. "time": "2021-05-27T09:27:20+00:00"
  6300. },
  6301. {
  6302. "name": "symfony/polyfill-intl-normalizer",
  6303. "version": "v1.23.0",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6307. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6312. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6313. "shasum": "",
  6314. "mirrors": [
  6315. {
  6316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6317. "preferred": true
  6318. }
  6319. ]
  6320. },
  6321. "require": {
  6322. "php": ">=7.1"
  6323. },
  6324. "suggest": {
  6325. "ext-intl": "For best performance"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "branch-alias": {
  6330. "dev-main": "1.23-dev"
  6331. },
  6332. "thanks": {
  6333. "name": "symfony/polyfill",
  6334. "url": "https://github.com/symfony/polyfill"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "psr-4": {
  6339. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6340. },
  6341. "files": [
  6342. "bootstrap.php"
  6343. ],
  6344. "classmap": [
  6345. "Resources/stubs"
  6346. ]
  6347. },
  6348. "notification-url": "https://packagist.org/downloads/",
  6349. "license": [
  6350. "MIT"
  6351. ],
  6352. "authors": [
  6353. {
  6354. "name": "Nicolas Grekas",
  6355. "email": "p@tchwork.com"
  6356. },
  6357. {
  6358. "name": "Symfony Community",
  6359. "homepage": "https://symfony.com/contributors"
  6360. }
  6361. ],
  6362. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6363. "homepage": "https://symfony.com",
  6364. "keywords": [
  6365. "compatibility",
  6366. "intl",
  6367. "normalizer",
  6368. "polyfill",
  6369. "portable",
  6370. "shim"
  6371. ],
  6372. "support": {
  6373. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6374. },
  6375. "funding": [
  6376. {
  6377. "url": "https://symfony.com/sponsor",
  6378. "type": "custom"
  6379. },
  6380. {
  6381. "url": "https://github.com/fabpot",
  6382. "type": "github"
  6383. },
  6384. {
  6385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6386. "type": "tidelift"
  6387. }
  6388. ],
  6389. "time": "2021-02-19T12:13:01+00:00"
  6390. },
  6391. {
  6392. "name": "symfony/polyfill-mbstring",
  6393. "version": "v1.23.1",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6397. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6402. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6403. "shasum": "",
  6404. "mirrors": [
  6405. {
  6406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6407. "preferred": true
  6408. }
  6409. ]
  6410. },
  6411. "require": {
  6412. "php": ">=7.1"
  6413. },
  6414. "suggest": {
  6415. "ext-mbstring": "For best performance"
  6416. },
  6417. "type": "library",
  6418. "extra": {
  6419. "branch-alias": {
  6420. "dev-main": "1.23-dev"
  6421. },
  6422. "thanks": {
  6423. "name": "symfony/polyfill",
  6424. "url": "https://github.com/symfony/polyfill"
  6425. }
  6426. },
  6427. "autoload": {
  6428. "psr-4": {
  6429. "Symfony\\Polyfill\\Mbstring\\": ""
  6430. },
  6431. "files": [
  6432. "bootstrap.php"
  6433. ]
  6434. },
  6435. "notification-url": "https://packagist.org/downloads/",
  6436. "license": [
  6437. "MIT"
  6438. ],
  6439. "authors": [
  6440. {
  6441. "name": "Nicolas Grekas",
  6442. "email": "p@tchwork.com"
  6443. },
  6444. {
  6445. "name": "Symfony Community",
  6446. "homepage": "https://symfony.com/contributors"
  6447. }
  6448. ],
  6449. "description": "Symfony polyfill for the Mbstring extension",
  6450. "homepage": "https://symfony.com",
  6451. "keywords": [
  6452. "compatibility",
  6453. "mbstring",
  6454. "polyfill",
  6455. "portable",
  6456. "shim"
  6457. ],
  6458. "support": {
  6459. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6460. },
  6461. "funding": [
  6462. {
  6463. "url": "https://symfony.com/sponsor",
  6464. "type": "custom"
  6465. },
  6466. {
  6467. "url": "https://github.com/fabpot",
  6468. "type": "github"
  6469. },
  6470. {
  6471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6472. "type": "tidelift"
  6473. }
  6474. ],
  6475. "time": "2021-05-27T12:26:48+00:00"
  6476. },
  6477. {
  6478. "name": "symfony/polyfill-php72",
  6479. "version": "v1.23.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/symfony/polyfill-php72.git",
  6483. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6488. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6489. "shasum": "",
  6490. "mirrors": [
  6491. {
  6492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6493. "preferred": true
  6494. }
  6495. ]
  6496. },
  6497. "require": {
  6498. "php": ">=7.1"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "branch-alias": {
  6503. "dev-main": "1.23-dev"
  6504. },
  6505. "thanks": {
  6506. "name": "symfony/polyfill",
  6507. "url": "https://github.com/symfony/polyfill"
  6508. }
  6509. },
  6510. "autoload": {
  6511. "psr-4": {
  6512. "Symfony\\Polyfill\\Php72\\": ""
  6513. },
  6514. "files": [
  6515. "bootstrap.php"
  6516. ]
  6517. },
  6518. "notification-url": "https://packagist.org/downloads/",
  6519. "license": [
  6520. "MIT"
  6521. ],
  6522. "authors": [
  6523. {
  6524. "name": "Nicolas Grekas",
  6525. "email": "p@tchwork.com"
  6526. },
  6527. {
  6528. "name": "Symfony Community",
  6529. "homepage": "https://symfony.com/contributors"
  6530. }
  6531. ],
  6532. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6533. "homepage": "https://symfony.com",
  6534. "keywords": [
  6535. "compatibility",
  6536. "polyfill",
  6537. "portable",
  6538. "shim"
  6539. ],
  6540. "support": {
  6541. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6542. },
  6543. "funding": [
  6544. {
  6545. "url": "https://symfony.com/sponsor",
  6546. "type": "custom"
  6547. },
  6548. {
  6549. "url": "https://github.com/fabpot",
  6550. "type": "github"
  6551. },
  6552. {
  6553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6554. "type": "tidelift"
  6555. }
  6556. ],
  6557. "time": "2021-05-27T09:17:38+00:00"
  6558. },
  6559. {
  6560. "name": "symfony/polyfill-php73",
  6561. "version": "v1.23.0",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/symfony/polyfill-php73.git",
  6565. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6570. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6571. "shasum": "",
  6572. "mirrors": [
  6573. {
  6574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6575. "preferred": true
  6576. }
  6577. ]
  6578. },
  6579. "require": {
  6580. "php": ">=7.1"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-main": "1.23-dev"
  6586. },
  6587. "thanks": {
  6588. "name": "symfony/polyfill",
  6589. "url": "https://github.com/symfony/polyfill"
  6590. }
  6591. },
  6592. "autoload": {
  6593. "psr-4": {
  6594. "Symfony\\Polyfill\\Php73\\": ""
  6595. },
  6596. "files": [
  6597. "bootstrap.php"
  6598. ],
  6599. "classmap": [
  6600. "Resources/stubs"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Nicolas Grekas",
  6610. "email": "p@tchwork.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "compatibility",
  6621. "polyfill",
  6622. "portable",
  6623. "shim"
  6624. ],
  6625. "support": {
  6626. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6627. },
  6628. "funding": [
  6629. {
  6630. "url": "https://symfony.com/sponsor",
  6631. "type": "custom"
  6632. },
  6633. {
  6634. "url": "https://github.com/fabpot",
  6635. "type": "github"
  6636. },
  6637. {
  6638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6639. "type": "tidelift"
  6640. }
  6641. ],
  6642. "time": "2021-02-19T12:13:01+00:00"
  6643. },
  6644. {
  6645. "name": "symfony/polyfill-php80",
  6646. "version": "v1.23.1",
  6647. "source": {
  6648. "type": "git",
  6649. "url": "https://github.com/symfony/polyfill-php80.git",
  6650. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6651. },
  6652. "dist": {
  6653. "type": "zip",
  6654. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6655. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6656. "shasum": "",
  6657. "mirrors": [
  6658. {
  6659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6660. "preferred": true
  6661. }
  6662. ]
  6663. },
  6664. "require": {
  6665. "php": ">=7.1"
  6666. },
  6667. "type": "library",
  6668. "extra": {
  6669. "branch-alias": {
  6670. "dev-main": "1.23-dev"
  6671. },
  6672. "thanks": {
  6673. "name": "symfony/polyfill",
  6674. "url": "https://github.com/symfony/polyfill"
  6675. }
  6676. },
  6677. "autoload": {
  6678. "psr-4": {
  6679. "Symfony\\Polyfill\\Php80\\": ""
  6680. },
  6681. "files": [
  6682. "bootstrap.php"
  6683. ],
  6684. "classmap": [
  6685. "Resources/stubs"
  6686. ]
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Ion Bazan",
  6695. "email": "ion.bazan@gmail.com"
  6696. },
  6697. {
  6698. "name": "Nicolas Grekas",
  6699. "email": "p@tchwork.com"
  6700. },
  6701. {
  6702. "name": "Symfony Community",
  6703. "homepage": "https://symfony.com/contributors"
  6704. }
  6705. ],
  6706. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6707. "homepage": "https://symfony.com",
  6708. "keywords": [
  6709. "compatibility",
  6710. "polyfill",
  6711. "portable",
  6712. "shim"
  6713. ],
  6714. "support": {
  6715. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6716. },
  6717. "funding": [
  6718. {
  6719. "url": "https://symfony.com/sponsor",
  6720. "type": "custom"
  6721. },
  6722. {
  6723. "url": "https://github.com/fabpot",
  6724. "type": "github"
  6725. },
  6726. {
  6727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6728. "type": "tidelift"
  6729. }
  6730. ],
  6731. "time": "2021-07-28T13:41:28+00:00"
  6732. },
  6733. {
  6734. "name": "symfony/polyfill-php81",
  6735. "version": "v1.23.0",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://github.com/symfony/polyfill-php81.git",
  6739. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6740. },
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6744. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6745. "shasum": "",
  6746. "mirrors": [
  6747. {
  6748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6749. "preferred": true
  6750. }
  6751. ]
  6752. },
  6753. "require": {
  6754. "php": ">=7.1"
  6755. },
  6756. "type": "library",
  6757. "extra": {
  6758. "branch-alias": {
  6759. "dev-main": "1.23-dev"
  6760. },
  6761. "thanks": {
  6762. "name": "symfony/polyfill",
  6763. "url": "https://github.com/symfony/polyfill"
  6764. }
  6765. },
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Symfony\\Polyfill\\Php81\\": ""
  6769. },
  6770. "files": [
  6771. "bootstrap.php"
  6772. ],
  6773. "classmap": [
  6774. "Resources/stubs"
  6775. ]
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Nicolas Grekas",
  6784. "email": "p@tchwork.com"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6792. "homepage": "https://symfony.com",
  6793. "keywords": [
  6794. "compatibility",
  6795. "polyfill",
  6796. "portable",
  6797. "shim"
  6798. ],
  6799. "support": {
  6800. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6801. },
  6802. "funding": [
  6803. {
  6804. "url": "https://symfony.com/sponsor",
  6805. "type": "custom"
  6806. },
  6807. {
  6808. "url": "https://github.com/fabpot",
  6809. "type": "github"
  6810. },
  6811. {
  6812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6813. "type": "tidelift"
  6814. }
  6815. ],
  6816. "time": "2021-05-21T13:25:03+00:00"
  6817. },
  6818. {
  6819. "name": "symfony/process",
  6820. "version": "v5.3.7",
  6821. "source": {
  6822. "type": "git",
  6823. "url": "https://github.com/symfony/process.git",
  6824. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6825. },
  6826. "dist": {
  6827. "type": "zip",
  6828. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6829. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6830. "shasum": "",
  6831. "mirrors": [
  6832. {
  6833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6834. "preferred": true
  6835. }
  6836. ]
  6837. },
  6838. "require": {
  6839. "php": ">=7.2.5",
  6840. "symfony/polyfill-php80": "^1.16"
  6841. },
  6842. "type": "library",
  6843. "autoload": {
  6844. "psr-4": {
  6845. "Symfony\\Component\\Process\\": ""
  6846. },
  6847. "exclude-from-classmap": [
  6848. "/Tests/"
  6849. ]
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Fabien Potencier",
  6858. "email": "fabien@symfony.com"
  6859. },
  6860. {
  6861. "name": "Symfony Community",
  6862. "homepage": "https://symfony.com/contributors"
  6863. }
  6864. ],
  6865. "description": "Executes commands in sub-processes",
  6866. "homepage": "https://symfony.com",
  6867. "support": {
  6868. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6869. },
  6870. "funding": [
  6871. {
  6872. "url": "https://symfony.com/sponsor",
  6873. "type": "custom"
  6874. },
  6875. {
  6876. "url": "https://github.com/fabpot",
  6877. "type": "github"
  6878. },
  6879. {
  6880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6881. "type": "tidelift"
  6882. }
  6883. ],
  6884. "time": "2021-08-04T21:20:46+00:00"
  6885. },
  6886. {
  6887. "name": "symfony/property-access",
  6888. "version": "v5.3.8",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/symfony/property-access.git",
  6892. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/symfony/property-access/zipball/2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6897. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6898. "shasum": "",
  6899. "mirrors": [
  6900. {
  6901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6902. "preferred": true
  6903. }
  6904. ]
  6905. },
  6906. "require": {
  6907. "php": ">=7.2.5",
  6908. "symfony/deprecation-contracts": "^2.1",
  6909. "symfony/polyfill-php80": "^1.16",
  6910. "symfony/property-info": "^5.2"
  6911. },
  6912. "require-dev": {
  6913. "symfony/cache": "^4.4|^5.0"
  6914. },
  6915. "suggest": {
  6916. "psr/cache-implementation": "To cache access methods."
  6917. },
  6918. "type": "library",
  6919. "autoload": {
  6920. "psr-4": {
  6921. "Symfony\\Component\\PropertyAccess\\": ""
  6922. },
  6923. "exclude-from-classmap": [
  6924. "/Tests/"
  6925. ]
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Fabien Potencier",
  6934. "email": "fabien@symfony.com"
  6935. },
  6936. {
  6937. "name": "Symfony Community",
  6938. "homepage": "https://symfony.com/contributors"
  6939. }
  6940. ],
  6941. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6942. "homepage": "https://symfony.com",
  6943. "keywords": [
  6944. "access",
  6945. "array",
  6946. "extraction",
  6947. "index",
  6948. "injection",
  6949. "object",
  6950. "property",
  6951. "property path",
  6952. "reflection"
  6953. ],
  6954. "support": {
  6955. "source": "https://github.com/symfony/property-access/tree/v5.3.8"
  6956. },
  6957. "funding": [
  6958. {
  6959. "url": "https://symfony.com/sponsor",
  6960. "type": "custom"
  6961. },
  6962. {
  6963. "url": "https://github.com/fabpot",
  6964. "type": "github"
  6965. },
  6966. {
  6967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6968. "type": "tidelift"
  6969. }
  6970. ],
  6971. "time": "2021-09-10T11:55:24+00:00"
  6972. },
  6973. {
  6974. "name": "symfony/property-info",
  6975. "version": "v5.3.8",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/symfony/property-info.git",
  6979. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/symfony/property-info/zipball/39de5bed8c036f76ec0457ec52908e45d5497947",
  6984. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947",
  6985. "shasum": "",
  6986. "mirrors": [
  6987. {
  6988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6989. "preferred": true
  6990. }
  6991. ]
  6992. },
  6993. "require": {
  6994. "php": ">=7.2.5",
  6995. "symfony/deprecation-contracts": "^2.1",
  6996. "symfony/polyfill-php80": "^1.16",
  6997. "symfony/string": "^5.1"
  6998. },
  6999. "conflict": {
  7000. "phpdocumentor/reflection-docblock": "<3.2.2",
  7001. "phpdocumentor/type-resolver": "<1.4.0",
  7002. "symfony/dependency-injection": "<4.4"
  7003. },
  7004. "require-dev": {
  7005. "doctrine/annotations": "^1.10.4",
  7006. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7007. "symfony/cache": "^4.4|^5.0",
  7008. "symfony/dependency-injection": "^4.4|^5.0",
  7009. "symfony/serializer": "^4.4|^5.0"
  7010. },
  7011. "suggest": {
  7012. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  7013. "psr/cache-implementation": "To cache results",
  7014. "symfony/doctrine-bridge": "To use Doctrine metadata",
  7015. "symfony/serializer": "To use Serializer metadata"
  7016. },
  7017. "type": "library",
  7018. "autoload": {
  7019. "psr-4": {
  7020. "Symfony\\Component\\PropertyInfo\\": ""
  7021. },
  7022. "exclude-from-classmap": [
  7023. "/Tests/"
  7024. ]
  7025. },
  7026. "notification-url": "https://packagist.org/downloads/",
  7027. "license": [
  7028. "MIT"
  7029. ],
  7030. "authors": [
  7031. {
  7032. "name": "Kévin Dunglas",
  7033. "email": "dunglas@gmail.com"
  7034. },
  7035. {
  7036. "name": "Symfony Community",
  7037. "homepage": "https://symfony.com/contributors"
  7038. }
  7039. ],
  7040. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7041. "homepage": "https://symfony.com",
  7042. "keywords": [
  7043. "doctrine",
  7044. "phpdoc",
  7045. "property",
  7046. "symfony",
  7047. "type",
  7048. "validator"
  7049. ],
  7050. "support": {
  7051. "source": "https://github.com/symfony/property-info/tree/v5.3.8"
  7052. },
  7053. "funding": [
  7054. {
  7055. "url": "https://symfony.com/sponsor",
  7056. "type": "custom"
  7057. },
  7058. {
  7059. "url": "https://github.com/fabpot",
  7060. "type": "github"
  7061. },
  7062. {
  7063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7064. "type": "tidelift"
  7065. }
  7066. ],
  7067. "time": "2021-09-07T07:41:40+00:00"
  7068. },
  7069. {
  7070. "name": "symfony/routing",
  7071. "version": "v5.3.7",
  7072. "source": {
  7073. "type": "git",
  7074. "url": "https://github.com/symfony/routing.git",
  7075. "reference": "be865017746fe869007d94220ad3f5297951811b"
  7076. },
  7077. "dist": {
  7078. "type": "zip",
  7079. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  7080. "reference": "be865017746fe869007d94220ad3f5297951811b",
  7081. "shasum": "",
  7082. "mirrors": [
  7083. {
  7084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7085. "preferred": true
  7086. }
  7087. ]
  7088. },
  7089. "require": {
  7090. "php": ">=7.2.5",
  7091. "symfony/deprecation-contracts": "^2.1",
  7092. "symfony/polyfill-php80": "^1.16"
  7093. },
  7094. "conflict": {
  7095. "doctrine/annotations": "<1.12",
  7096. "symfony/config": "<5.3",
  7097. "symfony/dependency-injection": "<4.4",
  7098. "symfony/yaml": "<4.4"
  7099. },
  7100. "require-dev": {
  7101. "doctrine/annotations": "^1.12",
  7102. "psr/log": "^1|^2|^3",
  7103. "symfony/config": "^5.3",
  7104. "symfony/dependency-injection": "^4.4|^5.0",
  7105. "symfony/expression-language": "^4.4|^5.0",
  7106. "symfony/http-foundation": "^4.4|^5.0",
  7107. "symfony/yaml": "^4.4|^5.0"
  7108. },
  7109. "suggest": {
  7110. "symfony/config": "For using the all-in-one router or any loader",
  7111. "symfony/expression-language": "For using expression matching",
  7112. "symfony/http-foundation": "For using a Symfony Request object",
  7113. "symfony/yaml": "For using the YAML loader"
  7114. },
  7115. "type": "library",
  7116. "autoload": {
  7117. "psr-4": {
  7118. "Symfony\\Component\\Routing\\": ""
  7119. },
  7120. "exclude-from-classmap": [
  7121. "/Tests/"
  7122. ]
  7123. },
  7124. "notification-url": "https://packagist.org/downloads/",
  7125. "license": [
  7126. "MIT"
  7127. ],
  7128. "authors": [
  7129. {
  7130. "name": "Fabien Potencier",
  7131. "email": "fabien@symfony.com"
  7132. },
  7133. {
  7134. "name": "Symfony Community",
  7135. "homepage": "https://symfony.com/contributors"
  7136. }
  7137. ],
  7138. "description": "Maps an HTTP request to a set of configuration variables",
  7139. "homepage": "https://symfony.com",
  7140. "keywords": [
  7141. "router",
  7142. "routing",
  7143. "uri",
  7144. "url"
  7145. ],
  7146. "support": {
  7147. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7148. },
  7149. "funding": [
  7150. {
  7151. "url": "https://symfony.com/sponsor",
  7152. "type": "custom"
  7153. },
  7154. {
  7155. "url": "https://github.com/fabpot",
  7156. "type": "github"
  7157. },
  7158. {
  7159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7160. "type": "tidelift"
  7161. }
  7162. ],
  7163. "time": "2021-08-04T21:42:42+00:00"
  7164. },
  7165. {
  7166. "name": "symfony/service-contracts",
  7167. "version": "v2.4.0",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/symfony/service-contracts.git",
  7171. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7176. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7177. "shasum": "",
  7178. "mirrors": [
  7179. {
  7180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7181. "preferred": true
  7182. }
  7183. ]
  7184. },
  7185. "require": {
  7186. "php": ">=7.2.5",
  7187. "psr/container": "^1.1"
  7188. },
  7189. "suggest": {
  7190. "symfony/service-implementation": ""
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "branch-alias": {
  7195. "dev-main": "2.4-dev"
  7196. },
  7197. "thanks": {
  7198. "name": "symfony/contracts",
  7199. "url": "https://github.com/symfony/contracts"
  7200. }
  7201. },
  7202. "autoload": {
  7203. "psr-4": {
  7204. "Symfony\\Contracts\\Service\\": ""
  7205. }
  7206. },
  7207. "notification-url": "https://packagist.org/downloads/",
  7208. "license": [
  7209. "MIT"
  7210. ],
  7211. "authors": [
  7212. {
  7213. "name": "Nicolas Grekas",
  7214. "email": "p@tchwork.com"
  7215. },
  7216. {
  7217. "name": "Symfony Community",
  7218. "homepage": "https://symfony.com/contributors"
  7219. }
  7220. ],
  7221. "description": "Generic abstractions related to writing services",
  7222. "homepage": "https://symfony.com",
  7223. "keywords": [
  7224. "abstractions",
  7225. "contracts",
  7226. "decoupling",
  7227. "interfaces",
  7228. "interoperability",
  7229. "standards"
  7230. ],
  7231. "support": {
  7232. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7233. },
  7234. "funding": [
  7235. {
  7236. "url": "https://symfony.com/sponsor",
  7237. "type": "custom"
  7238. },
  7239. {
  7240. "url": "https://github.com/fabpot",
  7241. "type": "github"
  7242. },
  7243. {
  7244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7245. "type": "tidelift"
  7246. }
  7247. ],
  7248. "time": "2021-04-01T10:43:52+00:00"
  7249. },
  7250. {
  7251. "name": "symfony/string",
  7252. "version": "v5.3.7",
  7253. "source": {
  7254. "type": "git",
  7255. "url": "https://github.com/symfony/string.git",
  7256. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5"
  7257. },
  7258. "dist": {
  7259. "type": "zip",
  7260. "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7261. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7262. "shasum": "",
  7263. "mirrors": [
  7264. {
  7265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7266. "preferred": true
  7267. }
  7268. ]
  7269. },
  7270. "require": {
  7271. "php": ">=7.2.5",
  7272. "symfony/polyfill-ctype": "~1.8",
  7273. "symfony/polyfill-intl-grapheme": "~1.0",
  7274. "symfony/polyfill-intl-normalizer": "~1.0",
  7275. "symfony/polyfill-mbstring": "~1.0",
  7276. "symfony/polyfill-php80": "~1.15"
  7277. },
  7278. "require-dev": {
  7279. "symfony/error-handler": "^4.4|^5.0",
  7280. "symfony/http-client": "^4.4|^5.0",
  7281. "symfony/translation-contracts": "^1.1|^2",
  7282. "symfony/var-exporter": "^4.4|^5.0"
  7283. },
  7284. "type": "library",
  7285. "autoload": {
  7286. "psr-4": {
  7287. "Symfony\\Component\\String\\": ""
  7288. },
  7289. "files": [
  7290. "Resources/functions.php"
  7291. ],
  7292. "exclude-from-classmap": [
  7293. "/Tests/"
  7294. ]
  7295. },
  7296. "notification-url": "https://packagist.org/downloads/",
  7297. "license": [
  7298. "MIT"
  7299. ],
  7300. "authors": [
  7301. {
  7302. "name": "Nicolas Grekas",
  7303. "email": "p@tchwork.com"
  7304. },
  7305. {
  7306. "name": "Symfony Community",
  7307. "homepage": "https://symfony.com/contributors"
  7308. }
  7309. ],
  7310. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7311. "homepage": "https://symfony.com",
  7312. "keywords": [
  7313. "grapheme",
  7314. "i18n",
  7315. "string",
  7316. "unicode",
  7317. "utf-8",
  7318. "utf8"
  7319. ],
  7320. "support": {
  7321. "source": "https://github.com/symfony/string/tree/v5.3.7"
  7322. },
  7323. "funding": [
  7324. {
  7325. "url": "https://symfony.com/sponsor",
  7326. "type": "custom"
  7327. },
  7328. {
  7329. "url": "https://github.com/fabpot",
  7330. "type": "github"
  7331. },
  7332. {
  7333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7334. "type": "tidelift"
  7335. }
  7336. ],
  7337. "time": "2021-08-26T08:00:08+00:00"
  7338. },
  7339. {
  7340. "name": "symfony/translation",
  7341. "version": "v5.3.9",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/symfony/translation.git",
  7345. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/symfony/translation/zipball/6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7350. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7351. "shasum": "",
  7352. "mirrors": [
  7353. {
  7354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7355. "preferred": true
  7356. }
  7357. ]
  7358. },
  7359. "require": {
  7360. "php": ">=7.2.5",
  7361. "symfony/deprecation-contracts": "^2.1",
  7362. "symfony/polyfill-mbstring": "~1.0",
  7363. "symfony/polyfill-php80": "^1.16",
  7364. "symfony/translation-contracts": "^2.3"
  7365. },
  7366. "conflict": {
  7367. "symfony/config": "<4.4",
  7368. "symfony/dependency-injection": "<5.0",
  7369. "symfony/http-kernel": "<5.0",
  7370. "symfony/twig-bundle": "<5.0",
  7371. "symfony/yaml": "<4.4"
  7372. },
  7373. "provide": {
  7374. "symfony/translation-implementation": "2.3"
  7375. },
  7376. "require-dev": {
  7377. "psr/log": "^1|^2|^3",
  7378. "symfony/config": "^4.4|^5.0",
  7379. "symfony/console": "^4.4|^5.0",
  7380. "symfony/dependency-injection": "^5.0",
  7381. "symfony/finder": "^4.4|^5.0",
  7382. "symfony/http-kernel": "^5.0",
  7383. "symfony/intl": "^4.4|^5.0",
  7384. "symfony/polyfill-intl-icu": "^1.21",
  7385. "symfony/service-contracts": "^1.1.2|^2",
  7386. "symfony/yaml": "^4.4|^5.0"
  7387. },
  7388. "suggest": {
  7389. "psr/log-implementation": "To use logging capability in translator",
  7390. "symfony/config": "",
  7391. "symfony/yaml": ""
  7392. },
  7393. "type": "library",
  7394. "autoload": {
  7395. "files": [
  7396. "Resources/functions.php"
  7397. ],
  7398. "psr-4": {
  7399. "Symfony\\Component\\Translation\\": ""
  7400. },
  7401. "exclude-from-classmap": [
  7402. "/Tests/"
  7403. ]
  7404. },
  7405. "notification-url": "https://packagist.org/downloads/",
  7406. "license": [
  7407. "MIT"
  7408. ],
  7409. "authors": [
  7410. {
  7411. "name": "Fabien Potencier",
  7412. "email": "fabien@symfony.com"
  7413. },
  7414. {
  7415. "name": "Symfony Community",
  7416. "homepage": "https://symfony.com/contributors"
  7417. }
  7418. ],
  7419. "description": "Provides tools to internationalize your application",
  7420. "homepage": "https://symfony.com",
  7421. "support": {
  7422. "source": "https://github.com/symfony/translation/tree/v5.3.9"
  7423. },
  7424. "funding": [
  7425. {
  7426. "url": "https://symfony.com/sponsor",
  7427. "type": "custom"
  7428. },
  7429. {
  7430. "url": "https://github.com/fabpot",
  7431. "type": "github"
  7432. },
  7433. {
  7434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7435. "type": "tidelift"
  7436. }
  7437. ],
  7438. "time": "2021-08-26T08:22:53+00:00"
  7439. },
  7440. {
  7441. "name": "symfony/translation-contracts",
  7442. "version": "v2.4.0",
  7443. "source": {
  7444. "type": "git",
  7445. "url": "https://github.com/symfony/translation-contracts.git",
  7446. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7447. },
  7448. "dist": {
  7449. "type": "zip",
  7450. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7451. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7452. "shasum": "",
  7453. "mirrors": [
  7454. {
  7455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7456. "preferred": true
  7457. }
  7458. ]
  7459. },
  7460. "require": {
  7461. "php": ">=7.2.5"
  7462. },
  7463. "suggest": {
  7464. "symfony/translation-implementation": ""
  7465. },
  7466. "type": "library",
  7467. "extra": {
  7468. "branch-alias": {
  7469. "dev-main": "2.4-dev"
  7470. },
  7471. "thanks": {
  7472. "name": "symfony/contracts",
  7473. "url": "https://github.com/symfony/contracts"
  7474. }
  7475. },
  7476. "autoload": {
  7477. "psr-4": {
  7478. "Symfony\\Contracts\\Translation\\": ""
  7479. }
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Nicolas Grekas",
  7488. "email": "p@tchwork.com"
  7489. },
  7490. {
  7491. "name": "Symfony Community",
  7492. "homepage": "https://symfony.com/contributors"
  7493. }
  7494. ],
  7495. "description": "Generic abstractions related to translation",
  7496. "homepage": "https://symfony.com",
  7497. "keywords": [
  7498. "abstractions",
  7499. "contracts",
  7500. "decoupling",
  7501. "interfaces",
  7502. "interoperability",
  7503. "standards"
  7504. ],
  7505. "support": {
  7506. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7507. },
  7508. "funding": [
  7509. {
  7510. "url": "https://symfony.com/sponsor",
  7511. "type": "custom"
  7512. },
  7513. {
  7514. "url": "https://github.com/fabpot",
  7515. "type": "github"
  7516. },
  7517. {
  7518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7519. "type": "tidelift"
  7520. }
  7521. ],
  7522. "time": "2021-03-23T23:28:01+00:00"
  7523. },
  7524. {
  7525. "name": "symfony/var-dumper",
  7526. "version": "v5.3.8",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/symfony/var-dumper.git",
  7530. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7535. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7536. "shasum": "",
  7537. "mirrors": [
  7538. {
  7539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7540. "preferred": true
  7541. }
  7542. ]
  7543. },
  7544. "require": {
  7545. "php": ">=7.2.5",
  7546. "symfony/polyfill-mbstring": "~1.0",
  7547. "symfony/polyfill-php80": "^1.16"
  7548. },
  7549. "conflict": {
  7550. "phpunit/phpunit": "<5.4.3",
  7551. "symfony/console": "<4.4"
  7552. },
  7553. "require-dev": {
  7554. "ext-iconv": "*",
  7555. "symfony/console": "^4.4|^5.0",
  7556. "symfony/process": "^4.4|^5.0",
  7557. "twig/twig": "^2.13|^3.0.4"
  7558. },
  7559. "suggest": {
  7560. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7561. "ext-intl": "To show region name in time zone dump",
  7562. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7563. },
  7564. "bin": [
  7565. "Resources/bin/var-dump-server"
  7566. ],
  7567. "type": "library",
  7568. "autoload": {
  7569. "files": [
  7570. "Resources/functions/dump.php"
  7571. ],
  7572. "psr-4": {
  7573. "Symfony\\Component\\VarDumper\\": ""
  7574. },
  7575. "exclude-from-classmap": [
  7576. "/Tests/"
  7577. ]
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "MIT"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Nicolas Grekas",
  7586. "email": "p@tchwork.com"
  7587. },
  7588. {
  7589. "name": "Symfony Community",
  7590. "homepage": "https://symfony.com/contributors"
  7591. }
  7592. ],
  7593. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7594. "homepage": "https://symfony.com",
  7595. "keywords": [
  7596. "debug",
  7597. "dump"
  7598. ],
  7599. "support": {
  7600. "source": "https://github.com/symfony/var-dumper/tree/v5.3.8"
  7601. },
  7602. "funding": [
  7603. {
  7604. "url": "https://symfony.com/sponsor",
  7605. "type": "custom"
  7606. },
  7607. {
  7608. "url": "https://github.com/fabpot",
  7609. "type": "github"
  7610. },
  7611. {
  7612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7613. "type": "tidelift"
  7614. }
  7615. ],
  7616. "time": "2021-09-24T15:59:58+00:00"
  7617. },
  7618. {
  7619. "name": "te7a-houdini/laravel-trix",
  7620. "version": "2.0.5",
  7621. "source": {
  7622. "type": "git",
  7623. "url": "https://github.com/amaelftah/laravel-trix.git",
  7624. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8"
  7625. },
  7626. "dist": {
  7627. "type": "zip",
  7628. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/517404ca45115ac393cdad14786e9c599f3efcf8",
  7629. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8",
  7630. "shasum": "",
  7631. "mirrors": [
  7632. {
  7633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7634. "preferred": true
  7635. }
  7636. ]
  7637. },
  7638. "require": {
  7639. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7640. "php": "^7.1|^8.0"
  7641. },
  7642. "require-dev": {
  7643. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "laravel": {
  7648. "providers": [
  7649. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7650. ]
  7651. }
  7652. },
  7653. "autoload": {
  7654. "psr-4": {
  7655. "Te7aHoudini\\LaravelTrix\\": "src"
  7656. }
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "MIT"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Ahmed Abd El Ftah",
  7665. "email": "ahmedabdelftah95165@gmail.com",
  7666. "role": "Developer"
  7667. }
  7668. ],
  7669. "description": "trix editor for laravel inspired by ActionText for rails",
  7670. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7671. "keywords": [
  7672. "laravel-trix",
  7673. "te7a-houdini"
  7674. ],
  7675. "support": {
  7676. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7677. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.5"
  7678. },
  7679. "time": "2021-01-21T01:21:17+00:00"
  7680. },
  7681. {
  7682. "name": "tightenco/collect",
  7683. "version": "v5.6.33",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/tighten/collect.git",
  7687. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7692. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7693. "shasum": "",
  7694. "mirrors": [
  7695. {
  7696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7697. "preferred": true
  7698. }
  7699. ]
  7700. },
  7701. "require": {
  7702. "php": ">=7.1.3",
  7703. "symfony/var-dumper": ">=3.1.10"
  7704. },
  7705. "require-dev": {
  7706. "mockery/mockery": "~1.0",
  7707. "nesbot/carbon": "~1.20",
  7708. "phpunit/phpunit": "~7.0"
  7709. },
  7710. "type": "library",
  7711. "autoload": {
  7712. "files": [
  7713. "src/Collect/Support/helpers.php",
  7714. "src/Collect/Support/alias.php"
  7715. ],
  7716. "psr-4": {
  7717. "Tightenco\\Collect\\": "src/Collect"
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Taylor Otwell",
  7727. "email": "taylorotwell@gmail.com"
  7728. }
  7729. ],
  7730. "description": "Collect - Illuminate Collections as a separate package.",
  7731. "keywords": [
  7732. "collection",
  7733. "laravel"
  7734. ],
  7735. "support": {
  7736. "issues": "https://github.com/tighten/collect/issues",
  7737. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7738. },
  7739. "time": "2018-08-09T16:56:26+00:00"
  7740. },
  7741. {
  7742. "name": "tijsverkoyen/css-to-inline-styles",
  7743. "version": "2.2.3",
  7744. "source": {
  7745. "type": "git",
  7746. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7747. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7748. },
  7749. "dist": {
  7750. "type": "zip",
  7751. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7752. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7753. "shasum": "",
  7754. "mirrors": [
  7755. {
  7756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7757. "preferred": true
  7758. }
  7759. ]
  7760. },
  7761. "require": {
  7762. "ext-dom": "*",
  7763. "ext-libxml": "*",
  7764. "php": "^5.5 || ^7.0 || ^8.0",
  7765. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7766. },
  7767. "require-dev": {
  7768. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7769. },
  7770. "type": "library",
  7771. "extra": {
  7772. "branch-alias": {
  7773. "dev-master": "2.2.x-dev"
  7774. }
  7775. },
  7776. "autoload": {
  7777. "psr-4": {
  7778. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7779. }
  7780. },
  7781. "notification-url": "https://packagist.org/downloads/",
  7782. "license": [
  7783. "BSD-3-Clause"
  7784. ],
  7785. "authors": [
  7786. {
  7787. "name": "Tijs Verkoyen",
  7788. "email": "css_to_inline_styles@verkoyen.eu",
  7789. "role": "Developer"
  7790. }
  7791. ],
  7792. "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.",
  7793. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7794. "support": {
  7795. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7796. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7797. },
  7798. "time": "2020-07-13T06:12:54+00:00"
  7799. },
  7800. {
  7801. "name": "vlucas/phpdotenv",
  7802. "version": "v4.2.1",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/vlucas/phpdotenv.git",
  7806. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7811. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7812. "shasum": "",
  7813. "mirrors": [
  7814. {
  7815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7816. "preferred": true
  7817. }
  7818. ]
  7819. },
  7820. "require": {
  7821. "php": "^5.5.9 || ^7.0 || ^8.0",
  7822. "phpoption/phpoption": "^1.7.3",
  7823. "symfony/polyfill-ctype": "^1.17"
  7824. },
  7825. "require-dev": {
  7826. "bamarni/composer-bin-plugin": "^1.4.1",
  7827. "ext-filter": "*",
  7828. "ext-pcre": "*",
  7829. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  7830. },
  7831. "suggest": {
  7832. "ext-filter": "Required to use the boolean validator.",
  7833. "ext-pcre": "Required to use most of the library."
  7834. },
  7835. "type": "library",
  7836. "extra": {
  7837. "branch-alias": {
  7838. "dev-master": "4.2-dev"
  7839. }
  7840. },
  7841. "autoload": {
  7842. "psr-4": {
  7843. "Dotenv\\": "src/"
  7844. }
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "BSD-3-Clause"
  7849. ],
  7850. "authors": [
  7851. {
  7852. "name": "Graham Campbell",
  7853. "email": "hello@gjcampbell.co.uk"
  7854. },
  7855. {
  7856. "name": "Vance Lucas",
  7857. "email": "vance@vancelucas.com"
  7858. }
  7859. ],
  7860. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7861. "keywords": [
  7862. "dotenv",
  7863. "env",
  7864. "environment"
  7865. ],
  7866. "support": {
  7867. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7868. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.1"
  7869. },
  7870. "funding": [
  7871. {
  7872. "url": "https://github.com/GrahamCampbell",
  7873. "type": "github"
  7874. },
  7875. {
  7876. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7877. "type": "tidelift"
  7878. }
  7879. ],
  7880. "time": "2021-10-02T19:17:08+00:00"
  7881. },
  7882. {
  7883. "name": "voku/portable-ascii",
  7884. "version": "1.5.6",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/voku/portable-ascii.git",
  7888. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7893. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7894. "shasum": "",
  7895. "mirrors": [
  7896. {
  7897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7898. "preferred": true
  7899. }
  7900. ]
  7901. },
  7902. "require": {
  7903. "php": ">=7.0.0"
  7904. },
  7905. "require-dev": {
  7906. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7907. },
  7908. "suggest": {
  7909. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7910. },
  7911. "type": "library",
  7912. "autoload": {
  7913. "psr-4": {
  7914. "voku\\": "src/voku/"
  7915. }
  7916. },
  7917. "notification-url": "https://packagist.org/downloads/",
  7918. "license": [
  7919. "MIT"
  7920. ],
  7921. "authors": [
  7922. {
  7923. "name": "Lars Moelleken",
  7924. "homepage": "http://www.moelleken.org/"
  7925. }
  7926. ],
  7927. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7928. "homepage": "https://github.com/voku/portable-ascii",
  7929. "keywords": [
  7930. "ascii",
  7931. "clean",
  7932. "php"
  7933. ],
  7934. "support": {
  7935. "issues": "https://github.com/voku/portable-ascii/issues",
  7936. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7937. },
  7938. "funding": [
  7939. {
  7940. "url": "https://www.paypal.me/moelleken",
  7941. "type": "custom"
  7942. },
  7943. {
  7944. "url": "https://github.com/voku",
  7945. "type": "github"
  7946. },
  7947. {
  7948. "url": "https://opencollective.com/portable-ascii",
  7949. "type": "open_collective"
  7950. },
  7951. {
  7952. "url": "https://www.patreon.com/voku",
  7953. "type": "patreon"
  7954. },
  7955. {
  7956. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7957. "type": "tidelift"
  7958. }
  7959. ],
  7960. "time": "2020-11-12T00:07:28+00:00"
  7961. },
  7962. {
  7963. "name": "yajra/laravel-oci8",
  7964. "version": "v7.0.0",
  7965. "source": {
  7966. "type": "git",
  7967. "url": "https://github.com/yajra/laravel-oci8.git",
  7968. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7969. },
  7970. "dist": {
  7971. "type": "zip",
  7972. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7973. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7974. "shasum": "",
  7975. "mirrors": [
  7976. {
  7977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7978. "preferred": true
  7979. }
  7980. ]
  7981. },
  7982. "require": {
  7983. "ext-oci8": ">=2.0.0",
  7984. "ext-pdo": "*",
  7985. "illuminate/database": "^7",
  7986. "illuminate/support": "^7",
  7987. "php": "^7.2.5",
  7988. "yajra/laravel-pdo-via-oci8": "^2"
  7989. },
  7990. "require-dev": {
  7991. "mockery/mockery": "^1.3.1",
  7992. "phpunit/phpunit": "^8.4|^9.0",
  7993. "scrutinizer/ocular": "~1.1"
  7994. },
  7995. "type": "library",
  7996. "extra": {
  7997. "branch-alias": {
  7998. "dev-master": "7.x-dev"
  7999. },
  8000. "laravel": {
  8001. "providers": [
  8002. "Yajra\\Oci8\\Oci8ServiceProvider"
  8003. ]
  8004. }
  8005. },
  8006. "autoload": {
  8007. "files": [
  8008. "src/helper.php"
  8009. ],
  8010. "psr-4": {
  8011. "Yajra\\": "src/"
  8012. }
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "MIT"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Arjay Angeles",
  8021. "email": "aqangeles@gmail.com"
  8022. }
  8023. ],
  8024. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  8025. "keywords": [
  8026. "laravel",
  8027. "oci8",
  8028. "oracle",
  8029. "pdo_oci"
  8030. ],
  8031. "support": {
  8032. "issues": "https://github.com/yajra/laravel-oci8/issues",
  8033. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  8034. },
  8035. "funding": [
  8036. {
  8037. "url": "https://www.paypal.me/yajra",
  8038. "type": "custom"
  8039. },
  8040. {
  8041. "url": "https://www.patreon.com/yajra",
  8042. "type": "patreon"
  8043. }
  8044. ],
  8045. "time": "2020-03-04T02:15:19+00:00"
  8046. },
  8047. {
  8048. "name": "yajra/laravel-pdo-via-oci8",
  8049. "version": "v2.2.0",
  8050. "source": {
  8051. "type": "git",
  8052. "url": "https://github.com/yajra/pdo-via-oci8.git",
  8053. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  8054. },
  8055. "dist": {
  8056. "type": "zip",
  8057. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  8058. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  8059. "shasum": "",
  8060. "mirrors": [
  8061. {
  8062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8063. "preferred": true
  8064. }
  8065. ]
  8066. },
  8067. "require-dev": {
  8068. "phpunit/phpunit": "^6.4"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-master": "2.0-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "psr-4": {
  8078. "Yajra\\": "src/"
  8079. }
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "MIT"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Arjay Angeles",
  8088. "email": "aqangeles@gmail.com"
  8089. }
  8090. ],
  8091. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  8092. "support": {
  8093. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  8094. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  8095. },
  8096. "time": "2020-12-11T12:29:18+00:00"
  8097. }
  8098. ],
  8099. "packages-dev": [
  8100. {
  8101. "name": "barryvdh/laravel-debugbar",
  8102. "version": "v3.6.4",
  8103. "source": {
  8104. "type": "git",
  8105. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8106. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1"
  8107. },
  8108. "dist": {
  8109. "type": "zip",
  8110. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8111. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8112. "shasum": "",
  8113. "mirrors": [
  8114. {
  8115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8116. "preferred": true
  8117. }
  8118. ]
  8119. },
  8120. "require": {
  8121. "illuminate/routing": "^6|^7|^8",
  8122. "illuminate/session": "^6|^7|^8",
  8123. "illuminate/support": "^6|^7|^8",
  8124. "maximebf/debugbar": "^1.17.2",
  8125. "php": ">=7.2",
  8126. "symfony/debug": "^4.3|^5",
  8127. "symfony/finder": "^4.3|^5"
  8128. },
  8129. "require-dev": {
  8130. "mockery/mockery": "^1.3.3",
  8131. "orchestra/testbench-dusk": "^4|^5|^6",
  8132. "phpunit/phpunit": "^8.5|^9.0",
  8133. "squizlabs/php_codesniffer": "^3.5"
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-master": "3.6-dev"
  8139. },
  8140. "laravel": {
  8141. "providers": [
  8142. "Barryvdh\\Debugbar\\ServiceProvider"
  8143. ],
  8144. "aliases": {
  8145. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8146. }
  8147. }
  8148. },
  8149. "autoload": {
  8150. "psr-4": {
  8151. "Barryvdh\\Debugbar\\": "src/"
  8152. },
  8153. "files": [
  8154. "src/helpers.php"
  8155. ]
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "MIT"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Barry vd. Heuvel",
  8164. "email": "barryvdh@gmail.com"
  8165. }
  8166. ],
  8167. "description": "PHP Debugbar integration for Laravel",
  8168. "keywords": [
  8169. "debug",
  8170. "debugbar",
  8171. "laravel",
  8172. "profiler",
  8173. "webprofiler"
  8174. ],
  8175. "support": {
  8176. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8177. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.4"
  8178. },
  8179. "funding": [
  8180. {
  8181. "url": "https://fruitcake.nl",
  8182. "type": "custom"
  8183. },
  8184. {
  8185. "url": "https://github.com/barryvdh",
  8186. "type": "github"
  8187. }
  8188. ],
  8189. "time": "2021-10-21T10:57:31+00:00"
  8190. },
  8191. {
  8192. "name": "doctrine/instantiator",
  8193. "version": "1.4.0",
  8194. "source": {
  8195. "type": "git",
  8196. "url": "https://github.com/doctrine/instantiator.git",
  8197. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8198. },
  8199. "dist": {
  8200. "type": "zip",
  8201. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8202. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8203. "shasum": "",
  8204. "mirrors": [
  8205. {
  8206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8207. "preferred": true
  8208. }
  8209. ]
  8210. },
  8211. "require": {
  8212. "php": "^7.1 || ^8.0"
  8213. },
  8214. "require-dev": {
  8215. "doctrine/coding-standard": "^8.0",
  8216. "ext-pdo": "*",
  8217. "ext-phar": "*",
  8218. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8219. "phpstan/phpstan": "^0.12",
  8220. "phpstan/phpstan-phpunit": "^0.12",
  8221. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8222. },
  8223. "type": "library",
  8224. "autoload": {
  8225. "psr-4": {
  8226. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8227. }
  8228. },
  8229. "notification-url": "https://packagist.org/downloads/",
  8230. "license": [
  8231. "MIT"
  8232. ],
  8233. "authors": [
  8234. {
  8235. "name": "Marco Pivetta",
  8236. "email": "ocramius@gmail.com",
  8237. "homepage": "https://ocramius.github.io/"
  8238. }
  8239. ],
  8240. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8241. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8242. "keywords": [
  8243. "constructor",
  8244. "instantiate"
  8245. ],
  8246. "support": {
  8247. "issues": "https://github.com/doctrine/instantiator/issues",
  8248. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8249. },
  8250. "funding": [
  8251. {
  8252. "url": "https://www.doctrine-project.org/sponsorship.html",
  8253. "type": "custom"
  8254. },
  8255. {
  8256. "url": "https://www.patreon.com/phpdoctrine",
  8257. "type": "patreon"
  8258. },
  8259. {
  8260. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8261. "type": "tidelift"
  8262. }
  8263. ],
  8264. "time": "2020-11-10T18:47:58+00:00"
  8265. },
  8266. {
  8267. "name": "filp/whoops",
  8268. "version": "2.14.4",
  8269. "source": {
  8270. "type": "git",
  8271. "url": "https://github.com/filp/whoops.git",
  8272. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  8273. },
  8274. "dist": {
  8275. "type": "zip",
  8276. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  8277. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  8278. "shasum": "",
  8279. "mirrors": [
  8280. {
  8281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8282. "preferred": true
  8283. }
  8284. ]
  8285. },
  8286. "require": {
  8287. "php": "^5.5.9 || ^7.0 || ^8.0",
  8288. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8289. },
  8290. "require-dev": {
  8291. "mockery/mockery": "^0.9 || ^1.0",
  8292. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8293. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8294. },
  8295. "suggest": {
  8296. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8297. "whoops/soap": "Formats errors as SOAP responses"
  8298. },
  8299. "type": "library",
  8300. "extra": {
  8301. "branch-alias": {
  8302. "dev-master": "2.7-dev"
  8303. }
  8304. },
  8305. "autoload": {
  8306. "psr-4": {
  8307. "Whoops\\": "src/Whoops/"
  8308. }
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "MIT"
  8313. ],
  8314. "authors": [
  8315. {
  8316. "name": "Filipe Dobreira",
  8317. "homepage": "https://github.com/filp",
  8318. "role": "Developer"
  8319. }
  8320. ],
  8321. "description": "php error handling for cool kids",
  8322. "homepage": "https://filp.github.io/whoops/",
  8323. "keywords": [
  8324. "error",
  8325. "exception",
  8326. "handling",
  8327. "library",
  8328. "throwable",
  8329. "whoops"
  8330. ],
  8331. "support": {
  8332. "issues": "https://github.com/filp/whoops/issues",
  8333. "source": "https://github.com/filp/whoops/tree/2.14.4"
  8334. },
  8335. "funding": [
  8336. {
  8337. "url": "https://github.com/denis-sokolov",
  8338. "type": "github"
  8339. }
  8340. ],
  8341. "time": "2021-10-03T12:00:00+00:00"
  8342. },
  8343. {
  8344. "name": "fzaninotto/faker",
  8345. "version": "v1.9.2",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/fzaninotto/Faker.git",
  8349. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8354. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8355. "shasum": "",
  8356. "mirrors": [
  8357. {
  8358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8359. "preferred": true
  8360. }
  8361. ]
  8362. },
  8363. "require": {
  8364. "php": "^5.3.3 || ^7.0"
  8365. },
  8366. "require-dev": {
  8367. "ext-intl": "*",
  8368. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8369. "squizlabs/php_codesniffer": "^2.9.2"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-master": "1.9-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Faker\\": "src/Faker/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "François Zaninotto"
  8389. }
  8390. ],
  8391. "description": "Faker is a PHP library that generates fake data for you.",
  8392. "keywords": [
  8393. "data",
  8394. "faker",
  8395. "fixtures"
  8396. ],
  8397. "support": {
  8398. "issues": "https://github.com/fzaninotto/Faker/issues",
  8399. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8400. },
  8401. "abandoned": true,
  8402. "time": "2020-12-11T09:56:16+00:00"
  8403. },
  8404. {
  8405. "name": "hamcrest/hamcrest-php",
  8406. "version": "v2.0.1",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8410. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8415. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8416. "shasum": "",
  8417. "mirrors": [
  8418. {
  8419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8420. "preferred": true
  8421. }
  8422. ]
  8423. },
  8424. "require": {
  8425. "php": "^5.3|^7.0|^8.0"
  8426. },
  8427. "replace": {
  8428. "cordoval/hamcrest-php": "*",
  8429. "davedevelopment/hamcrest-php": "*",
  8430. "kodova/hamcrest-php": "*"
  8431. },
  8432. "require-dev": {
  8433. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8434. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8435. },
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-master": "2.1-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "classmap": [
  8444. "hamcrest"
  8445. ]
  8446. },
  8447. "notification-url": "https://packagist.org/downloads/",
  8448. "license": [
  8449. "BSD-3-Clause"
  8450. ],
  8451. "description": "This is the PHP port of Hamcrest Matchers",
  8452. "keywords": [
  8453. "test"
  8454. ],
  8455. "support": {
  8456. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8457. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8458. },
  8459. "time": "2020-07-09T08:09:16+00:00"
  8460. },
  8461. {
  8462. "name": "maximebf/debugbar",
  8463. "version": "v1.17.2",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/maximebf/php-debugbar.git",
  8467. "reference": "3541f09f09c003c4a9ff7ddb0eb3361a7f14d418"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/3541f09f09c003c4a9ff7ddb0eb3361a7f14d418",
  8472. "reference": "3541f09f09c003c4a9ff7ddb0eb3361a7f14d418",
  8473. "shasum": "",
  8474. "mirrors": [
  8475. {
  8476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8477. "preferred": true
  8478. }
  8479. ]
  8480. },
  8481. "require": {
  8482. "php": "^7.1|^8",
  8483. "psr/log": "^1|^2|^3",
  8484. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8485. },
  8486. "require-dev": {
  8487. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8488. },
  8489. "suggest": {
  8490. "kriswallsmith/assetic": "The best way to manage assets",
  8491. "monolog/monolog": "Log using Monolog",
  8492. "predis/predis": "Redis storage"
  8493. },
  8494. "type": "library",
  8495. "extra": {
  8496. "branch-alias": {
  8497. "dev-master": "1.17-dev"
  8498. }
  8499. },
  8500. "autoload": {
  8501. "psr-4": {
  8502. "DebugBar\\": "src/DebugBar/"
  8503. }
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "MIT"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Maxime Bouroumeau-Fuseau",
  8512. "email": "maxime.bouroumeau@gmail.com",
  8513. "homepage": "http://maximebf.com"
  8514. },
  8515. {
  8516. "name": "Barry vd. Heuvel",
  8517. "email": "barryvdh@gmail.com"
  8518. }
  8519. ],
  8520. "description": "Debug bar in the browser for php application",
  8521. "homepage": "https://github.com/maximebf/php-debugbar",
  8522. "keywords": [
  8523. "debug",
  8524. "debugbar"
  8525. ],
  8526. "support": {
  8527. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8528. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.2"
  8529. },
  8530. "time": "2021-10-18T09:39:00+00:00"
  8531. },
  8532. {
  8533. "name": "mockery/mockery",
  8534. "version": "1.4.4",
  8535. "source": {
  8536. "type": "git",
  8537. "url": "https://github.com/mockery/mockery.git",
  8538. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  8539. },
  8540. "dist": {
  8541. "type": "zip",
  8542. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8543. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8544. "shasum": "",
  8545. "mirrors": [
  8546. {
  8547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8548. "preferred": true
  8549. }
  8550. ]
  8551. },
  8552. "require": {
  8553. "hamcrest/hamcrest-php": "^2.0.1",
  8554. "lib-pcre": ">=7.0",
  8555. "php": "^7.3 || ^8.0"
  8556. },
  8557. "conflict": {
  8558. "phpunit/phpunit": "<8.0"
  8559. },
  8560. "require-dev": {
  8561. "phpunit/phpunit": "^8.5 || ^9.3"
  8562. },
  8563. "type": "library",
  8564. "extra": {
  8565. "branch-alias": {
  8566. "dev-master": "1.4.x-dev"
  8567. }
  8568. },
  8569. "autoload": {
  8570. "psr-0": {
  8571. "Mockery": "library/"
  8572. }
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "BSD-3-Clause"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Pádraic Brady",
  8581. "email": "padraic.brady@gmail.com",
  8582. "homepage": "http://blog.astrumfutura.com"
  8583. },
  8584. {
  8585. "name": "Dave Marshall",
  8586. "email": "dave.marshall@atstsolutions.co.uk",
  8587. "homepage": "http://davedevelopment.co.uk"
  8588. }
  8589. ],
  8590. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8591. "homepage": "https://github.com/mockery/mockery",
  8592. "keywords": [
  8593. "BDD",
  8594. "TDD",
  8595. "library",
  8596. "mock",
  8597. "mock objects",
  8598. "mockery",
  8599. "stub",
  8600. "test",
  8601. "test double",
  8602. "testing"
  8603. ],
  8604. "support": {
  8605. "issues": "https://github.com/mockery/mockery/issues",
  8606. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  8607. },
  8608. "time": "2021-09-13T15:28:59+00:00"
  8609. },
  8610. {
  8611. "name": "myclabs/deep-copy",
  8612. "version": "1.10.2",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/myclabs/DeepCopy.git",
  8616. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8621. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8622. "shasum": "",
  8623. "mirrors": [
  8624. {
  8625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8626. "preferred": true
  8627. }
  8628. ]
  8629. },
  8630. "require": {
  8631. "php": "^7.1 || ^8.0"
  8632. },
  8633. "replace": {
  8634. "myclabs/deep-copy": "self.version"
  8635. },
  8636. "require-dev": {
  8637. "doctrine/collections": "^1.0",
  8638. "doctrine/common": "^2.6",
  8639. "phpunit/phpunit": "^7.1"
  8640. },
  8641. "type": "library",
  8642. "autoload": {
  8643. "psr-4": {
  8644. "DeepCopy\\": "src/DeepCopy/"
  8645. },
  8646. "files": [
  8647. "src/DeepCopy/deep_copy.php"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "MIT"
  8653. ],
  8654. "description": "Create deep copies (clones) of your objects",
  8655. "keywords": [
  8656. "clone",
  8657. "copy",
  8658. "duplicate",
  8659. "object",
  8660. "object graph"
  8661. ],
  8662. "support": {
  8663. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8664. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8665. },
  8666. "funding": [
  8667. {
  8668. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8669. "type": "tidelift"
  8670. }
  8671. ],
  8672. "time": "2020-11-13T09:40:50+00:00"
  8673. },
  8674. {
  8675. "name": "nunomaduro/collision",
  8676. "version": "v4.3.0",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/nunomaduro/collision.git",
  8680. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8685. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8686. "shasum": "",
  8687. "mirrors": [
  8688. {
  8689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8690. "preferred": true
  8691. }
  8692. ]
  8693. },
  8694. "require": {
  8695. "facade/ignition-contracts": "^1.0",
  8696. "filp/whoops": "^2.4",
  8697. "php": "^7.2.5 || ^8.0",
  8698. "symfony/console": "^5.0"
  8699. },
  8700. "require-dev": {
  8701. "facade/ignition": "^2.0",
  8702. "fideloper/proxy": "^4.2",
  8703. "friendsofphp/php-cs-fixer": "^2.16",
  8704. "fruitcake/laravel-cors": "^1.0",
  8705. "laravel/framework": "^7.0",
  8706. "laravel/tinker": "^2.0",
  8707. "nunomaduro/larastan": "^0.6",
  8708. "orchestra/testbench": "^5.0",
  8709. "phpstan/phpstan": "^0.12.3",
  8710. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8711. },
  8712. "type": "library",
  8713. "extra": {
  8714. "laravel": {
  8715. "providers": [
  8716. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8717. ]
  8718. }
  8719. },
  8720. "autoload": {
  8721. "psr-4": {
  8722. "NunoMaduro\\Collision\\": "src/"
  8723. }
  8724. },
  8725. "notification-url": "https://packagist.org/downloads/",
  8726. "license": [
  8727. "MIT"
  8728. ],
  8729. "authors": [
  8730. {
  8731. "name": "Nuno Maduro",
  8732. "email": "enunomaduro@gmail.com"
  8733. }
  8734. ],
  8735. "description": "Cli error handling for console/command-line PHP applications.",
  8736. "keywords": [
  8737. "artisan",
  8738. "cli",
  8739. "command-line",
  8740. "console",
  8741. "error",
  8742. "handling",
  8743. "laravel",
  8744. "laravel-zero",
  8745. "php",
  8746. "symfony"
  8747. ],
  8748. "support": {
  8749. "issues": "https://github.com/nunomaduro/collision/issues",
  8750. "source": "https://github.com/nunomaduro/collision"
  8751. },
  8752. "funding": [
  8753. {
  8754. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8755. "type": "custom"
  8756. },
  8757. {
  8758. "url": "https://github.com/nunomaduro",
  8759. "type": "github"
  8760. },
  8761. {
  8762. "url": "https://www.patreon.com/nunomaduro",
  8763. "type": "patreon"
  8764. }
  8765. ],
  8766. "time": "2020-10-29T15:12:23+00:00"
  8767. },
  8768. {
  8769. "name": "phar-io/manifest",
  8770. "version": "2.0.3",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/phar-io/manifest.git",
  8774. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8779. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8780. "shasum": "",
  8781. "mirrors": [
  8782. {
  8783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8784. "preferred": true
  8785. }
  8786. ]
  8787. },
  8788. "require": {
  8789. "ext-dom": "*",
  8790. "ext-phar": "*",
  8791. "ext-xmlwriter": "*",
  8792. "phar-io/version": "^3.0.1",
  8793. "php": "^7.2 || ^8.0"
  8794. },
  8795. "type": "library",
  8796. "extra": {
  8797. "branch-alias": {
  8798. "dev-master": "2.0.x-dev"
  8799. }
  8800. },
  8801. "autoload": {
  8802. "classmap": [
  8803. "src/"
  8804. ]
  8805. },
  8806. "notification-url": "https://packagist.org/downloads/",
  8807. "license": [
  8808. "BSD-3-Clause"
  8809. ],
  8810. "authors": [
  8811. {
  8812. "name": "Arne Blankerts",
  8813. "email": "arne@blankerts.de",
  8814. "role": "Developer"
  8815. },
  8816. {
  8817. "name": "Sebastian Heuer",
  8818. "email": "sebastian@phpeople.de",
  8819. "role": "Developer"
  8820. },
  8821. {
  8822. "name": "Sebastian Bergmann",
  8823. "email": "sebastian@phpunit.de",
  8824. "role": "Developer"
  8825. }
  8826. ],
  8827. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8828. "support": {
  8829. "issues": "https://github.com/phar-io/manifest/issues",
  8830. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8831. },
  8832. "time": "2021-07-20T11:28:43+00:00"
  8833. },
  8834. {
  8835. "name": "phar-io/version",
  8836. "version": "3.1.0",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/phar-io/version.git",
  8840. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8845. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8846. "shasum": "",
  8847. "mirrors": [
  8848. {
  8849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8850. "preferred": true
  8851. }
  8852. ]
  8853. },
  8854. "require": {
  8855. "php": "^7.2 || ^8.0"
  8856. },
  8857. "type": "library",
  8858. "autoload": {
  8859. "classmap": [
  8860. "src/"
  8861. ]
  8862. },
  8863. "notification-url": "https://packagist.org/downloads/",
  8864. "license": [
  8865. "BSD-3-Clause"
  8866. ],
  8867. "authors": [
  8868. {
  8869. "name": "Arne Blankerts",
  8870. "email": "arne@blankerts.de",
  8871. "role": "Developer"
  8872. },
  8873. {
  8874. "name": "Sebastian Heuer",
  8875. "email": "sebastian@phpeople.de",
  8876. "role": "Developer"
  8877. },
  8878. {
  8879. "name": "Sebastian Bergmann",
  8880. "email": "sebastian@phpunit.de",
  8881. "role": "Developer"
  8882. }
  8883. ],
  8884. "description": "Library for handling version information and constraints",
  8885. "support": {
  8886. "issues": "https://github.com/phar-io/version/issues",
  8887. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8888. },
  8889. "time": "2021-02-23T14:00:09+00:00"
  8890. },
  8891. {
  8892. "name": "phpdocumentor/reflection-common",
  8893. "version": "2.2.0",
  8894. "source": {
  8895. "type": "git",
  8896. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8897. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8898. },
  8899. "dist": {
  8900. "type": "zip",
  8901. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8902. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8903. "shasum": "",
  8904. "mirrors": [
  8905. {
  8906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8907. "preferred": true
  8908. }
  8909. ]
  8910. },
  8911. "require": {
  8912. "php": "^7.2 || ^8.0"
  8913. },
  8914. "type": "library",
  8915. "extra": {
  8916. "branch-alias": {
  8917. "dev-2.x": "2.x-dev"
  8918. }
  8919. },
  8920. "autoload": {
  8921. "psr-4": {
  8922. "phpDocumentor\\Reflection\\": "src/"
  8923. }
  8924. },
  8925. "notification-url": "https://packagist.org/downloads/",
  8926. "license": [
  8927. "MIT"
  8928. ],
  8929. "authors": [
  8930. {
  8931. "name": "Jaap van Otterdijk",
  8932. "email": "opensource@ijaap.nl"
  8933. }
  8934. ],
  8935. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8936. "homepage": "http://www.phpdoc.org",
  8937. "keywords": [
  8938. "FQSEN",
  8939. "phpDocumentor",
  8940. "phpdoc",
  8941. "reflection",
  8942. "static analysis"
  8943. ],
  8944. "support": {
  8945. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8946. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8947. },
  8948. "time": "2020-06-27T09:03:43+00:00"
  8949. },
  8950. {
  8951. "name": "phpdocumentor/reflection-docblock",
  8952. "version": "5.3.0",
  8953. "source": {
  8954. "type": "git",
  8955. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8956. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  8957. },
  8958. "dist": {
  8959. "type": "zip",
  8960. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  8961. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  8962. "shasum": "",
  8963. "mirrors": [
  8964. {
  8965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8966. "preferred": true
  8967. }
  8968. ]
  8969. },
  8970. "require": {
  8971. "ext-filter": "*",
  8972. "php": "^7.2 || ^8.0",
  8973. "phpdocumentor/reflection-common": "^2.2",
  8974. "phpdocumentor/type-resolver": "^1.3",
  8975. "webmozart/assert": "^1.9.1"
  8976. },
  8977. "require-dev": {
  8978. "mockery/mockery": "~1.3.2",
  8979. "psalm/phar": "^4.8"
  8980. },
  8981. "type": "library",
  8982. "extra": {
  8983. "branch-alias": {
  8984. "dev-master": "5.x-dev"
  8985. }
  8986. },
  8987. "autoload": {
  8988. "psr-4": {
  8989. "phpDocumentor\\Reflection\\": "src"
  8990. }
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "MIT"
  8995. ],
  8996. "authors": [
  8997. {
  8998. "name": "Mike van Riel",
  8999. "email": "me@mikevanriel.com"
  9000. },
  9001. {
  9002. "name": "Jaap van Otterdijk",
  9003. "email": "account@ijaap.nl"
  9004. }
  9005. ],
  9006. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9007. "support": {
  9008. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9009. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  9010. },
  9011. "time": "2021-10-19T17:43:47+00:00"
  9012. },
  9013. {
  9014. "name": "phpdocumentor/type-resolver",
  9015. "version": "1.5.1",
  9016. "source": {
  9017. "type": "git",
  9018. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9019. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  9020. },
  9021. "dist": {
  9022. "type": "zip",
  9023. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  9024. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  9025. "shasum": "",
  9026. "mirrors": [
  9027. {
  9028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9029. "preferred": true
  9030. }
  9031. ]
  9032. },
  9033. "require": {
  9034. "php": "^7.2 || ^8.0",
  9035. "phpdocumentor/reflection-common": "^2.0"
  9036. },
  9037. "require-dev": {
  9038. "ext-tokenizer": "*",
  9039. "psalm/phar": "^4.8"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-1.x": "1.x-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "psr-4": {
  9049. "phpDocumentor\\Reflection\\": "src"
  9050. }
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "MIT"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Mike van Riel",
  9059. "email": "me@mikevanriel.com"
  9060. }
  9061. ],
  9062. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9063. "support": {
  9064. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9065. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  9066. },
  9067. "time": "2021-10-02T14:08:47+00:00"
  9068. },
  9069. {
  9070. "name": "phpspec/prophecy",
  9071. "version": "1.14.0",
  9072. "source": {
  9073. "type": "git",
  9074. "url": "https://github.com/phpspec/prophecy.git",
  9075. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
  9076. },
  9077. "dist": {
  9078. "type": "zip",
  9079. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9080. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9081. "shasum": "",
  9082. "mirrors": [
  9083. {
  9084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9085. "preferred": true
  9086. }
  9087. ]
  9088. },
  9089. "require": {
  9090. "doctrine/instantiator": "^1.2",
  9091. "php": "^7.2 || ~8.0, <8.2",
  9092. "phpdocumentor/reflection-docblock": "^5.2",
  9093. "sebastian/comparator": "^3.0 || ^4.0",
  9094. "sebastian/recursion-context": "^3.0 || ^4.0"
  9095. },
  9096. "require-dev": {
  9097. "phpspec/phpspec": "^6.0 || ^7.0",
  9098. "phpunit/phpunit": "^8.0 || ^9.0"
  9099. },
  9100. "type": "library",
  9101. "extra": {
  9102. "branch-alias": {
  9103. "dev-master": "1.x-dev"
  9104. }
  9105. },
  9106. "autoload": {
  9107. "psr-4": {
  9108. "Prophecy\\": "src/Prophecy"
  9109. }
  9110. },
  9111. "notification-url": "https://packagist.org/downloads/",
  9112. "license": [
  9113. "MIT"
  9114. ],
  9115. "authors": [
  9116. {
  9117. "name": "Konstantin Kudryashov",
  9118. "email": "ever.zet@gmail.com",
  9119. "homepage": "http://everzet.com"
  9120. },
  9121. {
  9122. "name": "Marcello Duarte",
  9123. "email": "marcello.duarte@gmail.com"
  9124. }
  9125. ],
  9126. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9127. "homepage": "https://github.com/phpspec/prophecy",
  9128. "keywords": [
  9129. "Double",
  9130. "Dummy",
  9131. "fake",
  9132. "mock",
  9133. "spy",
  9134. "stub"
  9135. ],
  9136. "support": {
  9137. "issues": "https://github.com/phpspec/prophecy/issues",
  9138. "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
  9139. },
  9140. "time": "2021-09-10T09:02:12+00:00"
  9141. },
  9142. {
  9143. "name": "phpunit/php-code-coverage",
  9144. "version": "7.0.15",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9148. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9153. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9154. "shasum": "",
  9155. "mirrors": [
  9156. {
  9157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9158. "preferred": true
  9159. }
  9160. ]
  9161. },
  9162. "require": {
  9163. "ext-dom": "*",
  9164. "ext-xmlwriter": "*",
  9165. "php": ">=7.2",
  9166. "phpunit/php-file-iterator": "^2.0.2",
  9167. "phpunit/php-text-template": "^1.2.1",
  9168. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9169. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9170. "sebastian/environment": "^4.2.2",
  9171. "sebastian/version": "^2.0.1",
  9172. "theseer/tokenizer": "^1.1.3"
  9173. },
  9174. "require-dev": {
  9175. "phpunit/phpunit": "^8.2.2"
  9176. },
  9177. "suggest": {
  9178. "ext-xdebug": "^2.7.2"
  9179. },
  9180. "type": "library",
  9181. "extra": {
  9182. "branch-alias": {
  9183. "dev-master": "7.0-dev"
  9184. }
  9185. },
  9186. "autoload": {
  9187. "classmap": [
  9188. "src/"
  9189. ]
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "BSD-3-Clause"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Sebastian Bergmann",
  9198. "email": "sebastian@phpunit.de",
  9199. "role": "lead"
  9200. }
  9201. ],
  9202. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9203. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9204. "keywords": [
  9205. "coverage",
  9206. "testing",
  9207. "xunit"
  9208. ],
  9209. "support": {
  9210. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9211. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://github.com/sebastianbergmann",
  9216. "type": "github"
  9217. }
  9218. ],
  9219. "time": "2021-07-26T12:20:09+00:00"
  9220. },
  9221. {
  9222. "name": "phpunit/php-file-iterator",
  9223. "version": "2.0.4",
  9224. "source": {
  9225. "type": "git",
  9226. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9227. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9228. },
  9229. "dist": {
  9230. "type": "zip",
  9231. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9232. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9233. "shasum": "",
  9234. "mirrors": [
  9235. {
  9236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9237. "preferred": true
  9238. }
  9239. ]
  9240. },
  9241. "require": {
  9242. "php": ">=7.1"
  9243. },
  9244. "require-dev": {
  9245. "phpunit/phpunit": "^8.5"
  9246. },
  9247. "type": "library",
  9248. "extra": {
  9249. "branch-alias": {
  9250. "dev-master": "2.0.x-dev"
  9251. }
  9252. },
  9253. "autoload": {
  9254. "classmap": [
  9255. "src/"
  9256. ]
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "BSD-3-Clause"
  9261. ],
  9262. "authors": [
  9263. {
  9264. "name": "Sebastian Bergmann",
  9265. "email": "sebastian@phpunit.de",
  9266. "role": "lead"
  9267. }
  9268. ],
  9269. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9270. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9271. "keywords": [
  9272. "filesystem",
  9273. "iterator"
  9274. ],
  9275. "support": {
  9276. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9277. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9278. },
  9279. "funding": [
  9280. {
  9281. "url": "https://github.com/sebastianbergmann",
  9282. "type": "github"
  9283. }
  9284. ],
  9285. "time": "2021-07-19T06:46:01+00:00"
  9286. },
  9287. {
  9288. "name": "phpunit/php-text-template",
  9289. "version": "1.2.1",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9293. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9298. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9299. "shasum": "",
  9300. "mirrors": [
  9301. {
  9302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9303. "preferred": true
  9304. }
  9305. ]
  9306. },
  9307. "require": {
  9308. "php": ">=5.3.3"
  9309. },
  9310. "type": "library",
  9311. "autoload": {
  9312. "classmap": [
  9313. "src/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "BSD-3-Clause"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Sebastian Bergmann",
  9323. "email": "sebastian@phpunit.de",
  9324. "role": "lead"
  9325. }
  9326. ],
  9327. "description": "Simple template engine.",
  9328. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9329. "keywords": [
  9330. "template"
  9331. ],
  9332. "support": {
  9333. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9334. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9335. },
  9336. "time": "2015-06-21T13:50:34+00:00"
  9337. },
  9338. {
  9339. "name": "phpunit/php-timer",
  9340. "version": "2.1.3",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9344. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9349. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9350. "shasum": "",
  9351. "mirrors": [
  9352. {
  9353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9354. "preferred": true
  9355. }
  9356. ]
  9357. },
  9358. "require": {
  9359. "php": ">=7.1"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^8.5"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-master": "2.1-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Utility class for timing",
  9387. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9388. "keywords": [
  9389. "timer"
  9390. ],
  9391. "support": {
  9392. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9393. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://github.com/sebastianbergmann",
  9398. "type": "github"
  9399. }
  9400. ],
  9401. "time": "2020-11-30T08:20:02+00:00"
  9402. },
  9403. {
  9404. "name": "phpunit/php-token-stream",
  9405. "version": "4.0.4",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9409. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9414. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9415. "shasum": "",
  9416. "mirrors": [
  9417. {
  9418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9419. "preferred": true
  9420. }
  9421. ]
  9422. },
  9423. "require": {
  9424. "ext-tokenizer": "*",
  9425. "php": "^7.3 || ^8.0"
  9426. },
  9427. "require-dev": {
  9428. "phpunit/phpunit": "^9.0"
  9429. },
  9430. "type": "library",
  9431. "extra": {
  9432. "branch-alias": {
  9433. "dev-master": "4.0-dev"
  9434. }
  9435. },
  9436. "autoload": {
  9437. "classmap": [
  9438. "src/"
  9439. ]
  9440. },
  9441. "notification-url": "https://packagist.org/downloads/",
  9442. "license": [
  9443. "BSD-3-Clause"
  9444. ],
  9445. "authors": [
  9446. {
  9447. "name": "Sebastian Bergmann",
  9448. "email": "sebastian@phpunit.de"
  9449. }
  9450. ],
  9451. "description": "Wrapper around PHP's tokenizer extension.",
  9452. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9453. "keywords": [
  9454. "tokenizer"
  9455. ],
  9456. "support": {
  9457. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9458. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://github.com/sebastianbergmann",
  9463. "type": "github"
  9464. }
  9465. ],
  9466. "abandoned": true,
  9467. "time": "2020-08-04T08:28:15+00:00"
  9468. },
  9469. {
  9470. "name": "phpunit/phpunit",
  9471. "version": "8.5.21",
  9472. "source": {
  9473. "type": "git",
  9474. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9475. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984"
  9476. },
  9477. "dist": {
  9478. "type": "zip",
  9479. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9480. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9481. "shasum": "",
  9482. "mirrors": [
  9483. {
  9484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9485. "preferred": true
  9486. }
  9487. ]
  9488. },
  9489. "require": {
  9490. "doctrine/instantiator": "^1.3.1",
  9491. "ext-dom": "*",
  9492. "ext-json": "*",
  9493. "ext-libxml": "*",
  9494. "ext-mbstring": "*",
  9495. "ext-xml": "*",
  9496. "ext-xmlwriter": "*",
  9497. "myclabs/deep-copy": "^1.10.0",
  9498. "phar-io/manifest": "^2.0.3",
  9499. "phar-io/version": "^3.0.2",
  9500. "php": ">=7.2",
  9501. "phpspec/prophecy": "^1.10.3",
  9502. "phpunit/php-code-coverage": "^7.0.12",
  9503. "phpunit/php-file-iterator": "^2.0.4",
  9504. "phpunit/php-text-template": "^1.2.1",
  9505. "phpunit/php-timer": "^2.1.2",
  9506. "sebastian/comparator": "^3.0.2",
  9507. "sebastian/diff": "^3.0.2",
  9508. "sebastian/environment": "^4.2.3",
  9509. "sebastian/exporter": "^3.1.2",
  9510. "sebastian/global-state": "^3.0.0",
  9511. "sebastian/object-enumerator": "^3.0.3",
  9512. "sebastian/resource-operations": "^2.0.1",
  9513. "sebastian/type": "^1.1.3",
  9514. "sebastian/version": "^2.0.1"
  9515. },
  9516. "require-dev": {
  9517. "ext-pdo": "*"
  9518. },
  9519. "suggest": {
  9520. "ext-soap": "*",
  9521. "ext-xdebug": "*",
  9522. "phpunit/php-invoker": "^2.0.0"
  9523. },
  9524. "bin": [
  9525. "phpunit"
  9526. ],
  9527. "type": "library",
  9528. "extra": {
  9529. "branch-alias": {
  9530. "dev-master": "8.5-dev"
  9531. }
  9532. },
  9533. "autoload": {
  9534. "classmap": [
  9535. "src/"
  9536. ]
  9537. },
  9538. "notification-url": "https://packagist.org/downloads/",
  9539. "license": [
  9540. "BSD-3-Clause"
  9541. ],
  9542. "authors": [
  9543. {
  9544. "name": "Sebastian Bergmann",
  9545. "email": "sebastian@phpunit.de",
  9546. "role": "lead"
  9547. }
  9548. ],
  9549. "description": "The PHP Unit Testing framework.",
  9550. "homepage": "https://phpunit.de/",
  9551. "keywords": [
  9552. "phpunit",
  9553. "testing",
  9554. "xunit"
  9555. ],
  9556. "support": {
  9557. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9558. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.21"
  9559. },
  9560. "funding": [
  9561. {
  9562. "url": "https://phpunit.de/donate.html",
  9563. "type": "custom"
  9564. },
  9565. {
  9566. "url": "https://github.com/sebastianbergmann",
  9567. "type": "github"
  9568. }
  9569. ],
  9570. "time": "2021-09-25T07:37:20+00:00"
  9571. },
  9572. {
  9573. "name": "sebastian/code-unit-reverse-lookup",
  9574. "version": "1.0.2",
  9575. "source": {
  9576. "type": "git",
  9577. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9578. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9579. },
  9580. "dist": {
  9581. "type": "zip",
  9582. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9583. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9584. "shasum": "",
  9585. "mirrors": [
  9586. {
  9587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9588. "preferred": true
  9589. }
  9590. ]
  9591. },
  9592. "require": {
  9593. "php": ">=5.6"
  9594. },
  9595. "require-dev": {
  9596. "phpunit/phpunit": "^8.5"
  9597. },
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-master": "1.0.x-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "classmap": [
  9606. "src/"
  9607. ]
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "BSD-3-Clause"
  9612. ],
  9613. "authors": [
  9614. {
  9615. "name": "Sebastian Bergmann",
  9616. "email": "sebastian@phpunit.de"
  9617. }
  9618. ],
  9619. "description": "Looks up which function or method a line of code belongs to",
  9620. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9621. "support": {
  9622. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9623. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9624. },
  9625. "funding": [
  9626. {
  9627. "url": "https://github.com/sebastianbergmann",
  9628. "type": "github"
  9629. }
  9630. ],
  9631. "time": "2020-11-30T08:15:22+00:00"
  9632. },
  9633. {
  9634. "name": "sebastian/comparator",
  9635. "version": "3.0.3",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/sebastianbergmann/comparator.git",
  9639. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9644. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9645. "shasum": "",
  9646. "mirrors": [
  9647. {
  9648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9649. "preferred": true
  9650. }
  9651. ]
  9652. },
  9653. "require": {
  9654. "php": ">=7.1",
  9655. "sebastian/diff": "^3.0",
  9656. "sebastian/exporter": "^3.1"
  9657. },
  9658. "require-dev": {
  9659. "phpunit/phpunit": "^8.5"
  9660. },
  9661. "type": "library",
  9662. "extra": {
  9663. "branch-alias": {
  9664. "dev-master": "3.0-dev"
  9665. }
  9666. },
  9667. "autoload": {
  9668. "classmap": [
  9669. "src/"
  9670. ]
  9671. },
  9672. "notification-url": "https://packagist.org/downloads/",
  9673. "license": [
  9674. "BSD-3-Clause"
  9675. ],
  9676. "authors": [
  9677. {
  9678. "name": "Sebastian Bergmann",
  9679. "email": "sebastian@phpunit.de"
  9680. },
  9681. {
  9682. "name": "Jeff Welch",
  9683. "email": "whatthejeff@gmail.com"
  9684. },
  9685. {
  9686. "name": "Volker Dusch",
  9687. "email": "github@wallbash.com"
  9688. },
  9689. {
  9690. "name": "Bernhard Schussek",
  9691. "email": "bschussek@2bepublished.at"
  9692. }
  9693. ],
  9694. "description": "Provides the functionality to compare PHP values for equality",
  9695. "homepage": "https://github.com/sebastianbergmann/comparator",
  9696. "keywords": [
  9697. "comparator",
  9698. "compare",
  9699. "equality"
  9700. ],
  9701. "support": {
  9702. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9703. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9704. },
  9705. "funding": [
  9706. {
  9707. "url": "https://github.com/sebastianbergmann",
  9708. "type": "github"
  9709. }
  9710. ],
  9711. "time": "2020-11-30T08:04:30+00:00"
  9712. },
  9713. {
  9714. "name": "sebastian/diff",
  9715. "version": "3.0.3",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/sebastianbergmann/diff.git",
  9719. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9724. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9725. "shasum": "",
  9726. "mirrors": [
  9727. {
  9728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9729. "preferred": true
  9730. }
  9731. ]
  9732. },
  9733. "require": {
  9734. "php": ">=7.1"
  9735. },
  9736. "require-dev": {
  9737. "phpunit/phpunit": "^7.5 || ^8.0",
  9738. "symfony/process": "^2 || ^3.3 || ^4"
  9739. },
  9740. "type": "library",
  9741. "extra": {
  9742. "branch-alias": {
  9743. "dev-master": "3.0-dev"
  9744. }
  9745. },
  9746. "autoload": {
  9747. "classmap": [
  9748. "src/"
  9749. ]
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "BSD-3-Clause"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Sebastian Bergmann",
  9758. "email": "sebastian@phpunit.de"
  9759. },
  9760. {
  9761. "name": "Kore Nordmann",
  9762. "email": "mail@kore-nordmann.de"
  9763. }
  9764. ],
  9765. "description": "Diff implementation",
  9766. "homepage": "https://github.com/sebastianbergmann/diff",
  9767. "keywords": [
  9768. "diff",
  9769. "udiff",
  9770. "unidiff",
  9771. "unified diff"
  9772. ],
  9773. "support": {
  9774. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9775. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9776. },
  9777. "funding": [
  9778. {
  9779. "url": "https://github.com/sebastianbergmann",
  9780. "type": "github"
  9781. }
  9782. ],
  9783. "time": "2020-11-30T07:59:04+00:00"
  9784. },
  9785. {
  9786. "name": "sebastian/environment",
  9787. "version": "4.2.4",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/sebastianbergmann/environment.git",
  9791. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9796. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9797. "shasum": "",
  9798. "mirrors": [
  9799. {
  9800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9801. "preferred": true
  9802. }
  9803. ]
  9804. },
  9805. "require": {
  9806. "php": ">=7.1"
  9807. },
  9808. "require-dev": {
  9809. "phpunit/phpunit": "^7.5"
  9810. },
  9811. "suggest": {
  9812. "ext-posix": "*"
  9813. },
  9814. "type": "library",
  9815. "extra": {
  9816. "branch-alias": {
  9817. "dev-master": "4.2-dev"
  9818. }
  9819. },
  9820. "autoload": {
  9821. "classmap": [
  9822. "src/"
  9823. ]
  9824. },
  9825. "notification-url": "https://packagist.org/downloads/",
  9826. "license": [
  9827. "BSD-3-Clause"
  9828. ],
  9829. "authors": [
  9830. {
  9831. "name": "Sebastian Bergmann",
  9832. "email": "sebastian@phpunit.de"
  9833. }
  9834. ],
  9835. "description": "Provides functionality to handle HHVM/PHP environments",
  9836. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9837. "keywords": [
  9838. "Xdebug",
  9839. "environment",
  9840. "hhvm"
  9841. ],
  9842. "support": {
  9843. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9844. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9845. },
  9846. "funding": [
  9847. {
  9848. "url": "https://github.com/sebastianbergmann",
  9849. "type": "github"
  9850. }
  9851. ],
  9852. "time": "2020-11-30T07:53:42+00:00"
  9853. },
  9854. {
  9855. "name": "sebastian/exporter",
  9856. "version": "3.1.3",
  9857. "source": {
  9858. "type": "git",
  9859. "url": "https://github.com/sebastianbergmann/exporter.git",
  9860. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9861. },
  9862. "dist": {
  9863. "type": "zip",
  9864. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9865. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9866. "shasum": "",
  9867. "mirrors": [
  9868. {
  9869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9870. "preferred": true
  9871. }
  9872. ]
  9873. },
  9874. "require": {
  9875. "php": ">=7.0",
  9876. "sebastian/recursion-context": "^3.0"
  9877. },
  9878. "require-dev": {
  9879. "ext-mbstring": "*",
  9880. "phpunit/phpunit": "^6.0"
  9881. },
  9882. "type": "library",
  9883. "extra": {
  9884. "branch-alias": {
  9885. "dev-master": "3.1.x-dev"
  9886. }
  9887. },
  9888. "autoload": {
  9889. "classmap": [
  9890. "src/"
  9891. ]
  9892. },
  9893. "notification-url": "https://packagist.org/downloads/",
  9894. "license": [
  9895. "BSD-3-Clause"
  9896. ],
  9897. "authors": [
  9898. {
  9899. "name": "Sebastian Bergmann",
  9900. "email": "sebastian@phpunit.de"
  9901. },
  9902. {
  9903. "name": "Jeff Welch",
  9904. "email": "whatthejeff@gmail.com"
  9905. },
  9906. {
  9907. "name": "Volker Dusch",
  9908. "email": "github@wallbash.com"
  9909. },
  9910. {
  9911. "name": "Adam Harvey",
  9912. "email": "aharvey@php.net"
  9913. },
  9914. {
  9915. "name": "Bernhard Schussek",
  9916. "email": "bschussek@gmail.com"
  9917. }
  9918. ],
  9919. "description": "Provides the functionality to export PHP variables for visualization",
  9920. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9921. "keywords": [
  9922. "export",
  9923. "exporter"
  9924. ],
  9925. "support": {
  9926. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9927. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://github.com/sebastianbergmann",
  9932. "type": "github"
  9933. }
  9934. ],
  9935. "time": "2020-11-30T07:47:53+00:00"
  9936. },
  9937. {
  9938. "name": "sebastian/global-state",
  9939. "version": "3.0.1",
  9940. "source": {
  9941. "type": "git",
  9942. "url": "https://github.com/sebastianbergmann/global-state.git",
  9943. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9944. },
  9945. "dist": {
  9946. "type": "zip",
  9947. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9948. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9949. "shasum": "",
  9950. "mirrors": [
  9951. {
  9952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9953. "preferred": true
  9954. }
  9955. ]
  9956. },
  9957. "require": {
  9958. "php": ">=7.2",
  9959. "sebastian/object-reflector": "^1.1.1",
  9960. "sebastian/recursion-context": "^3.0"
  9961. },
  9962. "require-dev": {
  9963. "ext-dom": "*",
  9964. "phpunit/phpunit": "^8.0"
  9965. },
  9966. "suggest": {
  9967. "ext-uopz": "*"
  9968. },
  9969. "type": "library",
  9970. "extra": {
  9971. "branch-alias": {
  9972. "dev-master": "3.0-dev"
  9973. }
  9974. },
  9975. "autoload": {
  9976. "classmap": [
  9977. "src/"
  9978. ]
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "BSD-3-Clause"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Sebastian Bergmann",
  9987. "email": "sebastian@phpunit.de"
  9988. }
  9989. ],
  9990. "description": "Snapshotting of global state",
  9991. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9992. "keywords": [
  9993. "global state"
  9994. ],
  9995. "support": {
  9996. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9997. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9998. },
  9999. "funding": [
  10000. {
  10001. "url": "https://github.com/sebastianbergmann",
  10002. "type": "github"
  10003. }
  10004. ],
  10005. "time": "2020-11-30T07:43:24+00:00"
  10006. },
  10007. {
  10008. "name": "sebastian/object-enumerator",
  10009. "version": "3.0.4",
  10010. "source": {
  10011. "type": "git",
  10012. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10013. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  10014. },
  10015. "dist": {
  10016. "type": "zip",
  10017. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10018. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10019. "shasum": "",
  10020. "mirrors": [
  10021. {
  10022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10023. "preferred": true
  10024. }
  10025. ]
  10026. },
  10027. "require": {
  10028. "php": ">=7.0",
  10029. "sebastian/object-reflector": "^1.1.1",
  10030. "sebastian/recursion-context": "^3.0"
  10031. },
  10032. "require-dev": {
  10033. "phpunit/phpunit": "^6.0"
  10034. },
  10035. "type": "library",
  10036. "extra": {
  10037. "branch-alias": {
  10038. "dev-master": "3.0.x-dev"
  10039. }
  10040. },
  10041. "autoload": {
  10042. "classmap": [
  10043. "src/"
  10044. ]
  10045. },
  10046. "notification-url": "https://packagist.org/downloads/",
  10047. "license": [
  10048. "BSD-3-Clause"
  10049. ],
  10050. "authors": [
  10051. {
  10052. "name": "Sebastian Bergmann",
  10053. "email": "sebastian@phpunit.de"
  10054. }
  10055. ],
  10056. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10057. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10058. "support": {
  10059. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10060. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://github.com/sebastianbergmann",
  10065. "type": "github"
  10066. }
  10067. ],
  10068. "time": "2020-11-30T07:40:27+00:00"
  10069. },
  10070. {
  10071. "name": "sebastian/object-reflector",
  10072. "version": "1.1.2",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10076. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10081. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10082. "shasum": "",
  10083. "mirrors": [
  10084. {
  10085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10086. "preferred": true
  10087. }
  10088. ]
  10089. },
  10090. "require": {
  10091. "php": ">=7.0"
  10092. },
  10093. "require-dev": {
  10094. "phpunit/phpunit": "^6.0"
  10095. },
  10096. "type": "library",
  10097. "extra": {
  10098. "branch-alias": {
  10099. "dev-master": "1.1-dev"
  10100. }
  10101. },
  10102. "autoload": {
  10103. "classmap": [
  10104. "src/"
  10105. ]
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "BSD-3-Clause"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Sebastian Bergmann",
  10114. "email": "sebastian@phpunit.de"
  10115. }
  10116. ],
  10117. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10118. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10119. "support": {
  10120. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10121. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10122. },
  10123. "funding": [
  10124. {
  10125. "url": "https://github.com/sebastianbergmann",
  10126. "type": "github"
  10127. }
  10128. ],
  10129. "time": "2020-11-30T07:37:18+00:00"
  10130. },
  10131. {
  10132. "name": "sebastian/recursion-context",
  10133. "version": "3.0.1",
  10134. "source": {
  10135. "type": "git",
  10136. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10137. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10138. },
  10139. "dist": {
  10140. "type": "zip",
  10141. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10142. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10143. "shasum": "",
  10144. "mirrors": [
  10145. {
  10146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10147. "preferred": true
  10148. }
  10149. ]
  10150. },
  10151. "require": {
  10152. "php": ">=7.0"
  10153. },
  10154. "require-dev": {
  10155. "phpunit/phpunit": "^6.0"
  10156. },
  10157. "type": "library",
  10158. "extra": {
  10159. "branch-alias": {
  10160. "dev-master": "3.0.x-dev"
  10161. }
  10162. },
  10163. "autoload": {
  10164. "classmap": [
  10165. "src/"
  10166. ]
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "BSD-3-Clause"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "Sebastian Bergmann",
  10175. "email": "sebastian@phpunit.de"
  10176. },
  10177. {
  10178. "name": "Jeff Welch",
  10179. "email": "whatthejeff@gmail.com"
  10180. },
  10181. {
  10182. "name": "Adam Harvey",
  10183. "email": "aharvey@php.net"
  10184. }
  10185. ],
  10186. "description": "Provides functionality to recursively process PHP variables",
  10187. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10188. "support": {
  10189. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10190. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10191. },
  10192. "funding": [
  10193. {
  10194. "url": "https://github.com/sebastianbergmann",
  10195. "type": "github"
  10196. }
  10197. ],
  10198. "time": "2020-11-30T07:34:24+00:00"
  10199. },
  10200. {
  10201. "name": "sebastian/resource-operations",
  10202. "version": "2.0.2",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10206. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10211. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10212. "shasum": "",
  10213. "mirrors": [
  10214. {
  10215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10216. "preferred": true
  10217. }
  10218. ]
  10219. },
  10220. "require": {
  10221. "php": ">=7.1"
  10222. },
  10223. "type": "library",
  10224. "extra": {
  10225. "branch-alias": {
  10226. "dev-master": "2.0-dev"
  10227. }
  10228. },
  10229. "autoload": {
  10230. "classmap": [
  10231. "src/"
  10232. ]
  10233. },
  10234. "notification-url": "https://packagist.org/downloads/",
  10235. "license": [
  10236. "BSD-3-Clause"
  10237. ],
  10238. "authors": [
  10239. {
  10240. "name": "Sebastian Bergmann",
  10241. "email": "sebastian@phpunit.de"
  10242. }
  10243. ],
  10244. "description": "Provides a list of PHP built-in functions that operate on resources",
  10245. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10246. "support": {
  10247. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10248. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10249. },
  10250. "funding": [
  10251. {
  10252. "url": "https://github.com/sebastianbergmann",
  10253. "type": "github"
  10254. }
  10255. ],
  10256. "time": "2020-11-30T07:30:19+00:00"
  10257. },
  10258. {
  10259. "name": "sebastian/type",
  10260. "version": "1.1.4",
  10261. "source": {
  10262. "type": "git",
  10263. "url": "https://github.com/sebastianbergmann/type.git",
  10264. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10265. },
  10266. "dist": {
  10267. "type": "zip",
  10268. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10269. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10270. "shasum": "",
  10271. "mirrors": [
  10272. {
  10273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10274. "preferred": true
  10275. }
  10276. ]
  10277. },
  10278. "require": {
  10279. "php": ">=7.2"
  10280. },
  10281. "require-dev": {
  10282. "phpunit/phpunit": "^8.2"
  10283. },
  10284. "type": "library",
  10285. "extra": {
  10286. "branch-alias": {
  10287. "dev-master": "1.1-dev"
  10288. }
  10289. },
  10290. "autoload": {
  10291. "classmap": [
  10292. "src/"
  10293. ]
  10294. },
  10295. "notification-url": "https://packagist.org/downloads/",
  10296. "license": [
  10297. "BSD-3-Clause"
  10298. ],
  10299. "authors": [
  10300. {
  10301. "name": "Sebastian Bergmann",
  10302. "email": "sebastian@phpunit.de",
  10303. "role": "lead"
  10304. }
  10305. ],
  10306. "description": "Collection of value objects that represent the types of the PHP type system",
  10307. "homepage": "https://github.com/sebastianbergmann/type",
  10308. "support": {
  10309. "issues": "https://github.com/sebastianbergmann/type/issues",
  10310. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10311. },
  10312. "funding": [
  10313. {
  10314. "url": "https://github.com/sebastianbergmann",
  10315. "type": "github"
  10316. }
  10317. ],
  10318. "time": "2020-11-30T07:25:11+00:00"
  10319. },
  10320. {
  10321. "name": "sebastian/version",
  10322. "version": "2.0.1",
  10323. "source": {
  10324. "type": "git",
  10325. "url": "https://github.com/sebastianbergmann/version.git",
  10326. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10327. },
  10328. "dist": {
  10329. "type": "zip",
  10330. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10331. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10332. "shasum": "",
  10333. "mirrors": [
  10334. {
  10335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10336. "preferred": true
  10337. }
  10338. ]
  10339. },
  10340. "require": {
  10341. "php": ">=5.6"
  10342. },
  10343. "type": "library",
  10344. "extra": {
  10345. "branch-alias": {
  10346. "dev-master": "2.0.x-dev"
  10347. }
  10348. },
  10349. "autoload": {
  10350. "classmap": [
  10351. "src/"
  10352. ]
  10353. },
  10354. "notification-url": "https://packagist.org/downloads/",
  10355. "license": [
  10356. "BSD-3-Clause"
  10357. ],
  10358. "authors": [
  10359. {
  10360. "name": "Sebastian Bergmann",
  10361. "email": "sebastian@phpunit.de",
  10362. "role": "lead"
  10363. }
  10364. ],
  10365. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10366. "homepage": "https://github.com/sebastianbergmann/version",
  10367. "support": {
  10368. "issues": "https://github.com/sebastianbergmann/version/issues",
  10369. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10370. },
  10371. "time": "2016-10-03T07:35:21+00:00"
  10372. },
  10373. {
  10374. "name": "symfony/debug",
  10375. "version": "v4.4.31",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/symfony/debug.git",
  10379. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10384. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10385. "shasum": "",
  10386. "mirrors": [
  10387. {
  10388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10389. "preferred": true
  10390. }
  10391. ]
  10392. },
  10393. "require": {
  10394. "php": ">=7.1.3",
  10395. "psr/log": "^1|^2|^3"
  10396. },
  10397. "conflict": {
  10398. "symfony/http-kernel": "<3.4"
  10399. },
  10400. "require-dev": {
  10401. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10402. },
  10403. "type": "library",
  10404. "autoload": {
  10405. "psr-4": {
  10406. "Symfony\\Component\\Debug\\": ""
  10407. },
  10408. "exclude-from-classmap": [
  10409. "/Tests/"
  10410. ]
  10411. },
  10412. "notification-url": "https://packagist.org/downloads/",
  10413. "license": [
  10414. "MIT"
  10415. ],
  10416. "authors": [
  10417. {
  10418. "name": "Fabien Potencier",
  10419. "email": "fabien@symfony.com"
  10420. },
  10421. {
  10422. "name": "Symfony Community",
  10423. "homepage": "https://symfony.com/contributors"
  10424. }
  10425. ],
  10426. "description": "Provides tools to ease debugging PHP code",
  10427. "homepage": "https://symfony.com",
  10428. "support": {
  10429. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10430. },
  10431. "funding": [
  10432. {
  10433. "url": "https://symfony.com/sponsor",
  10434. "type": "custom"
  10435. },
  10436. {
  10437. "url": "https://github.com/fabpot",
  10438. "type": "github"
  10439. },
  10440. {
  10441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10442. "type": "tidelift"
  10443. }
  10444. ],
  10445. "time": "2021-09-24T13:30:14+00:00"
  10446. },
  10447. {
  10448. "name": "theseer/tokenizer",
  10449. "version": "1.2.1",
  10450. "source": {
  10451. "type": "git",
  10452. "url": "https://github.com/theseer/tokenizer.git",
  10453. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10454. },
  10455. "dist": {
  10456. "type": "zip",
  10457. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10458. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10459. "shasum": "",
  10460. "mirrors": [
  10461. {
  10462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10463. "preferred": true
  10464. }
  10465. ]
  10466. },
  10467. "require": {
  10468. "ext-dom": "*",
  10469. "ext-tokenizer": "*",
  10470. "ext-xmlwriter": "*",
  10471. "php": "^7.2 || ^8.0"
  10472. },
  10473. "type": "library",
  10474. "autoload": {
  10475. "classmap": [
  10476. "src/"
  10477. ]
  10478. },
  10479. "notification-url": "https://packagist.org/downloads/",
  10480. "license": [
  10481. "BSD-3-Clause"
  10482. ],
  10483. "authors": [
  10484. {
  10485. "name": "Arne Blankerts",
  10486. "email": "arne@blankerts.de",
  10487. "role": "Developer"
  10488. }
  10489. ],
  10490. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10491. "support": {
  10492. "issues": "https://github.com/theseer/tokenizer/issues",
  10493. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10494. },
  10495. "funding": [
  10496. {
  10497. "url": "https://github.com/theseer",
  10498. "type": "github"
  10499. }
  10500. ],
  10501. "time": "2021-07-28T10:34:58+00:00"
  10502. },
  10503. {
  10504. "name": "webmozart/assert",
  10505. "version": "1.10.0",
  10506. "source": {
  10507. "type": "git",
  10508. "url": "https://github.com/webmozarts/assert.git",
  10509. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10510. },
  10511. "dist": {
  10512. "type": "zip",
  10513. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10514. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10515. "shasum": "",
  10516. "mirrors": [
  10517. {
  10518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10519. "preferred": true
  10520. }
  10521. ]
  10522. },
  10523. "require": {
  10524. "php": "^7.2 || ^8.0",
  10525. "symfony/polyfill-ctype": "^1.8"
  10526. },
  10527. "conflict": {
  10528. "phpstan/phpstan": "<0.12.20",
  10529. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10530. },
  10531. "require-dev": {
  10532. "phpunit/phpunit": "^8.5.13"
  10533. },
  10534. "type": "library",
  10535. "extra": {
  10536. "branch-alias": {
  10537. "dev-master": "1.10-dev"
  10538. }
  10539. },
  10540. "autoload": {
  10541. "psr-4": {
  10542. "Webmozart\\Assert\\": "src/"
  10543. }
  10544. },
  10545. "notification-url": "https://packagist.org/downloads/",
  10546. "license": [
  10547. "MIT"
  10548. ],
  10549. "authors": [
  10550. {
  10551. "name": "Bernhard Schussek",
  10552. "email": "bschussek@gmail.com"
  10553. }
  10554. ],
  10555. "description": "Assertions to validate method input/output with nice error messages.",
  10556. "keywords": [
  10557. "assert",
  10558. "check",
  10559. "validate"
  10560. ],
  10561. "support": {
  10562. "issues": "https://github.com/webmozarts/assert/issues",
  10563. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10564. },
  10565. "time": "2021-03-09T10:59:23+00:00"
  10566. }
  10567. ],
  10568. "aliases": [],
  10569. "minimum-stability": "dev",
  10570. "stability-flags": [],
  10571. "prefer-stable": true,
  10572. "prefer-lowest": false,
  10573. "platform": {
  10574. "php": "^7.2.14",
  10575. "ext-bcmath": "*",
  10576. "ext-json": "*",
  10577. "ext-mbstring": "*",
  10578. "ext-oci8": "*",
  10579. "ext-openssl": "*",
  10580. "ext-pdo": "*"
  10581. },
  10582. "platform-dev": [],
  10583. "platform-overrides": {
  10584. "ext-pcntl": "7.2",
  10585. "ext-posix": "7.2"
  10586. },
  10587. "plugin-api-version": "2.1.0"
  10588. }