composer.lock 372 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333
  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": "9fb48c117bc3478160f1b69ad28ec904",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.2.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  141. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.5",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-06-17T13:49:10+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "2.0.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/c9622c6820d3ede1e2315a6a377ea1076e421d88",
  259. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/2.0.3"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-05-25T09:43:04+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.2",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  364. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0|^2.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "9.0.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.5",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/cache": "^4.4",
  387. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  388. "vimeo/psalm": "4.6.4"
  389. },
  390. "suggest": {
  391. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  392. },
  393. "bin": [
  394. "bin/doctrine-dbal"
  395. ],
  396. "type": "library",
  397. "autoload": {
  398. "psr-4": {
  399. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Guilherme Blanco",
  409. "email": "guilhermeblanco@gmail.com"
  410. },
  411. {
  412. "name": "Roman Borschel",
  413. "email": "roman@code-factory.org"
  414. },
  415. {
  416. "name": "Benjamin Eberlei",
  417. "email": "kontakt@beberlei.de"
  418. },
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com"
  422. }
  423. ],
  424. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  425. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  426. "keywords": [
  427. "abstraction",
  428. "database",
  429. "db2",
  430. "dbal",
  431. "mariadb",
  432. "mssql",
  433. "mysql",
  434. "oci8",
  435. "oracle",
  436. "pdo",
  437. "pgsql",
  438. "postgresql",
  439. "queryobject",
  440. "sasql",
  441. "sql",
  442. "sqlanywhere",
  443. "sqlite",
  444. "sqlserver",
  445. "sqlsrv"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/doctrine/dbal/issues",
  449. "source": "https://github.com/doctrine/dbal/tree/2.13.2"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://www.doctrine-project.org/sponsorship.html",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://www.patreon.com/phpdoctrine",
  458. "type": "patreon"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2021-06-18T21:48:39+00:00"
  466. },
  467. {
  468. "name": "doctrine/deprecations",
  469. "version": "v0.5.3",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/doctrine/deprecations.git",
  473. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "php": "^7.1|^8.0"
  489. },
  490. "require-dev": {
  491. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  492. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  493. "psr/log": "^1.0"
  494. },
  495. "suggest": {
  496. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  497. },
  498. "type": "library",
  499. "autoload": {
  500. "psr-4": {
  501. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "MIT"
  507. ],
  508. "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.",
  509. "homepage": "https://www.doctrine-project.org/",
  510. "support": {
  511. "issues": "https://github.com/doctrine/deprecations/issues",
  512. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  513. },
  514. "time": "2021-03-21T12:59:47+00:00"
  515. },
  516. {
  517. "name": "doctrine/event-manager",
  518. "version": "1.1.1",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/doctrine/event-manager.git",
  522. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  528. "shasum": "",
  529. "mirrors": [
  530. {
  531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  532. "preferred": true
  533. }
  534. ]
  535. },
  536. "require": {
  537. "php": "^7.1 || ^8.0"
  538. },
  539. "conflict": {
  540. "doctrine/common": "<2.9@dev"
  541. },
  542. "require-dev": {
  543. "doctrine/coding-standard": "^6.0",
  544. "phpunit/phpunit": "^7.0"
  545. },
  546. "type": "library",
  547. "extra": {
  548. "branch-alias": {
  549. "dev-master": "1.0.x-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "Doctrine\\Common\\": "lib/Doctrine/Common"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Guilherme Blanco",
  564. "email": "guilhermeblanco@gmail.com"
  565. },
  566. {
  567. "name": "Roman Borschel",
  568. "email": "roman@code-factory.org"
  569. },
  570. {
  571. "name": "Benjamin Eberlei",
  572. "email": "kontakt@beberlei.de"
  573. },
  574. {
  575. "name": "Jonathan Wage",
  576. "email": "jonwage@gmail.com"
  577. },
  578. {
  579. "name": "Johannes Schmitt",
  580. "email": "schmittjoh@gmail.com"
  581. },
  582. {
  583. "name": "Marco Pivetta",
  584. "email": "ocramius@gmail.com"
  585. }
  586. ],
  587. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  588. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  589. "keywords": [
  590. "event",
  591. "event dispatcher",
  592. "event manager",
  593. "event system",
  594. "events"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/event-manager/issues",
  598. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2020-05-29T18:28:51+00:00"
  615. },
  616. {
  617. "name": "doctrine/inflector",
  618. "version": "2.0.3",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/inflector.git",
  622. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  628. "shasum": "",
  629. "mirrors": [
  630. {
  631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  632. "preferred": true
  633. }
  634. ]
  635. },
  636. "require": {
  637. "php": "^7.2 || ^8.0"
  638. },
  639. "require-dev": {
  640. "doctrine/coding-standard": "^7.0",
  641. "phpstan/phpstan": "^0.11",
  642. "phpstan/phpstan-phpunit": "^0.11",
  643. "phpstan/phpstan-strict-rules": "^0.11",
  644. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  645. },
  646. "type": "library",
  647. "extra": {
  648. "branch-alias": {
  649. "dev-master": "2.0.x-dev"
  650. }
  651. },
  652. "autoload": {
  653. "psr-4": {
  654. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "MIT"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Guilherme Blanco",
  664. "email": "guilhermeblanco@gmail.com"
  665. },
  666. {
  667. "name": "Roman Borschel",
  668. "email": "roman@code-factory.org"
  669. },
  670. {
  671. "name": "Benjamin Eberlei",
  672. "email": "kontakt@beberlei.de"
  673. },
  674. {
  675. "name": "Jonathan Wage",
  676. "email": "jonwage@gmail.com"
  677. },
  678. {
  679. "name": "Johannes Schmitt",
  680. "email": "schmittjoh@gmail.com"
  681. }
  682. ],
  683. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  684. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  685. "keywords": [
  686. "inflection",
  687. "inflector",
  688. "lowercase",
  689. "manipulation",
  690. "php",
  691. "plural",
  692. "singular",
  693. "strings",
  694. "uppercase",
  695. "words"
  696. ],
  697. "support": {
  698. "issues": "https://github.com/doctrine/inflector/issues",
  699. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  700. },
  701. "funding": [
  702. {
  703. "url": "https://www.doctrine-project.org/sponsorship.html",
  704. "type": "custom"
  705. },
  706. {
  707. "url": "https://www.patreon.com/phpdoctrine",
  708. "type": "patreon"
  709. },
  710. {
  711. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  712. "type": "tidelift"
  713. }
  714. ],
  715. "time": "2020-05-29T15:13:26+00:00"
  716. },
  717. {
  718. "name": "doctrine/lexer",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/doctrine/lexer.git",
  723. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  729. "shasum": "",
  730. "mirrors": [
  731. {
  732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  733. "preferred": true
  734. }
  735. ]
  736. },
  737. "require": {
  738. "php": "^7.2 || ^8.0"
  739. },
  740. "require-dev": {
  741. "doctrine/coding-standard": "^6.0",
  742. "phpstan/phpstan": "^0.11.8",
  743. "phpunit/phpunit": "^8.2"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "1.2.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Guilherme Blanco",
  763. "email": "guilhermeblanco@gmail.com"
  764. },
  765. {
  766. "name": "Roman Borschel",
  767. "email": "roman@code-factory.org"
  768. },
  769. {
  770. "name": "Johannes Schmitt",
  771. "email": "schmittjoh@gmail.com"
  772. }
  773. ],
  774. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  775. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  776. "keywords": [
  777. "annotations",
  778. "docblock",
  779. "lexer",
  780. "parser",
  781. "php"
  782. ],
  783. "support": {
  784. "issues": "https://github.com/doctrine/lexer/issues",
  785. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  786. },
  787. "funding": [
  788. {
  789. "url": "https://www.doctrine-project.org/sponsorship.html",
  790. "type": "custom"
  791. },
  792. {
  793. "url": "https://www.patreon.com/phpdoctrine",
  794. "type": "patreon"
  795. },
  796. {
  797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  798. "type": "tidelift"
  799. }
  800. ],
  801. "time": "2020-05-25T17:44:05+00:00"
  802. },
  803. {
  804. "name": "dragonmantank/cron-expression",
  805. "version": "v2.3.1",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/dragonmantank/cron-expression.git",
  809. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "php": "^7.0|^8.0"
  825. },
  826. "require-dev": {
  827. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-master": "2.3-dev"
  833. }
  834. },
  835. "autoload": {
  836. "psr-4": {
  837. "Cron\\": "src/Cron/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Chris Tankersley",
  852. "email": "chris@ctankersley.com",
  853. "homepage": "https://github.com/dragonmantank"
  854. }
  855. ],
  856. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  857. "keywords": [
  858. "cron",
  859. "schedule"
  860. ],
  861. "support": {
  862. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  863. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  864. },
  865. "funding": [
  866. {
  867. "url": "https://github.com/dragonmantank",
  868. "type": "github"
  869. }
  870. ],
  871. "time": "2020-10-13T00:52:37+00:00"
  872. },
  873. {
  874. "name": "egulias/email-validator",
  875. "version": "2.1.25",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/egulias/EmailValidator.git",
  879. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  885. "shasum": "",
  886. "mirrors": [
  887. {
  888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  889. "preferred": true
  890. }
  891. ]
  892. },
  893. "require": {
  894. "doctrine/lexer": "^1.0.1",
  895. "php": ">=5.5",
  896. "symfony/polyfill-intl-idn": "^1.10"
  897. },
  898. "require-dev": {
  899. "dominicsayers/isemail": "^3.0.7",
  900. "phpunit/phpunit": "^4.8.36|^7.5.15",
  901. "satooshi/php-coveralls": "^1.0.1"
  902. },
  903. "suggest": {
  904. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "2.1.x-dev"
  910. }
  911. },
  912. "autoload": {
  913. "psr-4": {
  914. "Egulias\\EmailValidator\\": "src"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Eduardo Gulias Davis"
  924. }
  925. ],
  926. "description": "A library for validating emails against several RFCs",
  927. "homepage": "https://github.com/egulias/EmailValidator",
  928. "keywords": [
  929. "email",
  930. "emailvalidation",
  931. "emailvalidator",
  932. "validation",
  933. "validator"
  934. ],
  935. "support": {
  936. "issues": "https://github.com/egulias/EmailValidator/issues",
  937. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  938. },
  939. "funding": [
  940. {
  941. "url": "https://github.com/egulias",
  942. "type": "github"
  943. }
  944. ],
  945. "time": "2020-12-29T14:50:06+00:00"
  946. },
  947. {
  948. "name": "endroid/qr-code",
  949. "version": "3.9.7",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/endroid/qr-code.git",
  953. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "bacon/bacon-qr-code": "^2.0",
  969. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  970. "myclabs/php-enum": "^1.5",
  971. "php": "^7.3||^8.0",
  972. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  973. "symfony/property-access": "^3.4||^4.4||^5.0"
  974. },
  975. "require-dev": {
  976. "endroid/quality": "^1.5.2",
  977. "setasign/fpdf": "^1.8"
  978. },
  979. "suggest": {
  980. "ext-gd": "Required for generating PNG images",
  981. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  982. "setasign/fpdf": "Required to use the FPDF writer.",
  983. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "3.x-dev"
  989. }
  990. },
  991. "autoload": {
  992. "psr-4": {
  993. "Endroid\\QrCode\\": "src/"
  994. }
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Jeroen van den Enden",
  1003. "email": "info@endroid.nl"
  1004. }
  1005. ],
  1006. "description": "Endroid QR Code",
  1007. "homepage": "https://github.com/endroid/qr-code",
  1008. "keywords": [
  1009. "bundle",
  1010. "code",
  1011. "endroid",
  1012. "php",
  1013. "qr",
  1014. "qrcode"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/endroid/qr-code/issues",
  1018. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1019. },
  1020. "funding": [
  1021. {
  1022. "url": "https://github.com/endroid",
  1023. "type": "github"
  1024. }
  1025. ],
  1026. "time": "2021-04-20T19:10:54+00:00"
  1027. },
  1028. {
  1029. "name": "ezyang/htmlpurifier",
  1030. "version": "v4.13.0",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/ezyang/htmlpurifier.git",
  1034. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1039. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1040. "shasum": "",
  1041. "mirrors": [
  1042. {
  1043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1044. "preferred": true
  1045. }
  1046. ]
  1047. },
  1048. "require": {
  1049. "php": ">=5.2"
  1050. },
  1051. "require-dev": {
  1052. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-0": {
  1057. "HTMLPurifier": "library/"
  1058. },
  1059. "files": [
  1060. "library/HTMLPurifier.composer.php"
  1061. ],
  1062. "exclude-from-classmap": [
  1063. "/library/HTMLPurifier/Language/"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "LGPL-2.1-or-later"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Edward Z. Yang",
  1073. "email": "admin@htmlpurifier.org",
  1074. "homepage": "http://ezyang.com"
  1075. }
  1076. ],
  1077. "description": "Standards compliant HTML filter written in PHP",
  1078. "homepage": "http://htmlpurifier.org/",
  1079. "keywords": [
  1080. "html"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1084. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1085. },
  1086. "time": "2020-06-29T00:56:53+00:00"
  1087. },
  1088. {
  1089. "name": "facade/flare-client-php",
  1090. "version": "1.8.1",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/facade/flare-client-php.git",
  1094. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1099. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1100. "shasum": "",
  1101. "mirrors": [
  1102. {
  1103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1104. "preferred": true
  1105. }
  1106. ]
  1107. },
  1108. "require": {
  1109. "facade/ignition-contracts": "~1.0",
  1110. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1111. "php": "^7.1|^8.0",
  1112. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1113. "symfony/mime": "^3.4|^4.0|^5.1",
  1114. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1115. },
  1116. "require-dev": {
  1117. "friendsofphp/php-cs-fixer": "^2.14",
  1118. "phpunit/phpunit": "^7.5.16",
  1119. "spatie/phpunit-snapshot-assertions": "^2.0"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "1.0-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Facade\\FlareClient\\": "src"
  1130. },
  1131. "files": [
  1132. "src/helpers.php"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "description": "Send PHP errors to Flare",
  1140. "homepage": "https://github.com/facade/flare-client-php",
  1141. "keywords": [
  1142. "exception",
  1143. "facade",
  1144. "flare",
  1145. "reporting"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/facade/flare-client-php/issues",
  1149. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://github.com/spatie",
  1154. "type": "github"
  1155. }
  1156. ],
  1157. "time": "2021-05-31T19:23:29+00:00"
  1158. },
  1159. {
  1160. "name": "facade/ignition",
  1161. "version": "2.10.2",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/facade/ignition.git",
  1165. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1170. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1171. "shasum": "",
  1172. "mirrors": [
  1173. {
  1174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1175. "preferred": true
  1176. }
  1177. ]
  1178. },
  1179. "require": {
  1180. "ext-json": "*",
  1181. "ext-mbstring": "*",
  1182. "facade/flare-client-php": "^1.6",
  1183. "facade/ignition-contracts": "^1.0.2",
  1184. "filp/whoops": "^2.4",
  1185. "illuminate/support": "^7.0|^8.0",
  1186. "monolog/monolog": "^2.0",
  1187. "php": "^7.2.5|^8.0",
  1188. "symfony/console": "^5.0",
  1189. "symfony/var-dumper": "^5.0"
  1190. },
  1191. "require-dev": {
  1192. "friendsofphp/php-cs-fixer": "^2.14",
  1193. "mockery/mockery": "^1.3",
  1194. "orchestra/testbench": "^5.0|^6.0",
  1195. "psalm/plugin-laravel": "^1.2"
  1196. },
  1197. "suggest": {
  1198. "laravel/telescope": "^3.1"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "2.x-dev"
  1204. },
  1205. "laravel": {
  1206. "providers": [
  1207. "Facade\\Ignition\\IgnitionServiceProvider"
  1208. ],
  1209. "aliases": {
  1210. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1211. }
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Facade\\Ignition\\": "src"
  1217. },
  1218. "files": [
  1219. "src/helpers.php"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "A beautiful error page for Laravel applications.",
  1227. "homepage": "https://github.com/facade/ignition",
  1228. "keywords": [
  1229. "error",
  1230. "flare",
  1231. "laravel",
  1232. "page"
  1233. ],
  1234. "support": {
  1235. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1236. "forum": "https://twitter.com/flareappio",
  1237. "issues": "https://github.com/facade/ignition/issues",
  1238. "source": "https://github.com/facade/ignition"
  1239. },
  1240. "time": "2021-06-11T06:57:25+00:00"
  1241. },
  1242. {
  1243. "name": "facade/ignition-contracts",
  1244. "version": "1.0.2",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/facade/ignition-contracts.git",
  1248. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1254. "shasum": "",
  1255. "mirrors": [
  1256. {
  1257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1258. "preferred": true
  1259. }
  1260. ]
  1261. },
  1262. "require": {
  1263. "php": "^7.3|^8.0"
  1264. },
  1265. "require-dev": {
  1266. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1267. "phpunit/phpunit": "^9.3.11",
  1268. "vimeo/psalm": "^3.17.1"
  1269. },
  1270. "type": "library",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Facade\\IgnitionContracts\\": "src"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Freek Van der Herten",
  1283. "email": "freek@spatie.be",
  1284. "homepage": "https://flareapp.io",
  1285. "role": "Developer"
  1286. }
  1287. ],
  1288. "description": "Solution contracts for Ignition",
  1289. "homepage": "https://github.com/facade/ignition-contracts",
  1290. "keywords": [
  1291. "contracts",
  1292. "flare",
  1293. "ignition"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/facade/ignition-contracts/issues",
  1297. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1298. },
  1299. "time": "2020-10-16T08:27:54+00:00"
  1300. },
  1301. {
  1302. "name": "fideloper/proxy",
  1303. "version": "4.4.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/fideloper/TrustedProxy.git",
  1307. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1323. "php": ">=5.4.0"
  1324. },
  1325. "require-dev": {
  1326. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "mockery/mockery": "^1.0",
  1328. "phpunit/phpunit": "^6.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "laravel": {
  1333. "providers": [
  1334. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1335. ]
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Fideloper\\Proxy\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Chris Fidao",
  1350. "email": "fideloper@gmail.com"
  1351. }
  1352. ],
  1353. "description": "Set trusted proxies for Laravel",
  1354. "keywords": [
  1355. "load balancing",
  1356. "proxy",
  1357. "trusted proxy"
  1358. ],
  1359. "support": {
  1360. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1361. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1362. },
  1363. "time": "2020-10-22T13:48:01+00:00"
  1364. },
  1365. {
  1366. "name": "filp/whoops",
  1367. "version": "2.13.0",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/filp/whoops.git",
  1371. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  1376. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  1377. "shasum": "",
  1378. "mirrors": [
  1379. {
  1380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1381. "preferred": true
  1382. }
  1383. ]
  1384. },
  1385. "require": {
  1386. "php": "^5.5.9 || ^7.0 || ^8.0",
  1387. "psr/log": "^1.0.1"
  1388. },
  1389. "require-dev": {
  1390. "mockery/mockery": "^0.9 || ^1.0",
  1391. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1392. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1393. },
  1394. "suggest": {
  1395. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1396. "whoops/soap": "Formats errors as SOAP responses"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "2.7-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Whoops\\": "src/Whoops/"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Filipe Dobreira",
  1416. "homepage": "https://github.com/filp",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "php error handling for cool kids",
  1421. "homepage": "https://filp.github.io/whoops/",
  1422. "keywords": [
  1423. "error",
  1424. "exception",
  1425. "handling",
  1426. "library",
  1427. "throwable",
  1428. "whoops"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/filp/whoops/issues",
  1432. "source": "https://github.com/filp/whoops/tree/2.13.0"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/denis-sokolov",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2021-06-04T12:00:00+00:00"
  1441. },
  1442. {
  1443. "name": "firebase/php-jwt",
  1444. "version": "v5.4.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/firebase/php-jwt.git",
  1448. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1453. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=5.3.0"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": ">=4.8 <=9"
  1467. },
  1468. "suggest": {
  1469. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Firebase\\JWT\\": "src"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "BSD-3-Clause"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Neuman Vong",
  1484. "email": "neuman+pear@twilio.com",
  1485. "role": "Developer"
  1486. },
  1487. {
  1488. "name": "Anant Narayanan",
  1489. "email": "anant@php.net",
  1490. "role": "Developer"
  1491. }
  1492. ],
  1493. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1494. "homepage": "https://github.com/firebase/php-jwt",
  1495. "keywords": [
  1496. "jwt",
  1497. "php"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/firebase/php-jwt/issues",
  1501. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1502. },
  1503. "time": "2021-06-23T19:00:23+00:00"
  1504. },
  1505. {
  1506. "name": "guzzlehttp/guzzle",
  1507. "version": "6.5.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/guzzle/guzzle.git",
  1511. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1516. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "ext-json": "*",
  1527. "guzzlehttp/promises": "^1.0",
  1528. "guzzlehttp/psr7": "^1.6.1",
  1529. "php": ">=5.5",
  1530. "symfony/polyfill-intl-idn": "^1.17.0"
  1531. },
  1532. "require-dev": {
  1533. "ext-curl": "*",
  1534. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1535. "psr/log": "^1.1"
  1536. },
  1537. "suggest": {
  1538. "psr/log": "Required for using the Log middleware"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "branch-alias": {
  1543. "dev-master": "6.5-dev"
  1544. }
  1545. },
  1546. "autoload": {
  1547. "psr-4": {
  1548. "GuzzleHttp\\": "src/"
  1549. },
  1550. "files": [
  1551. "src/functions_include.php"
  1552. ]
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Michael Dowling",
  1561. "email": "mtdowling@gmail.com",
  1562. "homepage": "https://github.com/mtdowling"
  1563. }
  1564. ],
  1565. "description": "Guzzle is a PHP HTTP client library",
  1566. "homepage": "http://guzzlephp.org/",
  1567. "keywords": [
  1568. "client",
  1569. "curl",
  1570. "framework",
  1571. "http",
  1572. "http client",
  1573. "rest",
  1574. "web service"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/guzzle/guzzle/issues",
  1578. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1579. },
  1580. "time": "2020-06-16T21:01:06+00:00"
  1581. },
  1582. {
  1583. "name": "guzzlehttp/promises",
  1584. "version": "1.4.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/guzzle/promises.git",
  1588. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1593. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1594. "shasum": "",
  1595. "mirrors": [
  1596. {
  1597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1598. "preferred": true
  1599. }
  1600. ]
  1601. },
  1602. "require": {
  1603. "php": ">=5.5"
  1604. },
  1605. "require-dev": {
  1606. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.4-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "GuzzleHttp\\Promise\\": "src/"
  1617. },
  1618. "files": [
  1619. "src/functions_include.php"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Michael Dowling",
  1629. "email": "mtdowling@gmail.com",
  1630. "homepage": "https://github.com/mtdowling"
  1631. }
  1632. ],
  1633. "description": "Guzzle promises library",
  1634. "keywords": [
  1635. "promise"
  1636. ],
  1637. "support": {
  1638. "issues": "https://github.com/guzzle/promises/issues",
  1639. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1640. },
  1641. "time": "2021-03-07T09:25:29+00:00"
  1642. },
  1643. {
  1644. "name": "guzzlehttp/psr7",
  1645. "version": "1.8.2",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/guzzle/psr7.git",
  1649. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1654. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "php": ">=5.4.0",
  1665. "psr/http-message": "~1.0",
  1666. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1667. },
  1668. "provide": {
  1669. "psr/http-message-implementation": "1.0"
  1670. },
  1671. "require-dev": {
  1672. "ext-zlib": "*",
  1673. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1674. },
  1675. "suggest": {
  1676. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "1.7-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "GuzzleHttp\\Psr7\\": "src/"
  1687. },
  1688. "files": [
  1689. "src/functions_include.php"
  1690. ]
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "Michael Dowling",
  1699. "email": "mtdowling@gmail.com",
  1700. "homepage": "https://github.com/mtdowling"
  1701. },
  1702. {
  1703. "name": "Tobias Schultze",
  1704. "homepage": "https://github.com/Tobion"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1721. },
  1722. "time": "2021-04-26T09:17:50+00:00"
  1723. },
  1724. {
  1725. "name": "intervention/image",
  1726. "version": "2.5.1",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/Intervention/image.git",
  1730. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1735. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1736. "shasum": "",
  1737. "mirrors": [
  1738. {
  1739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1740. "preferred": true
  1741. }
  1742. ]
  1743. },
  1744. "require": {
  1745. "ext-fileinfo": "*",
  1746. "guzzlehttp/psr7": "~1.1",
  1747. "php": ">=5.4.0"
  1748. },
  1749. "require-dev": {
  1750. "mockery/mockery": "~0.9.2",
  1751. "phpunit/phpunit": "^4.8 || ^5.7"
  1752. },
  1753. "suggest": {
  1754. "ext-gd": "to use GD library based image processing.",
  1755. "ext-imagick": "to use Imagick based image processing.",
  1756. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "2.4-dev"
  1762. },
  1763. "laravel": {
  1764. "providers": [
  1765. "Intervention\\Image\\ImageServiceProvider"
  1766. ],
  1767. "aliases": {
  1768. "Image": "Intervention\\Image\\Facades\\Image"
  1769. }
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Intervention\\Image\\": "src/Intervention/Image"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Oliver Vogel",
  1784. "email": "oliver@olivervogel.com",
  1785. "homepage": "http://olivervogel.com/"
  1786. }
  1787. ],
  1788. "description": "Image handling and manipulation library with support for Laravel integration",
  1789. "homepage": "http://image.intervention.io/",
  1790. "keywords": [
  1791. "gd",
  1792. "image",
  1793. "imagick",
  1794. "laravel",
  1795. "thumbnail",
  1796. "watermark"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/Intervention/image/issues",
  1800. "source": "https://github.com/Intervention/image/tree/master"
  1801. },
  1802. "time": "2019-11-02T09:15:47+00:00"
  1803. },
  1804. {
  1805. "name": "khanamiryan/qrcode-detector-decoder",
  1806. "version": "1.0.5.1",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1810. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1815. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1816. "shasum": "",
  1817. "mirrors": [
  1818. {
  1819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1820. "preferred": true
  1821. }
  1822. ]
  1823. },
  1824. "require": {
  1825. "php": ">=5.6"
  1826. },
  1827. "require-dev": {
  1828. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Zxing\\": "lib/"
  1834. },
  1835. "files": [
  1836. "lib/Common/customFunctions.php"
  1837. ]
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT",
  1842. "Apache-2.0"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Ashot Khanamiryan",
  1847. "email": "a.khanamiryan@gmail.com",
  1848. "homepage": "https://github.com/khanamiryan",
  1849. "role": "Developer"
  1850. }
  1851. ],
  1852. "description": "QR code decoder / reader",
  1853. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1854. "keywords": [
  1855. "barcode",
  1856. "qr",
  1857. "zxing"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1861. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1862. },
  1863. "time": "2021-04-21T08:02:08+00:00"
  1864. },
  1865. {
  1866. "name": "kitetail/zttp",
  1867. "version": "v0.6.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/kitetail/zttp.git",
  1871. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1876. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "guzzlehttp/guzzle": "^6.0",
  1887. "php": ">=7.0",
  1888. "tightenco/collect": "^5.4"
  1889. },
  1890. "require-dev": {
  1891. "laravel/lumen-framework": "5.5.*",
  1892. "phpunit/phpunit": "^6.0"
  1893. },
  1894. "type": "library",
  1895. "autoload": {
  1896. "files": [
  1897. "src/Zttp.php"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "MIT"
  1903. ],
  1904. "authors": [
  1905. {
  1906. "name": "Adam Wathan",
  1907. "email": "adam.wathan@gmail.com"
  1908. }
  1909. ],
  1910. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1911. "keywords": [
  1912. "Guzzle",
  1913. "http"
  1914. ],
  1915. "support": {
  1916. "issues": "https://github.com/kitetail/zttp/issues",
  1917. "source": "https://github.com/kitetail/zttp/tree/master"
  1918. },
  1919. "time": "2019-06-10T12:18:52+00:00"
  1920. },
  1921. {
  1922. "name": "laravel/framework",
  1923. "version": "v7.30.4",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/laravel/framework.git",
  1927. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1932. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "doctrine/inflector": "^1.4|^2.0",
  1943. "dragonmantank/cron-expression": "^2.3.1",
  1944. "egulias/email-validator": "^2.1.10",
  1945. "ext-json": "*",
  1946. "ext-mbstring": "*",
  1947. "ext-openssl": "*",
  1948. "league/commonmark": "^1.3",
  1949. "league/flysystem": "^1.1",
  1950. "monolog/monolog": "^2.0",
  1951. "nesbot/carbon": "^2.31",
  1952. "opis/closure": "^3.6",
  1953. "php": "^7.2.5|^8.0",
  1954. "psr/container": "^1.0",
  1955. "psr/simple-cache": "^1.0",
  1956. "ramsey/uuid": "^3.7|^4.0",
  1957. "swiftmailer/swiftmailer": "^6.0",
  1958. "symfony/console": "^5.0",
  1959. "symfony/error-handler": "^5.0",
  1960. "symfony/finder": "^5.0",
  1961. "symfony/http-foundation": "^5.0",
  1962. "symfony/http-kernel": "^5.0",
  1963. "symfony/mime": "^5.0",
  1964. "symfony/polyfill-php73": "^1.17",
  1965. "symfony/process": "^5.0",
  1966. "symfony/routing": "^5.0",
  1967. "symfony/var-dumper": "^5.0",
  1968. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1969. "vlucas/phpdotenv": "^4.0",
  1970. "voku/portable-ascii": "^1.4.8"
  1971. },
  1972. "conflict": {
  1973. "tightenco/collect": "<5.5.33"
  1974. },
  1975. "provide": {
  1976. "psr/container-implementation": "1.0"
  1977. },
  1978. "replace": {
  1979. "illuminate/auth": "self.version",
  1980. "illuminate/broadcasting": "self.version",
  1981. "illuminate/bus": "self.version",
  1982. "illuminate/cache": "self.version",
  1983. "illuminate/config": "self.version",
  1984. "illuminate/console": "self.version",
  1985. "illuminate/container": "self.version",
  1986. "illuminate/contracts": "self.version",
  1987. "illuminate/cookie": "self.version",
  1988. "illuminate/database": "self.version",
  1989. "illuminate/encryption": "self.version",
  1990. "illuminate/events": "self.version",
  1991. "illuminate/filesystem": "self.version",
  1992. "illuminate/hashing": "self.version",
  1993. "illuminate/http": "self.version",
  1994. "illuminate/log": "self.version",
  1995. "illuminate/mail": "self.version",
  1996. "illuminate/notifications": "self.version",
  1997. "illuminate/pagination": "self.version",
  1998. "illuminate/pipeline": "self.version",
  1999. "illuminate/queue": "self.version",
  2000. "illuminate/redis": "self.version",
  2001. "illuminate/routing": "self.version",
  2002. "illuminate/session": "self.version",
  2003. "illuminate/support": "self.version",
  2004. "illuminate/testing": "self.version",
  2005. "illuminate/translation": "self.version",
  2006. "illuminate/validation": "self.version",
  2007. "illuminate/view": "self.version"
  2008. },
  2009. "require-dev": {
  2010. "aws/aws-sdk-php": "^3.155",
  2011. "doctrine/dbal": "^2.6",
  2012. "filp/whoops": "^2.8",
  2013. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2014. "league/flysystem-cached-adapter": "^1.0",
  2015. "mockery/mockery": "~1.3.3|^1.4.2",
  2016. "moontoast/math": "^1.1",
  2017. "orchestra/testbench-core": "^5.8",
  2018. "pda/pheanstalk": "^4.0",
  2019. "phpunit/phpunit": "^8.4|^9.3.3",
  2020. "predis/predis": "^1.1.1",
  2021. "symfony/cache": "^5.0"
  2022. },
  2023. "suggest": {
  2024. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2025. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2026. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2027. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2028. "ext-memcached": "Required to use the memcache cache driver.",
  2029. "ext-pcntl": "Required to use all features of the queue worker.",
  2030. "ext-posix": "Required to use all features of the queue worker.",
  2031. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2032. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2033. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2034. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2035. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2036. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2037. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2038. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2039. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2040. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2041. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2042. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2043. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2044. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2045. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2046. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2047. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2048. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2049. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2050. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "7.x-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "files": [
  2060. "src/Illuminate/Foundation/helpers.php",
  2061. "src/Illuminate/Support/helpers.php"
  2062. ],
  2063. "psr-4": {
  2064. "Illuminate\\": "src/Illuminate/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Taylor Otwell",
  2074. "email": "taylor@laravel.com"
  2075. }
  2076. ],
  2077. "description": "The Laravel Framework.",
  2078. "homepage": "https://laravel.com",
  2079. "keywords": [
  2080. "framework",
  2081. "laravel"
  2082. ],
  2083. "support": {
  2084. "issues": "https://github.com/laravel/framework/issues",
  2085. "source": "https://github.com/laravel/framework"
  2086. },
  2087. "time": "2021-01-21T14:10:48+00:00"
  2088. },
  2089. {
  2090. "name": "laravel/horizon",
  2091. "version": "v4.3.5",
  2092. "source": {
  2093. "type": "git",
  2094. "url": "https://github.com/laravel/horizon.git",
  2095. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2096. },
  2097. "dist": {
  2098. "type": "zip",
  2099. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2100. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2101. "shasum": "",
  2102. "mirrors": [
  2103. {
  2104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2105. "preferred": true
  2106. }
  2107. ]
  2108. },
  2109. "require": {
  2110. "cakephp/chronos": "^2.0",
  2111. "ext-json": "*",
  2112. "ext-pcntl": "*",
  2113. "ext-posix": "*",
  2114. "illuminate/contracts": "^7.0",
  2115. "illuminate/queue": "^7.0",
  2116. "illuminate/support": "^7.0",
  2117. "php": "^7.2",
  2118. "ramsey/uuid": "^3.5|^4.0",
  2119. "symfony/error-handler": "^5.0",
  2120. "symfony/process": "^5.0"
  2121. },
  2122. "require-dev": {
  2123. "mockery/mockery": "^1.0",
  2124. "orchestra/testbench": "^5.0",
  2125. "phpunit/phpunit": "^8.0",
  2126. "predis/predis": "^1.1"
  2127. },
  2128. "suggest": {
  2129. "ext-redis": "Required to use the Redis PHP driver.",
  2130. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "4.x-dev"
  2136. },
  2137. "laravel": {
  2138. "providers": [
  2139. "Laravel\\Horizon\\HorizonServiceProvider"
  2140. ],
  2141. "aliases": {
  2142. "Horizon": "Laravel\\Horizon\\Horizon"
  2143. }
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Laravel\\Horizon\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Taylor Otwell",
  2158. "email": "taylor@laravel.com"
  2159. }
  2160. ],
  2161. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2162. "keywords": [
  2163. "laravel",
  2164. "queue"
  2165. ],
  2166. "support": {
  2167. "issues": "https://github.com/laravel/horizon/issues",
  2168. "source": "https://github.com/laravel/horizon/tree/4.x"
  2169. },
  2170. "time": "2020-09-08T13:19:23+00:00"
  2171. },
  2172. {
  2173. "name": "laravel/tinker",
  2174. "version": "v2.6.1",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/laravel/tinker.git",
  2178. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2183. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2184. "shasum": "",
  2185. "mirrors": [
  2186. {
  2187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2188. "preferred": true
  2189. }
  2190. ]
  2191. },
  2192. "require": {
  2193. "illuminate/console": "^6.0|^7.0|^8.0",
  2194. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2195. "illuminate/support": "^6.0|^7.0|^8.0",
  2196. "php": "^7.2.5|^8.0",
  2197. "psy/psysh": "^0.10.4",
  2198. "symfony/var-dumper": "^4.3.4|^5.0"
  2199. },
  2200. "require-dev": {
  2201. "mockery/mockery": "~1.3.3|^1.4.2",
  2202. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2203. },
  2204. "suggest": {
  2205. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "branch-alias": {
  2210. "dev-master": "2.x-dev"
  2211. },
  2212. "laravel": {
  2213. "providers": [
  2214. "Laravel\\Tinker\\TinkerServiceProvider"
  2215. ]
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Laravel\\Tinker\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Taylor Otwell",
  2230. "email": "taylor@laravel.com"
  2231. }
  2232. ],
  2233. "description": "Powerful REPL for the Laravel framework.",
  2234. "keywords": [
  2235. "REPL",
  2236. "Tinker",
  2237. "laravel",
  2238. "psysh"
  2239. ],
  2240. "support": {
  2241. "issues": "https://github.com/laravel/tinker/issues",
  2242. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2243. },
  2244. "time": "2021-03-02T16:53:12+00:00"
  2245. },
  2246. {
  2247. "name": "laravel/ui",
  2248. "version": "v2.5.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/laravel/ui.git",
  2252. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2257. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "illuminate/console": "^7.0",
  2268. "illuminate/filesystem": "^7.0",
  2269. "illuminate/support": "^7.0",
  2270. "php": "^7.2.5|^8.0"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "laravel": {
  2275. "providers": [
  2276. "Laravel\\Ui\\UiServiceProvider"
  2277. ]
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Laravel\\Ui\\": "src/",
  2283. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Taylor Otwell",
  2293. "email": "taylor@laravel.com"
  2294. }
  2295. ],
  2296. "description": "Laravel UI utilities and presets.",
  2297. "keywords": [
  2298. "laravel",
  2299. "ui"
  2300. ],
  2301. "support": {
  2302. "issues": "https://github.com/laravel/ui/issues",
  2303. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2304. },
  2305. "time": "2020-11-03T19:45:19+00:00"
  2306. },
  2307. {
  2308. "name": "league/commonmark",
  2309. "version": "1.6.4",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/thephpleague/commonmark.git",
  2313. "reference": "c3c8b7217c52572fb42aaf84211abccf75a151b2"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c3c8b7217c52572fb42aaf84211abccf75a151b2",
  2318. "reference": "c3c8b7217c52572fb42aaf84211abccf75a151b2",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "ext-mbstring": "*",
  2329. "php": "^7.1 || ^8.0"
  2330. },
  2331. "conflict": {
  2332. "scrutinizer/ocular": "1.7.*"
  2333. },
  2334. "require-dev": {
  2335. "cebe/markdown": "~1.0",
  2336. "commonmark/commonmark.js": "0.29.2",
  2337. "erusev/parsedown": "~1.0",
  2338. "ext-json": "*",
  2339. "github/gfm": "0.29.0",
  2340. "michelf/php-markdown": "~1.4",
  2341. "mikehaertl/php-shellcommand": "^1.4",
  2342. "phpstan/phpstan": "^0.12.90",
  2343. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2344. "scrutinizer/ocular": "^1.5",
  2345. "symfony/finder": "^4.2"
  2346. },
  2347. "bin": [
  2348. "bin/commonmark"
  2349. ],
  2350. "type": "library",
  2351. "autoload": {
  2352. "psr-4": {
  2353. "League\\CommonMark\\": "src"
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "BSD-3-Clause"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Colin O'Dell",
  2363. "email": "colinodell@gmail.com",
  2364. "homepage": "https://www.colinodell.com",
  2365. "role": "Lead Developer"
  2366. }
  2367. ],
  2368. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2369. "homepage": "https://commonmark.thephpleague.com",
  2370. "keywords": [
  2371. "commonmark",
  2372. "flavored",
  2373. "gfm",
  2374. "github",
  2375. "github-flavored",
  2376. "markdown",
  2377. "md",
  2378. "parser"
  2379. ],
  2380. "support": {
  2381. "docs": "https://commonmark.thephpleague.com/",
  2382. "issues": "https://github.com/thephpleague/commonmark/issues",
  2383. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2384. "source": "https://github.com/thephpleague/commonmark"
  2385. },
  2386. "funding": [
  2387. {
  2388. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://www.colinodell.com/sponsor",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://www.paypal.me/colinpodell/10.00",
  2397. "type": "custom"
  2398. },
  2399. {
  2400. "url": "https://github.com/colinodell",
  2401. "type": "github"
  2402. },
  2403. {
  2404. "url": "https://www.patreon.com/colinodell",
  2405. "type": "patreon"
  2406. },
  2407. {
  2408. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2409. "type": "tidelift"
  2410. }
  2411. ],
  2412. "time": "2021-06-19T20:08:14+00:00"
  2413. },
  2414. {
  2415. "name": "league/flysystem",
  2416. "version": "1.1.4",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/thephpleague/flysystem.git",
  2420. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2425. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2426. "shasum": "",
  2427. "mirrors": [
  2428. {
  2429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2430. "preferred": true
  2431. }
  2432. ]
  2433. },
  2434. "require": {
  2435. "ext-fileinfo": "*",
  2436. "league/mime-type-detection": "^1.3",
  2437. "php": "^7.2.5 || ^8.0"
  2438. },
  2439. "conflict": {
  2440. "league/flysystem-sftp": "<1.0.6"
  2441. },
  2442. "require-dev": {
  2443. "phpspec/prophecy": "^1.11.1",
  2444. "phpunit/phpunit": "^8.5.8"
  2445. },
  2446. "suggest": {
  2447. "ext-ftp": "Allows you to use FTP server storage",
  2448. "ext-openssl": "Allows you to use FTPS server storage",
  2449. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2450. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2451. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2452. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2453. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2454. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2455. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2456. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2457. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2458. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2459. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2460. },
  2461. "type": "library",
  2462. "extra": {
  2463. "branch-alias": {
  2464. "dev-master": "1.1-dev"
  2465. }
  2466. },
  2467. "autoload": {
  2468. "psr-4": {
  2469. "League\\Flysystem\\": "src/"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Frank de Jonge",
  2479. "email": "info@frenky.net"
  2480. }
  2481. ],
  2482. "description": "Filesystem abstraction: Many filesystems, one API.",
  2483. "keywords": [
  2484. "Cloud Files",
  2485. "WebDAV",
  2486. "abstraction",
  2487. "aws",
  2488. "cloud",
  2489. "copy.com",
  2490. "dropbox",
  2491. "file systems",
  2492. "files",
  2493. "filesystem",
  2494. "filesystems",
  2495. "ftp",
  2496. "rackspace",
  2497. "remote",
  2498. "s3",
  2499. "sftp",
  2500. "storage"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/thephpleague/flysystem/issues",
  2504. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://offset.earth/frankdejonge",
  2509. "type": "other"
  2510. }
  2511. ],
  2512. "time": "2021-06-23T21:56:05+00:00"
  2513. },
  2514. {
  2515. "name": "league/mime-type-detection",
  2516. "version": "1.7.0",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2520. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2525. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2526. "shasum": "",
  2527. "mirrors": [
  2528. {
  2529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2530. "preferred": true
  2531. }
  2532. ]
  2533. },
  2534. "require": {
  2535. "ext-fileinfo": "*",
  2536. "php": "^7.2 || ^8.0"
  2537. },
  2538. "require-dev": {
  2539. "friendsofphp/php-cs-fixer": "^2.18",
  2540. "phpstan/phpstan": "^0.12.68",
  2541. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2542. },
  2543. "type": "library",
  2544. "autoload": {
  2545. "psr-4": {
  2546. "League\\MimeTypeDetection\\": "src"
  2547. }
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Frank de Jonge",
  2556. "email": "info@frankdejonge.nl"
  2557. }
  2558. ],
  2559. "description": "Mime-type detection for Flysystem",
  2560. "support": {
  2561. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2562. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://github.com/frankdejonge",
  2567. "type": "github"
  2568. },
  2569. {
  2570. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2571. "type": "tidelift"
  2572. }
  2573. ],
  2574. "time": "2021-01-18T20:58:21+00:00"
  2575. },
  2576. {
  2577. "name": "maatwebsite/excel",
  2578. "version": "3.1.31",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2582. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2587. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2588. "shasum": "",
  2589. "mirrors": [
  2590. {
  2591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2592. "preferred": true
  2593. }
  2594. ]
  2595. },
  2596. "require": {
  2597. "ext-json": "*",
  2598. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2599. "php": "^7.0|^8.0",
  2600. "phpoffice/phpspreadsheet": "^1.18"
  2601. },
  2602. "require-dev": {
  2603. "orchestra/testbench": "^6.0",
  2604. "predis/predis": "^1.1"
  2605. },
  2606. "type": "library",
  2607. "extra": {
  2608. "laravel": {
  2609. "providers": [
  2610. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2611. ],
  2612. "aliases": {
  2613. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2614. }
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Maatwebsite\\Excel\\": "src/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Patrick Brouwers",
  2629. "email": "patrick@maatwebsite.nl"
  2630. }
  2631. ],
  2632. "description": "Supercharged Excel exports and imports in Laravel",
  2633. "keywords": [
  2634. "PHPExcel",
  2635. "batch",
  2636. "csv",
  2637. "excel",
  2638. "export",
  2639. "import",
  2640. "laravel",
  2641. "php",
  2642. "phpspreadsheet"
  2643. ],
  2644. "support": {
  2645. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2646. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.31"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://laravel-excel.com/commercial-support",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://github.com/patrickbrouwers",
  2655. "type": "github"
  2656. }
  2657. ],
  2658. "time": "2021-06-02T17:31:29+00:00"
  2659. },
  2660. {
  2661. "name": "maennchen/zipstream-php",
  2662. "version": "2.1.0",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2666. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2671. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2672. "shasum": "",
  2673. "mirrors": [
  2674. {
  2675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2676. "preferred": true
  2677. }
  2678. ]
  2679. },
  2680. "require": {
  2681. "myclabs/php-enum": "^1.5",
  2682. "php": ">= 7.1",
  2683. "psr/http-message": "^1.0",
  2684. "symfony/polyfill-mbstring": "^1.0"
  2685. },
  2686. "require-dev": {
  2687. "ext-zip": "*",
  2688. "guzzlehttp/guzzle": ">= 6.3",
  2689. "mikey179/vfsstream": "^1.6",
  2690. "phpunit/phpunit": ">= 7.5"
  2691. },
  2692. "type": "library",
  2693. "autoload": {
  2694. "psr-4": {
  2695. "ZipStream\\": "src/"
  2696. }
  2697. },
  2698. "notification-url": "https://packagist.org/downloads/",
  2699. "license": [
  2700. "MIT"
  2701. ],
  2702. "authors": [
  2703. {
  2704. "name": "Paul Duncan",
  2705. "email": "pabs@pablotron.org"
  2706. },
  2707. {
  2708. "name": "Jonatan Männchen",
  2709. "email": "jonatan@maennchen.ch"
  2710. },
  2711. {
  2712. "name": "Jesse Donat",
  2713. "email": "donatj@gmail.com"
  2714. },
  2715. {
  2716. "name": "András Kolesár",
  2717. "email": "kolesar@kolesar.hu"
  2718. }
  2719. ],
  2720. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2721. "keywords": [
  2722. "stream",
  2723. "zip"
  2724. ],
  2725. "support": {
  2726. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2727. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2728. },
  2729. "funding": [
  2730. {
  2731. "url": "https://opencollective.com/zipstream",
  2732. "type": "open_collective"
  2733. }
  2734. ],
  2735. "time": "2020-05-30T13:11:16+00:00"
  2736. },
  2737. {
  2738. "name": "markbaker/complex",
  2739. "version": "2.0.3",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2743. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2748. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2749. "shasum": "",
  2750. "mirrors": [
  2751. {
  2752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2753. "preferred": true
  2754. }
  2755. ]
  2756. },
  2757. "require": {
  2758. "php": "^7.2 || ^8.0"
  2759. },
  2760. "require-dev": {
  2761. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2762. "phpcompatibility/php-compatibility": "^9.0",
  2763. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2764. "squizlabs/php_codesniffer": "^3.4"
  2765. },
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Complex\\": "classes/src/"
  2770. },
  2771. "files": [
  2772. "classes/src/functions/abs.php",
  2773. "classes/src/functions/acos.php",
  2774. "classes/src/functions/acosh.php",
  2775. "classes/src/functions/acot.php",
  2776. "classes/src/functions/acoth.php",
  2777. "classes/src/functions/acsc.php",
  2778. "classes/src/functions/acsch.php",
  2779. "classes/src/functions/argument.php",
  2780. "classes/src/functions/asec.php",
  2781. "classes/src/functions/asech.php",
  2782. "classes/src/functions/asin.php",
  2783. "classes/src/functions/asinh.php",
  2784. "classes/src/functions/atan.php",
  2785. "classes/src/functions/atanh.php",
  2786. "classes/src/functions/conjugate.php",
  2787. "classes/src/functions/cos.php",
  2788. "classes/src/functions/cosh.php",
  2789. "classes/src/functions/cot.php",
  2790. "classes/src/functions/coth.php",
  2791. "classes/src/functions/csc.php",
  2792. "classes/src/functions/csch.php",
  2793. "classes/src/functions/exp.php",
  2794. "classes/src/functions/inverse.php",
  2795. "classes/src/functions/ln.php",
  2796. "classes/src/functions/log2.php",
  2797. "classes/src/functions/log10.php",
  2798. "classes/src/functions/negative.php",
  2799. "classes/src/functions/pow.php",
  2800. "classes/src/functions/rho.php",
  2801. "classes/src/functions/sec.php",
  2802. "classes/src/functions/sech.php",
  2803. "classes/src/functions/sin.php",
  2804. "classes/src/functions/sinh.php",
  2805. "classes/src/functions/sqrt.php",
  2806. "classes/src/functions/tan.php",
  2807. "classes/src/functions/tanh.php",
  2808. "classes/src/functions/theta.php",
  2809. "classes/src/operations/add.php",
  2810. "classes/src/operations/subtract.php",
  2811. "classes/src/operations/multiply.php",
  2812. "classes/src/operations/divideby.php",
  2813. "classes/src/operations/divideinto.php"
  2814. ]
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Mark Baker",
  2823. "email": "mark@lange.demon.co.uk"
  2824. }
  2825. ],
  2826. "description": "PHP Class for working with complex numbers",
  2827. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2828. "keywords": [
  2829. "complex",
  2830. "mathematics"
  2831. ],
  2832. "support": {
  2833. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2834. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2835. },
  2836. "time": "2021-06-02T09:44:11+00:00"
  2837. },
  2838. {
  2839. "name": "markbaker/matrix",
  2840. "version": "2.1.3",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2844. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2849. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2850. "shasum": "",
  2851. "mirrors": [
  2852. {
  2853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2854. "preferred": true
  2855. }
  2856. ]
  2857. },
  2858. "require": {
  2859. "php": "^7.1 || ^8.0"
  2860. },
  2861. "require-dev": {
  2862. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2863. "phpcompatibility/php-compatibility": "^9.0",
  2864. "phpdocumentor/phpdocumentor": "2.*",
  2865. "phploc/phploc": "^4.0",
  2866. "phpmd/phpmd": "2.*",
  2867. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2868. "sebastian/phpcpd": "^4.0",
  2869. "squizlabs/php_codesniffer": "^3.4"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Matrix\\": "classes/src/"
  2875. },
  2876. "files": [
  2877. "classes/src/Functions/adjoint.php",
  2878. "classes/src/Functions/antidiagonal.php",
  2879. "classes/src/Functions/cofactors.php",
  2880. "classes/src/Functions/determinant.php",
  2881. "classes/src/Functions/diagonal.php",
  2882. "classes/src/Functions/identity.php",
  2883. "classes/src/Functions/inverse.php",
  2884. "classes/src/Functions/minors.php",
  2885. "classes/src/Functions/trace.php",
  2886. "classes/src/Functions/transpose.php",
  2887. "classes/src/Operations/add.php",
  2888. "classes/src/Operations/directsum.php",
  2889. "classes/src/Operations/subtract.php",
  2890. "classes/src/Operations/multiply.php",
  2891. "classes/src/Operations/divideby.php",
  2892. "classes/src/Operations/divideinto.php"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Mark Baker",
  2902. "email": "mark@demon-angel.eu"
  2903. }
  2904. ],
  2905. "description": "PHP Class for working with matrices",
  2906. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2907. "keywords": [
  2908. "mathematics",
  2909. "matrix",
  2910. "vector"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2914. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2915. },
  2916. "time": "2021-05-25T15:42:17+00:00"
  2917. },
  2918. {
  2919. "name": "monolog/monolog",
  2920. "version": "2.2.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/Seldaek/monolog.git",
  2924. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2929. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2930. "shasum": "",
  2931. "mirrors": [
  2932. {
  2933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2934. "preferred": true
  2935. }
  2936. ]
  2937. },
  2938. "require": {
  2939. "php": ">=7.2",
  2940. "psr/log": "^1.0.1"
  2941. },
  2942. "provide": {
  2943. "psr/log-implementation": "1.0.0"
  2944. },
  2945. "require-dev": {
  2946. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2947. "doctrine/couchdb": "~1.0@dev",
  2948. "elasticsearch/elasticsearch": "^7",
  2949. "graylog2/gelf-php": "^1.4.2",
  2950. "mongodb/mongodb": "^1.8",
  2951. "php-amqplib/php-amqplib": "~2.4",
  2952. "php-console/php-console": "^3.1.3",
  2953. "phpspec/prophecy": "^1.6.1",
  2954. "phpstan/phpstan": "^0.12.59",
  2955. "phpunit/phpunit": "^8.5",
  2956. "predis/predis": "^1.1",
  2957. "rollbar/rollbar": "^1.3",
  2958. "ruflin/elastica": ">=0.90 <7.0.1",
  2959. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2960. },
  2961. "suggest": {
  2962. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2963. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2964. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2965. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2966. "ext-mbstring": "Allow to work properly with unicode symbols",
  2967. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2968. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2969. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2970. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2971. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2972. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2973. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-main": "2.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Monolog\\": "src/Monolog"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Jordi Boggiano",
  2993. "email": "j.boggiano@seld.be",
  2994. "homepage": "https://seld.be"
  2995. }
  2996. ],
  2997. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2998. "homepage": "https://github.com/Seldaek/monolog",
  2999. "keywords": [
  3000. "log",
  3001. "logging",
  3002. "psr-3"
  3003. ],
  3004. "support": {
  3005. "issues": "https://github.com/Seldaek/monolog/issues",
  3006. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://github.com/Seldaek",
  3011. "type": "github"
  3012. },
  3013. {
  3014. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3015. "type": "tidelift"
  3016. }
  3017. ],
  3018. "time": "2020-12-14T13:15:25+00:00"
  3019. },
  3020. {
  3021. "name": "myclabs/php-enum",
  3022. "version": "1.8.0",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/myclabs/php-enum.git",
  3026. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3031. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3032. "shasum": "",
  3033. "mirrors": [
  3034. {
  3035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3036. "preferred": true
  3037. }
  3038. ]
  3039. },
  3040. "require": {
  3041. "ext-json": "*",
  3042. "php": "^7.3 || ^8.0"
  3043. },
  3044. "require-dev": {
  3045. "phpunit/phpunit": "^9.5",
  3046. "squizlabs/php_codesniffer": "1.*",
  3047. "vimeo/psalm": "^4.5.1"
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "psr-4": {
  3052. "MyCLabs\\Enum\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP Enum contributors",
  3062. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3063. }
  3064. ],
  3065. "description": "PHP Enum implementation",
  3066. "homepage": "http://github.com/myclabs/php-enum",
  3067. "keywords": [
  3068. "enum"
  3069. ],
  3070. "support": {
  3071. "issues": "https://github.com/myclabs/php-enum/issues",
  3072. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://github.com/mnapoli",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3081. "type": "tidelift"
  3082. }
  3083. ],
  3084. "time": "2021-02-15T16:11:48+00:00"
  3085. },
  3086. {
  3087. "name": "nesbot/carbon",
  3088. "version": "2.49.0",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/briannesbitt/Carbon.git",
  3092. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  3097. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  3098. "shasum": "",
  3099. "mirrors": [
  3100. {
  3101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3102. "preferred": true
  3103. }
  3104. ]
  3105. },
  3106. "require": {
  3107. "ext-json": "*",
  3108. "php": "^7.1.8 || ^8.0",
  3109. "symfony/polyfill-mbstring": "^1.0",
  3110. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3111. },
  3112. "require-dev": {
  3113. "doctrine/orm": "^2.7",
  3114. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3115. "kylekatarnls/multi-tester": "^2.0",
  3116. "phpmd/phpmd": "^2.9",
  3117. "phpstan/extension-installer": "^1.0",
  3118. "phpstan/phpstan": "^0.12.54",
  3119. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3120. "squizlabs/php_codesniffer": "^3.4"
  3121. },
  3122. "bin": [
  3123. "bin/carbon"
  3124. ],
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "2.x-dev",
  3129. "dev-3.x": "3.x-dev"
  3130. },
  3131. "laravel": {
  3132. "providers": [
  3133. "Carbon\\Laravel\\ServiceProvider"
  3134. ]
  3135. },
  3136. "phpstan": {
  3137. "includes": [
  3138. "extension.neon"
  3139. ]
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Carbon\\": "src/Carbon/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Brian Nesbitt",
  3154. "email": "brian@nesbot.com",
  3155. "homepage": "http://nesbot.com"
  3156. },
  3157. {
  3158. "name": "kylekatarnls",
  3159. "homepage": "http://github.com/kylekatarnls"
  3160. }
  3161. ],
  3162. "description": "An API extension for DateTime that supports 281 different languages.",
  3163. "homepage": "http://carbon.nesbot.com",
  3164. "keywords": [
  3165. "date",
  3166. "datetime",
  3167. "time"
  3168. ],
  3169. "support": {
  3170. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3171. "source": "https://github.com/briannesbitt/Carbon"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://opencollective.com/Carbon",
  3176. "type": "open_collective"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2021-06-02T07:31:40+00:00"
  3184. },
  3185. {
  3186. "name": "nikic/php-parser",
  3187. "version": "v4.10.5",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/nikic/PHP-Parser.git",
  3191. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3196. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3197. "shasum": "",
  3198. "mirrors": [
  3199. {
  3200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3201. "preferred": true
  3202. }
  3203. ]
  3204. },
  3205. "require": {
  3206. "ext-tokenizer": "*",
  3207. "php": ">=7.0"
  3208. },
  3209. "require-dev": {
  3210. "ircmaxell/php-yacc": "^0.0.7",
  3211. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3212. },
  3213. "bin": [
  3214. "bin/php-parse"
  3215. ],
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "4.9-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "PhpParser\\": "lib/PhpParser"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "BSD-3-Clause"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nikita Popov"
  3234. }
  3235. ],
  3236. "description": "A PHP parser written in PHP",
  3237. "keywords": [
  3238. "parser",
  3239. "php"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3243. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3244. },
  3245. "time": "2021-05-03T19:11:20+00:00"
  3246. },
  3247. {
  3248. "name": "opis/closure",
  3249. "version": "3.6.2",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/opis/closure.git",
  3253. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3258. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  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. "php": "^5.4 || ^7.0 || ^8.0"
  3269. },
  3270. "require-dev": {
  3271. "jeremeamia/superclosure": "^2.0",
  3272. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3273. },
  3274. "type": "library",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-master": "3.6.x-dev"
  3278. }
  3279. },
  3280. "autoload": {
  3281. "psr-4": {
  3282. "Opis\\Closure\\": "src/"
  3283. },
  3284. "files": [
  3285. "functions.php"
  3286. ]
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Marius Sarca",
  3295. "email": "marius.sarca@gmail.com"
  3296. },
  3297. {
  3298. "name": "Sorin Sarca",
  3299. "email": "sarca_sorin@hotmail.com"
  3300. }
  3301. ],
  3302. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3303. "homepage": "https://opis.io/closure",
  3304. "keywords": [
  3305. "anonymous functions",
  3306. "closure",
  3307. "function",
  3308. "serializable",
  3309. "serialization",
  3310. "serialize"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/opis/closure/issues",
  3314. "source": "https://github.com/opis/closure/tree/3.6.2"
  3315. },
  3316. "time": "2021-04-09T13:42:10+00:00"
  3317. },
  3318. {
  3319. "name": "oursdreams/export",
  3320. "version": "0.0.7",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/oursdreams/export.git",
  3324. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3329. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3330. "shasum": "",
  3331. "mirrors": [
  3332. {
  3333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3334. "preferred": true
  3335. }
  3336. ]
  3337. },
  3338. "type": "library",
  3339. "extra": {
  3340. "laravel": {
  3341. "providers": [
  3342. "Oursdreams\\Export\\ExportServiceProvider"
  3343. ]
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Oursdreams\\Export\\": "./src"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "authors": [
  3356. {
  3357. "name": "oursdreams",
  3358. "email": "z1792524653@163.com"
  3359. }
  3360. ],
  3361. "description": "A simple export plug-in",
  3362. "support": {
  3363. "issues": "https://github.com/oursdreams/export/issues",
  3364. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3365. },
  3366. "time": "2021-06-01T03:01:13+00:00"
  3367. },
  3368. {
  3369. "name": "overtrue/laravel-pinyin",
  3370. "version": "4.0.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3374. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3379. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "overtrue/pinyin": "~4.0"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "laravel": {
  3394. "providers": [
  3395. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3396. ],
  3397. "aliases": {
  3398. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3399. }
  3400. }
  3401. },
  3402. "autoload": {
  3403. "psr-4": {
  3404. "Overtrue\\LaravelPinyin\\": "src/"
  3405. },
  3406. "files": [
  3407. "src/helpers.php"
  3408. ]
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "overtrue",
  3417. "email": "anzhengchao@gmail.com"
  3418. }
  3419. ],
  3420. "description": "Chinese to Pinyin translator.",
  3421. "keywords": [
  3422. "Chinese",
  3423. "Pinyin",
  3424. "laravel",
  3425. "overtrue"
  3426. ],
  3427. "support": {
  3428. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3429. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3430. },
  3431. "time": "2018-10-10T09:02:46+00:00"
  3432. },
  3433. {
  3434. "name": "overtrue/pinyin",
  3435. "version": "4.0.7",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/overtrue/pinyin.git",
  3439. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3444. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "php": ">=7.1"
  3455. },
  3456. "require-dev": {
  3457. "brainmaestro/composer-git-hooks": "^2.7",
  3458. "friendsofphp/php-cs-fixer": "^2.16",
  3459. "phpunit/phpunit": "~8.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "hooks": {
  3464. "pre-commit": [
  3465. "composer test",
  3466. "composer fix-style"
  3467. ],
  3468. "pre-push": [
  3469. "composer test",
  3470. "composer check-style"
  3471. ]
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Overtrue\\Pinyin\\": "src/"
  3477. },
  3478. "files": [
  3479. "src/const.php"
  3480. ]
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "overtrue",
  3489. "email": "anzhengchao@gmail.com",
  3490. "homepage": "http://github.com/overtrue"
  3491. }
  3492. ],
  3493. "description": "Chinese to pinyin translator.",
  3494. "homepage": "https://github.com/overtrue/pinyin",
  3495. "keywords": [
  3496. "Chinese",
  3497. "Pinyin",
  3498. "cn2pinyin"
  3499. ],
  3500. "support": {
  3501. "issues": "https://github.com/overtrue/pinyin/issues",
  3502. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://www.patreon.com/overtrue",
  3507. "type": "patreon"
  3508. }
  3509. ],
  3510. "time": "2021-04-16T11:13:48+00:00"
  3511. },
  3512. {
  3513. "name": "paragonie/random_compat",
  3514. "version": "v9.99.100",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/paragonie/random_compat.git",
  3518. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3523. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3524. "shasum": "",
  3525. "mirrors": [
  3526. {
  3527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3528. "preferred": true
  3529. }
  3530. ]
  3531. },
  3532. "require": {
  3533. "php": ">= 7"
  3534. },
  3535. "require-dev": {
  3536. "phpunit/phpunit": "4.*|5.*",
  3537. "vimeo/psalm": "^1"
  3538. },
  3539. "suggest": {
  3540. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3541. },
  3542. "type": "library",
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Paragon Initiative Enterprises",
  3550. "email": "security@paragonie.com",
  3551. "homepage": "https://paragonie.com"
  3552. }
  3553. ],
  3554. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3555. "keywords": [
  3556. "csprng",
  3557. "polyfill",
  3558. "pseudorandom",
  3559. "random"
  3560. ],
  3561. "support": {
  3562. "email": "info@paragonie.com",
  3563. "issues": "https://github.com/paragonie/random_compat/issues",
  3564. "source": "https://github.com/paragonie/random_compat"
  3565. },
  3566. "time": "2020-10-15T08:29:30+00:00"
  3567. },
  3568. {
  3569. "name": "paragonie/sodium_compat",
  3570. "version": "v1.16.1",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/paragonie/sodium_compat.git",
  3574. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3579. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3580. "shasum": "",
  3581. "mirrors": [
  3582. {
  3583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3584. "preferred": true
  3585. }
  3586. ]
  3587. },
  3588. "require": {
  3589. "paragonie/random_compat": ">=1",
  3590. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3591. },
  3592. "require-dev": {
  3593. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3594. },
  3595. "suggest": {
  3596. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3597. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3598. },
  3599. "type": "library",
  3600. "autoload": {
  3601. "files": [
  3602. "autoload.php"
  3603. ]
  3604. },
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "ISC"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "Paragon Initiative Enterprises",
  3612. "email": "security@paragonie.com"
  3613. },
  3614. {
  3615. "name": "Frank Denis",
  3616. "email": "jedisct1@pureftpd.org"
  3617. }
  3618. ],
  3619. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3620. "keywords": [
  3621. "Authentication",
  3622. "BLAKE2b",
  3623. "ChaCha20",
  3624. "ChaCha20-Poly1305",
  3625. "Chapoly",
  3626. "Curve25519",
  3627. "Ed25519",
  3628. "EdDSA",
  3629. "Edwards-curve Digital Signature Algorithm",
  3630. "Elliptic Curve Diffie-Hellman",
  3631. "Poly1305",
  3632. "Pure-PHP cryptography",
  3633. "RFC 7748",
  3634. "RFC 8032",
  3635. "Salpoly",
  3636. "Salsa20",
  3637. "X25519",
  3638. "XChaCha20-Poly1305",
  3639. "XSalsa20-Poly1305",
  3640. "Xchacha20",
  3641. "Xsalsa20",
  3642. "aead",
  3643. "cryptography",
  3644. "ecdh",
  3645. "elliptic curve",
  3646. "elliptic curve cryptography",
  3647. "encryption",
  3648. "libsodium",
  3649. "php",
  3650. "public-key cryptography",
  3651. "secret-key cryptography",
  3652. "side-channel resistant"
  3653. ],
  3654. "support": {
  3655. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3656. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3657. },
  3658. "time": "2021-05-25T12:58:14+00:00"
  3659. },
  3660. {
  3661. "name": "phpoffice/phpspreadsheet",
  3662. "version": "1.18.0",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3666. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3671. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3672. "shasum": "",
  3673. "mirrors": [
  3674. {
  3675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3676. "preferred": true
  3677. }
  3678. ]
  3679. },
  3680. "require": {
  3681. "ext-ctype": "*",
  3682. "ext-dom": "*",
  3683. "ext-fileinfo": "*",
  3684. "ext-gd": "*",
  3685. "ext-iconv": "*",
  3686. "ext-libxml": "*",
  3687. "ext-mbstring": "*",
  3688. "ext-simplexml": "*",
  3689. "ext-xml": "*",
  3690. "ext-xmlreader": "*",
  3691. "ext-xmlwriter": "*",
  3692. "ext-zip": "*",
  3693. "ext-zlib": "*",
  3694. "ezyang/htmlpurifier": "^4.13",
  3695. "maennchen/zipstream-php": "^2.1",
  3696. "markbaker/complex": "^2.0",
  3697. "markbaker/matrix": "^2.0",
  3698. "php": "^7.2 || ^8.0",
  3699. "psr/http-client": "^1.0",
  3700. "psr/http-factory": "^1.0",
  3701. "psr/simple-cache": "^1.0"
  3702. },
  3703. "require-dev": {
  3704. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3705. "dompdf/dompdf": "^1.0",
  3706. "friendsofphp/php-cs-fixer": "^2.18",
  3707. "jpgraph/jpgraph": "^4.0",
  3708. "mpdf/mpdf": "^8.0",
  3709. "phpcompatibility/php-compatibility": "^9.3",
  3710. "phpstan/phpstan": "^0.12.82",
  3711. "phpstan/phpstan-phpunit": "^0.12.18",
  3712. "phpunit/phpunit": "^8.5",
  3713. "squizlabs/php_codesniffer": "^3.5",
  3714. "tecnickcom/tcpdf": "^6.3"
  3715. },
  3716. "suggest": {
  3717. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3718. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3719. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3720. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3721. },
  3722. "type": "library",
  3723. "autoload": {
  3724. "psr-4": {
  3725. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Maarten Balliauw",
  3735. "homepage": "https://blog.maartenballiauw.be"
  3736. },
  3737. {
  3738. "name": "Mark Baker",
  3739. "homepage": "https://markbakeruk.net"
  3740. },
  3741. {
  3742. "name": "Franck Lefevre",
  3743. "homepage": "https://rootslabs.net"
  3744. },
  3745. {
  3746. "name": "Erik Tilt"
  3747. },
  3748. {
  3749. "name": "Adrien Crivelli"
  3750. }
  3751. ],
  3752. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3753. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3754. "keywords": [
  3755. "OpenXML",
  3756. "excel",
  3757. "gnumeric",
  3758. "ods",
  3759. "php",
  3760. "spreadsheet",
  3761. "xls",
  3762. "xlsx"
  3763. ],
  3764. "support": {
  3765. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3766. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3767. },
  3768. "time": "2021-05-31T18:21:15+00:00"
  3769. },
  3770. {
  3771. "name": "phpoption/phpoption",
  3772. "version": "1.7.5",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/schmittjoh/php-option.git",
  3776. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3781. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3782. "shasum": "",
  3783. "mirrors": [
  3784. {
  3785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3786. "preferred": true
  3787. }
  3788. ]
  3789. },
  3790. "require": {
  3791. "php": "^5.5.9 || ^7.0 || ^8.0"
  3792. },
  3793. "require-dev": {
  3794. "bamarni/composer-bin-plugin": "^1.4.1",
  3795. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.7-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "PhpOption\\": "src/PhpOption/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "Apache-2.0"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Johannes M. Schmitt",
  3815. "email": "schmittjoh@gmail.com"
  3816. },
  3817. {
  3818. "name": "Graham Campbell",
  3819. "email": "graham@alt-three.com"
  3820. }
  3821. ],
  3822. "description": "Option Type for PHP",
  3823. "keywords": [
  3824. "language",
  3825. "option",
  3826. "php",
  3827. "type"
  3828. ],
  3829. "support": {
  3830. "issues": "https://github.com/schmittjoh/php-option/issues",
  3831. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://github.com/GrahamCampbell",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2020-07-20T17:29:33+00:00"
  3844. },
  3845. {
  3846. "name": "predis/predis",
  3847. "version": "v1.1.7",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/predis/predis.git",
  3851. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3856. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3857. "shasum": "",
  3858. "mirrors": [
  3859. {
  3860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3861. "preferred": true
  3862. }
  3863. ]
  3864. },
  3865. "require": {
  3866. "php": ">=5.3.9"
  3867. },
  3868. "require-dev": {
  3869. "phpunit/phpunit": "~4.8"
  3870. },
  3871. "suggest": {
  3872. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3873. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3874. },
  3875. "type": "library",
  3876. "autoload": {
  3877. "psr-4": {
  3878. "Predis\\": "src/"
  3879. }
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "Daniele Alessandri",
  3888. "email": "suppakilla@gmail.com",
  3889. "homepage": "http://clorophilla.net",
  3890. "role": "Creator & Maintainer"
  3891. },
  3892. {
  3893. "name": "Till Krüss",
  3894. "homepage": "https://till.im",
  3895. "role": "Maintainer"
  3896. }
  3897. ],
  3898. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3899. "homepage": "http://github.com/predis/predis",
  3900. "keywords": [
  3901. "nosql",
  3902. "predis",
  3903. "redis"
  3904. ],
  3905. "support": {
  3906. "issues": "https://github.com/predis/predis/issues",
  3907. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://github.com/sponsors/tillkruss",
  3912. "type": "github"
  3913. }
  3914. ],
  3915. "time": "2021-04-04T19:34:46+00:00"
  3916. },
  3917. {
  3918. "name": "psr/container",
  3919. "version": "1.1.1",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/php-fig/container.git",
  3923. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3928. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3929. "shasum": "",
  3930. "mirrors": [
  3931. {
  3932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3933. "preferred": true
  3934. }
  3935. ]
  3936. },
  3937. "require": {
  3938. "php": ">=7.2.0"
  3939. },
  3940. "type": "library",
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Psr\\Container\\": "src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "authors": [
  3951. {
  3952. "name": "PHP-FIG",
  3953. "homepage": "https://www.php-fig.org/"
  3954. }
  3955. ],
  3956. "description": "Common Container Interface (PHP FIG PSR-11)",
  3957. "homepage": "https://github.com/php-fig/container",
  3958. "keywords": [
  3959. "PSR-11",
  3960. "container",
  3961. "container-interface",
  3962. "container-interop",
  3963. "psr"
  3964. ],
  3965. "support": {
  3966. "issues": "https://github.com/php-fig/container/issues",
  3967. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3968. },
  3969. "time": "2021-03-05T17:36:06+00:00"
  3970. },
  3971. {
  3972. "name": "psr/event-dispatcher",
  3973. "version": "1.0.0",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/php-fig/event-dispatcher.git",
  3977. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3982. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3983. "shasum": "",
  3984. "mirrors": [
  3985. {
  3986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3987. "preferred": true
  3988. }
  3989. ]
  3990. },
  3991. "require": {
  3992. "php": ">=7.2.0"
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "1.0.x-dev"
  3998. }
  3999. },
  4000. "autoload": {
  4001. "psr-4": {
  4002. "Psr\\EventDispatcher\\": "src/"
  4003. }
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "PHP-FIG",
  4012. "homepage": "http://www.php-fig.org/"
  4013. }
  4014. ],
  4015. "description": "Standard interfaces for event handling.",
  4016. "keywords": [
  4017. "events",
  4018. "psr",
  4019. "psr-14"
  4020. ],
  4021. "support": {
  4022. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4023. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4024. },
  4025. "time": "2019-01-08T18:20:26+00:00"
  4026. },
  4027. {
  4028. "name": "psr/http-client",
  4029. "version": "1.0.1",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/php-fig/http-client.git",
  4033. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4038. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4039. "shasum": "",
  4040. "mirrors": [
  4041. {
  4042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4043. "preferred": true
  4044. }
  4045. ]
  4046. },
  4047. "require": {
  4048. "php": "^7.0 || ^8.0",
  4049. "psr/http-message": "^1.0"
  4050. },
  4051. "type": "library",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-master": "1.0.x-dev"
  4055. }
  4056. },
  4057. "autoload": {
  4058. "psr-4": {
  4059. "Psr\\Http\\Client\\": "src/"
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "authors": [
  4067. {
  4068. "name": "PHP-FIG",
  4069. "homepage": "http://www.php-fig.org/"
  4070. }
  4071. ],
  4072. "description": "Common interface for HTTP clients",
  4073. "homepage": "https://github.com/php-fig/http-client",
  4074. "keywords": [
  4075. "http",
  4076. "http-client",
  4077. "psr",
  4078. "psr-18"
  4079. ],
  4080. "support": {
  4081. "source": "https://github.com/php-fig/http-client/tree/master"
  4082. },
  4083. "time": "2020-06-29T06:28:15+00:00"
  4084. },
  4085. {
  4086. "name": "psr/http-factory",
  4087. "version": "1.0.1",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/php-fig/http-factory.git",
  4091. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4096. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4097. "shasum": "",
  4098. "mirrors": [
  4099. {
  4100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4101. "preferred": true
  4102. }
  4103. ]
  4104. },
  4105. "require": {
  4106. "php": ">=7.0.0",
  4107. "psr/http-message": "^1.0"
  4108. },
  4109. "type": "library",
  4110. "extra": {
  4111. "branch-alias": {
  4112. "dev-master": "1.0.x-dev"
  4113. }
  4114. },
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Psr\\Http\\Message\\": "src/"
  4118. }
  4119. },
  4120. "notification-url": "https://packagist.org/downloads/",
  4121. "license": [
  4122. "MIT"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "PHP-FIG",
  4127. "homepage": "http://www.php-fig.org/"
  4128. }
  4129. ],
  4130. "description": "Common interfaces for PSR-7 HTTP message factories",
  4131. "keywords": [
  4132. "factory",
  4133. "http",
  4134. "message",
  4135. "psr",
  4136. "psr-17",
  4137. "psr-7",
  4138. "request",
  4139. "response"
  4140. ],
  4141. "support": {
  4142. "source": "https://github.com/php-fig/http-factory/tree/master"
  4143. },
  4144. "time": "2019-04-30T12:38:16+00:00"
  4145. },
  4146. {
  4147. "name": "psr/http-message",
  4148. "version": "1.0.1",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://github.com/php-fig/http-message.git",
  4152. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4157. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4158. "shasum": "",
  4159. "mirrors": [
  4160. {
  4161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4162. "preferred": true
  4163. }
  4164. ]
  4165. },
  4166. "require": {
  4167. "php": ">=5.3.0"
  4168. },
  4169. "type": "library",
  4170. "extra": {
  4171. "branch-alias": {
  4172. "dev-master": "1.0.x-dev"
  4173. }
  4174. },
  4175. "autoload": {
  4176. "psr-4": {
  4177. "Psr\\Http\\Message\\": "src/"
  4178. }
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "PHP-FIG",
  4187. "homepage": "http://www.php-fig.org/"
  4188. }
  4189. ],
  4190. "description": "Common interface for HTTP messages",
  4191. "homepage": "https://github.com/php-fig/http-message",
  4192. "keywords": [
  4193. "http",
  4194. "http-message",
  4195. "psr",
  4196. "psr-7",
  4197. "request",
  4198. "response"
  4199. ],
  4200. "support": {
  4201. "source": "https://github.com/php-fig/http-message/tree/master"
  4202. },
  4203. "time": "2016-08-06T14:39:51+00:00"
  4204. },
  4205. {
  4206. "name": "psr/log",
  4207. "version": "1.1.4",
  4208. "source": {
  4209. "type": "git",
  4210. "url": "https://github.com/php-fig/log.git",
  4211. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4212. },
  4213. "dist": {
  4214. "type": "zip",
  4215. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4216. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4217. "shasum": "",
  4218. "mirrors": [
  4219. {
  4220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4221. "preferred": true
  4222. }
  4223. ]
  4224. },
  4225. "require": {
  4226. "php": ">=5.3.0"
  4227. },
  4228. "type": "library",
  4229. "extra": {
  4230. "branch-alias": {
  4231. "dev-master": "1.1.x-dev"
  4232. }
  4233. },
  4234. "autoload": {
  4235. "psr-4": {
  4236. "Psr\\Log\\": "Psr/Log/"
  4237. }
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "PHP-FIG",
  4246. "homepage": "https://www.php-fig.org/"
  4247. }
  4248. ],
  4249. "description": "Common interface for logging libraries",
  4250. "homepage": "https://github.com/php-fig/log",
  4251. "keywords": [
  4252. "log",
  4253. "psr",
  4254. "psr-3"
  4255. ],
  4256. "support": {
  4257. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4258. },
  4259. "time": "2021-05-03T11:20:27+00:00"
  4260. },
  4261. {
  4262. "name": "psr/simple-cache",
  4263. "version": "1.0.1",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/php-fig/simple-cache.git",
  4267. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4272. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4273. "shasum": "",
  4274. "mirrors": [
  4275. {
  4276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4277. "preferred": true
  4278. }
  4279. ]
  4280. },
  4281. "require": {
  4282. "php": ">=5.3.0"
  4283. },
  4284. "type": "library",
  4285. "extra": {
  4286. "branch-alias": {
  4287. "dev-master": "1.0.x-dev"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Psr\\SimpleCache\\": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "PHP-FIG",
  4302. "homepage": "http://www.php-fig.org/"
  4303. }
  4304. ],
  4305. "description": "Common interfaces for simple caching",
  4306. "keywords": [
  4307. "cache",
  4308. "caching",
  4309. "psr",
  4310. "psr-16",
  4311. "simple-cache"
  4312. ],
  4313. "support": {
  4314. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4315. },
  4316. "time": "2017-10-23T01:57:42+00:00"
  4317. },
  4318. {
  4319. "name": "psy/psysh",
  4320. "version": "v0.10.8",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://github.com/bobthecow/psysh.git",
  4324. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4325. },
  4326. "dist": {
  4327. "type": "zip",
  4328. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4329. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4330. "shasum": "",
  4331. "mirrors": [
  4332. {
  4333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4334. "preferred": true
  4335. }
  4336. ]
  4337. },
  4338. "require": {
  4339. "ext-json": "*",
  4340. "ext-tokenizer": "*",
  4341. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4342. "php": "^8.0 || ^7.0 || ^5.5.9",
  4343. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4344. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4345. },
  4346. "require-dev": {
  4347. "bamarni/composer-bin-plugin": "^1.2",
  4348. "hoa/console": "3.17.*"
  4349. },
  4350. "suggest": {
  4351. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4352. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4353. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4354. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4355. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4356. },
  4357. "bin": [
  4358. "bin/psysh"
  4359. ],
  4360. "type": "library",
  4361. "extra": {
  4362. "branch-alias": {
  4363. "dev-main": "0.10.x-dev"
  4364. }
  4365. },
  4366. "autoload": {
  4367. "files": [
  4368. "src/functions.php"
  4369. ],
  4370. "psr-4": {
  4371. "Psy\\": "src/"
  4372. }
  4373. },
  4374. "notification-url": "https://packagist.org/downloads/",
  4375. "license": [
  4376. "MIT"
  4377. ],
  4378. "authors": [
  4379. {
  4380. "name": "Justin Hileman",
  4381. "email": "justin@justinhileman.info",
  4382. "homepage": "http://justinhileman.com"
  4383. }
  4384. ],
  4385. "description": "An interactive shell for modern PHP.",
  4386. "homepage": "http://psysh.org",
  4387. "keywords": [
  4388. "REPL",
  4389. "console",
  4390. "interactive",
  4391. "shell"
  4392. ],
  4393. "support": {
  4394. "issues": "https://github.com/bobthecow/psysh/issues",
  4395. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4396. },
  4397. "time": "2021-04-10T16:23:39+00:00"
  4398. },
  4399. {
  4400. "name": "pusher/pusher-php-server",
  4401. "version": "v4.1.5",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/pusher/pusher-http-php.git",
  4405. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4410. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4411. "shasum": "",
  4412. "mirrors": [
  4413. {
  4414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4415. "preferred": true
  4416. }
  4417. ]
  4418. },
  4419. "require": {
  4420. "ext-curl": "*",
  4421. "paragonie/sodium_compat": "^1.6",
  4422. "php": "^7.1|^8.0",
  4423. "psr/log": "^1.0"
  4424. },
  4425. "require-dev": {
  4426. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4427. },
  4428. "type": "library",
  4429. "extra": {
  4430. "branch-alias": {
  4431. "dev-master": "3.4-dev"
  4432. }
  4433. },
  4434. "autoload": {
  4435. "psr-4": {
  4436. "Pusher\\": "src/"
  4437. }
  4438. },
  4439. "notification-url": "https://packagist.org/downloads/",
  4440. "license": [
  4441. "MIT"
  4442. ],
  4443. "description": "Library for interacting with the Pusher REST API",
  4444. "keywords": [
  4445. "events",
  4446. "messaging",
  4447. "php-pusher-server",
  4448. "publish",
  4449. "push",
  4450. "pusher",
  4451. "real time",
  4452. "real-time",
  4453. "realtime",
  4454. "rest",
  4455. "trigger"
  4456. ],
  4457. "support": {
  4458. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4459. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4460. },
  4461. "time": "2020-12-09T09:38:19+00:00"
  4462. },
  4463. {
  4464. "name": "ralouphie/getallheaders",
  4465. "version": "3.0.3",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/ralouphie/getallheaders.git",
  4469. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4474. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "php": ">=5.6"
  4485. },
  4486. "require-dev": {
  4487. "php-coveralls/php-coveralls": "^2.1",
  4488. "phpunit/phpunit": "^5 || ^6.5"
  4489. },
  4490. "type": "library",
  4491. "autoload": {
  4492. "files": [
  4493. "src/getallheaders.php"
  4494. ]
  4495. },
  4496. "notification-url": "https://packagist.org/downloads/",
  4497. "license": [
  4498. "MIT"
  4499. ],
  4500. "authors": [
  4501. {
  4502. "name": "Ralph Khattar",
  4503. "email": "ralph.khattar@gmail.com"
  4504. }
  4505. ],
  4506. "description": "A polyfill for getallheaders.",
  4507. "support": {
  4508. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4509. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4510. },
  4511. "time": "2019-03-08T08:55:37+00:00"
  4512. },
  4513. {
  4514. "name": "ramsey/collection",
  4515. "version": "1.1.3",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/ramsey/collection.git",
  4519. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4524. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4525. "shasum": "",
  4526. "mirrors": [
  4527. {
  4528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4529. "preferred": true
  4530. }
  4531. ]
  4532. },
  4533. "require": {
  4534. "php": "^7.2 || ^8"
  4535. },
  4536. "require-dev": {
  4537. "captainhook/captainhook": "^5.3",
  4538. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4539. "ergebnis/composer-normalize": "^2.6",
  4540. "fakerphp/faker": "^1.5",
  4541. "hamcrest/hamcrest-php": "^2",
  4542. "jangregor/phpstan-prophecy": "^0.8",
  4543. "mockery/mockery": "^1.3",
  4544. "phpstan/extension-installer": "^1",
  4545. "phpstan/phpstan": "^0.12.32",
  4546. "phpstan/phpstan-mockery": "^0.12.5",
  4547. "phpstan/phpstan-phpunit": "^0.12.11",
  4548. "phpunit/phpunit": "^8.5 || ^9",
  4549. "psy/psysh": "^0.10.4",
  4550. "slevomat/coding-standard": "^6.3",
  4551. "squizlabs/php_codesniffer": "^3.5",
  4552. "vimeo/psalm": "^4.4"
  4553. },
  4554. "type": "library",
  4555. "autoload": {
  4556. "psr-4": {
  4557. "Ramsey\\Collection\\": "src/"
  4558. }
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "MIT"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "Ben Ramsey",
  4567. "email": "ben@benramsey.com",
  4568. "homepage": "https://benramsey.com"
  4569. }
  4570. ],
  4571. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4572. "keywords": [
  4573. "array",
  4574. "collection",
  4575. "hash",
  4576. "map",
  4577. "queue",
  4578. "set"
  4579. ],
  4580. "support": {
  4581. "issues": "https://github.com/ramsey/collection/issues",
  4582. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4583. },
  4584. "funding": [
  4585. {
  4586. "url": "https://github.com/ramsey",
  4587. "type": "github"
  4588. },
  4589. {
  4590. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4591. "type": "tidelift"
  4592. }
  4593. ],
  4594. "time": "2021-01-21T17:40:04+00:00"
  4595. },
  4596. {
  4597. "name": "ramsey/uuid",
  4598. "version": "4.1.1",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/ramsey/uuid.git",
  4602. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4607. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4608. "shasum": "",
  4609. "mirrors": [
  4610. {
  4611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4612. "preferred": true
  4613. }
  4614. ]
  4615. },
  4616. "require": {
  4617. "brick/math": "^0.8 || ^0.9",
  4618. "ext-json": "*",
  4619. "php": "^7.2 || ^8",
  4620. "ramsey/collection": "^1.0",
  4621. "symfony/polyfill-ctype": "^1.8"
  4622. },
  4623. "replace": {
  4624. "rhumsaa/uuid": "self.version"
  4625. },
  4626. "require-dev": {
  4627. "codeception/aspect-mock": "^3",
  4628. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4629. "doctrine/annotations": "^1.8",
  4630. "goaop/framework": "^2",
  4631. "mockery/mockery": "^1.3",
  4632. "moontoast/math": "^1.1",
  4633. "paragonie/random-lib": "^2",
  4634. "php-mock/php-mock-mockery": "^1.3",
  4635. "php-mock/php-mock-phpunit": "^2.5",
  4636. "php-parallel-lint/php-parallel-lint": "^1.1",
  4637. "phpbench/phpbench": "^0.17.1",
  4638. "phpstan/extension-installer": "^1.0",
  4639. "phpstan/phpstan": "^0.12",
  4640. "phpstan/phpstan-mockery": "^0.12",
  4641. "phpstan/phpstan-phpunit": "^0.12",
  4642. "phpunit/phpunit": "^8.5",
  4643. "psy/psysh": "^0.10.0",
  4644. "slevomat/coding-standard": "^6.0",
  4645. "squizlabs/php_codesniffer": "^3.5",
  4646. "vimeo/psalm": "3.9.4"
  4647. },
  4648. "suggest": {
  4649. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4650. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4651. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4652. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4653. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4654. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4655. },
  4656. "type": "library",
  4657. "extra": {
  4658. "branch-alias": {
  4659. "dev-master": "4.x-dev"
  4660. }
  4661. },
  4662. "autoload": {
  4663. "psr-4": {
  4664. "Ramsey\\Uuid\\": "src/"
  4665. },
  4666. "files": [
  4667. "src/functions.php"
  4668. ]
  4669. },
  4670. "notification-url": "https://packagist.org/downloads/",
  4671. "license": [
  4672. "MIT"
  4673. ],
  4674. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4675. "homepage": "https://github.com/ramsey/uuid",
  4676. "keywords": [
  4677. "guid",
  4678. "identifier",
  4679. "uuid"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/ramsey/uuid/issues",
  4683. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4684. "source": "https://github.com/ramsey/uuid"
  4685. },
  4686. "funding": [
  4687. {
  4688. "url": "https://github.com/ramsey",
  4689. "type": "github"
  4690. }
  4691. ],
  4692. "time": "2020-08-18T17:17:46+00:00"
  4693. },
  4694. {
  4695. "name": "swiftmailer/swiftmailer",
  4696. "version": "v6.2.7",
  4697. "source": {
  4698. "type": "git",
  4699. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4700. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4701. },
  4702. "dist": {
  4703. "type": "zip",
  4704. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4705. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4706. "shasum": "",
  4707. "mirrors": [
  4708. {
  4709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4710. "preferred": true
  4711. }
  4712. ]
  4713. },
  4714. "require": {
  4715. "egulias/email-validator": "^2.0|^3.1",
  4716. "php": ">=7.0.0",
  4717. "symfony/polyfill-iconv": "^1.0",
  4718. "symfony/polyfill-intl-idn": "^1.10",
  4719. "symfony/polyfill-mbstring": "^1.0"
  4720. },
  4721. "require-dev": {
  4722. "mockery/mockery": "^1.0",
  4723. "symfony/phpunit-bridge": "^4.4|^5.0"
  4724. },
  4725. "suggest": {
  4726. "ext-intl": "Needed to support internationalized email addresses"
  4727. },
  4728. "type": "library",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-master": "6.2-dev"
  4732. }
  4733. },
  4734. "autoload": {
  4735. "files": [
  4736. "lib/swift_required.php"
  4737. ]
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Chris Corbyn"
  4746. },
  4747. {
  4748. "name": "Fabien Potencier",
  4749. "email": "fabien@symfony.com"
  4750. }
  4751. ],
  4752. "description": "Swiftmailer, free feature-rich PHP mailer",
  4753. "homepage": "https://swiftmailer.symfony.com",
  4754. "keywords": [
  4755. "email",
  4756. "mail",
  4757. "mailer"
  4758. ],
  4759. "support": {
  4760. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4761. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4762. },
  4763. "funding": [
  4764. {
  4765. "url": "https://github.com/fabpot",
  4766. "type": "github"
  4767. },
  4768. {
  4769. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4770. "type": "tidelift"
  4771. }
  4772. ],
  4773. "time": "2021-03-09T12:30:35+00:00"
  4774. },
  4775. {
  4776. "name": "symfony/console",
  4777. "version": "v5.3.2",
  4778. "source": {
  4779. "type": "git",
  4780. "url": "https://github.com/symfony/console.git",
  4781. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1"
  4782. },
  4783. "dist": {
  4784. "type": "zip",
  4785. "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4786. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4787. "shasum": "",
  4788. "mirrors": [
  4789. {
  4790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4791. "preferred": true
  4792. }
  4793. ]
  4794. },
  4795. "require": {
  4796. "php": ">=7.2.5",
  4797. "symfony/deprecation-contracts": "^2.1",
  4798. "symfony/polyfill-mbstring": "~1.0",
  4799. "symfony/polyfill-php73": "^1.8",
  4800. "symfony/polyfill-php80": "^1.15",
  4801. "symfony/service-contracts": "^1.1|^2",
  4802. "symfony/string": "^5.1"
  4803. },
  4804. "conflict": {
  4805. "symfony/dependency-injection": "<4.4",
  4806. "symfony/dotenv": "<5.1",
  4807. "symfony/event-dispatcher": "<4.4",
  4808. "symfony/lock": "<4.4",
  4809. "symfony/process": "<4.4"
  4810. },
  4811. "provide": {
  4812. "psr/log-implementation": "1.0"
  4813. },
  4814. "require-dev": {
  4815. "psr/log": "~1.0",
  4816. "symfony/config": "^4.4|^5.0",
  4817. "symfony/dependency-injection": "^4.4|^5.0",
  4818. "symfony/event-dispatcher": "^4.4|^5.0",
  4819. "symfony/lock": "^4.4|^5.0",
  4820. "symfony/process": "^4.4|^5.0",
  4821. "symfony/var-dumper": "^4.4|^5.0"
  4822. },
  4823. "suggest": {
  4824. "psr/log": "For using the console logger",
  4825. "symfony/event-dispatcher": "",
  4826. "symfony/lock": "",
  4827. "symfony/process": ""
  4828. },
  4829. "type": "library",
  4830. "autoload": {
  4831. "psr-4": {
  4832. "Symfony\\Component\\Console\\": ""
  4833. },
  4834. "exclude-from-classmap": [
  4835. "/Tests/"
  4836. ]
  4837. },
  4838. "notification-url": "https://packagist.org/downloads/",
  4839. "license": [
  4840. "MIT"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "Fabien Potencier",
  4845. "email": "fabien@symfony.com"
  4846. },
  4847. {
  4848. "name": "Symfony Community",
  4849. "homepage": "https://symfony.com/contributors"
  4850. }
  4851. ],
  4852. "description": "Eases the creation of beautiful and testable command line interfaces",
  4853. "homepage": "https://symfony.com",
  4854. "keywords": [
  4855. "cli",
  4856. "command line",
  4857. "console",
  4858. "terminal"
  4859. ],
  4860. "support": {
  4861. "source": "https://github.com/symfony/console/tree/v5.3.2"
  4862. },
  4863. "funding": [
  4864. {
  4865. "url": "https://symfony.com/sponsor",
  4866. "type": "custom"
  4867. },
  4868. {
  4869. "url": "https://github.com/fabpot",
  4870. "type": "github"
  4871. },
  4872. {
  4873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4874. "type": "tidelift"
  4875. }
  4876. ],
  4877. "time": "2021-06-12T09:42:48+00:00"
  4878. },
  4879. {
  4880. "name": "symfony/css-selector",
  4881. "version": "v5.3.0",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://github.com/symfony/css-selector.git",
  4885. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4890. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4891. "shasum": "",
  4892. "mirrors": [
  4893. {
  4894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4895. "preferred": true
  4896. }
  4897. ]
  4898. },
  4899. "require": {
  4900. "php": ">=7.2.5"
  4901. },
  4902. "type": "library",
  4903. "autoload": {
  4904. "psr-4": {
  4905. "Symfony\\Component\\CssSelector\\": ""
  4906. },
  4907. "exclude-from-classmap": [
  4908. "/Tests/"
  4909. ]
  4910. },
  4911. "notification-url": "https://packagist.org/downloads/",
  4912. "license": [
  4913. "MIT"
  4914. ],
  4915. "authors": [
  4916. {
  4917. "name": "Fabien Potencier",
  4918. "email": "fabien@symfony.com"
  4919. },
  4920. {
  4921. "name": "Jean-François Simon",
  4922. "email": "jeanfrancois.simon@sensiolabs.com"
  4923. },
  4924. {
  4925. "name": "Symfony Community",
  4926. "homepage": "https://symfony.com/contributors"
  4927. }
  4928. ],
  4929. "description": "Converts CSS selectors to XPath expressions",
  4930. "homepage": "https://symfony.com",
  4931. "support": {
  4932. "source": "https://github.com/symfony/css-selector/tree/v5.3.0"
  4933. },
  4934. "funding": [
  4935. {
  4936. "url": "https://symfony.com/sponsor",
  4937. "type": "custom"
  4938. },
  4939. {
  4940. "url": "https://github.com/fabpot",
  4941. "type": "github"
  4942. },
  4943. {
  4944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4945. "type": "tidelift"
  4946. }
  4947. ],
  4948. "time": "2021-05-26T17:40:38+00:00"
  4949. },
  4950. {
  4951. "name": "symfony/deprecation-contracts",
  4952. "version": "v2.4.0",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/symfony/deprecation-contracts.git",
  4956. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4961. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4962. "shasum": "",
  4963. "mirrors": [
  4964. {
  4965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4966. "preferred": true
  4967. }
  4968. ]
  4969. },
  4970. "require": {
  4971. "php": ">=7.1"
  4972. },
  4973. "type": "library",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-main": "2.4-dev"
  4977. },
  4978. "thanks": {
  4979. "name": "symfony/contracts",
  4980. "url": "https://github.com/symfony/contracts"
  4981. }
  4982. },
  4983. "autoload": {
  4984. "files": [
  4985. "function.php"
  4986. ]
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Nicolas Grekas",
  4995. "email": "p@tchwork.com"
  4996. },
  4997. {
  4998. "name": "Symfony Community",
  4999. "homepage": "https://symfony.com/contributors"
  5000. }
  5001. ],
  5002. "description": "A generic function and convention to trigger deprecation notices",
  5003. "homepage": "https://symfony.com",
  5004. "support": {
  5005. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5006. },
  5007. "funding": [
  5008. {
  5009. "url": "https://symfony.com/sponsor",
  5010. "type": "custom"
  5011. },
  5012. {
  5013. "url": "https://github.com/fabpot",
  5014. "type": "github"
  5015. },
  5016. {
  5017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5018. "type": "tidelift"
  5019. }
  5020. ],
  5021. "time": "2021-03-23T23:28:01+00:00"
  5022. },
  5023. {
  5024. "name": "symfony/error-handler",
  5025. "version": "v5.3.0",
  5026. "source": {
  5027. "type": "git",
  5028. "url": "https://github.com/symfony/error-handler.git",
  5029. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2"
  5030. },
  5031. "dist": {
  5032. "type": "zip",
  5033. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5034. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5035. "shasum": "",
  5036. "mirrors": [
  5037. {
  5038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5039. "preferred": true
  5040. }
  5041. ]
  5042. },
  5043. "require": {
  5044. "php": ">=7.2.5",
  5045. "psr/log": "^1.0",
  5046. "symfony/polyfill-php80": "^1.15",
  5047. "symfony/var-dumper": "^4.4|^5.0"
  5048. },
  5049. "require-dev": {
  5050. "symfony/deprecation-contracts": "^2.1",
  5051. "symfony/http-kernel": "^4.4|^5.0",
  5052. "symfony/serializer": "^4.4|^5.0"
  5053. },
  5054. "type": "library",
  5055. "autoload": {
  5056. "psr-4": {
  5057. "Symfony\\Component\\ErrorHandler\\": ""
  5058. },
  5059. "exclude-from-classmap": [
  5060. "/Tests/"
  5061. ]
  5062. },
  5063. "notification-url": "https://packagist.org/downloads/",
  5064. "license": [
  5065. "MIT"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "Fabien Potencier",
  5070. "email": "fabien@symfony.com"
  5071. },
  5072. {
  5073. "name": "Symfony Community",
  5074. "homepage": "https://symfony.com/contributors"
  5075. }
  5076. ],
  5077. "description": "Provides tools to manage errors and ease debugging PHP code",
  5078. "homepage": "https://symfony.com",
  5079. "support": {
  5080. "source": "https://github.com/symfony/error-handler/tree/v5.3.0"
  5081. },
  5082. "funding": [
  5083. {
  5084. "url": "https://symfony.com/sponsor",
  5085. "type": "custom"
  5086. },
  5087. {
  5088. "url": "https://github.com/fabpot",
  5089. "type": "github"
  5090. },
  5091. {
  5092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5093. "type": "tidelift"
  5094. }
  5095. ],
  5096. "time": "2021-05-26T17:43:10+00:00"
  5097. },
  5098. {
  5099. "name": "symfony/event-dispatcher",
  5100. "version": "v5.3.0",
  5101. "source": {
  5102. "type": "git",
  5103. "url": "https://github.com/symfony/event-dispatcher.git",
  5104. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  5105. },
  5106. "dist": {
  5107. "type": "zip",
  5108. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5109. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5110. "shasum": "",
  5111. "mirrors": [
  5112. {
  5113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5114. "preferred": true
  5115. }
  5116. ]
  5117. },
  5118. "require": {
  5119. "php": ">=7.2.5",
  5120. "symfony/deprecation-contracts": "^2.1",
  5121. "symfony/event-dispatcher-contracts": "^2",
  5122. "symfony/polyfill-php80": "^1.15"
  5123. },
  5124. "conflict": {
  5125. "symfony/dependency-injection": "<4.4"
  5126. },
  5127. "provide": {
  5128. "psr/event-dispatcher-implementation": "1.0",
  5129. "symfony/event-dispatcher-implementation": "2.0"
  5130. },
  5131. "require-dev": {
  5132. "psr/log": "~1.0",
  5133. "symfony/config": "^4.4|^5.0",
  5134. "symfony/dependency-injection": "^4.4|^5.0",
  5135. "symfony/error-handler": "^4.4|^5.0",
  5136. "symfony/expression-language": "^4.4|^5.0",
  5137. "symfony/http-foundation": "^4.4|^5.0",
  5138. "symfony/service-contracts": "^1.1|^2",
  5139. "symfony/stopwatch": "^4.4|^5.0"
  5140. },
  5141. "suggest": {
  5142. "symfony/dependency-injection": "",
  5143. "symfony/http-kernel": ""
  5144. },
  5145. "type": "library",
  5146. "autoload": {
  5147. "psr-4": {
  5148. "Symfony\\Component\\EventDispatcher\\": ""
  5149. },
  5150. "exclude-from-classmap": [
  5151. "/Tests/"
  5152. ]
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "Fabien Potencier",
  5161. "email": "fabien@symfony.com"
  5162. },
  5163. {
  5164. "name": "Symfony Community",
  5165. "homepage": "https://symfony.com/contributors"
  5166. }
  5167. ],
  5168. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5169. "homepage": "https://symfony.com",
  5170. "support": {
  5171. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0"
  5172. },
  5173. "funding": [
  5174. {
  5175. "url": "https://symfony.com/sponsor",
  5176. "type": "custom"
  5177. },
  5178. {
  5179. "url": "https://github.com/fabpot",
  5180. "type": "github"
  5181. },
  5182. {
  5183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5184. "type": "tidelift"
  5185. }
  5186. ],
  5187. "time": "2021-05-26T17:43:10+00:00"
  5188. },
  5189. {
  5190. "name": "symfony/event-dispatcher-contracts",
  5191. "version": "v2.4.0",
  5192. "source": {
  5193. "type": "git",
  5194. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5195. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5196. },
  5197. "dist": {
  5198. "type": "zip",
  5199. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5200. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5201. "shasum": "",
  5202. "mirrors": [
  5203. {
  5204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5205. "preferred": true
  5206. }
  5207. ]
  5208. },
  5209. "require": {
  5210. "php": ">=7.2.5",
  5211. "psr/event-dispatcher": "^1"
  5212. },
  5213. "suggest": {
  5214. "symfony/event-dispatcher-implementation": ""
  5215. },
  5216. "type": "library",
  5217. "extra": {
  5218. "branch-alias": {
  5219. "dev-main": "2.4-dev"
  5220. },
  5221. "thanks": {
  5222. "name": "symfony/contracts",
  5223. "url": "https://github.com/symfony/contracts"
  5224. }
  5225. },
  5226. "autoload": {
  5227. "psr-4": {
  5228. "Symfony\\Contracts\\EventDispatcher\\": ""
  5229. }
  5230. },
  5231. "notification-url": "https://packagist.org/downloads/",
  5232. "license": [
  5233. "MIT"
  5234. ],
  5235. "authors": [
  5236. {
  5237. "name": "Nicolas Grekas",
  5238. "email": "p@tchwork.com"
  5239. },
  5240. {
  5241. "name": "Symfony Community",
  5242. "homepage": "https://symfony.com/contributors"
  5243. }
  5244. ],
  5245. "description": "Generic abstractions related to dispatching event",
  5246. "homepage": "https://symfony.com",
  5247. "keywords": [
  5248. "abstractions",
  5249. "contracts",
  5250. "decoupling",
  5251. "interfaces",
  5252. "interoperability",
  5253. "standards"
  5254. ],
  5255. "support": {
  5256. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5257. },
  5258. "funding": [
  5259. {
  5260. "url": "https://symfony.com/sponsor",
  5261. "type": "custom"
  5262. },
  5263. {
  5264. "url": "https://github.com/fabpot",
  5265. "type": "github"
  5266. },
  5267. {
  5268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5269. "type": "tidelift"
  5270. }
  5271. ],
  5272. "time": "2021-03-23T23:28:01+00:00"
  5273. },
  5274. {
  5275. "name": "symfony/finder",
  5276. "version": "v5.3.0",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/symfony/finder.git",
  5280. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5285. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5286. "shasum": "",
  5287. "mirrors": [
  5288. {
  5289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5290. "preferred": true
  5291. }
  5292. ]
  5293. },
  5294. "require": {
  5295. "php": ">=7.2.5"
  5296. },
  5297. "type": "library",
  5298. "autoload": {
  5299. "psr-4": {
  5300. "Symfony\\Component\\Finder\\": ""
  5301. },
  5302. "exclude-from-classmap": [
  5303. "/Tests/"
  5304. ]
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "MIT"
  5309. ],
  5310. "authors": [
  5311. {
  5312. "name": "Fabien Potencier",
  5313. "email": "fabien@symfony.com"
  5314. },
  5315. {
  5316. "name": "Symfony Community",
  5317. "homepage": "https://symfony.com/contributors"
  5318. }
  5319. ],
  5320. "description": "Finds files and directories via an intuitive fluent interface",
  5321. "homepage": "https://symfony.com",
  5322. "support": {
  5323. "source": "https://github.com/symfony/finder/tree/v5.3.0"
  5324. },
  5325. "funding": [
  5326. {
  5327. "url": "https://symfony.com/sponsor",
  5328. "type": "custom"
  5329. },
  5330. {
  5331. "url": "https://github.com/fabpot",
  5332. "type": "github"
  5333. },
  5334. {
  5335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5336. "type": "tidelift"
  5337. }
  5338. ],
  5339. "time": "2021-05-26T12:52:38+00:00"
  5340. },
  5341. {
  5342. "name": "symfony/http-client-contracts",
  5343. "version": "v2.4.0",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/symfony/http-client-contracts.git",
  5347. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5352. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5353. "shasum": "",
  5354. "mirrors": [
  5355. {
  5356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5357. "preferred": true
  5358. }
  5359. ]
  5360. },
  5361. "require": {
  5362. "php": ">=7.2.5"
  5363. },
  5364. "suggest": {
  5365. "symfony/http-client-implementation": ""
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "branch-alias": {
  5370. "dev-main": "2.4-dev"
  5371. },
  5372. "thanks": {
  5373. "name": "symfony/contracts",
  5374. "url": "https://github.com/symfony/contracts"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "psr-4": {
  5379. "Symfony\\Contracts\\HttpClient\\": ""
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Nicolas Grekas",
  5389. "email": "p@tchwork.com"
  5390. },
  5391. {
  5392. "name": "Symfony Community",
  5393. "homepage": "https://symfony.com/contributors"
  5394. }
  5395. ],
  5396. "description": "Generic abstractions related to HTTP clients",
  5397. "homepage": "https://symfony.com",
  5398. "keywords": [
  5399. "abstractions",
  5400. "contracts",
  5401. "decoupling",
  5402. "interfaces",
  5403. "interoperability",
  5404. "standards"
  5405. ],
  5406. "support": {
  5407. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5408. },
  5409. "funding": [
  5410. {
  5411. "url": "https://symfony.com/sponsor",
  5412. "type": "custom"
  5413. },
  5414. {
  5415. "url": "https://github.com/fabpot",
  5416. "type": "github"
  5417. },
  5418. {
  5419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5420. "type": "tidelift"
  5421. }
  5422. ],
  5423. "time": "2021-04-11T23:07:08+00:00"
  5424. },
  5425. {
  5426. "name": "symfony/http-foundation",
  5427. "version": "v5.3.2",
  5428. "source": {
  5429. "type": "git",
  5430. "url": "https://github.com/symfony/http-foundation.git",
  5431. "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd"
  5432. },
  5433. "dist": {
  5434. "type": "zip",
  5435. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7b6dd714d95106b831aaa7f3c9c612ab886516bd",
  5436. "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd",
  5437. "shasum": "",
  5438. "mirrors": [
  5439. {
  5440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5441. "preferred": true
  5442. }
  5443. ]
  5444. },
  5445. "require": {
  5446. "php": ">=7.2.5",
  5447. "symfony/deprecation-contracts": "^2.1",
  5448. "symfony/polyfill-mbstring": "~1.1",
  5449. "symfony/polyfill-php80": "^1.15"
  5450. },
  5451. "require-dev": {
  5452. "predis/predis": "~1.0",
  5453. "symfony/cache": "^4.4|^5.0",
  5454. "symfony/expression-language": "^4.4|^5.0",
  5455. "symfony/mime": "^4.4|^5.0"
  5456. },
  5457. "suggest": {
  5458. "symfony/mime": "To use the file extension guesser"
  5459. },
  5460. "type": "library",
  5461. "autoload": {
  5462. "psr-4": {
  5463. "Symfony\\Component\\HttpFoundation\\": ""
  5464. },
  5465. "exclude-from-classmap": [
  5466. "/Tests/"
  5467. ]
  5468. },
  5469. "notification-url": "https://packagist.org/downloads/",
  5470. "license": [
  5471. "MIT"
  5472. ],
  5473. "authors": [
  5474. {
  5475. "name": "Fabien Potencier",
  5476. "email": "fabien@symfony.com"
  5477. },
  5478. {
  5479. "name": "Symfony Community",
  5480. "homepage": "https://symfony.com/contributors"
  5481. }
  5482. ],
  5483. "description": "Defines an object-oriented layer for the HTTP specification",
  5484. "homepage": "https://symfony.com",
  5485. "support": {
  5486. "source": "https://github.com/symfony/http-foundation/tree/v5.3.2"
  5487. },
  5488. "funding": [
  5489. {
  5490. "url": "https://symfony.com/sponsor",
  5491. "type": "custom"
  5492. },
  5493. {
  5494. "url": "https://github.com/fabpot",
  5495. "type": "github"
  5496. },
  5497. {
  5498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5499. "type": "tidelift"
  5500. }
  5501. ],
  5502. "time": "2021-06-12T10:15:17+00:00"
  5503. },
  5504. {
  5505. "name": "symfony/http-kernel",
  5506. "version": "v5.3.2",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://github.com/symfony/http-kernel.git",
  5510. "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e7021165d9dbfb4051296b8de827e92c8a7b5c87",
  5515. "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87",
  5516. "shasum": "",
  5517. "mirrors": [
  5518. {
  5519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5520. "preferred": true
  5521. }
  5522. ]
  5523. },
  5524. "require": {
  5525. "php": ">=7.2.5",
  5526. "psr/log": "~1.0",
  5527. "symfony/deprecation-contracts": "^2.1",
  5528. "symfony/error-handler": "^4.4|^5.0",
  5529. "symfony/event-dispatcher": "^5.0",
  5530. "symfony/http-client-contracts": "^1.1|^2",
  5531. "symfony/http-foundation": "^5.3",
  5532. "symfony/polyfill-ctype": "^1.8",
  5533. "symfony/polyfill-php73": "^1.9",
  5534. "symfony/polyfill-php80": "^1.15"
  5535. },
  5536. "conflict": {
  5537. "symfony/browser-kit": "<4.4",
  5538. "symfony/cache": "<5.0",
  5539. "symfony/config": "<5.0",
  5540. "symfony/console": "<4.4",
  5541. "symfony/dependency-injection": "<5.3",
  5542. "symfony/doctrine-bridge": "<5.0",
  5543. "symfony/form": "<5.0",
  5544. "symfony/http-client": "<5.0",
  5545. "symfony/mailer": "<5.0",
  5546. "symfony/messenger": "<5.0",
  5547. "symfony/translation": "<5.0",
  5548. "symfony/twig-bridge": "<5.0",
  5549. "symfony/validator": "<5.0",
  5550. "twig/twig": "<2.13"
  5551. },
  5552. "provide": {
  5553. "psr/log-implementation": "1.0"
  5554. },
  5555. "require-dev": {
  5556. "psr/cache": "^1.0|^2.0|^3.0",
  5557. "symfony/browser-kit": "^4.4|^5.0",
  5558. "symfony/config": "^5.0",
  5559. "symfony/console": "^4.4|^5.0",
  5560. "symfony/css-selector": "^4.4|^5.0",
  5561. "symfony/dependency-injection": "^5.3",
  5562. "symfony/dom-crawler": "^4.4|^5.0",
  5563. "symfony/expression-language": "^4.4|^5.0",
  5564. "symfony/finder": "^4.4|^5.0",
  5565. "symfony/process": "^4.4|^5.0",
  5566. "symfony/routing": "^4.4|^5.0",
  5567. "symfony/stopwatch": "^4.4|^5.0",
  5568. "symfony/translation": "^4.4|^5.0",
  5569. "symfony/translation-contracts": "^1.1|^2",
  5570. "twig/twig": "^2.13|^3.0.4"
  5571. },
  5572. "suggest": {
  5573. "symfony/browser-kit": "",
  5574. "symfony/config": "",
  5575. "symfony/console": "",
  5576. "symfony/dependency-injection": ""
  5577. },
  5578. "type": "library",
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Symfony\\Component\\HttpKernel\\": ""
  5582. },
  5583. "exclude-from-classmap": [
  5584. "/Tests/"
  5585. ]
  5586. },
  5587. "notification-url": "https://packagist.org/downloads/",
  5588. "license": [
  5589. "MIT"
  5590. ],
  5591. "authors": [
  5592. {
  5593. "name": "Fabien Potencier",
  5594. "email": "fabien@symfony.com"
  5595. },
  5596. {
  5597. "name": "Symfony Community",
  5598. "homepage": "https://symfony.com/contributors"
  5599. }
  5600. ],
  5601. "description": "Provides a structured process for converting a Request into a Response",
  5602. "homepage": "https://symfony.com",
  5603. "support": {
  5604. "source": "https://github.com/symfony/http-kernel/tree/v5.3.2"
  5605. },
  5606. "funding": [
  5607. {
  5608. "url": "https://symfony.com/sponsor",
  5609. "type": "custom"
  5610. },
  5611. {
  5612. "url": "https://github.com/fabpot",
  5613. "type": "github"
  5614. },
  5615. {
  5616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5617. "type": "tidelift"
  5618. }
  5619. ],
  5620. "time": "2021-06-17T14:18:27+00:00"
  5621. },
  5622. {
  5623. "name": "symfony/mime",
  5624. "version": "v5.3.2",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://github.com/symfony/mime.git",
  5628. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5633. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5634. "shasum": "",
  5635. "mirrors": [
  5636. {
  5637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5638. "preferred": true
  5639. }
  5640. ]
  5641. },
  5642. "require": {
  5643. "php": ">=7.2.5",
  5644. "symfony/deprecation-contracts": "^2.1",
  5645. "symfony/polyfill-intl-idn": "^1.10",
  5646. "symfony/polyfill-mbstring": "^1.0",
  5647. "symfony/polyfill-php80": "^1.15"
  5648. },
  5649. "conflict": {
  5650. "egulias/email-validator": "~3.0.0",
  5651. "phpdocumentor/reflection-docblock": "<3.2.2",
  5652. "phpdocumentor/type-resolver": "<1.4.0",
  5653. "symfony/mailer": "<4.4"
  5654. },
  5655. "require-dev": {
  5656. "egulias/email-validator": "^2.1.10|^3.1",
  5657. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5658. "symfony/dependency-injection": "^4.4|^5.0",
  5659. "symfony/property-access": "^4.4|^5.1",
  5660. "symfony/property-info": "^4.4|^5.1",
  5661. "symfony/serializer": "^5.2"
  5662. },
  5663. "type": "library",
  5664. "autoload": {
  5665. "psr-4": {
  5666. "Symfony\\Component\\Mime\\": ""
  5667. },
  5668. "exclude-from-classmap": [
  5669. "/Tests/"
  5670. ]
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "MIT"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Fabien Potencier",
  5679. "email": "fabien@symfony.com"
  5680. },
  5681. {
  5682. "name": "Symfony Community",
  5683. "homepage": "https://symfony.com/contributors"
  5684. }
  5685. ],
  5686. "description": "Allows manipulating MIME messages",
  5687. "homepage": "https://symfony.com",
  5688. "keywords": [
  5689. "mime",
  5690. "mime-type"
  5691. ],
  5692. "support": {
  5693. "source": "https://github.com/symfony/mime/tree/v5.3.2"
  5694. },
  5695. "funding": [
  5696. {
  5697. "url": "https://symfony.com/sponsor",
  5698. "type": "custom"
  5699. },
  5700. {
  5701. "url": "https://github.com/fabpot",
  5702. "type": "github"
  5703. },
  5704. {
  5705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5706. "type": "tidelift"
  5707. }
  5708. ],
  5709. "time": "2021-06-09T10:58:01+00:00"
  5710. },
  5711. {
  5712. "name": "symfony/options-resolver",
  5713. "version": "v5.3.0",
  5714. "source": {
  5715. "type": "git",
  5716. "url": "https://github.com/symfony/options-resolver.git",
  5717. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5"
  5718. },
  5719. "dist": {
  5720. "type": "zip",
  5721. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5",
  5722. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5",
  5723. "shasum": "",
  5724. "mirrors": [
  5725. {
  5726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5727. "preferred": true
  5728. }
  5729. ]
  5730. },
  5731. "require": {
  5732. "php": ">=7.2.5",
  5733. "symfony/deprecation-contracts": "^2.1",
  5734. "symfony/polyfill-php73": "~1.0",
  5735. "symfony/polyfill-php80": "^1.15"
  5736. },
  5737. "type": "library",
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Symfony\\Component\\OptionsResolver\\": ""
  5741. },
  5742. "exclude-from-classmap": [
  5743. "/Tests/"
  5744. ]
  5745. },
  5746. "notification-url": "https://packagist.org/downloads/",
  5747. "license": [
  5748. "MIT"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "Fabien Potencier",
  5753. "email": "fabien@symfony.com"
  5754. },
  5755. {
  5756. "name": "Symfony Community",
  5757. "homepage": "https://symfony.com/contributors"
  5758. }
  5759. ],
  5760. "description": "Provides an improved replacement for the array_replace PHP function",
  5761. "homepage": "https://symfony.com",
  5762. "keywords": [
  5763. "config",
  5764. "configuration",
  5765. "options"
  5766. ],
  5767. "support": {
  5768. "source": "https://github.com/symfony/options-resolver/tree/v5.3.0"
  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-05-26T17:43:10+00:00"
  5785. },
  5786. {
  5787. "name": "symfony/polyfill-ctype",
  5788. "version": "v1.23.0",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://github.com/symfony/polyfill-ctype.git",
  5792. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5797. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  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.1"
  5808. },
  5809. "suggest": {
  5810. "ext-ctype": "For best performance"
  5811. },
  5812. "type": "library",
  5813. "extra": {
  5814. "branch-alias": {
  5815. "dev-main": "1.23-dev"
  5816. },
  5817. "thanks": {
  5818. "name": "symfony/polyfill",
  5819. "url": "https://github.com/symfony/polyfill"
  5820. }
  5821. },
  5822. "autoload": {
  5823. "psr-4": {
  5824. "Symfony\\Polyfill\\Ctype\\": ""
  5825. },
  5826. "files": [
  5827. "bootstrap.php"
  5828. ]
  5829. },
  5830. "notification-url": "https://packagist.org/downloads/",
  5831. "license": [
  5832. "MIT"
  5833. ],
  5834. "authors": [
  5835. {
  5836. "name": "Gert de Pagter",
  5837. "email": "BackEndTea@gmail.com"
  5838. },
  5839. {
  5840. "name": "Symfony Community",
  5841. "homepage": "https://symfony.com/contributors"
  5842. }
  5843. ],
  5844. "description": "Symfony polyfill for ctype functions",
  5845. "homepage": "https://symfony.com",
  5846. "keywords": [
  5847. "compatibility",
  5848. "ctype",
  5849. "polyfill",
  5850. "portable"
  5851. ],
  5852. "support": {
  5853. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5854. },
  5855. "funding": [
  5856. {
  5857. "url": "https://symfony.com/sponsor",
  5858. "type": "custom"
  5859. },
  5860. {
  5861. "url": "https://github.com/fabpot",
  5862. "type": "github"
  5863. },
  5864. {
  5865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5866. "type": "tidelift"
  5867. }
  5868. ],
  5869. "time": "2021-02-19T12:13:01+00:00"
  5870. },
  5871. {
  5872. "name": "symfony/polyfill-iconv",
  5873. "version": "v1.23.0",
  5874. "source": {
  5875. "type": "git",
  5876. "url": "https://github.com/symfony/polyfill-iconv.git",
  5877. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5878. },
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5882. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5883. "shasum": "",
  5884. "mirrors": [
  5885. {
  5886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5887. "preferred": true
  5888. }
  5889. ]
  5890. },
  5891. "require": {
  5892. "php": ">=7.1"
  5893. },
  5894. "suggest": {
  5895. "ext-iconv": "For best performance"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-main": "1.23-dev"
  5901. },
  5902. "thanks": {
  5903. "name": "symfony/polyfill",
  5904. "url": "https://github.com/symfony/polyfill"
  5905. }
  5906. },
  5907. "autoload": {
  5908. "psr-4": {
  5909. "Symfony\\Polyfill\\Iconv\\": ""
  5910. },
  5911. "files": [
  5912. "bootstrap.php"
  5913. ]
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Symfony polyfill for the Iconv extension",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "compatibility",
  5933. "iconv",
  5934. "polyfill",
  5935. "portable",
  5936. "shim"
  5937. ],
  5938. "support": {
  5939. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5940. },
  5941. "funding": [
  5942. {
  5943. "url": "https://symfony.com/sponsor",
  5944. "type": "custom"
  5945. },
  5946. {
  5947. "url": "https://github.com/fabpot",
  5948. "type": "github"
  5949. },
  5950. {
  5951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5952. "type": "tidelift"
  5953. }
  5954. ],
  5955. "time": "2021-05-27T09:27:20+00:00"
  5956. },
  5957. {
  5958. "name": "symfony/polyfill-intl-grapheme",
  5959. "version": "v1.23.0",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5963. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5968. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5969. "shasum": "",
  5970. "mirrors": [
  5971. {
  5972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5973. "preferred": true
  5974. }
  5975. ]
  5976. },
  5977. "require": {
  5978. "php": ">=7.1"
  5979. },
  5980. "suggest": {
  5981. "ext-intl": "For best performance"
  5982. },
  5983. "type": "library",
  5984. "extra": {
  5985. "branch-alias": {
  5986. "dev-main": "1.23-dev"
  5987. },
  5988. "thanks": {
  5989. "name": "symfony/polyfill",
  5990. "url": "https://github.com/symfony/polyfill"
  5991. }
  5992. },
  5993. "autoload": {
  5994. "psr-4": {
  5995. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5996. },
  5997. "files": [
  5998. "bootstrap.php"
  5999. ]
  6000. },
  6001. "notification-url": "https://packagist.org/downloads/",
  6002. "license": [
  6003. "MIT"
  6004. ],
  6005. "authors": [
  6006. {
  6007. "name": "Nicolas Grekas",
  6008. "email": "p@tchwork.com"
  6009. },
  6010. {
  6011. "name": "Symfony Community",
  6012. "homepage": "https://symfony.com/contributors"
  6013. }
  6014. ],
  6015. "description": "Symfony polyfill for intl's grapheme_* functions",
  6016. "homepage": "https://symfony.com",
  6017. "keywords": [
  6018. "compatibility",
  6019. "grapheme",
  6020. "intl",
  6021. "polyfill",
  6022. "portable",
  6023. "shim"
  6024. ],
  6025. "support": {
  6026. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  6027. },
  6028. "funding": [
  6029. {
  6030. "url": "https://symfony.com/sponsor",
  6031. "type": "custom"
  6032. },
  6033. {
  6034. "url": "https://github.com/fabpot",
  6035. "type": "github"
  6036. },
  6037. {
  6038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6039. "type": "tidelift"
  6040. }
  6041. ],
  6042. "time": "2021-05-27T09:17:38+00:00"
  6043. },
  6044. {
  6045. "name": "symfony/polyfill-intl-idn",
  6046. "version": "v1.23.0",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6050. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6055. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6056. "shasum": "",
  6057. "mirrors": [
  6058. {
  6059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6060. "preferred": true
  6061. }
  6062. ]
  6063. },
  6064. "require": {
  6065. "php": ">=7.1",
  6066. "symfony/polyfill-intl-normalizer": "^1.10",
  6067. "symfony/polyfill-php72": "^1.10"
  6068. },
  6069. "suggest": {
  6070. "ext-intl": "For best performance"
  6071. },
  6072. "type": "library",
  6073. "extra": {
  6074. "branch-alias": {
  6075. "dev-main": "1.23-dev"
  6076. },
  6077. "thanks": {
  6078. "name": "symfony/polyfill",
  6079. "url": "https://github.com/symfony/polyfill"
  6080. }
  6081. },
  6082. "autoload": {
  6083. "psr-4": {
  6084. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6085. },
  6086. "files": [
  6087. "bootstrap.php"
  6088. ]
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Laurent Bassin",
  6097. "email": "laurent@bassin.info"
  6098. },
  6099. {
  6100. "name": "Trevor Rowbotham",
  6101. "email": "trevor.rowbotham@pm.me"
  6102. },
  6103. {
  6104. "name": "Symfony Community",
  6105. "homepage": "https://symfony.com/contributors"
  6106. }
  6107. ],
  6108. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6109. "homepage": "https://symfony.com",
  6110. "keywords": [
  6111. "compatibility",
  6112. "idn",
  6113. "intl",
  6114. "polyfill",
  6115. "portable",
  6116. "shim"
  6117. ],
  6118. "support": {
  6119. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6120. },
  6121. "funding": [
  6122. {
  6123. "url": "https://symfony.com/sponsor",
  6124. "type": "custom"
  6125. },
  6126. {
  6127. "url": "https://github.com/fabpot",
  6128. "type": "github"
  6129. },
  6130. {
  6131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6132. "type": "tidelift"
  6133. }
  6134. ],
  6135. "time": "2021-05-27T09:27:20+00:00"
  6136. },
  6137. {
  6138. "name": "symfony/polyfill-intl-normalizer",
  6139. "version": "v1.23.0",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6143. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6148. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6149. "shasum": "",
  6150. "mirrors": [
  6151. {
  6152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6153. "preferred": true
  6154. }
  6155. ]
  6156. },
  6157. "require": {
  6158. "php": ">=7.1"
  6159. },
  6160. "suggest": {
  6161. "ext-intl": "For best performance"
  6162. },
  6163. "type": "library",
  6164. "extra": {
  6165. "branch-alias": {
  6166. "dev-main": "1.23-dev"
  6167. },
  6168. "thanks": {
  6169. "name": "symfony/polyfill",
  6170. "url": "https://github.com/symfony/polyfill"
  6171. }
  6172. },
  6173. "autoload": {
  6174. "psr-4": {
  6175. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6176. },
  6177. "files": [
  6178. "bootstrap.php"
  6179. ],
  6180. "classmap": [
  6181. "Resources/stubs"
  6182. ]
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Nicolas Grekas",
  6191. "email": "p@tchwork.com"
  6192. },
  6193. {
  6194. "name": "Symfony Community",
  6195. "homepage": "https://symfony.com/contributors"
  6196. }
  6197. ],
  6198. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6199. "homepage": "https://symfony.com",
  6200. "keywords": [
  6201. "compatibility",
  6202. "intl",
  6203. "normalizer",
  6204. "polyfill",
  6205. "portable",
  6206. "shim"
  6207. ],
  6208. "support": {
  6209. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6210. },
  6211. "funding": [
  6212. {
  6213. "url": "https://symfony.com/sponsor",
  6214. "type": "custom"
  6215. },
  6216. {
  6217. "url": "https://github.com/fabpot",
  6218. "type": "github"
  6219. },
  6220. {
  6221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6222. "type": "tidelift"
  6223. }
  6224. ],
  6225. "time": "2021-02-19T12:13:01+00:00"
  6226. },
  6227. {
  6228. "name": "symfony/polyfill-mbstring",
  6229. "version": "v1.23.0",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6233. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6238. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6239. "shasum": "",
  6240. "mirrors": [
  6241. {
  6242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6243. "preferred": true
  6244. }
  6245. ]
  6246. },
  6247. "require": {
  6248. "php": ">=7.1"
  6249. },
  6250. "suggest": {
  6251. "ext-mbstring": "For best performance"
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "branch-alias": {
  6256. "dev-main": "1.23-dev"
  6257. },
  6258. "thanks": {
  6259. "name": "symfony/polyfill",
  6260. "url": "https://github.com/symfony/polyfill"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Symfony\\Polyfill\\Mbstring\\": ""
  6266. },
  6267. "files": [
  6268. "bootstrap.php"
  6269. ]
  6270. },
  6271. "notification-url": "https://packagist.org/downloads/",
  6272. "license": [
  6273. "MIT"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Nicolas Grekas",
  6278. "email": "p@tchwork.com"
  6279. },
  6280. {
  6281. "name": "Symfony Community",
  6282. "homepage": "https://symfony.com/contributors"
  6283. }
  6284. ],
  6285. "description": "Symfony polyfill for the Mbstring extension",
  6286. "homepage": "https://symfony.com",
  6287. "keywords": [
  6288. "compatibility",
  6289. "mbstring",
  6290. "polyfill",
  6291. "portable",
  6292. "shim"
  6293. ],
  6294. "support": {
  6295. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6296. },
  6297. "funding": [
  6298. {
  6299. "url": "https://symfony.com/sponsor",
  6300. "type": "custom"
  6301. },
  6302. {
  6303. "url": "https://github.com/fabpot",
  6304. "type": "github"
  6305. },
  6306. {
  6307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6308. "type": "tidelift"
  6309. }
  6310. ],
  6311. "time": "2021-05-27T09:27:20+00:00"
  6312. },
  6313. {
  6314. "name": "symfony/polyfill-php72",
  6315. "version": "v1.23.0",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/symfony/polyfill-php72.git",
  6319. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6324. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6325. "shasum": "",
  6326. "mirrors": [
  6327. {
  6328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6329. "preferred": true
  6330. }
  6331. ]
  6332. },
  6333. "require": {
  6334. "php": ">=7.1"
  6335. },
  6336. "type": "library",
  6337. "extra": {
  6338. "branch-alias": {
  6339. "dev-main": "1.23-dev"
  6340. },
  6341. "thanks": {
  6342. "name": "symfony/polyfill",
  6343. "url": "https://github.com/symfony/polyfill"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "Symfony\\Polyfill\\Php72\\": ""
  6349. },
  6350. "files": [
  6351. "bootstrap.php"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Nicolas Grekas",
  6361. "email": "p@tchwork.com"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6369. "homepage": "https://symfony.com",
  6370. "keywords": [
  6371. "compatibility",
  6372. "polyfill",
  6373. "portable",
  6374. "shim"
  6375. ],
  6376. "support": {
  6377. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6378. },
  6379. "funding": [
  6380. {
  6381. "url": "https://symfony.com/sponsor",
  6382. "type": "custom"
  6383. },
  6384. {
  6385. "url": "https://github.com/fabpot",
  6386. "type": "github"
  6387. },
  6388. {
  6389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6390. "type": "tidelift"
  6391. }
  6392. ],
  6393. "time": "2021-05-27T09:17:38+00:00"
  6394. },
  6395. {
  6396. "name": "symfony/polyfill-php73",
  6397. "version": "v1.23.0",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/symfony/polyfill-php73.git",
  6401. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6406. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6407. "shasum": "",
  6408. "mirrors": [
  6409. {
  6410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6411. "preferred": true
  6412. }
  6413. ]
  6414. },
  6415. "require": {
  6416. "php": ">=7.1"
  6417. },
  6418. "type": "library",
  6419. "extra": {
  6420. "branch-alias": {
  6421. "dev-main": "1.23-dev"
  6422. },
  6423. "thanks": {
  6424. "name": "symfony/polyfill",
  6425. "url": "https://github.com/symfony/polyfill"
  6426. }
  6427. },
  6428. "autoload": {
  6429. "psr-4": {
  6430. "Symfony\\Polyfill\\Php73\\": ""
  6431. },
  6432. "files": [
  6433. "bootstrap.php"
  6434. ],
  6435. "classmap": [
  6436. "Resources/stubs"
  6437. ]
  6438. },
  6439. "notification-url": "https://packagist.org/downloads/",
  6440. "license": [
  6441. "MIT"
  6442. ],
  6443. "authors": [
  6444. {
  6445. "name": "Nicolas Grekas",
  6446. "email": "p@tchwork.com"
  6447. },
  6448. {
  6449. "name": "Symfony Community",
  6450. "homepage": "https://symfony.com/contributors"
  6451. }
  6452. ],
  6453. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6454. "homepage": "https://symfony.com",
  6455. "keywords": [
  6456. "compatibility",
  6457. "polyfill",
  6458. "portable",
  6459. "shim"
  6460. ],
  6461. "support": {
  6462. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6463. },
  6464. "funding": [
  6465. {
  6466. "url": "https://symfony.com/sponsor",
  6467. "type": "custom"
  6468. },
  6469. {
  6470. "url": "https://github.com/fabpot",
  6471. "type": "github"
  6472. },
  6473. {
  6474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6475. "type": "tidelift"
  6476. }
  6477. ],
  6478. "time": "2021-02-19T12:13:01+00:00"
  6479. },
  6480. {
  6481. "name": "symfony/polyfill-php80",
  6482. "version": "v1.23.0",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/symfony/polyfill-php80.git",
  6486. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6491. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6492. "shasum": "",
  6493. "mirrors": [
  6494. {
  6495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6496. "preferred": true
  6497. }
  6498. ]
  6499. },
  6500. "require": {
  6501. "php": ">=7.1"
  6502. },
  6503. "type": "library",
  6504. "extra": {
  6505. "branch-alias": {
  6506. "dev-main": "1.23-dev"
  6507. },
  6508. "thanks": {
  6509. "name": "symfony/polyfill",
  6510. "url": "https://github.com/symfony/polyfill"
  6511. }
  6512. },
  6513. "autoload": {
  6514. "psr-4": {
  6515. "Symfony\\Polyfill\\Php80\\": ""
  6516. },
  6517. "files": [
  6518. "bootstrap.php"
  6519. ],
  6520. "classmap": [
  6521. "Resources/stubs"
  6522. ]
  6523. },
  6524. "notification-url": "https://packagist.org/downloads/",
  6525. "license": [
  6526. "MIT"
  6527. ],
  6528. "authors": [
  6529. {
  6530. "name": "Ion Bazan",
  6531. "email": "ion.bazan@gmail.com"
  6532. },
  6533. {
  6534. "name": "Nicolas Grekas",
  6535. "email": "p@tchwork.com"
  6536. },
  6537. {
  6538. "name": "Symfony Community",
  6539. "homepage": "https://symfony.com/contributors"
  6540. }
  6541. ],
  6542. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6543. "homepage": "https://symfony.com",
  6544. "keywords": [
  6545. "compatibility",
  6546. "polyfill",
  6547. "portable",
  6548. "shim"
  6549. ],
  6550. "support": {
  6551. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2021-02-19T12:13:01+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/process",
  6571. "version": "v5.3.2",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/process.git",
  6575. "reference": "714b47f9196de61a196d86c4bad5f09201b307df"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df",
  6580. "reference": "714b47f9196de61a196d86c4bad5f09201b307df",
  6581. "shasum": "",
  6582. "mirrors": [
  6583. {
  6584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6585. "preferred": true
  6586. }
  6587. ]
  6588. },
  6589. "require": {
  6590. "php": ">=7.2.5",
  6591. "symfony/polyfill-php80": "^1.15"
  6592. },
  6593. "type": "library",
  6594. "autoload": {
  6595. "psr-4": {
  6596. "Symfony\\Component\\Process\\": ""
  6597. },
  6598. "exclude-from-classmap": [
  6599. "/Tests/"
  6600. ]
  6601. },
  6602. "notification-url": "https://packagist.org/downloads/",
  6603. "license": [
  6604. "MIT"
  6605. ],
  6606. "authors": [
  6607. {
  6608. "name": "Fabien Potencier",
  6609. "email": "fabien@symfony.com"
  6610. },
  6611. {
  6612. "name": "Symfony Community",
  6613. "homepage": "https://symfony.com/contributors"
  6614. }
  6615. ],
  6616. "description": "Executes commands in sub-processes",
  6617. "homepage": "https://symfony.com",
  6618. "support": {
  6619. "source": "https://github.com/symfony/process/tree/v5.3.2"
  6620. },
  6621. "funding": [
  6622. {
  6623. "url": "https://symfony.com/sponsor",
  6624. "type": "custom"
  6625. },
  6626. {
  6627. "url": "https://github.com/fabpot",
  6628. "type": "github"
  6629. },
  6630. {
  6631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6632. "type": "tidelift"
  6633. }
  6634. ],
  6635. "time": "2021-06-12T10:15:01+00:00"
  6636. },
  6637. {
  6638. "name": "symfony/property-access",
  6639. "version": "v5.3.0",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/symfony/property-access.git",
  6643. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/symfony/property-access/zipball/8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6648. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6649. "shasum": "",
  6650. "mirrors": [
  6651. {
  6652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6653. "preferred": true
  6654. }
  6655. ]
  6656. },
  6657. "require": {
  6658. "php": ">=7.2.5",
  6659. "symfony/deprecation-contracts": "^2.1",
  6660. "symfony/polyfill-php80": "^1.15",
  6661. "symfony/property-info": "^5.2"
  6662. },
  6663. "require-dev": {
  6664. "symfony/cache": "^4.4|^5.0"
  6665. },
  6666. "suggest": {
  6667. "psr/cache-implementation": "To cache access methods."
  6668. },
  6669. "type": "library",
  6670. "autoload": {
  6671. "psr-4": {
  6672. "Symfony\\Component\\PropertyAccess\\": ""
  6673. },
  6674. "exclude-from-classmap": [
  6675. "/Tests/"
  6676. ]
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "Fabien Potencier",
  6685. "email": "fabien@symfony.com"
  6686. },
  6687. {
  6688. "name": "Symfony Community",
  6689. "homepage": "https://symfony.com/contributors"
  6690. }
  6691. ],
  6692. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6693. "homepage": "https://symfony.com",
  6694. "keywords": [
  6695. "access",
  6696. "array",
  6697. "extraction",
  6698. "index",
  6699. "injection",
  6700. "object",
  6701. "property",
  6702. "property path",
  6703. "reflection"
  6704. ],
  6705. "support": {
  6706. "source": "https://github.com/symfony/property-access/tree/v5.3.0"
  6707. },
  6708. "funding": [
  6709. {
  6710. "url": "https://symfony.com/sponsor",
  6711. "type": "custom"
  6712. },
  6713. {
  6714. "url": "https://github.com/fabpot",
  6715. "type": "github"
  6716. },
  6717. {
  6718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6719. "type": "tidelift"
  6720. }
  6721. ],
  6722. "time": "2021-05-26T17:43:10+00:00"
  6723. },
  6724. {
  6725. "name": "symfony/property-info",
  6726. "version": "v5.3.1",
  6727. "source": {
  6728. "type": "git",
  6729. "url": "https://github.com/symfony/property-info.git",
  6730. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf"
  6731. },
  6732. "dist": {
  6733. "type": "zip",
  6734. "url": "https://api.github.com/repos/symfony/property-info/zipball/6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6735. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6736. "shasum": "",
  6737. "mirrors": [
  6738. {
  6739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6740. "preferred": true
  6741. }
  6742. ]
  6743. },
  6744. "require": {
  6745. "php": ">=7.2.5",
  6746. "symfony/deprecation-contracts": "^2.1",
  6747. "symfony/polyfill-php80": "^1.15",
  6748. "symfony/string": "^5.1"
  6749. },
  6750. "conflict": {
  6751. "phpdocumentor/reflection-docblock": "<3.2.2",
  6752. "phpdocumentor/type-resolver": "<1.4.0",
  6753. "symfony/dependency-injection": "<4.4"
  6754. },
  6755. "require-dev": {
  6756. "doctrine/annotations": "^1.10.4",
  6757. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6758. "symfony/cache": "^4.4|^5.0",
  6759. "symfony/dependency-injection": "^4.4|^5.0",
  6760. "symfony/serializer": "^4.4|^5.0"
  6761. },
  6762. "suggest": {
  6763. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6764. "psr/cache-implementation": "To cache results",
  6765. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6766. "symfony/serializer": "To use Serializer metadata"
  6767. },
  6768. "type": "library",
  6769. "autoload": {
  6770. "psr-4": {
  6771. "Symfony\\Component\\PropertyInfo\\": ""
  6772. },
  6773. "exclude-from-classmap": [
  6774. "/Tests/"
  6775. ]
  6776. },
  6777. "notification-url": "https://packagist.org/downloads/",
  6778. "license": [
  6779. "MIT"
  6780. ],
  6781. "authors": [
  6782. {
  6783. "name": "Kévin Dunglas",
  6784. "email": "dunglas@gmail.com"
  6785. },
  6786. {
  6787. "name": "Symfony Community",
  6788. "homepage": "https://symfony.com/contributors"
  6789. }
  6790. ],
  6791. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6792. "homepage": "https://symfony.com",
  6793. "keywords": [
  6794. "doctrine",
  6795. "phpdoc",
  6796. "property",
  6797. "symfony",
  6798. "type",
  6799. "validator"
  6800. ],
  6801. "support": {
  6802. "source": "https://github.com/symfony/property-info/tree/v5.3.1"
  6803. },
  6804. "funding": [
  6805. {
  6806. "url": "https://symfony.com/sponsor",
  6807. "type": "custom"
  6808. },
  6809. {
  6810. "url": "https://github.com/fabpot",
  6811. "type": "github"
  6812. },
  6813. {
  6814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6815. "type": "tidelift"
  6816. }
  6817. ],
  6818. "time": "2021-05-31T12:40:48+00:00"
  6819. },
  6820. {
  6821. "name": "symfony/routing",
  6822. "version": "v5.3.0",
  6823. "source": {
  6824. "type": "git",
  6825. "url": "https://github.com/symfony/routing.git",
  6826. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6827. },
  6828. "dist": {
  6829. "type": "zip",
  6830. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6831. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6832. "shasum": "",
  6833. "mirrors": [
  6834. {
  6835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6836. "preferred": true
  6837. }
  6838. ]
  6839. },
  6840. "require": {
  6841. "php": ">=7.2.5",
  6842. "symfony/deprecation-contracts": "^2.1",
  6843. "symfony/polyfill-php80": "^1.15"
  6844. },
  6845. "conflict": {
  6846. "doctrine/annotations": "<1.12",
  6847. "symfony/config": "<5.3",
  6848. "symfony/dependency-injection": "<4.4",
  6849. "symfony/yaml": "<4.4"
  6850. },
  6851. "require-dev": {
  6852. "doctrine/annotations": "^1.12",
  6853. "psr/log": "~1.0",
  6854. "symfony/config": "^5.3",
  6855. "symfony/dependency-injection": "^4.4|^5.0",
  6856. "symfony/expression-language": "^4.4|^5.0",
  6857. "symfony/http-foundation": "^4.4|^5.0",
  6858. "symfony/yaml": "^4.4|^5.0"
  6859. },
  6860. "suggest": {
  6861. "symfony/config": "For using the all-in-one router or any loader",
  6862. "symfony/expression-language": "For using expression matching",
  6863. "symfony/http-foundation": "For using a Symfony Request object",
  6864. "symfony/yaml": "For using the YAML loader"
  6865. },
  6866. "type": "library",
  6867. "autoload": {
  6868. "psr-4": {
  6869. "Symfony\\Component\\Routing\\": ""
  6870. },
  6871. "exclude-from-classmap": [
  6872. "/Tests/"
  6873. ]
  6874. },
  6875. "notification-url": "https://packagist.org/downloads/",
  6876. "license": [
  6877. "MIT"
  6878. ],
  6879. "authors": [
  6880. {
  6881. "name": "Fabien Potencier",
  6882. "email": "fabien@symfony.com"
  6883. },
  6884. {
  6885. "name": "Symfony Community",
  6886. "homepage": "https://symfony.com/contributors"
  6887. }
  6888. ],
  6889. "description": "Maps an HTTP request to a set of configuration variables",
  6890. "homepage": "https://symfony.com",
  6891. "keywords": [
  6892. "router",
  6893. "routing",
  6894. "uri",
  6895. "url"
  6896. ],
  6897. "support": {
  6898. "source": "https://github.com/symfony/routing/tree/v5.3.0"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://symfony.com/sponsor",
  6903. "type": "custom"
  6904. },
  6905. {
  6906. "url": "https://github.com/fabpot",
  6907. "type": "github"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2021-05-26T17:43:10+00:00"
  6915. },
  6916. {
  6917. "name": "symfony/service-contracts",
  6918. "version": "v2.4.0",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/symfony/service-contracts.git",
  6922. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6927. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6928. "shasum": "",
  6929. "mirrors": [
  6930. {
  6931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6932. "preferred": true
  6933. }
  6934. ]
  6935. },
  6936. "require": {
  6937. "php": ">=7.2.5",
  6938. "psr/container": "^1.1"
  6939. },
  6940. "suggest": {
  6941. "symfony/service-implementation": ""
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "branch-alias": {
  6946. "dev-main": "2.4-dev"
  6947. },
  6948. "thanks": {
  6949. "name": "symfony/contracts",
  6950. "url": "https://github.com/symfony/contracts"
  6951. }
  6952. },
  6953. "autoload": {
  6954. "psr-4": {
  6955. "Symfony\\Contracts\\Service\\": ""
  6956. }
  6957. },
  6958. "notification-url": "https://packagist.org/downloads/",
  6959. "license": [
  6960. "MIT"
  6961. ],
  6962. "authors": [
  6963. {
  6964. "name": "Nicolas Grekas",
  6965. "email": "p@tchwork.com"
  6966. },
  6967. {
  6968. "name": "Symfony Community",
  6969. "homepage": "https://symfony.com/contributors"
  6970. }
  6971. ],
  6972. "description": "Generic abstractions related to writing services",
  6973. "homepage": "https://symfony.com",
  6974. "keywords": [
  6975. "abstractions",
  6976. "contracts",
  6977. "decoupling",
  6978. "interfaces",
  6979. "interoperability",
  6980. "standards"
  6981. ],
  6982. "support": {
  6983. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6984. },
  6985. "funding": [
  6986. {
  6987. "url": "https://symfony.com/sponsor",
  6988. "type": "custom"
  6989. },
  6990. {
  6991. "url": "https://github.com/fabpot",
  6992. "type": "github"
  6993. },
  6994. {
  6995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6996. "type": "tidelift"
  6997. }
  6998. ],
  6999. "time": "2021-04-01T10:43:52+00:00"
  7000. },
  7001. {
  7002. "name": "symfony/string",
  7003. "version": "v5.3.2",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/symfony/string.git",
  7007. "reference": "0732e97e41c0a590f77e231afc16a327375d50b0"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/symfony/string/zipball/0732e97e41c0a590f77e231afc16a327375d50b0",
  7012. "reference": "0732e97e41c0a590f77e231afc16a327375d50b0",
  7013. "shasum": "",
  7014. "mirrors": [
  7015. {
  7016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7017. "preferred": true
  7018. }
  7019. ]
  7020. },
  7021. "require": {
  7022. "php": ">=7.2.5",
  7023. "symfony/polyfill-ctype": "~1.8",
  7024. "symfony/polyfill-intl-grapheme": "~1.0",
  7025. "symfony/polyfill-intl-normalizer": "~1.0",
  7026. "symfony/polyfill-mbstring": "~1.0",
  7027. "symfony/polyfill-php80": "~1.15"
  7028. },
  7029. "require-dev": {
  7030. "symfony/error-handler": "^4.4|^5.0",
  7031. "symfony/http-client": "^4.4|^5.0",
  7032. "symfony/translation-contracts": "^1.1|^2",
  7033. "symfony/var-exporter": "^4.4|^5.0"
  7034. },
  7035. "type": "library",
  7036. "autoload": {
  7037. "psr-4": {
  7038. "Symfony\\Component\\String\\": ""
  7039. },
  7040. "files": [
  7041. "Resources/functions.php"
  7042. ],
  7043. "exclude-from-classmap": [
  7044. "/Tests/"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Nicolas Grekas",
  7054. "email": "p@tchwork.com"
  7055. },
  7056. {
  7057. "name": "Symfony Community",
  7058. "homepage": "https://symfony.com/contributors"
  7059. }
  7060. ],
  7061. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7062. "homepage": "https://symfony.com",
  7063. "keywords": [
  7064. "grapheme",
  7065. "i18n",
  7066. "string",
  7067. "unicode",
  7068. "utf-8",
  7069. "utf8"
  7070. ],
  7071. "support": {
  7072. "source": "https://github.com/symfony/string/tree/v5.3.2"
  7073. },
  7074. "funding": [
  7075. {
  7076. "url": "https://symfony.com/sponsor",
  7077. "type": "custom"
  7078. },
  7079. {
  7080. "url": "https://github.com/fabpot",
  7081. "type": "github"
  7082. },
  7083. {
  7084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7085. "type": "tidelift"
  7086. }
  7087. ],
  7088. "time": "2021-06-06T09:51:56+00:00"
  7089. },
  7090. {
  7091. "name": "symfony/translation",
  7092. "version": "v5.3.2",
  7093. "source": {
  7094. "type": "git",
  7095. "url": "https://github.com/symfony/translation.git",
  7096. "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b"
  7097. },
  7098. "dist": {
  7099. "type": "zip",
  7100. "url": "https://api.github.com/repos/symfony/translation/zipball/7e2603bcc598e14804c4d2359d8dc4ee3c40391b",
  7101. "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b",
  7102. "shasum": "",
  7103. "mirrors": [
  7104. {
  7105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7106. "preferred": true
  7107. }
  7108. ]
  7109. },
  7110. "require": {
  7111. "php": ">=7.2.5",
  7112. "symfony/deprecation-contracts": "^2.1",
  7113. "symfony/polyfill-mbstring": "~1.0",
  7114. "symfony/polyfill-php80": "^1.15",
  7115. "symfony/translation-contracts": "^2.3"
  7116. },
  7117. "conflict": {
  7118. "symfony/config": "<4.4",
  7119. "symfony/dependency-injection": "<5.0",
  7120. "symfony/http-kernel": "<5.0",
  7121. "symfony/twig-bundle": "<5.0",
  7122. "symfony/yaml": "<4.4"
  7123. },
  7124. "provide": {
  7125. "symfony/translation-implementation": "2.3"
  7126. },
  7127. "require-dev": {
  7128. "psr/log": "~1.0",
  7129. "symfony/config": "^4.4|^5.0",
  7130. "symfony/console": "^4.4|^5.0",
  7131. "symfony/dependency-injection": "^5.0",
  7132. "symfony/finder": "^4.4|^5.0",
  7133. "symfony/http-kernel": "^5.0",
  7134. "symfony/intl": "^4.4|^5.0",
  7135. "symfony/polyfill-intl-icu": "^1.21",
  7136. "symfony/service-contracts": "^1.1.2|^2",
  7137. "symfony/yaml": "^4.4|^5.0"
  7138. },
  7139. "suggest": {
  7140. "psr/log-implementation": "To use logging capability in translator",
  7141. "symfony/config": "",
  7142. "symfony/yaml": ""
  7143. },
  7144. "type": "library",
  7145. "autoload": {
  7146. "files": [
  7147. "Resources/functions.php"
  7148. ],
  7149. "psr-4": {
  7150. "Symfony\\Component\\Translation\\": ""
  7151. },
  7152. "exclude-from-classmap": [
  7153. "/Tests/"
  7154. ]
  7155. },
  7156. "notification-url": "https://packagist.org/downloads/",
  7157. "license": [
  7158. "MIT"
  7159. ],
  7160. "authors": [
  7161. {
  7162. "name": "Fabien Potencier",
  7163. "email": "fabien@symfony.com"
  7164. },
  7165. {
  7166. "name": "Symfony Community",
  7167. "homepage": "https://symfony.com/contributors"
  7168. }
  7169. ],
  7170. "description": "Provides tools to internationalize your application",
  7171. "homepage": "https://symfony.com",
  7172. "support": {
  7173. "source": "https://github.com/symfony/translation/tree/v5.3.2"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2021-06-06T09:51:56+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/translation-contracts",
  7193. "version": "v2.4.0",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/translation-contracts.git",
  7197. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7202. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7203. "shasum": "",
  7204. "mirrors": [
  7205. {
  7206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7207. "preferred": true
  7208. }
  7209. ]
  7210. },
  7211. "require": {
  7212. "php": ">=7.2.5"
  7213. },
  7214. "suggest": {
  7215. "symfony/translation-implementation": ""
  7216. },
  7217. "type": "library",
  7218. "extra": {
  7219. "branch-alias": {
  7220. "dev-main": "2.4-dev"
  7221. },
  7222. "thanks": {
  7223. "name": "symfony/contracts",
  7224. "url": "https://github.com/symfony/contracts"
  7225. }
  7226. },
  7227. "autoload": {
  7228. "psr-4": {
  7229. "Symfony\\Contracts\\Translation\\": ""
  7230. }
  7231. },
  7232. "notification-url": "https://packagist.org/downloads/",
  7233. "license": [
  7234. "MIT"
  7235. ],
  7236. "authors": [
  7237. {
  7238. "name": "Nicolas Grekas",
  7239. "email": "p@tchwork.com"
  7240. },
  7241. {
  7242. "name": "Symfony Community",
  7243. "homepage": "https://symfony.com/contributors"
  7244. }
  7245. ],
  7246. "description": "Generic abstractions related to translation",
  7247. "homepage": "https://symfony.com",
  7248. "keywords": [
  7249. "abstractions",
  7250. "contracts",
  7251. "decoupling",
  7252. "interfaces",
  7253. "interoperability",
  7254. "standards"
  7255. ],
  7256. "support": {
  7257. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7258. },
  7259. "funding": [
  7260. {
  7261. "url": "https://symfony.com/sponsor",
  7262. "type": "custom"
  7263. },
  7264. {
  7265. "url": "https://github.com/fabpot",
  7266. "type": "github"
  7267. },
  7268. {
  7269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7270. "type": "tidelift"
  7271. }
  7272. ],
  7273. "time": "2021-03-23T23:28:01+00:00"
  7274. },
  7275. {
  7276. "name": "symfony/var-dumper",
  7277. "version": "v5.3.2",
  7278. "source": {
  7279. "type": "git",
  7280. "url": "https://github.com/symfony/var-dumper.git",
  7281. "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae"
  7282. },
  7283. "dist": {
  7284. "type": "zip",
  7285. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/905a22c68b292ffb6f20d7636c36b220d1fba5ae",
  7286. "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae",
  7287. "shasum": "",
  7288. "mirrors": [
  7289. {
  7290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7291. "preferred": true
  7292. }
  7293. ]
  7294. },
  7295. "require": {
  7296. "php": ">=7.2.5",
  7297. "symfony/polyfill-mbstring": "~1.0",
  7298. "symfony/polyfill-php80": "^1.15"
  7299. },
  7300. "conflict": {
  7301. "phpunit/phpunit": "<5.4.3",
  7302. "symfony/console": "<4.4"
  7303. },
  7304. "require-dev": {
  7305. "ext-iconv": "*",
  7306. "symfony/console": "^4.4|^5.0",
  7307. "symfony/process": "^4.4|^5.0",
  7308. "twig/twig": "^2.13|^3.0.4"
  7309. },
  7310. "suggest": {
  7311. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7312. "ext-intl": "To show region name in time zone dump",
  7313. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7314. },
  7315. "bin": [
  7316. "Resources/bin/var-dump-server"
  7317. ],
  7318. "type": "library",
  7319. "autoload": {
  7320. "files": [
  7321. "Resources/functions/dump.php"
  7322. ],
  7323. "psr-4": {
  7324. "Symfony\\Component\\VarDumper\\": ""
  7325. },
  7326. "exclude-from-classmap": [
  7327. "/Tests/"
  7328. ]
  7329. },
  7330. "notification-url": "https://packagist.org/downloads/",
  7331. "license": [
  7332. "MIT"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Nicolas Grekas",
  7337. "email": "p@tchwork.com"
  7338. },
  7339. {
  7340. "name": "Symfony Community",
  7341. "homepage": "https://symfony.com/contributors"
  7342. }
  7343. ],
  7344. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7345. "homepage": "https://symfony.com",
  7346. "keywords": [
  7347. "debug",
  7348. "dump"
  7349. ],
  7350. "support": {
  7351. "source": "https://github.com/symfony/var-dumper/tree/v5.3.2"
  7352. },
  7353. "funding": [
  7354. {
  7355. "url": "https://symfony.com/sponsor",
  7356. "type": "custom"
  7357. },
  7358. {
  7359. "url": "https://github.com/fabpot",
  7360. "type": "github"
  7361. },
  7362. {
  7363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7364. "type": "tidelift"
  7365. }
  7366. ],
  7367. "time": "2021-06-06T09:51:56+00:00"
  7368. },
  7369. {
  7370. "name": "te7a-houdini/laravel-trix",
  7371. "version": "2.0.4",
  7372. "source": {
  7373. "type": "git",
  7374. "url": "https://github.com/amaelftah/laravel-trix.git",
  7375. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7376. },
  7377. "dist": {
  7378. "type": "zip",
  7379. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7380. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7381. "shasum": "",
  7382. "mirrors": [
  7383. {
  7384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7385. "preferred": true
  7386. }
  7387. ]
  7388. },
  7389. "require": {
  7390. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7391. "php": "^7.1"
  7392. },
  7393. "require-dev": {
  7394. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7395. },
  7396. "type": "library",
  7397. "extra": {
  7398. "laravel": {
  7399. "providers": [
  7400. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7401. ]
  7402. }
  7403. },
  7404. "autoload": {
  7405. "psr-4": {
  7406. "Te7aHoudini\\LaravelTrix\\": "src"
  7407. }
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "MIT"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Ahmed Abd El Ftah",
  7416. "email": "ahmedabdelftah95165@gmail.com",
  7417. "role": "Developer"
  7418. }
  7419. ],
  7420. "description": "trix editor for laravel inspired by ActionText for rails",
  7421. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7422. "keywords": [
  7423. "laravel-trix",
  7424. "te7a-houdini"
  7425. ],
  7426. "support": {
  7427. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7428. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7429. },
  7430. "time": "2020-11-12T10:48:06+00:00"
  7431. },
  7432. {
  7433. "name": "tightenco/collect",
  7434. "version": "v5.6.33",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://github.com/tighten/collect.git",
  7438. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7443. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7444. "shasum": "",
  7445. "mirrors": [
  7446. {
  7447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7448. "preferred": true
  7449. }
  7450. ]
  7451. },
  7452. "require": {
  7453. "php": ">=7.1.3",
  7454. "symfony/var-dumper": ">=3.1.10"
  7455. },
  7456. "require-dev": {
  7457. "mockery/mockery": "~1.0",
  7458. "nesbot/carbon": "~1.20",
  7459. "phpunit/phpunit": "~7.0"
  7460. },
  7461. "type": "library",
  7462. "autoload": {
  7463. "files": [
  7464. "src/Collect/Support/helpers.php",
  7465. "src/Collect/Support/alias.php"
  7466. ],
  7467. "psr-4": {
  7468. "Tightenco\\Collect\\": "src/Collect"
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Taylor Otwell",
  7478. "email": "taylorotwell@gmail.com"
  7479. }
  7480. ],
  7481. "description": "Collect - Illuminate Collections as a separate package.",
  7482. "keywords": [
  7483. "collection",
  7484. "laravel"
  7485. ],
  7486. "support": {
  7487. "issues": "https://github.com/tighten/collect/issues",
  7488. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7489. },
  7490. "time": "2018-08-09T16:56:26+00:00"
  7491. },
  7492. {
  7493. "name": "tijsverkoyen/css-to-inline-styles",
  7494. "version": "2.2.3",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7498. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7503. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7504. "shasum": "",
  7505. "mirrors": [
  7506. {
  7507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7508. "preferred": true
  7509. }
  7510. ]
  7511. },
  7512. "require": {
  7513. "ext-dom": "*",
  7514. "ext-libxml": "*",
  7515. "php": "^5.5 || ^7.0 || ^8.0",
  7516. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7517. },
  7518. "require-dev": {
  7519. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7520. },
  7521. "type": "library",
  7522. "extra": {
  7523. "branch-alias": {
  7524. "dev-master": "2.2.x-dev"
  7525. }
  7526. },
  7527. "autoload": {
  7528. "psr-4": {
  7529. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7530. }
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "BSD-3-Clause"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Tijs Verkoyen",
  7539. "email": "css_to_inline_styles@verkoyen.eu",
  7540. "role": "Developer"
  7541. }
  7542. ],
  7543. "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.",
  7544. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7545. "support": {
  7546. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7547. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7548. },
  7549. "time": "2020-07-13T06:12:54+00:00"
  7550. },
  7551. {
  7552. "name": "vlucas/phpdotenv",
  7553. "version": "v4.2.0",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/vlucas/phpdotenv.git",
  7557. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7562. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7563. "shasum": "",
  7564. "mirrors": [
  7565. {
  7566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7567. "preferred": true
  7568. }
  7569. ]
  7570. },
  7571. "require": {
  7572. "php": "^5.5.9 || ^7.0 || ^8.0",
  7573. "phpoption/phpoption": "^1.7.3",
  7574. "symfony/polyfill-ctype": "^1.17"
  7575. },
  7576. "require-dev": {
  7577. "bamarni/composer-bin-plugin": "^1.4.1",
  7578. "ext-filter": "*",
  7579. "ext-pcre": "*",
  7580. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7581. },
  7582. "suggest": {
  7583. "ext-filter": "Required to use the boolean validator.",
  7584. "ext-pcre": "Required to use most of the library."
  7585. },
  7586. "type": "library",
  7587. "extra": {
  7588. "branch-alias": {
  7589. "dev-master": "4.1-dev"
  7590. }
  7591. },
  7592. "autoload": {
  7593. "psr-4": {
  7594. "Dotenv\\": "src/"
  7595. }
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "BSD-3-Clause"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "Graham Campbell",
  7604. "email": "graham@alt-three.com",
  7605. "homepage": "https://gjcampbell.co.uk/"
  7606. },
  7607. {
  7608. "name": "Vance Lucas",
  7609. "email": "vance@vancelucas.com",
  7610. "homepage": "https://vancelucas.com/"
  7611. }
  7612. ],
  7613. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7614. "keywords": [
  7615. "dotenv",
  7616. "env",
  7617. "environment"
  7618. ],
  7619. "support": {
  7620. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7621. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7622. },
  7623. "funding": [
  7624. {
  7625. "url": "https://github.com/GrahamCampbell",
  7626. "type": "github"
  7627. },
  7628. {
  7629. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7630. "type": "tidelift"
  7631. }
  7632. ],
  7633. "time": "2021-01-20T15:11:48+00:00"
  7634. },
  7635. {
  7636. "name": "voku/portable-ascii",
  7637. "version": "1.5.6",
  7638. "source": {
  7639. "type": "git",
  7640. "url": "https://github.com/voku/portable-ascii.git",
  7641. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7642. },
  7643. "dist": {
  7644. "type": "zip",
  7645. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7646. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7647. "shasum": "",
  7648. "mirrors": [
  7649. {
  7650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7651. "preferred": true
  7652. }
  7653. ]
  7654. },
  7655. "require": {
  7656. "php": ">=7.0.0"
  7657. },
  7658. "require-dev": {
  7659. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7660. },
  7661. "suggest": {
  7662. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7663. },
  7664. "type": "library",
  7665. "autoload": {
  7666. "psr-4": {
  7667. "voku\\": "src/voku/"
  7668. }
  7669. },
  7670. "notification-url": "https://packagist.org/downloads/",
  7671. "license": [
  7672. "MIT"
  7673. ],
  7674. "authors": [
  7675. {
  7676. "name": "Lars Moelleken",
  7677. "homepage": "http://www.moelleken.org/"
  7678. }
  7679. ],
  7680. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7681. "homepage": "https://github.com/voku/portable-ascii",
  7682. "keywords": [
  7683. "ascii",
  7684. "clean",
  7685. "php"
  7686. ],
  7687. "support": {
  7688. "issues": "https://github.com/voku/portable-ascii/issues",
  7689. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7690. },
  7691. "funding": [
  7692. {
  7693. "url": "https://www.paypal.me/moelleken",
  7694. "type": "custom"
  7695. },
  7696. {
  7697. "url": "https://github.com/voku",
  7698. "type": "github"
  7699. },
  7700. {
  7701. "url": "https://opencollective.com/portable-ascii",
  7702. "type": "open_collective"
  7703. },
  7704. {
  7705. "url": "https://www.patreon.com/voku",
  7706. "type": "patreon"
  7707. },
  7708. {
  7709. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7710. "type": "tidelift"
  7711. }
  7712. ],
  7713. "time": "2020-11-12T00:07:28+00:00"
  7714. },
  7715. {
  7716. "name": "yajra/laravel-oci8",
  7717. "version": "v7.0.0",
  7718. "source": {
  7719. "type": "git",
  7720. "url": "https://github.com/yajra/laravel-oci8.git",
  7721. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7722. },
  7723. "dist": {
  7724. "type": "zip",
  7725. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7726. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7727. "shasum": "",
  7728. "mirrors": [
  7729. {
  7730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7731. "preferred": true
  7732. }
  7733. ]
  7734. },
  7735. "require": {
  7736. "ext-oci8": ">=2.0.0",
  7737. "ext-pdo": "*",
  7738. "illuminate/database": "^7",
  7739. "illuminate/support": "^7",
  7740. "php": "^7.2.5",
  7741. "yajra/laravel-pdo-via-oci8": "^2"
  7742. },
  7743. "require-dev": {
  7744. "mockery/mockery": "^1.3.1",
  7745. "phpunit/phpunit": "^8.4|^9.0",
  7746. "scrutinizer/ocular": "~1.1"
  7747. },
  7748. "type": "library",
  7749. "extra": {
  7750. "branch-alias": {
  7751. "dev-master": "7.x-dev"
  7752. },
  7753. "laravel": {
  7754. "providers": [
  7755. "Yajra\\Oci8\\Oci8ServiceProvider"
  7756. ]
  7757. }
  7758. },
  7759. "autoload": {
  7760. "files": [
  7761. "src/helper.php"
  7762. ],
  7763. "psr-4": {
  7764. "Yajra\\": "src/"
  7765. }
  7766. },
  7767. "notification-url": "https://packagist.org/downloads/",
  7768. "license": [
  7769. "MIT"
  7770. ],
  7771. "authors": [
  7772. {
  7773. "name": "Arjay Angeles",
  7774. "email": "aqangeles@gmail.com"
  7775. }
  7776. ],
  7777. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7778. "keywords": [
  7779. "laravel",
  7780. "oci8",
  7781. "oracle",
  7782. "pdo_oci"
  7783. ],
  7784. "support": {
  7785. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7786. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7787. },
  7788. "funding": [
  7789. {
  7790. "url": "https://www.paypal.me/yajra",
  7791. "type": "custom"
  7792. },
  7793. {
  7794. "url": "https://www.patreon.com/yajra",
  7795. "type": "patreon"
  7796. }
  7797. ],
  7798. "time": "2020-03-04T02:15:19+00:00"
  7799. },
  7800. {
  7801. "name": "yajra/laravel-pdo-via-oci8",
  7802. "version": "v2.2.0",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7806. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7811. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7812. "shasum": "",
  7813. "mirrors": [
  7814. {
  7815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7816. "preferred": true
  7817. }
  7818. ]
  7819. },
  7820. "require-dev": {
  7821. "phpunit/phpunit": "^6.4"
  7822. },
  7823. "type": "library",
  7824. "extra": {
  7825. "branch-alias": {
  7826. "dev-master": "2.0-dev"
  7827. }
  7828. },
  7829. "autoload": {
  7830. "psr-4": {
  7831. "Yajra\\": "src/"
  7832. }
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "MIT"
  7837. ],
  7838. "authors": [
  7839. {
  7840. "name": "Arjay Angeles",
  7841. "email": "aqangeles@gmail.com"
  7842. }
  7843. ],
  7844. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7845. "support": {
  7846. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7847. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7848. },
  7849. "time": "2020-12-11T12:29:18+00:00"
  7850. }
  7851. ],
  7852. "packages-dev": [
  7853. {
  7854. "name": "barryvdh/laravel-debugbar",
  7855. "version": "v3.6.2",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7859. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7864. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7865. "shasum": "",
  7866. "mirrors": [
  7867. {
  7868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7869. "preferred": true
  7870. }
  7871. ]
  7872. },
  7873. "require": {
  7874. "illuminate/routing": "^6|^7|^8",
  7875. "illuminate/session": "^6|^7|^8",
  7876. "illuminate/support": "^6|^7|^8",
  7877. "maximebf/debugbar": "^1.16.3",
  7878. "php": ">=7.2",
  7879. "symfony/debug": "^4.3|^5",
  7880. "symfony/finder": "^4.3|^5"
  7881. },
  7882. "require-dev": {
  7883. "mockery/mockery": "^1.3.3",
  7884. "orchestra/testbench-dusk": "^4|^5|^6",
  7885. "phpunit/phpunit": "^8.5|^9.0",
  7886. "squizlabs/php_codesniffer": "^3.5"
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "branch-alias": {
  7891. "dev-master": "3.5-dev"
  7892. },
  7893. "laravel": {
  7894. "providers": [
  7895. "Barryvdh\\Debugbar\\ServiceProvider"
  7896. ],
  7897. "aliases": {
  7898. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7899. }
  7900. }
  7901. },
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Barryvdh\\Debugbar\\": "src/"
  7905. },
  7906. "files": [
  7907. "src/helpers.php"
  7908. ]
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "Barry vd. Heuvel",
  7917. "email": "barryvdh@gmail.com"
  7918. }
  7919. ],
  7920. "description": "PHP Debugbar integration for Laravel",
  7921. "keywords": [
  7922. "debug",
  7923. "debugbar",
  7924. "laravel",
  7925. "profiler",
  7926. "webprofiler"
  7927. ],
  7928. "support": {
  7929. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7930. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  7931. },
  7932. "funding": [
  7933. {
  7934. "url": "https://fruitcake.nl",
  7935. "type": "custom"
  7936. },
  7937. {
  7938. "url": "https://github.com/barryvdh",
  7939. "type": "github"
  7940. }
  7941. ],
  7942. "time": "2021-06-14T14:29:26+00:00"
  7943. },
  7944. {
  7945. "name": "beyondcode/laravel-dump-server",
  7946. "version": "1.7.0",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7950. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7955. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7956. "shasum": "",
  7957. "mirrors": [
  7958. {
  7959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7960. "preferred": true
  7961. }
  7962. ]
  7963. },
  7964. "require": {
  7965. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7966. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7967. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7968. "php": ">=7.2.5",
  7969. "symfony/var-dumper": "^5.0"
  7970. },
  7971. "require-dev": {
  7972. "larapack/dd": "^1.0",
  7973. "phpunit/phpunit": "^7.0|^9.3"
  7974. },
  7975. "type": "library",
  7976. "extra": {
  7977. "laravel": {
  7978. "providers": [
  7979. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7980. ]
  7981. }
  7982. },
  7983. "autoload": {
  7984. "psr-4": {
  7985. "BeyondCode\\DumpServer\\": "src"
  7986. },
  7987. "files": [
  7988. "helpers.php"
  7989. ]
  7990. },
  7991. "notification-url": "https://packagist.org/downloads/",
  7992. "license": [
  7993. "MIT"
  7994. ],
  7995. "authors": [
  7996. {
  7997. "name": "Marcel Pociot",
  7998. "email": "marcel@beyondco.de",
  7999. "homepage": "https://beyondco.de",
  8000. "role": "Developer"
  8001. }
  8002. ],
  8003. "description": "Symfony Var-Dump Server for Laravel",
  8004. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8005. "keywords": [
  8006. "beyondcode",
  8007. "laravel-dump-server"
  8008. ],
  8009. "support": {
  8010. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8011. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8012. },
  8013. "time": "2020-12-15T10:57:43+00:00"
  8014. },
  8015. {
  8016. "name": "doctrine/instantiator",
  8017. "version": "1.4.0",
  8018. "source": {
  8019. "type": "git",
  8020. "url": "https://github.com/doctrine/instantiator.git",
  8021. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8022. },
  8023. "dist": {
  8024. "type": "zip",
  8025. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8026. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8027. "shasum": "",
  8028. "mirrors": [
  8029. {
  8030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8031. "preferred": true
  8032. }
  8033. ]
  8034. },
  8035. "require": {
  8036. "php": "^7.1 || ^8.0"
  8037. },
  8038. "require-dev": {
  8039. "doctrine/coding-standard": "^8.0",
  8040. "ext-pdo": "*",
  8041. "ext-phar": "*",
  8042. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8043. "phpstan/phpstan": "^0.12",
  8044. "phpstan/phpstan-phpunit": "^0.12",
  8045. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8046. },
  8047. "type": "library",
  8048. "autoload": {
  8049. "psr-4": {
  8050. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8051. }
  8052. },
  8053. "notification-url": "https://packagist.org/downloads/",
  8054. "license": [
  8055. "MIT"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Marco Pivetta",
  8060. "email": "ocramius@gmail.com",
  8061. "homepage": "https://ocramius.github.io/"
  8062. }
  8063. ],
  8064. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8065. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8066. "keywords": [
  8067. "constructor",
  8068. "instantiate"
  8069. ],
  8070. "support": {
  8071. "issues": "https://github.com/doctrine/instantiator/issues",
  8072. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://www.doctrine-project.org/sponsorship.html",
  8077. "type": "custom"
  8078. },
  8079. {
  8080. "url": "https://www.patreon.com/phpdoctrine",
  8081. "type": "patreon"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2020-11-10T18:47:58+00:00"
  8089. },
  8090. {
  8091. "name": "fzaninotto/faker",
  8092. "version": "v1.9.2",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/fzaninotto/Faker.git",
  8096. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8101. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8102. "shasum": "",
  8103. "mirrors": [
  8104. {
  8105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8106. "preferred": true
  8107. }
  8108. ]
  8109. },
  8110. "require": {
  8111. "php": "^5.3.3 || ^7.0"
  8112. },
  8113. "require-dev": {
  8114. "ext-intl": "*",
  8115. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8116. "squizlabs/php_codesniffer": "^2.9.2"
  8117. },
  8118. "type": "library",
  8119. "extra": {
  8120. "branch-alias": {
  8121. "dev-master": "1.9-dev"
  8122. }
  8123. },
  8124. "autoload": {
  8125. "psr-4": {
  8126. "Faker\\": "src/Faker/"
  8127. }
  8128. },
  8129. "notification-url": "https://packagist.org/downloads/",
  8130. "license": [
  8131. "MIT"
  8132. ],
  8133. "authors": [
  8134. {
  8135. "name": "François Zaninotto"
  8136. }
  8137. ],
  8138. "description": "Faker is a PHP library that generates fake data for you.",
  8139. "keywords": [
  8140. "data",
  8141. "faker",
  8142. "fixtures"
  8143. ],
  8144. "support": {
  8145. "issues": "https://github.com/fzaninotto/Faker/issues",
  8146. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8147. },
  8148. "abandoned": true,
  8149. "time": "2020-12-11T09:56:16+00:00"
  8150. },
  8151. {
  8152. "name": "hamcrest/hamcrest-php",
  8153. "version": "v2.0.1",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8157. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8162. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8163. "shasum": "",
  8164. "mirrors": [
  8165. {
  8166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8167. "preferred": true
  8168. }
  8169. ]
  8170. },
  8171. "require": {
  8172. "php": "^5.3|^7.0|^8.0"
  8173. },
  8174. "replace": {
  8175. "cordoval/hamcrest-php": "*",
  8176. "davedevelopment/hamcrest-php": "*",
  8177. "kodova/hamcrest-php": "*"
  8178. },
  8179. "require-dev": {
  8180. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8181. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8182. },
  8183. "type": "library",
  8184. "extra": {
  8185. "branch-alias": {
  8186. "dev-master": "2.1-dev"
  8187. }
  8188. },
  8189. "autoload": {
  8190. "classmap": [
  8191. "hamcrest"
  8192. ]
  8193. },
  8194. "notification-url": "https://packagist.org/downloads/",
  8195. "license": [
  8196. "BSD-3-Clause"
  8197. ],
  8198. "description": "This is the PHP port of Hamcrest Matchers",
  8199. "keywords": [
  8200. "test"
  8201. ],
  8202. "support": {
  8203. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8204. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8205. },
  8206. "time": "2020-07-09T08:09:16+00:00"
  8207. },
  8208. {
  8209. "name": "maximebf/debugbar",
  8210. "version": "v1.16.5",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/maximebf/php-debugbar.git",
  8214. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8219. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8220. "shasum": "",
  8221. "mirrors": [
  8222. {
  8223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8224. "preferred": true
  8225. }
  8226. ]
  8227. },
  8228. "require": {
  8229. "php": "^7.1|^8",
  8230. "psr/log": "^1.0",
  8231. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8232. },
  8233. "require-dev": {
  8234. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8235. },
  8236. "suggest": {
  8237. "kriswallsmith/assetic": "The best way to manage assets",
  8238. "monolog/monolog": "Log using Monolog",
  8239. "predis/predis": "Redis storage"
  8240. },
  8241. "type": "library",
  8242. "extra": {
  8243. "branch-alias": {
  8244. "dev-master": "1.16-dev"
  8245. }
  8246. },
  8247. "autoload": {
  8248. "psr-4": {
  8249. "DebugBar\\": "src/DebugBar/"
  8250. }
  8251. },
  8252. "notification-url": "https://packagist.org/downloads/",
  8253. "license": [
  8254. "MIT"
  8255. ],
  8256. "authors": [
  8257. {
  8258. "name": "Maxime Bouroumeau-Fuseau",
  8259. "email": "maxime.bouroumeau@gmail.com",
  8260. "homepage": "http://maximebf.com"
  8261. },
  8262. {
  8263. "name": "Barry vd. Heuvel",
  8264. "email": "barryvdh@gmail.com"
  8265. }
  8266. ],
  8267. "description": "Debug bar in the browser for php application",
  8268. "homepage": "https://github.com/maximebf/php-debugbar",
  8269. "keywords": [
  8270. "debug",
  8271. "debugbar"
  8272. ],
  8273. "support": {
  8274. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8275. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8276. },
  8277. "time": "2020-12-07T11:07:24+00:00"
  8278. },
  8279. {
  8280. "name": "mockery/mockery",
  8281. "version": "1.4.3",
  8282. "source": {
  8283. "type": "git",
  8284. "url": "https://github.com/mockery/mockery.git",
  8285. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8286. },
  8287. "dist": {
  8288. "type": "zip",
  8289. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8290. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8291. "shasum": "",
  8292. "mirrors": [
  8293. {
  8294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8295. "preferred": true
  8296. }
  8297. ]
  8298. },
  8299. "require": {
  8300. "hamcrest/hamcrest-php": "^2.0.1",
  8301. "lib-pcre": ">=7.0",
  8302. "php": "^7.3 || ^8.0"
  8303. },
  8304. "conflict": {
  8305. "phpunit/phpunit": "<8.0"
  8306. },
  8307. "require-dev": {
  8308. "phpunit/phpunit": "^8.5 || ^9.3"
  8309. },
  8310. "type": "library",
  8311. "extra": {
  8312. "branch-alias": {
  8313. "dev-master": "1.4.x-dev"
  8314. }
  8315. },
  8316. "autoload": {
  8317. "psr-0": {
  8318. "Mockery": "library/"
  8319. }
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "BSD-3-Clause"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "Pádraic Brady",
  8328. "email": "padraic.brady@gmail.com",
  8329. "homepage": "http://blog.astrumfutura.com"
  8330. },
  8331. {
  8332. "name": "Dave Marshall",
  8333. "email": "dave.marshall@atstsolutions.co.uk",
  8334. "homepage": "http://davedevelopment.co.uk"
  8335. }
  8336. ],
  8337. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8338. "homepage": "https://github.com/mockery/mockery",
  8339. "keywords": [
  8340. "BDD",
  8341. "TDD",
  8342. "library",
  8343. "mock",
  8344. "mock objects",
  8345. "mockery",
  8346. "stub",
  8347. "test",
  8348. "test double",
  8349. "testing"
  8350. ],
  8351. "support": {
  8352. "issues": "https://github.com/mockery/mockery/issues",
  8353. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8354. },
  8355. "time": "2021-02-24T09:51:49+00:00"
  8356. },
  8357. {
  8358. "name": "myclabs/deep-copy",
  8359. "version": "1.10.2",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/myclabs/DeepCopy.git",
  8363. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8368. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8369. "shasum": "",
  8370. "mirrors": [
  8371. {
  8372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8373. "preferred": true
  8374. }
  8375. ]
  8376. },
  8377. "require": {
  8378. "php": "^7.1 || ^8.0"
  8379. },
  8380. "replace": {
  8381. "myclabs/deep-copy": "self.version"
  8382. },
  8383. "require-dev": {
  8384. "doctrine/collections": "^1.0",
  8385. "doctrine/common": "^2.6",
  8386. "phpunit/phpunit": "^7.1"
  8387. },
  8388. "type": "library",
  8389. "autoload": {
  8390. "psr-4": {
  8391. "DeepCopy\\": "src/DeepCopy/"
  8392. },
  8393. "files": [
  8394. "src/DeepCopy/deep_copy.php"
  8395. ]
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "MIT"
  8400. ],
  8401. "description": "Create deep copies (clones) of your objects",
  8402. "keywords": [
  8403. "clone",
  8404. "copy",
  8405. "duplicate",
  8406. "object",
  8407. "object graph"
  8408. ],
  8409. "support": {
  8410. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8411. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8416. "type": "tidelift"
  8417. }
  8418. ],
  8419. "time": "2020-11-13T09:40:50+00:00"
  8420. },
  8421. {
  8422. "name": "nunomaduro/collision",
  8423. "version": "v4.3.0",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/nunomaduro/collision.git",
  8427. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8432. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8433. "shasum": "",
  8434. "mirrors": [
  8435. {
  8436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8437. "preferred": true
  8438. }
  8439. ]
  8440. },
  8441. "require": {
  8442. "facade/ignition-contracts": "^1.0",
  8443. "filp/whoops": "^2.4",
  8444. "php": "^7.2.5 || ^8.0",
  8445. "symfony/console": "^5.0"
  8446. },
  8447. "require-dev": {
  8448. "facade/ignition": "^2.0",
  8449. "fideloper/proxy": "^4.2",
  8450. "friendsofphp/php-cs-fixer": "^2.16",
  8451. "fruitcake/laravel-cors": "^1.0",
  8452. "laravel/framework": "^7.0",
  8453. "laravel/tinker": "^2.0",
  8454. "nunomaduro/larastan": "^0.6",
  8455. "orchestra/testbench": "^5.0",
  8456. "phpstan/phpstan": "^0.12.3",
  8457. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8458. },
  8459. "type": "library",
  8460. "extra": {
  8461. "laravel": {
  8462. "providers": [
  8463. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8464. ]
  8465. }
  8466. },
  8467. "autoload": {
  8468. "psr-4": {
  8469. "NunoMaduro\\Collision\\": "src/"
  8470. }
  8471. },
  8472. "notification-url": "https://packagist.org/downloads/",
  8473. "license": [
  8474. "MIT"
  8475. ],
  8476. "authors": [
  8477. {
  8478. "name": "Nuno Maduro",
  8479. "email": "enunomaduro@gmail.com"
  8480. }
  8481. ],
  8482. "description": "Cli error handling for console/command-line PHP applications.",
  8483. "keywords": [
  8484. "artisan",
  8485. "cli",
  8486. "command-line",
  8487. "console",
  8488. "error",
  8489. "handling",
  8490. "laravel",
  8491. "laravel-zero",
  8492. "php",
  8493. "symfony"
  8494. ],
  8495. "support": {
  8496. "issues": "https://github.com/nunomaduro/collision/issues",
  8497. "source": "https://github.com/nunomaduro/collision"
  8498. },
  8499. "funding": [
  8500. {
  8501. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8502. "type": "custom"
  8503. },
  8504. {
  8505. "url": "https://github.com/nunomaduro",
  8506. "type": "github"
  8507. },
  8508. {
  8509. "url": "https://www.patreon.com/nunomaduro",
  8510. "type": "patreon"
  8511. }
  8512. ],
  8513. "time": "2020-10-29T15:12:23+00:00"
  8514. },
  8515. {
  8516. "name": "phar-io/manifest",
  8517. "version": "2.0.1",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/phar-io/manifest.git",
  8521. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8526. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8527. "shasum": "",
  8528. "mirrors": [
  8529. {
  8530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8531. "preferred": true
  8532. }
  8533. ]
  8534. },
  8535. "require": {
  8536. "ext-dom": "*",
  8537. "ext-phar": "*",
  8538. "ext-xmlwriter": "*",
  8539. "phar-io/version": "^3.0.1",
  8540. "php": "^7.2 || ^8.0"
  8541. },
  8542. "type": "library",
  8543. "extra": {
  8544. "branch-alias": {
  8545. "dev-master": "2.0.x-dev"
  8546. }
  8547. },
  8548. "autoload": {
  8549. "classmap": [
  8550. "src/"
  8551. ]
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "BSD-3-Clause"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Arne Blankerts",
  8560. "email": "arne@blankerts.de",
  8561. "role": "Developer"
  8562. },
  8563. {
  8564. "name": "Sebastian Heuer",
  8565. "email": "sebastian@phpeople.de",
  8566. "role": "Developer"
  8567. },
  8568. {
  8569. "name": "Sebastian Bergmann",
  8570. "email": "sebastian@phpunit.de",
  8571. "role": "Developer"
  8572. }
  8573. ],
  8574. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8575. "support": {
  8576. "issues": "https://github.com/phar-io/manifest/issues",
  8577. "source": "https://github.com/phar-io/manifest/tree/master"
  8578. },
  8579. "time": "2020-06-27T14:33:11+00:00"
  8580. },
  8581. {
  8582. "name": "phar-io/version",
  8583. "version": "3.1.0",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/phar-io/version.git",
  8587. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8592. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8593. "shasum": "",
  8594. "mirrors": [
  8595. {
  8596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8597. "preferred": true
  8598. }
  8599. ]
  8600. },
  8601. "require": {
  8602. "php": "^7.2 || ^8.0"
  8603. },
  8604. "type": "library",
  8605. "autoload": {
  8606. "classmap": [
  8607. "src/"
  8608. ]
  8609. },
  8610. "notification-url": "https://packagist.org/downloads/",
  8611. "license": [
  8612. "BSD-3-Clause"
  8613. ],
  8614. "authors": [
  8615. {
  8616. "name": "Arne Blankerts",
  8617. "email": "arne@blankerts.de",
  8618. "role": "Developer"
  8619. },
  8620. {
  8621. "name": "Sebastian Heuer",
  8622. "email": "sebastian@phpeople.de",
  8623. "role": "Developer"
  8624. },
  8625. {
  8626. "name": "Sebastian Bergmann",
  8627. "email": "sebastian@phpunit.de",
  8628. "role": "Developer"
  8629. }
  8630. ],
  8631. "description": "Library for handling version information and constraints",
  8632. "support": {
  8633. "issues": "https://github.com/phar-io/version/issues",
  8634. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8635. },
  8636. "time": "2021-02-23T14:00:09+00:00"
  8637. },
  8638. {
  8639. "name": "phpdocumentor/reflection-common",
  8640. "version": "2.2.0",
  8641. "source": {
  8642. "type": "git",
  8643. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8644. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8645. },
  8646. "dist": {
  8647. "type": "zip",
  8648. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8649. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8650. "shasum": "",
  8651. "mirrors": [
  8652. {
  8653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8654. "preferred": true
  8655. }
  8656. ]
  8657. },
  8658. "require": {
  8659. "php": "^7.2 || ^8.0"
  8660. },
  8661. "type": "library",
  8662. "extra": {
  8663. "branch-alias": {
  8664. "dev-2.x": "2.x-dev"
  8665. }
  8666. },
  8667. "autoload": {
  8668. "psr-4": {
  8669. "phpDocumentor\\Reflection\\": "src/"
  8670. }
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "MIT"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Jaap van Otterdijk",
  8679. "email": "opensource@ijaap.nl"
  8680. }
  8681. ],
  8682. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8683. "homepage": "http://www.phpdoc.org",
  8684. "keywords": [
  8685. "FQSEN",
  8686. "phpDocumentor",
  8687. "phpdoc",
  8688. "reflection",
  8689. "static analysis"
  8690. ],
  8691. "support": {
  8692. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8693. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8694. },
  8695. "time": "2020-06-27T09:03:43+00:00"
  8696. },
  8697. {
  8698. "name": "phpdocumentor/reflection-docblock",
  8699. "version": "5.2.2",
  8700. "source": {
  8701. "type": "git",
  8702. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8703. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8704. },
  8705. "dist": {
  8706. "type": "zip",
  8707. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8708. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8709. "shasum": "",
  8710. "mirrors": [
  8711. {
  8712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8713. "preferred": true
  8714. }
  8715. ]
  8716. },
  8717. "require": {
  8718. "ext-filter": "*",
  8719. "php": "^7.2 || ^8.0",
  8720. "phpdocumentor/reflection-common": "^2.2",
  8721. "phpdocumentor/type-resolver": "^1.3",
  8722. "webmozart/assert": "^1.9.1"
  8723. },
  8724. "require-dev": {
  8725. "mockery/mockery": "~1.3.2"
  8726. },
  8727. "type": "library",
  8728. "extra": {
  8729. "branch-alias": {
  8730. "dev-master": "5.x-dev"
  8731. }
  8732. },
  8733. "autoload": {
  8734. "psr-4": {
  8735. "phpDocumentor\\Reflection\\": "src"
  8736. }
  8737. },
  8738. "notification-url": "https://packagist.org/downloads/",
  8739. "license": [
  8740. "MIT"
  8741. ],
  8742. "authors": [
  8743. {
  8744. "name": "Mike van Riel",
  8745. "email": "me@mikevanriel.com"
  8746. },
  8747. {
  8748. "name": "Jaap van Otterdijk",
  8749. "email": "account@ijaap.nl"
  8750. }
  8751. ],
  8752. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8753. "support": {
  8754. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8755. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8756. },
  8757. "time": "2020-09-03T19:13:55+00:00"
  8758. },
  8759. {
  8760. "name": "phpdocumentor/type-resolver",
  8761. "version": "1.4.0",
  8762. "source": {
  8763. "type": "git",
  8764. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8765. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8766. },
  8767. "dist": {
  8768. "type": "zip",
  8769. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8770. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8771. "shasum": "",
  8772. "mirrors": [
  8773. {
  8774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8775. "preferred": true
  8776. }
  8777. ]
  8778. },
  8779. "require": {
  8780. "php": "^7.2 || ^8.0",
  8781. "phpdocumentor/reflection-common": "^2.0"
  8782. },
  8783. "require-dev": {
  8784. "ext-tokenizer": "*"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-1.x": "1.x-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "psr-4": {
  8794. "phpDocumentor\\Reflection\\": "src"
  8795. }
  8796. },
  8797. "notification-url": "https://packagist.org/downloads/",
  8798. "license": [
  8799. "MIT"
  8800. ],
  8801. "authors": [
  8802. {
  8803. "name": "Mike van Riel",
  8804. "email": "me@mikevanriel.com"
  8805. }
  8806. ],
  8807. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8808. "support": {
  8809. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8810. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8811. },
  8812. "time": "2020-09-17T18:55:26+00:00"
  8813. },
  8814. {
  8815. "name": "phpspec/prophecy",
  8816. "version": "1.13.0",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/phpspec/prophecy.git",
  8820. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8825. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8826. "shasum": "",
  8827. "mirrors": [
  8828. {
  8829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8830. "preferred": true
  8831. }
  8832. ]
  8833. },
  8834. "require": {
  8835. "doctrine/instantiator": "^1.2",
  8836. "php": "^7.2 || ~8.0, <8.1",
  8837. "phpdocumentor/reflection-docblock": "^5.2",
  8838. "sebastian/comparator": "^3.0 || ^4.0",
  8839. "sebastian/recursion-context": "^3.0 || ^4.0"
  8840. },
  8841. "require-dev": {
  8842. "phpspec/phpspec": "^6.0",
  8843. "phpunit/phpunit": "^8.0 || ^9.0"
  8844. },
  8845. "type": "library",
  8846. "extra": {
  8847. "branch-alias": {
  8848. "dev-master": "1.11.x-dev"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "psr-4": {
  8853. "Prophecy\\": "src/Prophecy"
  8854. }
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "MIT"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Konstantin Kudryashov",
  8863. "email": "ever.zet@gmail.com",
  8864. "homepage": "http://everzet.com"
  8865. },
  8866. {
  8867. "name": "Marcello Duarte",
  8868. "email": "marcello.duarte@gmail.com"
  8869. }
  8870. ],
  8871. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8872. "homepage": "https://github.com/phpspec/prophecy",
  8873. "keywords": [
  8874. "Double",
  8875. "Dummy",
  8876. "fake",
  8877. "mock",
  8878. "spy",
  8879. "stub"
  8880. ],
  8881. "support": {
  8882. "issues": "https://github.com/phpspec/prophecy/issues",
  8883. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8884. },
  8885. "time": "2021-03-17T13:42:18+00:00"
  8886. },
  8887. {
  8888. "name": "phpunit/php-code-coverage",
  8889. "version": "7.0.14",
  8890. "source": {
  8891. "type": "git",
  8892. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8893. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8894. },
  8895. "dist": {
  8896. "type": "zip",
  8897. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8898. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8899. "shasum": "",
  8900. "mirrors": [
  8901. {
  8902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8903. "preferred": true
  8904. }
  8905. ]
  8906. },
  8907. "require": {
  8908. "ext-dom": "*",
  8909. "ext-xmlwriter": "*",
  8910. "php": ">=7.2",
  8911. "phpunit/php-file-iterator": "^2.0.2",
  8912. "phpunit/php-text-template": "^1.2.1",
  8913. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8914. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8915. "sebastian/environment": "^4.2.2",
  8916. "sebastian/version": "^2.0.1",
  8917. "theseer/tokenizer": "^1.1.3"
  8918. },
  8919. "require-dev": {
  8920. "phpunit/phpunit": "^8.2.2"
  8921. },
  8922. "suggest": {
  8923. "ext-xdebug": "^2.7.2"
  8924. },
  8925. "type": "library",
  8926. "extra": {
  8927. "branch-alias": {
  8928. "dev-master": "7.0-dev"
  8929. }
  8930. },
  8931. "autoload": {
  8932. "classmap": [
  8933. "src/"
  8934. ]
  8935. },
  8936. "notification-url": "https://packagist.org/downloads/",
  8937. "license": [
  8938. "BSD-3-Clause"
  8939. ],
  8940. "authors": [
  8941. {
  8942. "name": "Sebastian Bergmann",
  8943. "email": "sebastian@phpunit.de",
  8944. "role": "lead"
  8945. }
  8946. ],
  8947. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8948. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8949. "keywords": [
  8950. "coverage",
  8951. "testing",
  8952. "xunit"
  8953. ],
  8954. "support": {
  8955. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8956. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  8957. },
  8958. "funding": [
  8959. {
  8960. "url": "https://github.com/sebastianbergmann",
  8961. "type": "github"
  8962. }
  8963. ],
  8964. "time": "2020-12-02T13:39:03+00:00"
  8965. },
  8966. {
  8967. "name": "phpunit/php-file-iterator",
  8968. "version": "2.0.3",
  8969. "source": {
  8970. "type": "git",
  8971. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8972. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8973. },
  8974. "dist": {
  8975. "type": "zip",
  8976. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8977. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8978. "shasum": "",
  8979. "mirrors": [
  8980. {
  8981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8982. "preferred": true
  8983. }
  8984. ]
  8985. },
  8986. "require": {
  8987. "php": ">=7.1"
  8988. },
  8989. "require-dev": {
  8990. "phpunit/phpunit": "^8.5"
  8991. },
  8992. "type": "library",
  8993. "extra": {
  8994. "branch-alias": {
  8995. "dev-master": "2.0.x-dev"
  8996. }
  8997. },
  8998. "autoload": {
  8999. "classmap": [
  9000. "src/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "BSD-3-Clause"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Sebastian Bergmann",
  9010. "email": "sebastian@phpunit.de",
  9011. "role": "lead"
  9012. }
  9013. ],
  9014. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9015. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9016. "keywords": [
  9017. "filesystem",
  9018. "iterator"
  9019. ],
  9020. "support": {
  9021. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9022. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9023. },
  9024. "funding": [
  9025. {
  9026. "url": "https://github.com/sebastianbergmann",
  9027. "type": "github"
  9028. }
  9029. ],
  9030. "time": "2020-11-30T08:25:21+00:00"
  9031. },
  9032. {
  9033. "name": "phpunit/php-text-template",
  9034. "version": "1.2.1",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9038. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9043. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9044. "shasum": "",
  9045. "mirrors": [
  9046. {
  9047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9048. "preferred": true
  9049. }
  9050. ]
  9051. },
  9052. "require": {
  9053. "php": ">=5.3.3"
  9054. },
  9055. "type": "library",
  9056. "autoload": {
  9057. "classmap": [
  9058. "src/"
  9059. ]
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "BSD-3-Clause"
  9064. ],
  9065. "authors": [
  9066. {
  9067. "name": "Sebastian Bergmann",
  9068. "email": "sebastian@phpunit.de",
  9069. "role": "lead"
  9070. }
  9071. ],
  9072. "description": "Simple template engine.",
  9073. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9074. "keywords": [
  9075. "template"
  9076. ],
  9077. "support": {
  9078. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9079. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9080. },
  9081. "time": "2015-06-21T13:50:34+00:00"
  9082. },
  9083. {
  9084. "name": "phpunit/php-timer",
  9085. "version": "2.1.3",
  9086. "source": {
  9087. "type": "git",
  9088. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9089. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9090. },
  9091. "dist": {
  9092. "type": "zip",
  9093. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9094. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9095. "shasum": "",
  9096. "mirrors": [
  9097. {
  9098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9099. "preferred": true
  9100. }
  9101. ]
  9102. },
  9103. "require": {
  9104. "php": ">=7.1"
  9105. },
  9106. "require-dev": {
  9107. "phpunit/phpunit": "^8.5"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "2.1-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "classmap": [
  9117. "src/"
  9118. ]
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "BSD-3-Clause"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Sebastian Bergmann",
  9127. "email": "sebastian@phpunit.de",
  9128. "role": "lead"
  9129. }
  9130. ],
  9131. "description": "Utility class for timing",
  9132. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9133. "keywords": [
  9134. "timer"
  9135. ],
  9136. "support": {
  9137. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9138. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9139. },
  9140. "funding": [
  9141. {
  9142. "url": "https://github.com/sebastianbergmann",
  9143. "type": "github"
  9144. }
  9145. ],
  9146. "time": "2020-11-30T08:20:02+00:00"
  9147. },
  9148. {
  9149. "name": "phpunit/php-token-stream",
  9150. "version": "4.0.4",
  9151. "source": {
  9152. "type": "git",
  9153. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9154. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9155. },
  9156. "dist": {
  9157. "type": "zip",
  9158. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9159. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9160. "shasum": "",
  9161. "mirrors": [
  9162. {
  9163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9164. "preferred": true
  9165. }
  9166. ]
  9167. },
  9168. "require": {
  9169. "ext-tokenizer": "*",
  9170. "php": "^7.3 || ^8.0"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^9.0"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-master": "4.0-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "classmap": [
  9183. "src/"
  9184. ]
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "BSD-3-Clause"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Sebastian Bergmann",
  9193. "email": "sebastian@phpunit.de"
  9194. }
  9195. ],
  9196. "description": "Wrapper around PHP's tokenizer extension.",
  9197. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9198. "keywords": [
  9199. "tokenizer"
  9200. ],
  9201. "support": {
  9202. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9203. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9204. },
  9205. "funding": [
  9206. {
  9207. "url": "https://github.com/sebastianbergmann",
  9208. "type": "github"
  9209. }
  9210. ],
  9211. "abandoned": true,
  9212. "time": "2020-08-04T08:28:15+00:00"
  9213. },
  9214. {
  9215. "name": "phpunit/phpunit",
  9216. "version": "8.5.17",
  9217. "source": {
  9218. "type": "git",
  9219. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9220. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da"
  9221. },
  9222. "dist": {
  9223. "type": "zip",
  9224. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/79067856d85421c56d413bd238d4e2cd6b0e54da",
  9225. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da",
  9226. "shasum": "",
  9227. "mirrors": [
  9228. {
  9229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9230. "preferred": true
  9231. }
  9232. ]
  9233. },
  9234. "require": {
  9235. "doctrine/instantiator": "^1.3.1",
  9236. "ext-dom": "*",
  9237. "ext-json": "*",
  9238. "ext-libxml": "*",
  9239. "ext-mbstring": "*",
  9240. "ext-xml": "*",
  9241. "ext-xmlwriter": "*",
  9242. "myclabs/deep-copy": "^1.10.0",
  9243. "phar-io/manifest": "^2.0.1",
  9244. "phar-io/version": "^3.0.2",
  9245. "php": ">=7.2",
  9246. "phpspec/prophecy": "^1.10.3",
  9247. "phpunit/php-code-coverage": "^7.0.12",
  9248. "phpunit/php-file-iterator": "^2.0.2",
  9249. "phpunit/php-text-template": "^1.2.1",
  9250. "phpunit/php-timer": "^2.1.2",
  9251. "sebastian/comparator": "^3.0.2",
  9252. "sebastian/diff": "^3.0.2",
  9253. "sebastian/environment": "^4.2.3",
  9254. "sebastian/exporter": "^3.1.2",
  9255. "sebastian/global-state": "^3.0.0",
  9256. "sebastian/object-enumerator": "^3.0.3",
  9257. "sebastian/resource-operations": "^2.0.1",
  9258. "sebastian/type": "^1.1.3",
  9259. "sebastian/version": "^2.0.1"
  9260. },
  9261. "require-dev": {
  9262. "ext-pdo": "*"
  9263. },
  9264. "suggest": {
  9265. "ext-soap": "*",
  9266. "ext-xdebug": "*",
  9267. "phpunit/php-invoker": "^2.0.0"
  9268. },
  9269. "bin": [
  9270. "phpunit"
  9271. ],
  9272. "type": "library",
  9273. "extra": {
  9274. "branch-alias": {
  9275. "dev-master": "8.5-dev"
  9276. }
  9277. },
  9278. "autoload": {
  9279. "classmap": [
  9280. "src/"
  9281. ]
  9282. },
  9283. "notification-url": "https://packagist.org/downloads/",
  9284. "license": [
  9285. "BSD-3-Clause"
  9286. ],
  9287. "authors": [
  9288. {
  9289. "name": "Sebastian Bergmann",
  9290. "email": "sebastian@phpunit.de",
  9291. "role": "lead"
  9292. }
  9293. ],
  9294. "description": "The PHP Unit Testing framework.",
  9295. "homepage": "https://phpunit.de/",
  9296. "keywords": [
  9297. "phpunit",
  9298. "testing",
  9299. "xunit"
  9300. ],
  9301. "support": {
  9302. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9303. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.17"
  9304. },
  9305. "funding": [
  9306. {
  9307. "url": "https://phpunit.de/donate.html",
  9308. "type": "custom"
  9309. },
  9310. {
  9311. "url": "https://github.com/sebastianbergmann",
  9312. "type": "github"
  9313. }
  9314. ],
  9315. "time": "2021-06-23T05:12:43+00:00"
  9316. },
  9317. {
  9318. "name": "sebastian/code-unit-reverse-lookup",
  9319. "version": "1.0.2",
  9320. "source": {
  9321. "type": "git",
  9322. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9323. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9324. },
  9325. "dist": {
  9326. "type": "zip",
  9327. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9328. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9329. "shasum": "",
  9330. "mirrors": [
  9331. {
  9332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9333. "preferred": true
  9334. }
  9335. ]
  9336. },
  9337. "require": {
  9338. "php": ">=5.6"
  9339. },
  9340. "require-dev": {
  9341. "phpunit/phpunit": "^8.5"
  9342. },
  9343. "type": "library",
  9344. "extra": {
  9345. "branch-alias": {
  9346. "dev-master": "1.0.x-dev"
  9347. }
  9348. },
  9349. "autoload": {
  9350. "classmap": [
  9351. "src/"
  9352. ]
  9353. },
  9354. "notification-url": "https://packagist.org/downloads/",
  9355. "license": [
  9356. "BSD-3-Clause"
  9357. ],
  9358. "authors": [
  9359. {
  9360. "name": "Sebastian Bergmann",
  9361. "email": "sebastian@phpunit.de"
  9362. }
  9363. ],
  9364. "description": "Looks up which function or method a line of code belongs to",
  9365. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9366. "support": {
  9367. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9368. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://github.com/sebastianbergmann",
  9373. "type": "github"
  9374. }
  9375. ],
  9376. "time": "2020-11-30T08:15:22+00:00"
  9377. },
  9378. {
  9379. "name": "sebastian/comparator",
  9380. "version": "3.0.3",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/sebastianbergmann/comparator.git",
  9384. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9389. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9390. "shasum": "",
  9391. "mirrors": [
  9392. {
  9393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9394. "preferred": true
  9395. }
  9396. ]
  9397. },
  9398. "require": {
  9399. "php": ">=7.1",
  9400. "sebastian/diff": "^3.0",
  9401. "sebastian/exporter": "^3.1"
  9402. },
  9403. "require-dev": {
  9404. "phpunit/phpunit": "^8.5"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-master": "3.0-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "classmap": [
  9414. "src/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Sebastian Bergmann",
  9424. "email": "sebastian@phpunit.de"
  9425. },
  9426. {
  9427. "name": "Jeff Welch",
  9428. "email": "whatthejeff@gmail.com"
  9429. },
  9430. {
  9431. "name": "Volker Dusch",
  9432. "email": "github@wallbash.com"
  9433. },
  9434. {
  9435. "name": "Bernhard Schussek",
  9436. "email": "bschussek@2bepublished.at"
  9437. }
  9438. ],
  9439. "description": "Provides the functionality to compare PHP values for equality",
  9440. "homepage": "https://github.com/sebastianbergmann/comparator",
  9441. "keywords": [
  9442. "comparator",
  9443. "compare",
  9444. "equality"
  9445. ],
  9446. "support": {
  9447. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9448. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9449. },
  9450. "funding": [
  9451. {
  9452. "url": "https://github.com/sebastianbergmann",
  9453. "type": "github"
  9454. }
  9455. ],
  9456. "time": "2020-11-30T08:04:30+00:00"
  9457. },
  9458. {
  9459. "name": "sebastian/diff",
  9460. "version": "3.0.3",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/sebastianbergmann/diff.git",
  9464. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9469. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9470. "shasum": "",
  9471. "mirrors": [
  9472. {
  9473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9474. "preferred": true
  9475. }
  9476. ]
  9477. },
  9478. "require": {
  9479. "php": ">=7.1"
  9480. },
  9481. "require-dev": {
  9482. "phpunit/phpunit": "^7.5 || ^8.0",
  9483. "symfony/process": "^2 || ^3.3 || ^4"
  9484. },
  9485. "type": "library",
  9486. "extra": {
  9487. "branch-alias": {
  9488. "dev-master": "3.0-dev"
  9489. }
  9490. },
  9491. "autoload": {
  9492. "classmap": [
  9493. "src/"
  9494. ]
  9495. },
  9496. "notification-url": "https://packagist.org/downloads/",
  9497. "license": [
  9498. "BSD-3-Clause"
  9499. ],
  9500. "authors": [
  9501. {
  9502. "name": "Sebastian Bergmann",
  9503. "email": "sebastian@phpunit.de"
  9504. },
  9505. {
  9506. "name": "Kore Nordmann",
  9507. "email": "mail@kore-nordmann.de"
  9508. }
  9509. ],
  9510. "description": "Diff implementation",
  9511. "homepage": "https://github.com/sebastianbergmann/diff",
  9512. "keywords": [
  9513. "diff",
  9514. "udiff",
  9515. "unidiff",
  9516. "unified diff"
  9517. ],
  9518. "support": {
  9519. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9520. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9521. },
  9522. "funding": [
  9523. {
  9524. "url": "https://github.com/sebastianbergmann",
  9525. "type": "github"
  9526. }
  9527. ],
  9528. "time": "2020-11-30T07:59:04+00:00"
  9529. },
  9530. {
  9531. "name": "sebastian/environment",
  9532. "version": "4.2.4",
  9533. "source": {
  9534. "type": "git",
  9535. "url": "https://github.com/sebastianbergmann/environment.git",
  9536. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9537. },
  9538. "dist": {
  9539. "type": "zip",
  9540. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9541. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9542. "shasum": "",
  9543. "mirrors": [
  9544. {
  9545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9546. "preferred": true
  9547. }
  9548. ]
  9549. },
  9550. "require": {
  9551. "php": ">=7.1"
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "^7.5"
  9555. },
  9556. "suggest": {
  9557. "ext-posix": "*"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "branch-alias": {
  9562. "dev-master": "4.2-dev"
  9563. }
  9564. },
  9565. "autoload": {
  9566. "classmap": [
  9567. "src/"
  9568. ]
  9569. },
  9570. "notification-url": "https://packagist.org/downloads/",
  9571. "license": [
  9572. "BSD-3-Clause"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Sebastian Bergmann",
  9577. "email": "sebastian@phpunit.de"
  9578. }
  9579. ],
  9580. "description": "Provides functionality to handle HHVM/PHP environments",
  9581. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9582. "keywords": [
  9583. "Xdebug",
  9584. "environment",
  9585. "hhvm"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9589. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://github.com/sebastianbergmann",
  9594. "type": "github"
  9595. }
  9596. ],
  9597. "time": "2020-11-30T07:53:42+00:00"
  9598. },
  9599. {
  9600. "name": "sebastian/exporter",
  9601. "version": "3.1.3",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/sebastianbergmann/exporter.git",
  9605. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9610. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9611. "shasum": "",
  9612. "mirrors": [
  9613. {
  9614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9615. "preferred": true
  9616. }
  9617. ]
  9618. },
  9619. "require": {
  9620. "php": ">=7.0",
  9621. "sebastian/recursion-context": "^3.0"
  9622. },
  9623. "require-dev": {
  9624. "ext-mbstring": "*",
  9625. "phpunit/phpunit": "^6.0"
  9626. },
  9627. "type": "library",
  9628. "extra": {
  9629. "branch-alias": {
  9630. "dev-master": "3.1.x-dev"
  9631. }
  9632. },
  9633. "autoload": {
  9634. "classmap": [
  9635. "src/"
  9636. ]
  9637. },
  9638. "notification-url": "https://packagist.org/downloads/",
  9639. "license": [
  9640. "BSD-3-Clause"
  9641. ],
  9642. "authors": [
  9643. {
  9644. "name": "Sebastian Bergmann",
  9645. "email": "sebastian@phpunit.de"
  9646. },
  9647. {
  9648. "name": "Jeff Welch",
  9649. "email": "whatthejeff@gmail.com"
  9650. },
  9651. {
  9652. "name": "Volker Dusch",
  9653. "email": "github@wallbash.com"
  9654. },
  9655. {
  9656. "name": "Adam Harvey",
  9657. "email": "aharvey@php.net"
  9658. },
  9659. {
  9660. "name": "Bernhard Schussek",
  9661. "email": "bschussek@gmail.com"
  9662. }
  9663. ],
  9664. "description": "Provides the functionality to export PHP variables for visualization",
  9665. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9666. "keywords": [
  9667. "export",
  9668. "exporter"
  9669. ],
  9670. "support": {
  9671. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9672. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9673. },
  9674. "funding": [
  9675. {
  9676. "url": "https://github.com/sebastianbergmann",
  9677. "type": "github"
  9678. }
  9679. ],
  9680. "time": "2020-11-30T07:47:53+00:00"
  9681. },
  9682. {
  9683. "name": "sebastian/global-state",
  9684. "version": "3.0.1",
  9685. "source": {
  9686. "type": "git",
  9687. "url": "https://github.com/sebastianbergmann/global-state.git",
  9688. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9689. },
  9690. "dist": {
  9691. "type": "zip",
  9692. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9693. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9694. "shasum": "",
  9695. "mirrors": [
  9696. {
  9697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9698. "preferred": true
  9699. }
  9700. ]
  9701. },
  9702. "require": {
  9703. "php": ">=7.2",
  9704. "sebastian/object-reflector": "^1.1.1",
  9705. "sebastian/recursion-context": "^3.0"
  9706. },
  9707. "require-dev": {
  9708. "ext-dom": "*",
  9709. "phpunit/phpunit": "^8.0"
  9710. },
  9711. "suggest": {
  9712. "ext-uopz": "*"
  9713. },
  9714. "type": "library",
  9715. "extra": {
  9716. "branch-alias": {
  9717. "dev-master": "3.0-dev"
  9718. }
  9719. },
  9720. "autoload": {
  9721. "classmap": [
  9722. "src/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "BSD-3-Clause"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Sebastian Bergmann",
  9732. "email": "sebastian@phpunit.de"
  9733. }
  9734. ],
  9735. "description": "Snapshotting of global state",
  9736. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9737. "keywords": [
  9738. "global state"
  9739. ],
  9740. "support": {
  9741. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9742. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9743. },
  9744. "funding": [
  9745. {
  9746. "url": "https://github.com/sebastianbergmann",
  9747. "type": "github"
  9748. }
  9749. ],
  9750. "time": "2020-11-30T07:43:24+00:00"
  9751. },
  9752. {
  9753. "name": "sebastian/object-enumerator",
  9754. "version": "3.0.4",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9758. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9763. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9764. "shasum": "",
  9765. "mirrors": [
  9766. {
  9767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9768. "preferred": true
  9769. }
  9770. ]
  9771. },
  9772. "require": {
  9773. "php": ">=7.0",
  9774. "sebastian/object-reflector": "^1.1.1",
  9775. "sebastian/recursion-context": "^3.0"
  9776. },
  9777. "require-dev": {
  9778. "phpunit/phpunit": "^6.0"
  9779. },
  9780. "type": "library",
  9781. "extra": {
  9782. "branch-alias": {
  9783. "dev-master": "3.0.x-dev"
  9784. }
  9785. },
  9786. "autoload": {
  9787. "classmap": [
  9788. "src/"
  9789. ]
  9790. },
  9791. "notification-url": "https://packagist.org/downloads/",
  9792. "license": [
  9793. "BSD-3-Clause"
  9794. ],
  9795. "authors": [
  9796. {
  9797. "name": "Sebastian Bergmann",
  9798. "email": "sebastian@phpunit.de"
  9799. }
  9800. ],
  9801. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9802. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9803. "support": {
  9804. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9805. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9806. },
  9807. "funding": [
  9808. {
  9809. "url": "https://github.com/sebastianbergmann",
  9810. "type": "github"
  9811. }
  9812. ],
  9813. "time": "2020-11-30T07:40:27+00:00"
  9814. },
  9815. {
  9816. "name": "sebastian/object-reflector",
  9817. "version": "1.1.2",
  9818. "source": {
  9819. "type": "git",
  9820. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9821. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9822. },
  9823. "dist": {
  9824. "type": "zip",
  9825. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9826. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9827. "shasum": "",
  9828. "mirrors": [
  9829. {
  9830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9831. "preferred": true
  9832. }
  9833. ]
  9834. },
  9835. "require": {
  9836. "php": ">=7.0"
  9837. },
  9838. "require-dev": {
  9839. "phpunit/phpunit": "^6.0"
  9840. },
  9841. "type": "library",
  9842. "extra": {
  9843. "branch-alias": {
  9844. "dev-master": "1.1-dev"
  9845. }
  9846. },
  9847. "autoload": {
  9848. "classmap": [
  9849. "src/"
  9850. ]
  9851. },
  9852. "notification-url": "https://packagist.org/downloads/",
  9853. "license": [
  9854. "BSD-3-Clause"
  9855. ],
  9856. "authors": [
  9857. {
  9858. "name": "Sebastian Bergmann",
  9859. "email": "sebastian@phpunit.de"
  9860. }
  9861. ],
  9862. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9863. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9864. "support": {
  9865. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9866. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9867. },
  9868. "funding": [
  9869. {
  9870. "url": "https://github.com/sebastianbergmann",
  9871. "type": "github"
  9872. }
  9873. ],
  9874. "time": "2020-11-30T07:37:18+00:00"
  9875. },
  9876. {
  9877. "name": "sebastian/recursion-context",
  9878. "version": "3.0.1",
  9879. "source": {
  9880. "type": "git",
  9881. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9882. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9883. },
  9884. "dist": {
  9885. "type": "zip",
  9886. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9887. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9888. "shasum": "",
  9889. "mirrors": [
  9890. {
  9891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9892. "preferred": true
  9893. }
  9894. ]
  9895. },
  9896. "require": {
  9897. "php": ">=7.0"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^6.0"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "3.0.x-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "classmap": [
  9910. "src/"
  9911. ]
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Sebastian Bergmann",
  9920. "email": "sebastian@phpunit.de"
  9921. },
  9922. {
  9923. "name": "Jeff Welch",
  9924. "email": "whatthejeff@gmail.com"
  9925. },
  9926. {
  9927. "name": "Adam Harvey",
  9928. "email": "aharvey@php.net"
  9929. }
  9930. ],
  9931. "description": "Provides functionality to recursively process PHP variables",
  9932. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9933. "support": {
  9934. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9935. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  9936. },
  9937. "funding": [
  9938. {
  9939. "url": "https://github.com/sebastianbergmann",
  9940. "type": "github"
  9941. }
  9942. ],
  9943. "time": "2020-11-30T07:34:24+00:00"
  9944. },
  9945. {
  9946. "name": "sebastian/resource-operations",
  9947. "version": "2.0.2",
  9948. "source": {
  9949. "type": "git",
  9950. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9951. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9952. },
  9953. "dist": {
  9954. "type": "zip",
  9955. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9956. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9957. "shasum": "",
  9958. "mirrors": [
  9959. {
  9960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9961. "preferred": true
  9962. }
  9963. ]
  9964. },
  9965. "require": {
  9966. "php": ">=7.1"
  9967. },
  9968. "type": "library",
  9969. "extra": {
  9970. "branch-alias": {
  9971. "dev-master": "2.0-dev"
  9972. }
  9973. },
  9974. "autoload": {
  9975. "classmap": [
  9976. "src/"
  9977. ]
  9978. },
  9979. "notification-url": "https://packagist.org/downloads/",
  9980. "license": [
  9981. "BSD-3-Clause"
  9982. ],
  9983. "authors": [
  9984. {
  9985. "name": "Sebastian Bergmann",
  9986. "email": "sebastian@phpunit.de"
  9987. }
  9988. ],
  9989. "description": "Provides a list of PHP built-in functions that operate on resources",
  9990. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9991. "support": {
  9992. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9993. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  9994. },
  9995. "funding": [
  9996. {
  9997. "url": "https://github.com/sebastianbergmann",
  9998. "type": "github"
  9999. }
  10000. ],
  10001. "time": "2020-11-30T07:30:19+00:00"
  10002. },
  10003. {
  10004. "name": "sebastian/type",
  10005. "version": "1.1.4",
  10006. "source": {
  10007. "type": "git",
  10008. "url": "https://github.com/sebastianbergmann/type.git",
  10009. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10010. },
  10011. "dist": {
  10012. "type": "zip",
  10013. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10014. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10015. "shasum": "",
  10016. "mirrors": [
  10017. {
  10018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10019. "preferred": true
  10020. }
  10021. ]
  10022. },
  10023. "require": {
  10024. "php": ">=7.2"
  10025. },
  10026. "require-dev": {
  10027. "phpunit/phpunit": "^8.2"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-master": "1.1-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "classmap": [
  10037. "src/"
  10038. ]
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "BSD-3-Clause"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Sebastian Bergmann",
  10047. "email": "sebastian@phpunit.de",
  10048. "role": "lead"
  10049. }
  10050. ],
  10051. "description": "Collection of value objects that represent the types of the PHP type system",
  10052. "homepage": "https://github.com/sebastianbergmann/type",
  10053. "support": {
  10054. "issues": "https://github.com/sebastianbergmann/type/issues",
  10055. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://github.com/sebastianbergmann",
  10060. "type": "github"
  10061. }
  10062. ],
  10063. "time": "2020-11-30T07:25:11+00:00"
  10064. },
  10065. {
  10066. "name": "sebastian/version",
  10067. "version": "2.0.1",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/sebastianbergmann/version.git",
  10071. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10076. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10077. "shasum": "",
  10078. "mirrors": [
  10079. {
  10080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10081. "preferred": true
  10082. }
  10083. ]
  10084. },
  10085. "require": {
  10086. "php": ">=5.6"
  10087. },
  10088. "type": "library",
  10089. "extra": {
  10090. "branch-alias": {
  10091. "dev-master": "2.0.x-dev"
  10092. }
  10093. },
  10094. "autoload": {
  10095. "classmap": [
  10096. "src/"
  10097. ]
  10098. },
  10099. "notification-url": "https://packagist.org/downloads/",
  10100. "license": [
  10101. "BSD-3-Clause"
  10102. ],
  10103. "authors": [
  10104. {
  10105. "name": "Sebastian Bergmann",
  10106. "email": "sebastian@phpunit.de",
  10107. "role": "lead"
  10108. }
  10109. ],
  10110. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10111. "homepage": "https://github.com/sebastianbergmann/version",
  10112. "support": {
  10113. "issues": "https://github.com/sebastianbergmann/version/issues",
  10114. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10115. },
  10116. "time": "2016-10-03T07:35:21+00:00"
  10117. },
  10118. {
  10119. "name": "symfony/debug",
  10120. "version": "v4.4.25",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/symfony/debug.git",
  10124. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10129. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10130. "shasum": "",
  10131. "mirrors": [
  10132. {
  10133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10134. "preferred": true
  10135. }
  10136. ]
  10137. },
  10138. "require": {
  10139. "php": ">=7.1.3",
  10140. "psr/log": "~1.0",
  10141. "symfony/polyfill-php80": "^1.15"
  10142. },
  10143. "conflict": {
  10144. "symfony/http-kernel": "<3.4"
  10145. },
  10146. "require-dev": {
  10147. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10148. },
  10149. "type": "library",
  10150. "autoload": {
  10151. "psr-4": {
  10152. "Symfony\\Component\\Debug\\": ""
  10153. },
  10154. "exclude-from-classmap": [
  10155. "/Tests/"
  10156. ]
  10157. },
  10158. "notification-url": "https://packagist.org/downloads/",
  10159. "license": [
  10160. "MIT"
  10161. ],
  10162. "authors": [
  10163. {
  10164. "name": "Fabien Potencier",
  10165. "email": "fabien@symfony.com"
  10166. },
  10167. {
  10168. "name": "Symfony Community",
  10169. "homepage": "https://symfony.com/contributors"
  10170. }
  10171. ],
  10172. "description": "Provides tools to ease debugging PHP code",
  10173. "homepage": "https://symfony.com",
  10174. "support": {
  10175. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  10176. },
  10177. "funding": [
  10178. {
  10179. "url": "https://symfony.com/sponsor",
  10180. "type": "custom"
  10181. },
  10182. {
  10183. "url": "https://github.com/fabpot",
  10184. "type": "github"
  10185. },
  10186. {
  10187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10188. "type": "tidelift"
  10189. }
  10190. ],
  10191. "time": "2021-05-26T17:39:37+00:00"
  10192. },
  10193. {
  10194. "name": "theseer/tokenizer",
  10195. "version": "1.2.0",
  10196. "source": {
  10197. "type": "git",
  10198. "url": "https://github.com/theseer/tokenizer.git",
  10199. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10200. },
  10201. "dist": {
  10202. "type": "zip",
  10203. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10204. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10205. "shasum": "",
  10206. "mirrors": [
  10207. {
  10208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10209. "preferred": true
  10210. }
  10211. ]
  10212. },
  10213. "require": {
  10214. "ext-dom": "*",
  10215. "ext-tokenizer": "*",
  10216. "ext-xmlwriter": "*",
  10217. "php": "^7.2 || ^8.0"
  10218. },
  10219. "type": "library",
  10220. "autoload": {
  10221. "classmap": [
  10222. "src/"
  10223. ]
  10224. },
  10225. "notification-url": "https://packagist.org/downloads/",
  10226. "license": [
  10227. "BSD-3-Clause"
  10228. ],
  10229. "authors": [
  10230. {
  10231. "name": "Arne Blankerts",
  10232. "email": "arne@blankerts.de",
  10233. "role": "Developer"
  10234. }
  10235. ],
  10236. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10237. "support": {
  10238. "issues": "https://github.com/theseer/tokenizer/issues",
  10239. "source": "https://github.com/theseer/tokenizer/tree/master"
  10240. },
  10241. "funding": [
  10242. {
  10243. "url": "https://github.com/theseer",
  10244. "type": "github"
  10245. }
  10246. ],
  10247. "time": "2020-07-12T23:59:07+00:00"
  10248. },
  10249. {
  10250. "name": "webmozart/assert",
  10251. "version": "1.10.0",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/webmozarts/assert.git",
  10255. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10260. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10261. "shasum": "",
  10262. "mirrors": [
  10263. {
  10264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10265. "preferred": true
  10266. }
  10267. ]
  10268. },
  10269. "require": {
  10270. "php": "^7.2 || ^8.0",
  10271. "symfony/polyfill-ctype": "^1.8"
  10272. },
  10273. "conflict": {
  10274. "phpstan/phpstan": "<0.12.20",
  10275. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10276. },
  10277. "require-dev": {
  10278. "phpunit/phpunit": "^8.5.13"
  10279. },
  10280. "type": "library",
  10281. "extra": {
  10282. "branch-alias": {
  10283. "dev-master": "1.10-dev"
  10284. }
  10285. },
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Webmozart\\Assert\\": "src/"
  10289. }
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "MIT"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Bernhard Schussek",
  10298. "email": "bschussek@gmail.com"
  10299. }
  10300. ],
  10301. "description": "Assertions to validate method input/output with nice error messages.",
  10302. "keywords": [
  10303. "assert",
  10304. "check",
  10305. "validate"
  10306. ],
  10307. "support": {
  10308. "issues": "https://github.com/webmozarts/assert/issues",
  10309. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10310. },
  10311. "time": "2021-03-09T10:59:23+00:00"
  10312. }
  10313. ],
  10314. "aliases": [],
  10315. "minimum-stability": "dev",
  10316. "stability-flags": [],
  10317. "prefer-stable": true,
  10318. "prefer-lowest": false,
  10319. "platform": {
  10320. "php": "^7.2.14",
  10321. "ext-bcmath": "*",
  10322. "ext-json": "*",
  10323. "ext-mbstring": "*",
  10324. "ext-openssl": "*",
  10325. "ext-pdo": "*"
  10326. },
  10327. "platform-dev": [],
  10328. "platform-overrides": {
  10329. "ext-pcntl": "7.2",
  10330. "ext-posix": "7.2"
  10331. },
  10332. "plugin-api-version": "2.1.0"
  10333. }