composer.lock 370 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516
  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": "b5a2dc3ae25f0d89c13f85c0aec5f31f",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.0|^8.0",
  31. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  32. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^6|^7|^8|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.0-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "time": "2020-10-29T16:03:21+00:00"
  66. },
  67. {
  68. "name": "bacon/bacon-qr-code",
  69. "version": "2.0.3",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/Bacon/BaconQrCode.git",
  73. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  78. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  79. "shasum": "",
  80. "mirrors": [
  81. {
  82. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  83. "preferred": true
  84. }
  85. ]
  86. },
  87. "require": {
  88. "dasprid/enum": "^1.0.3",
  89. "ext-iconv": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "phly/keep-a-changelog": "^1.4",
  94. "phpunit/phpunit": "^7 | ^8 | ^9",
  95. "squizlabs/php_codesniffer": "^3.4"
  96. },
  97. "suggest": {
  98. "ext-imagick": "to generate QR code images"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "BaconQrCode\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "BSD-2-Clause"
  109. ],
  110. "authors": [
  111. {
  112. "name": "Ben Scholzen 'DASPRiD'",
  113. "email": "mail@dasprids.de",
  114. "homepage": "https://dasprids.de/",
  115. "role": "Developer"
  116. }
  117. ],
  118. "description": "BaconQrCode is a QR code generator for PHP.",
  119. "homepage": "https://github.com/Bacon/BaconQrCode",
  120. "time": "2020-10-30T02:02:47+00:00"
  121. },
  122. {
  123. "name": "barryvdh/laravel-ide-helper",
  124. "version": "v2.8.2",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  128. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  133. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  134. "shasum": "",
  135. "mirrors": [
  136. {
  137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  138. "preferred": true
  139. }
  140. ]
  141. },
  142. "require": {
  143. "barryvdh/reflection-docblock": "^2.0.6",
  144. "composer/composer": "^1.6 || ^2",
  145. "doctrine/dbal": "~2.3",
  146. "ext-json": "*",
  147. "illuminate/console": "^6 || ^7 || ^8",
  148. "illuminate/filesystem": "^6 || ^7 || ^8",
  149. "illuminate/support": "^6 || ^7 || ^8",
  150. "php": ">=7.2",
  151. "phpdocumentor/type-resolver": "^1.1.0"
  152. },
  153. "require-dev": {
  154. "ext-pdo_sqlite": "*",
  155. "friendsofphp/php-cs-fixer": "^2",
  156. "illuminate/config": "^6 || ^7 || ^8",
  157. "illuminate/view": "^6 || ^7 || ^8",
  158. "mockery/mockery": "^1.3.3",
  159. "orchestra/testbench": "^4 || ^5 || ^6",
  160. "phpunit/phpunit": "^8.5 || ^9",
  161. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  162. "vimeo/psalm": "^3.12"
  163. },
  164. "type": "library",
  165. "extra": {
  166. "branch-alias": {
  167. "dev-master": "2.8-dev"
  168. },
  169. "laravel": {
  170. "providers": [
  171. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  172. ]
  173. }
  174. },
  175. "autoload": {
  176. "psr-4": {
  177. "Barryvdh\\LaravelIdeHelper\\": "src"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "MIT"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Barry vd. Heuvel",
  187. "email": "barryvdh@gmail.com"
  188. }
  189. ],
  190. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  191. "keywords": [
  192. "autocomplete",
  193. "codeintel",
  194. "helper",
  195. "ide",
  196. "laravel",
  197. "netbeans",
  198. "phpdoc",
  199. "phpstorm",
  200. "sublime"
  201. ],
  202. "funding": [
  203. {
  204. "url": "https://github.com/barryvdh",
  205. "type": "github"
  206. }
  207. ],
  208. "time": "2020-12-06T08:55:05+00:00"
  209. },
  210. {
  211. "name": "barryvdh/reflection-docblock",
  212. "version": "v2.0.6",
  213. "source": {
  214. "type": "git",
  215. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  216. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  217. },
  218. "dist": {
  219. "type": "zip",
  220. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  221. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  222. "shasum": "",
  223. "mirrors": [
  224. {
  225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  226. "preferred": true
  227. }
  228. ]
  229. },
  230. "require": {
  231. "php": ">=5.3.3"
  232. },
  233. "require-dev": {
  234. "phpunit/phpunit": "~4.0,<4.5"
  235. },
  236. "suggest": {
  237. "dflydev/markdown": "~1.0",
  238. "erusev/parsedown": "~1.0"
  239. },
  240. "type": "library",
  241. "extra": {
  242. "branch-alias": {
  243. "dev-master": "2.0.x-dev"
  244. }
  245. },
  246. "autoload": {
  247. "psr-0": {
  248. "Barryvdh": [
  249. "src/"
  250. ]
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "MIT"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Mike van Riel",
  260. "email": "mike.vanriel@naenius.com"
  261. }
  262. ],
  263. "time": "2018-12-13T10:34:14+00:00"
  264. },
  265. {
  266. "name": "composer/ca-bundle",
  267. "version": "1.2.9",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/composer/ca-bundle.git",
  271. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  276. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  277. "shasum": "",
  278. "mirrors": [
  279. {
  280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  281. "preferred": true
  282. }
  283. ]
  284. },
  285. "require": {
  286. "ext-openssl": "*",
  287. "ext-pcre": "*",
  288. "php": "^5.3.2 || ^7.0 || ^8.0"
  289. },
  290. "require-dev": {
  291. "phpstan/phpstan": "^0.12.55",
  292. "psr/log": "^1.0",
  293. "symfony/phpunit-bridge": "^4.2 || ^5",
  294. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  295. },
  296. "type": "library",
  297. "extra": {
  298. "branch-alias": {
  299. "dev-main": "1.x-dev"
  300. }
  301. },
  302. "autoload": {
  303. "psr-4": {
  304. "Composer\\CaBundle\\": "src"
  305. }
  306. },
  307. "notification-url": "https://packagist.org/downloads/",
  308. "license": [
  309. "MIT"
  310. ],
  311. "authors": [
  312. {
  313. "name": "Jordi Boggiano",
  314. "email": "j.boggiano@seld.be",
  315. "homepage": "http://seld.be"
  316. }
  317. ],
  318. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  319. "keywords": [
  320. "cabundle",
  321. "cacert",
  322. "certificate",
  323. "ssl",
  324. "tls"
  325. ],
  326. "funding": [
  327. {
  328. "url": "https://packagist.com",
  329. "type": "custom"
  330. },
  331. {
  332. "url": "https://github.com/composer",
  333. "type": "github"
  334. },
  335. {
  336. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  337. "type": "tidelift"
  338. }
  339. ],
  340. "time": "2021-01-12T12:10:35+00:00"
  341. },
  342. {
  343. "name": "composer/composer",
  344. "version": "2.0.11",
  345. "source": {
  346. "type": "git",
  347. "url": "https://github.com/composer/composer.git",
  348. "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9"
  349. },
  350. "dist": {
  351. "type": "zip",
  352. "url": "https://api.github.com/repos/composer/composer/zipball/a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
  353. "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
  354. "shasum": "",
  355. "mirrors": [
  356. {
  357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  358. "preferred": true
  359. }
  360. ]
  361. },
  362. "require": {
  363. "composer/ca-bundle": "^1.0",
  364. "composer/semver": "^3.0",
  365. "composer/spdx-licenses": "^1.2",
  366. "composer/xdebug-handler": "^1.1",
  367. "justinrainbow/json-schema": "^5.2.10",
  368. "php": "^5.3.2 || ^7.0 || ^8.0",
  369. "psr/log": "^1.0",
  370. "react/promise": "^1.2 || ^2.7",
  371. "seld/jsonlint": "^1.4",
  372. "seld/phar-utils": "^1.0",
  373. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  374. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  375. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  376. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  377. },
  378. "require-dev": {
  379. "phpspec/prophecy": "^1.10",
  380. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  381. },
  382. "suggest": {
  383. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  384. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  385. "ext-zlib": "Allow gzip compression of HTTP requests"
  386. },
  387. "bin": [
  388. "bin/composer"
  389. ],
  390. "type": "library",
  391. "extra": {
  392. "branch-alias": {
  393. "dev-master": "2.0-dev"
  394. }
  395. },
  396. "autoload": {
  397. "psr-4": {
  398. "Composer\\": "src/Composer"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "authors": [
  406. {
  407. "name": "Nils Adermann",
  408. "email": "naderman@naderman.de",
  409. "homepage": "https://www.naderman.de"
  410. },
  411. {
  412. "name": "Jordi Boggiano",
  413. "email": "j.boggiano@seld.be",
  414. "homepage": "https://seld.be"
  415. }
  416. ],
  417. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  418. "homepage": "https://getcomposer.org/",
  419. "keywords": [
  420. "autoload",
  421. "dependency",
  422. "package"
  423. ],
  424. "funding": [
  425. {
  426. "url": "https://packagist.com",
  427. "type": "custom"
  428. },
  429. {
  430. "url": "https://github.com/composer",
  431. "type": "github"
  432. },
  433. {
  434. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  435. "type": "tidelift"
  436. }
  437. ],
  438. "time": "2021-02-24T13:57:23+00:00"
  439. },
  440. {
  441. "name": "composer/semver",
  442. "version": "3.2.4",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/composer/semver.git",
  446. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  451. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  452. "shasum": "",
  453. "mirrors": [
  454. {
  455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  456. "preferred": true
  457. }
  458. ]
  459. },
  460. "require": {
  461. "php": "^5.3.2 || ^7.0 || ^8.0"
  462. },
  463. "require-dev": {
  464. "phpstan/phpstan": "^0.12.54",
  465. "symfony/phpunit-bridge": "^4.2 || ^5"
  466. },
  467. "type": "library",
  468. "extra": {
  469. "branch-alias": {
  470. "dev-main": "3.x-dev"
  471. }
  472. },
  473. "autoload": {
  474. "psr-4": {
  475. "Composer\\Semver\\": "src"
  476. }
  477. },
  478. "notification-url": "https://packagist.org/downloads/",
  479. "license": [
  480. "MIT"
  481. ],
  482. "authors": [
  483. {
  484. "name": "Nils Adermann",
  485. "email": "naderman@naderman.de",
  486. "homepage": "http://www.naderman.de"
  487. },
  488. {
  489. "name": "Jordi Boggiano",
  490. "email": "j.boggiano@seld.be",
  491. "homepage": "http://seld.be"
  492. },
  493. {
  494. "name": "Rob Bast",
  495. "email": "rob.bast@gmail.com",
  496. "homepage": "http://robbast.nl"
  497. }
  498. ],
  499. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  500. "keywords": [
  501. "semantic",
  502. "semver",
  503. "validation",
  504. "versioning"
  505. ],
  506. "funding": [
  507. {
  508. "url": "https://packagist.com",
  509. "type": "custom"
  510. },
  511. {
  512. "url": "https://github.com/composer",
  513. "type": "github"
  514. },
  515. {
  516. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  517. "type": "tidelift"
  518. }
  519. ],
  520. "time": "2020-11-13T08:59:24+00:00"
  521. },
  522. {
  523. "name": "composer/spdx-licenses",
  524. "version": "1.5.5",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/composer/spdx-licenses.git",
  528. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  533. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  534. "shasum": "",
  535. "mirrors": [
  536. {
  537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  538. "preferred": true
  539. }
  540. ]
  541. },
  542. "require": {
  543. "php": "^5.3.2 || ^7.0 || ^8.0"
  544. },
  545. "require-dev": {
  546. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-main": "1.x-dev"
  552. }
  553. },
  554. "autoload": {
  555. "psr-4": {
  556. "Composer\\Spdx\\": "src"
  557. }
  558. },
  559. "notification-url": "https://packagist.org/downloads/",
  560. "license": [
  561. "MIT"
  562. ],
  563. "authors": [
  564. {
  565. "name": "Nils Adermann",
  566. "email": "naderman@naderman.de",
  567. "homepage": "http://www.naderman.de"
  568. },
  569. {
  570. "name": "Jordi Boggiano",
  571. "email": "j.boggiano@seld.be",
  572. "homepage": "http://seld.be"
  573. },
  574. {
  575. "name": "Rob Bast",
  576. "email": "rob.bast@gmail.com",
  577. "homepage": "http://robbast.nl"
  578. }
  579. ],
  580. "description": "SPDX licenses list and validation library.",
  581. "keywords": [
  582. "license",
  583. "spdx",
  584. "validator"
  585. ],
  586. "funding": [
  587. {
  588. "url": "https://packagist.com",
  589. "type": "custom"
  590. },
  591. {
  592. "url": "https://github.com/composer",
  593. "type": "github"
  594. },
  595. {
  596. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  597. "type": "tidelift"
  598. }
  599. ],
  600. "time": "2020-12-03T16:04:16+00:00"
  601. },
  602. {
  603. "name": "composer/xdebug-handler",
  604. "version": "1.4.5",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/composer/xdebug-handler.git",
  608. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  613. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  614. "shasum": "",
  615. "mirrors": [
  616. {
  617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  618. "preferred": true
  619. }
  620. ]
  621. },
  622. "require": {
  623. "php": "^5.3.2 || ^7.0 || ^8.0",
  624. "psr/log": "^1.0"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  628. },
  629. "type": "library",
  630. "autoload": {
  631. "psr-4": {
  632. "Composer\\XdebugHandler\\": "src"
  633. }
  634. },
  635. "notification-url": "https://packagist.org/downloads/",
  636. "license": [
  637. "MIT"
  638. ],
  639. "authors": [
  640. {
  641. "name": "John Stevenson",
  642. "email": "john-stevenson@blueyonder.co.uk"
  643. }
  644. ],
  645. "description": "Restarts a process without Xdebug.",
  646. "keywords": [
  647. "Xdebug",
  648. "performance"
  649. ],
  650. "funding": [
  651. {
  652. "url": "https://packagist.com",
  653. "type": "custom"
  654. },
  655. {
  656. "url": "https://github.com/composer",
  657. "type": "github"
  658. },
  659. {
  660. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  661. "type": "tidelift"
  662. }
  663. ],
  664. "time": "2020-11-13T08:04:11+00:00"
  665. },
  666. {
  667. "name": "dasprid/enum",
  668. "version": "1.0.3",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/DASPRiD/Enum.git",
  672. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  677. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  678. "shasum": "",
  679. "mirrors": [
  680. {
  681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  682. "preferred": true
  683. }
  684. ]
  685. },
  686. "require-dev": {
  687. "phpunit/phpunit": "^7 | ^8 | ^9",
  688. "squizlabs/php_codesniffer": "^3.4"
  689. },
  690. "type": "library",
  691. "autoload": {
  692. "psr-4": {
  693. "DASPRiD\\Enum\\": "src/"
  694. }
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "BSD-2-Clause"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Ben Scholzen 'DASPRiD'",
  703. "email": "mail@dasprids.de",
  704. "homepage": "https://dasprids.de/",
  705. "role": "Developer"
  706. }
  707. ],
  708. "description": "PHP 7.1 enum implementation",
  709. "keywords": [
  710. "enum",
  711. "map"
  712. ],
  713. "time": "2020-10-02T16:03:48+00:00"
  714. },
  715. {
  716. "name": "dingo/api",
  717. "version": "v2.4.7",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/dingo/api.git",
  721. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  726. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  727. "shasum": "",
  728. "mirrors": [
  729. {
  730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  731. "preferred": true
  732. }
  733. ]
  734. },
  735. "require": {
  736. "dingo/blueprint": "^0.3",
  737. "illuminate/routing": "^5.5 || ^6.0",
  738. "illuminate/support": "^5.5 || ^6.0",
  739. "league/fractal": "^0.17",
  740. "php": "^7.1"
  741. },
  742. "require-dev": {
  743. "friendsofphp/php-cs-fixer": "~2",
  744. "illuminate/auth": "^5.5 || ^6.0",
  745. "illuminate/cache": "^5.5 || ^6.0",
  746. "illuminate/console": "^5.5 || ^6.0",
  747. "illuminate/database": "^5.5 || ^6.0",
  748. "illuminate/events": "^5.5 || ^6.0",
  749. "illuminate/filesystem": "^5.5 || ^6.0",
  750. "illuminate/log": "^5.5 || ^6.0",
  751. "illuminate/pagination": "^5.5 || ^6.0",
  752. "laravel/lumen-framework": "^5.5 || ^6.0",
  753. "mockery/mockery": "~1.0",
  754. "phpdocumentor/reflection-docblock": "3.3.2",
  755. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  756. "squizlabs/php_codesniffer": "~2.0",
  757. "tymon/jwt-auth": "1.0.*"
  758. },
  759. "suggest": {
  760. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  761. },
  762. "type": "library",
  763. "extra": {
  764. "branch-alias": {
  765. "dev-master": "2.0-dev"
  766. },
  767. "laravel": {
  768. "providers": [
  769. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  770. ],
  771. "aliases": {
  772. "API": "Dingo\\Api\\Facade\\API"
  773. }
  774. }
  775. },
  776. "autoload": {
  777. "psr-4": {
  778. "Dingo\\Api\\": "src/"
  779. },
  780. "files": [
  781. "src/helpers.php"
  782. ]
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "BSD-3-Clause"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Jason Lewis",
  791. "email": "jason.lewis1991@gmail.com"
  792. }
  793. ],
  794. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  795. "keywords": [
  796. "api",
  797. "dingo",
  798. "laravel",
  799. "restful"
  800. ],
  801. "time": "2020-03-19T01:36:11+00:00"
  802. },
  803. {
  804. "name": "dingo/blueprint",
  805. "version": "v0.3.1",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/dingo/blueprint.git",
  809. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  814. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  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. "doctrine/annotations": "~1.2",
  825. "illuminate/filesystem": "^5.5 || ^6.0",
  826. "illuminate/support": "^5.5 || ^6.0",
  827. "php": "^7.1",
  828. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  829. },
  830. "require-dev": {
  831. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  832. "squizlabs/php_codesniffer": "~2.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "0.2-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "Dingo\\Blueprint\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Jason Lewis",
  852. "email": "jason.lewis1991@gmail.com"
  853. }
  854. ],
  855. "description": "API Blueprint documentation generator.",
  856. "keywords": [
  857. "api",
  858. "blueprint",
  859. "dingo",
  860. "docs",
  861. "laravel"
  862. ],
  863. "time": "2019-10-07T10:14:17+00:00"
  864. },
  865. {
  866. "name": "doctrine/annotations",
  867. "version": "1.12.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/doctrine/annotations.git",
  871. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  876. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "doctrine/lexer": "1.*",
  887. "ext-tokenizer": "*",
  888. "php": "^7.1 || ^8.0"
  889. },
  890. "require-dev": {
  891. "doctrine/cache": "1.*",
  892. "doctrine/coding-standard": "^6.0 || ^8.1",
  893. "phpstan/phpstan": "^0.12.20",
  894. "phpunit/phpunit": "^7.5 || ^9.1.5"
  895. },
  896. "type": "library",
  897. "autoload": {
  898. "psr-4": {
  899. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "authors": [
  907. {
  908. "name": "Guilherme Blanco",
  909. "email": "guilhermeblanco@gmail.com"
  910. },
  911. {
  912. "name": "Roman Borschel",
  913. "email": "roman@code-factory.org"
  914. },
  915. {
  916. "name": "Benjamin Eberlei",
  917. "email": "kontakt@beberlei.de"
  918. },
  919. {
  920. "name": "Jonathan Wage",
  921. "email": "jonwage@gmail.com"
  922. },
  923. {
  924. "name": "Johannes Schmitt",
  925. "email": "schmittjoh@gmail.com"
  926. }
  927. ],
  928. "description": "Docblock Annotations Parser",
  929. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  930. "keywords": [
  931. "annotations",
  932. "docblock",
  933. "parser"
  934. ],
  935. "time": "2021-02-21T21:00:45+00:00"
  936. },
  937. {
  938. "name": "doctrine/cache",
  939. "version": "1.10.2",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/doctrine/cache.git",
  943. "reference": "13e3381b25847283a91948d04640543941309727"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  948. "reference": "13e3381b25847283a91948d04640543941309727",
  949. "shasum": "",
  950. "mirrors": [
  951. {
  952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  953. "preferred": true
  954. }
  955. ]
  956. },
  957. "require": {
  958. "php": "~7.1 || ^8.0"
  959. },
  960. "conflict": {
  961. "doctrine/common": ">2.2,<2.4"
  962. },
  963. "require-dev": {
  964. "alcaeus/mongo-php-adapter": "^1.1",
  965. "doctrine/coding-standard": "^6.0",
  966. "mongodb/mongodb": "^1.1",
  967. "phpunit/phpunit": "^7.0",
  968. "predis/predis": "~1.0"
  969. },
  970. "suggest": {
  971. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "branch-alias": {
  976. "dev-master": "1.9.x-dev"
  977. }
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Guilherme Blanco",
  991. "email": "guilhermeblanco@gmail.com"
  992. },
  993. {
  994. "name": "Roman Borschel",
  995. "email": "roman@code-factory.org"
  996. },
  997. {
  998. "name": "Benjamin Eberlei",
  999. "email": "kontakt@beberlei.de"
  1000. },
  1001. {
  1002. "name": "Jonathan Wage",
  1003. "email": "jonwage@gmail.com"
  1004. },
  1005. {
  1006. "name": "Johannes Schmitt",
  1007. "email": "schmittjoh@gmail.com"
  1008. }
  1009. ],
  1010. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1011. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1012. "keywords": [
  1013. "abstraction",
  1014. "apcu",
  1015. "cache",
  1016. "caching",
  1017. "couchdb",
  1018. "memcached",
  1019. "php",
  1020. "redis",
  1021. "xcache"
  1022. ],
  1023. "funding": [
  1024. {
  1025. "url": "https://www.doctrine-project.org/sponsorship.html",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://www.patreon.com/phpdoctrine",
  1030. "type": "patreon"
  1031. },
  1032. {
  1033. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1034. "type": "tidelift"
  1035. }
  1036. ],
  1037. "time": "2020-07-07T18:54:01+00:00"
  1038. },
  1039. {
  1040. "name": "doctrine/dbal",
  1041. "version": "2.12.1",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/doctrine/dbal.git",
  1045. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  1050. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  1051. "shasum": "",
  1052. "mirrors": [
  1053. {
  1054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1055. "preferred": true
  1056. }
  1057. ]
  1058. },
  1059. "require": {
  1060. "doctrine/cache": "^1.0",
  1061. "doctrine/event-manager": "^1.0",
  1062. "ext-pdo": "*",
  1063. "php": "^7.3 || ^8"
  1064. },
  1065. "require-dev": {
  1066. "doctrine/coding-standard": "^8.1",
  1067. "jetbrains/phpstorm-stubs": "^2019.1",
  1068. "phpstan/phpstan": "^0.12.40",
  1069. "phpunit/phpunit": "^9.4",
  1070. "psalm/plugin-phpunit": "^0.10.0",
  1071. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1072. "vimeo/psalm": "^3.17.2"
  1073. },
  1074. "suggest": {
  1075. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1076. },
  1077. "bin": [
  1078. "bin/doctrine-dbal"
  1079. ],
  1080. "type": "library",
  1081. "extra": {
  1082. "branch-alias": {
  1083. "dev-master": "4.0.x-dev"
  1084. }
  1085. },
  1086. "autoload": {
  1087. "psr-4": {
  1088. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1089. }
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "MIT"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "Guilherme Blanco",
  1098. "email": "guilhermeblanco@gmail.com"
  1099. },
  1100. {
  1101. "name": "Roman Borschel",
  1102. "email": "roman@code-factory.org"
  1103. },
  1104. {
  1105. "name": "Benjamin Eberlei",
  1106. "email": "kontakt@beberlei.de"
  1107. },
  1108. {
  1109. "name": "Jonathan Wage",
  1110. "email": "jonwage@gmail.com"
  1111. }
  1112. ],
  1113. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1114. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1115. "keywords": [
  1116. "abstraction",
  1117. "database",
  1118. "db2",
  1119. "dbal",
  1120. "mariadb",
  1121. "mssql",
  1122. "mysql",
  1123. "oci8",
  1124. "oracle",
  1125. "pdo",
  1126. "pgsql",
  1127. "postgresql",
  1128. "queryobject",
  1129. "sasql",
  1130. "sql",
  1131. "sqlanywhere",
  1132. "sqlite",
  1133. "sqlserver",
  1134. "sqlsrv"
  1135. ],
  1136. "funding": [
  1137. {
  1138. "url": "https://www.doctrine-project.org/sponsorship.html",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://www.patreon.com/phpdoctrine",
  1143. "type": "patreon"
  1144. },
  1145. {
  1146. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1147. "type": "tidelift"
  1148. }
  1149. ],
  1150. "time": "2020-11-14T20:26:58+00:00"
  1151. },
  1152. {
  1153. "name": "doctrine/event-manager",
  1154. "version": "1.1.1",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/doctrine/event-manager.git",
  1158. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1163. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1164. "shasum": "",
  1165. "mirrors": [
  1166. {
  1167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1168. "preferred": true
  1169. }
  1170. ]
  1171. },
  1172. "require": {
  1173. "php": "^7.1 || ^8.0"
  1174. },
  1175. "conflict": {
  1176. "doctrine/common": "<2.9@dev"
  1177. },
  1178. "require-dev": {
  1179. "doctrine/coding-standard": "^6.0",
  1180. "phpunit/phpunit": "^7.0"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.0.x-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Guilherme Blanco",
  1200. "email": "guilhermeblanco@gmail.com"
  1201. },
  1202. {
  1203. "name": "Roman Borschel",
  1204. "email": "roman@code-factory.org"
  1205. },
  1206. {
  1207. "name": "Benjamin Eberlei",
  1208. "email": "kontakt@beberlei.de"
  1209. },
  1210. {
  1211. "name": "Jonathan Wage",
  1212. "email": "jonwage@gmail.com"
  1213. },
  1214. {
  1215. "name": "Johannes Schmitt",
  1216. "email": "schmittjoh@gmail.com"
  1217. },
  1218. {
  1219. "name": "Marco Pivetta",
  1220. "email": "ocramius@gmail.com"
  1221. }
  1222. ],
  1223. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1224. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1225. "keywords": [
  1226. "event",
  1227. "event dispatcher",
  1228. "event manager",
  1229. "event system",
  1230. "events"
  1231. ],
  1232. "funding": [
  1233. {
  1234. "url": "https://www.doctrine-project.org/sponsorship.html",
  1235. "type": "custom"
  1236. },
  1237. {
  1238. "url": "https://www.patreon.com/phpdoctrine",
  1239. "type": "patreon"
  1240. },
  1241. {
  1242. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1243. "type": "tidelift"
  1244. }
  1245. ],
  1246. "time": "2020-05-29T18:28:51+00:00"
  1247. },
  1248. {
  1249. "name": "doctrine/inflector",
  1250. "version": "2.0.3",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/doctrine/inflector.git",
  1254. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1259. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1260. "shasum": "",
  1261. "mirrors": [
  1262. {
  1263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1264. "preferred": true
  1265. }
  1266. ]
  1267. },
  1268. "require": {
  1269. "php": "^7.2 || ^8.0"
  1270. },
  1271. "require-dev": {
  1272. "doctrine/coding-standard": "^7.0",
  1273. "phpstan/phpstan": "^0.11",
  1274. "phpstan/phpstan-phpunit": "^0.11",
  1275. "phpstan/phpstan-strict-rules": "^0.11",
  1276. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "2.0.x-dev"
  1282. }
  1283. },
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Guilherme Blanco",
  1296. "email": "guilhermeblanco@gmail.com"
  1297. },
  1298. {
  1299. "name": "Roman Borschel",
  1300. "email": "roman@code-factory.org"
  1301. },
  1302. {
  1303. "name": "Benjamin Eberlei",
  1304. "email": "kontakt@beberlei.de"
  1305. },
  1306. {
  1307. "name": "Jonathan Wage",
  1308. "email": "jonwage@gmail.com"
  1309. },
  1310. {
  1311. "name": "Johannes Schmitt",
  1312. "email": "schmittjoh@gmail.com"
  1313. }
  1314. ],
  1315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1317. "keywords": [
  1318. "inflection",
  1319. "inflector",
  1320. "lowercase",
  1321. "manipulation",
  1322. "php",
  1323. "plural",
  1324. "singular",
  1325. "strings",
  1326. "uppercase",
  1327. "words"
  1328. ],
  1329. "funding": [
  1330. {
  1331. "url": "https://www.doctrine-project.org/sponsorship.html",
  1332. "type": "custom"
  1333. },
  1334. {
  1335. "url": "https://www.patreon.com/phpdoctrine",
  1336. "type": "patreon"
  1337. },
  1338. {
  1339. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1340. "type": "tidelift"
  1341. }
  1342. ],
  1343. "time": "2020-05-29T15:13:26+00:00"
  1344. },
  1345. {
  1346. "name": "doctrine/lexer",
  1347. "version": "1.2.1",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/doctrine/lexer.git",
  1351. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1356. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1357. "shasum": "",
  1358. "mirrors": [
  1359. {
  1360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1361. "preferred": true
  1362. }
  1363. ]
  1364. },
  1365. "require": {
  1366. "php": "^7.2 || ^8.0"
  1367. },
  1368. "require-dev": {
  1369. "doctrine/coding-standard": "^6.0",
  1370. "phpstan/phpstan": "^0.11.8",
  1371. "phpunit/phpunit": "^8.2"
  1372. },
  1373. "type": "library",
  1374. "extra": {
  1375. "branch-alias": {
  1376. "dev-master": "1.2.x-dev"
  1377. }
  1378. },
  1379. "autoload": {
  1380. "psr-4": {
  1381. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1382. }
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "authors": [
  1389. {
  1390. "name": "Guilherme Blanco",
  1391. "email": "guilhermeblanco@gmail.com"
  1392. },
  1393. {
  1394. "name": "Roman Borschel",
  1395. "email": "roman@code-factory.org"
  1396. },
  1397. {
  1398. "name": "Johannes Schmitt",
  1399. "email": "schmittjoh@gmail.com"
  1400. }
  1401. ],
  1402. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1403. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1404. "keywords": [
  1405. "annotations",
  1406. "docblock",
  1407. "lexer",
  1408. "parser",
  1409. "php"
  1410. ],
  1411. "funding": [
  1412. {
  1413. "url": "https://www.doctrine-project.org/sponsorship.html",
  1414. "type": "custom"
  1415. },
  1416. {
  1417. "url": "https://www.patreon.com/phpdoctrine",
  1418. "type": "patreon"
  1419. },
  1420. {
  1421. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1422. "type": "tidelift"
  1423. }
  1424. ],
  1425. "time": "2020-05-25T17:44:05+00:00"
  1426. },
  1427. {
  1428. "name": "dragonmantank/cron-expression",
  1429. "version": "v2.3.1",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/dragonmantank/cron-expression.git",
  1433. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1438. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1439. "shasum": "",
  1440. "mirrors": [
  1441. {
  1442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1443. "preferred": true
  1444. }
  1445. ]
  1446. },
  1447. "require": {
  1448. "php": "^7.0|^8.0"
  1449. },
  1450. "require-dev": {
  1451. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1452. },
  1453. "type": "library",
  1454. "extra": {
  1455. "branch-alias": {
  1456. "dev-master": "2.3-dev"
  1457. }
  1458. },
  1459. "autoload": {
  1460. "psr-4": {
  1461. "Cron\\": "src/Cron/"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Michael Dowling",
  1471. "email": "mtdowling@gmail.com",
  1472. "homepage": "https://github.com/mtdowling"
  1473. },
  1474. {
  1475. "name": "Chris Tankersley",
  1476. "email": "chris@ctankersley.com",
  1477. "homepage": "https://github.com/dragonmantank"
  1478. }
  1479. ],
  1480. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1481. "keywords": [
  1482. "cron",
  1483. "schedule"
  1484. ],
  1485. "funding": [
  1486. {
  1487. "url": "https://github.com/dragonmantank",
  1488. "type": "github"
  1489. }
  1490. ],
  1491. "time": "2020-10-13T00:52:37+00:00"
  1492. },
  1493. {
  1494. "name": "easywechat-composer/easywechat-composer",
  1495. "version": "1.4.0",
  1496. "source": {
  1497. "type": "git",
  1498. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1499. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  1500. },
  1501. "dist": {
  1502. "type": "zip",
  1503. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1504. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1505. "shasum": "",
  1506. "mirrors": [
  1507. {
  1508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1509. "preferred": true
  1510. }
  1511. ]
  1512. },
  1513. "require": {
  1514. "composer-plugin-api": "^1.0 || ^2.0",
  1515. "php": ">=7.0"
  1516. },
  1517. "require-dev": {
  1518. "composer/composer": "^1.0 || ^2.0",
  1519. "phpunit/phpunit": "^6.5 || ^7.0"
  1520. },
  1521. "type": "composer-plugin",
  1522. "extra": {
  1523. "class": "EasyWeChatComposer\\Plugin"
  1524. },
  1525. "autoload": {
  1526. "psr-4": {
  1527. "EasyWeChatComposer\\": "src/"
  1528. }
  1529. },
  1530. "notification-url": "https://packagist.org/downloads/",
  1531. "license": [
  1532. "MIT"
  1533. ],
  1534. "authors": [
  1535. {
  1536. "name": "张铭阳",
  1537. "email": "mingyoungcheung@gmail.com"
  1538. }
  1539. ],
  1540. "description": "The composer plugin for EasyWeChat",
  1541. "time": "2020-07-23T11:06:47+00:00"
  1542. },
  1543. {
  1544. "name": "egulias/email-validator",
  1545. "version": "2.1.25",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/egulias/EmailValidator.git",
  1549. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1554. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1555. "shasum": "",
  1556. "mirrors": [
  1557. {
  1558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1559. "preferred": true
  1560. }
  1561. ]
  1562. },
  1563. "require": {
  1564. "doctrine/lexer": "^1.0.1",
  1565. "php": ">=5.5",
  1566. "symfony/polyfill-intl-idn": "^1.10"
  1567. },
  1568. "require-dev": {
  1569. "dominicsayers/isemail": "^3.0.7",
  1570. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1571. "satooshi/php-coveralls": "^1.0.1"
  1572. },
  1573. "suggest": {
  1574. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "2.1.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Egulias\\EmailValidator\\": "src"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Eduardo Gulias Davis"
  1594. }
  1595. ],
  1596. "description": "A library for validating emails against several RFCs",
  1597. "homepage": "https://github.com/egulias/EmailValidator",
  1598. "keywords": [
  1599. "email",
  1600. "emailvalidation",
  1601. "emailvalidator",
  1602. "validation",
  1603. "validator"
  1604. ],
  1605. "funding": [
  1606. {
  1607. "url": "https://github.com/egulias",
  1608. "type": "github"
  1609. }
  1610. ],
  1611. "time": "2020-12-29T14:50:06+00:00"
  1612. },
  1613. {
  1614. "name": "endroid/qr-code",
  1615. "version": "3.9.6",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/endroid/qr-code.git",
  1619. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  1624. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  1625. "shasum": "",
  1626. "mirrors": [
  1627. {
  1628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1629. "preferred": true
  1630. }
  1631. ]
  1632. },
  1633. "require": {
  1634. "bacon/bacon-qr-code": "^2.0",
  1635. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  1636. "myclabs/php-enum": "^1.5",
  1637. "php": ">=7.2",
  1638. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1639. "symfony/property-access": "^3.4||^4.4||^5.0"
  1640. },
  1641. "require-dev": {
  1642. "endroid/quality": "^1.3.7",
  1643. "setasign/fpdf": "^1.8"
  1644. },
  1645. "suggest": {
  1646. "ext-gd": "Required for generating PNG images",
  1647. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1648. "setasign/fpdf": "Required to use the FPDF writer.",
  1649. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "3.x-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "Endroid\\QrCode\\": "src/"
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Jeroen van den Enden",
  1669. "email": "info@endroid.nl"
  1670. }
  1671. ],
  1672. "description": "Endroid QR Code",
  1673. "homepage": "https://github.com/endroid/qr-code",
  1674. "keywords": [
  1675. "bundle",
  1676. "code",
  1677. "endroid",
  1678. "php",
  1679. "qr",
  1680. "qrcode"
  1681. ],
  1682. "funding": [
  1683. {
  1684. "url": "https://github.com/endroid",
  1685. "type": "github"
  1686. }
  1687. ],
  1688. "time": "2020-11-27T14:30:38+00:00"
  1689. },
  1690. {
  1691. "name": "fruitcake/laravel-cors",
  1692. "version": "v2.0.3",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/fruitcake/laravel-cors.git",
  1696. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1701. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1702. "shasum": "",
  1703. "mirrors": [
  1704. {
  1705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1706. "preferred": true
  1707. }
  1708. ]
  1709. },
  1710. "require": {
  1711. "asm89/stack-cors": "^2.0.1",
  1712. "illuminate/contracts": "^6|^7|^8|^9",
  1713. "illuminate/support": "^6|^7|^8|^9",
  1714. "php": ">=7.2",
  1715. "symfony/http-foundation": "^4|^5",
  1716. "symfony/http-kernel": "^4.3.4|^5"
  1717. },
  1718. "require-dev": {
  1719. "laravel/framework": "^6|^7|^8",
  1720. "orchestra/testbench-dusk": "^4|^5|^6",
  1721. "phpunit/phpunit": "^6|^7|^8",
  1722. "squizlabs/php_codesniffer": "^3.5"
  1723. },
  1724. "type": "library",
  1725. "extra": {
  1726. "branch-alias": {
  1727. "dev-master": "2.0-dev"
  1728. },
  1729. "laravel": {
  1730. "providers": [
  1731. "Fruitcake\\Cors\\CorsServiceProvider"
  1732. ]
  1733. }
  1734. },
  1735. "autoload": {
  1736. "psr-4": {
  1737. "Fruitcake\\Cors\\": "src/"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "MIT"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Fruitcake",
  1747. "homepage": "https://fruitcake.nl"
  1748. },
  1749. {
  1750. "name": "Barry vd. Heuvel",
  1751. "email": "barryvdh@gmail.com"
  1752. }
  1753. ],
  1754. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1755. "keywords": [
  1756. "api",
  1757. "cors",
  1758. "crossdomain",
  1759. "laravel"
  1760. ],
  1761. "funding": [
  1762. {
  1763. "url": "https://github.com/barryvdh",
  1764. "type": "github"
  1765. }
  1766. ],
  1767. "time": "2020-10-22T13:57:20+00:00"
  1768. },
  1769. {
  1770. "name": "guzzlehttp/guzzle",
  1771. "version": "6.5.5",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/guzzle/guzzle.git",
  1775. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1780. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1781. "shasum": "",
  1782. "mirrors": [
  1783. {
  1784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1785. "preferred": true
  1786. }
  1787. ]
  1788. },
  1789. "require": {
  1790. "ext-json": "*",
  1791. "guzzlehttp/promises": "^1.0",
  1792. "guzzlehttp/psr7": "^1.6.1",
  1793. "php": ">=5.5",
  1794. "symfony/polyfill-intl-idn": "^1.17.0"
  1795. },
  1796. "require-dev": {
  1797. "ext-curl": "*",
  1798. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1799. "psr/log": "^1.1"
  1800. },
  1801. "suggest": {
  1802. "psr/log": "Required for using the Log middleware"
  1803. },
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-master": "6.5-dev"
  1808. }
  1809. },
  1810. "autoload": {
  1811. "psr-4": {
  1812. "GuzzleHttp\\": "src/"
  1813. },
  1814. "files": [
  1815. "src/functions_include.php"
  1816. ]
  1817. },
  1818. "notification-url": "https://packagist.org/downloads/",
  1819. "license": [
  1820. "MIT"
  1821. ],
  1822. "authors": [
  1823. {
  1824. "name": "Michael Dowling",
  1825. "email": "mtdowling@gmail.com",
  1826. "homepage": "https://github.com/mtdowling"
  1827. }
  1828. ],
  1829. "description": "Guzzle is a PHP HTTP client library",
  1830. "homepage": "http://guzzlephp.org/",
  1831. "keywords": [
  1832. "client",
  1833. "curl",
  1834. "framework",
  1835. "http",
  1836. "http client",
  1837. "rest",
  1838. "web service"
  1839. ],
  1840. "time": "2020-06-16T21:01:06+00:00"
  1841. },
  1842. {
  1843. "name": "guzzlehttp/promises",
  1844. "version": "1.4.1",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/guzzle/promises.git",
  1848. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1853. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1854. "shasum": "",
  1855. "mirrors": [
  1856. {
  1857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1858. "preferred": true
  1859. }
  1860. ]
  1861. },
  1862. "require": {
  1863. "php": ">=5.5"
  1864. },
  1865. "require-dev": {
  1866. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "1.4-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "psr-4": {
  1876. "GuzzleHttp\\Promise\\": "src/"
  1877. },
  1878. "files": [
  1879. "src/functions_include.php"
  1880. ]
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "authors": [
  1887. {
  1888. "name": "Michael Dowling",
  1889. "email": "mtdowling@gmail.com",
  1890. "homepage": "https://github.com/mtdowling"
  1891. }
  1892. ],
  1893. "description": "Guzzle promises library",
  1894. "keywords": [
  1895. "promise"
  1896. ],
  1897. "time": "2021-03-07T09:25:29+00:00"
  1898. },
  1899. {
  1900. "name": "guzzlehttp/psr7",
  1901. "version": "1.7.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://github.com/guzzle/psr7.git",
  1905. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1910. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1911. "shasum": "",
  1912. "mirrors": [
  1913. {
  1914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1915. "preferred": true
  1916. }
  1917. ]
  1918. },
  1919. "require": {
  1920. "php": ">=5.4.0",
  1921. "psr/http-message": "~1.0",
  1922. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1923. },
  1924. "provide": {
  1925. "psr/http-message-implementation": "1.0"
  1926. },
  1927. "require-dev": {
  1928. "ext-zlib": "*",
  1929. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1930. },
  1931. "suggest": {
  1932. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-master": "1.7-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "GuzzleHttp\\Psr7\\": "src/"
  1943. },
  1944. "files": [
  1945. "src/functions_include.php"
  1946. ]
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Michael Dowling",
  1955. "email": "mtdowling@gmail.com",
  1956. "homepage": "https://github.com/mtdowling"
  1957. },
  1958. {
  1959. "name": "Tobias Schultze",
  1960. "homepage": "https://github.com/Tobion"
  1961. }
  1962. ],
  1963. "description": "PSR-7 message implementation that also provides common utility methods",
  1964. "keywords": [
  1965. "http",
  1966. "message",
  1967. "psr-7",
  1968. "request",
  1969. "response",
  1970. "stream",
  1971. "uri",
  1972. "url"
  1973. ],
  1974. "time": "2020-09-30T07:37:11+00:00"
  1975. },
  1976. {
  1977. "name": "illuminate/auth",
  1978. "version": "v6.20.17",
  1979. "source": {
  1980. "type": "git",
  1981. "url": "https://github.com/illuminate/auth.git",
  1982. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16"
  1983. },
  1984. "dist": {
  1985. "type": "zip",
  1986. "url": "https://api.github.com/repos/illuminate/auth/zipball/7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1987. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1988. "shasum": "",
  1989. "mirrors": [
  1990. {
  1991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1992. "preferred": true
  1993. }
  1994. ]
  1995. },
  1996. "require": {
  1997. "illuminate/contracts": "^6.0",
  1998. "illuminate/http": "^6.0",
  1999. "illuminate/queue": "^6.0",
  2000. "illuminate/support": "^6.0",
  2001. "php": "^7.2.5|^8.0"
  2002. },
  2003. "suggest": {
  2004. "illuminate/console": "Required to use the auth:clear-resets command (^6.0).",
  2005. "illuminate/queue": "Required to fire login / logout events (^6.0).",
  2006. "illuminate/session": "Required to use the session based guard (^6.0)."
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "6.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Illuminate\\Auth\\": ""
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Taylor Otwell",
  2026. "email": "taylor@laravel.com"
  2027. }
  2028. ],
  2029. "description": "The Illuminate Auth package.",
  2030. "homepage": "https://laravel.com",
  2031. "time": "2020-10-27T15:05:51+00:00"
  2032. },
  2033. {
  2034. "name": "illuminate/broadcasting",
  2035. "version": "v6.20.17",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/illuminate/broadcasting.git",
  2039. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2044. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0",
  2045. "shasum": "",
  2046. "mirrors": [
  2047. {
  2048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2049. "preferred": true
  2050. }
  2051. ]
  2052. },
  2053. "require": {
  2054. "ext-json": "*",
  2055. "illuminate/bus": "^6.0",
  2056. "illuminate/contracts": "^6.0",
  2057. "illuminate/queue": "^6.0",
  2058. "illuminate/support": "^6.0",
  2059. "php": "^7.2.5|^8.0",
  2060. "psr/log": "^1.0"
  2061. },
  2062. "suggest": {
  2063. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0)."
  2064. },
  2065. "type": "library",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "6.x-dev"
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-4": {
  2073. "Illuminate\\Broadcasting\\": ""
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Taylor Otwell",
  2083. "email": "taylor@laravel.com"
  2084. }
  2085. ],
  2086. "description": "The Illuminate Broadcasting package.",
  2087. "homepage": "https://laravel.com",
  2088. "time": "2020-11-19T14:10:44+00:00"
  2089. },
  2090. {
  2091. "name": "illuminate/bus",
  2092. "version": "v6.20.17",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/illuminate/bus.git",
  2096. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/illuminate/bus/zipball/107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2101. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  2102. "shasum": "",
  2103. "mirrors": [
  2104. {
  2105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2106. "preferred": true
  2107. }
  2108. ]
  2109. },
  2110. "require": {
  2111. "illuminate/contracts": "^6.0",
  2112. "illuminate/pipeline": "^6.0",
  2113. "illuminate/support": "^6.0",
  2114. "php": "^7.2.5|^8.0"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "6.x-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "Illuminate\\Bus\\": ""
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Taylor Otwell",
  2134. "email": "taylor@laravel.com"
  2135. }
  2136. ],
  2137. "description": "The Illuminate Bus package.",
  2138. "homepage": "https://laravel.com",
  2139. "time": "2020-10-27T15:05:51+00:00"
  2140. },
  2141. {
  2142. "name": "illuminate/cache",
  2143. "version": "v6.20.17",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/illuminate/cache.git",
  2147. "reference": "19d55205ca38d54dc200285431b21eaa18de93f8"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/illuminate/cache/zipball/19d55205ca38d54dc200285431b21eaa18de93f8",
  2152. "reference": "19d55205ca38d54dc200285431b21eaa18de93f8",
  2153. "shasum": "",
  2154. "mirrors": [
  2155. {
  2156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2157. "preferred": true
  2158. }
  2159. ]
  2160. },
  2161. "require": {
  2162. "illuminate/contracts": "^6.0",
  2163. "illuminate/support": "^6.0",
  2164. "php": "^7.2.5|^8.0"
  2165. },
  2166. "suggest": {
  2167. "ext-memcached": "Required to use the memcache cache driver.",
  2168. "illuminate/database": "Required to use the database cache driver (^6.0).",
  2169. "illuminate/filesystem": "Required to use the file cache driver (^6.0).",
  2170. "illuminate/redis": "Required to use the redis cache driver (^6.0).",
  2171. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4)."
  2172. },
  2173. "type": "library",
  2174. "extra": {
  2175. "branch-alias": {
  2176. "dev-master": "6.x-dev"
  2177. }
  2178. },
  2179. "autoload": {
  2180. "psr-4": {
  2181. "Illuminate\\Cache\\": ""
  2182. }
  2183. },
  2184. "notification-url": "https://packagist.org/downloads/",
  2185. "license": [
  2186. "MIT"
  2187. ],
  2188. "authors": [
  2189. {
  2190. "name": "Taylor Otwell",
  2191. "email": "taylor@laravel.com"
  2192. }
  2193. ],
  2194. "description": "The Illuminate Cache package.",
  2195. "homepage": "https://laravel.com",
  2196. "time": "2020-10-27T15:05:51+00:00"
  2197. },
  2198. {
  2199. "name": "illuminate/config",
  2200. "version": "v6.20.17",
  2201. "source": {
  2202. "type": "git",
  2203. "url": "https://github.com/illuminate/config.git",
  2204. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892"
  2205. },
  2206. "dist": {
  2207. "type": "zip",
  2208. "url": "https://api.github.com/repos/illuminate/config/zipball/e52084805fcfc0d36f891121dd14c64ce388a892",
  2209. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892",
  2210. "shasum": "",
  2211. "mirrors": [
  2212. {
  2213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2214. "preferred": true
  2215. }
  2216. ]
  2217. },
  2218. "require": {
  2219. "illuminate/contracts": "^6.0",
  2220. "illuminate/support": "^6.0",
  2221. "php": "^7.2.5|^8.0"
  2222. },
  2223. "type": "library",
  2224. "extra": {
  2225. "branch-alias": {
  2226. "dev-master": "6.x-dev"
  2227. }
  2228. },
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Illuminate\\Config\\": ""
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Taylor Otwell",
  2241. "email": "taylor@laravel.com"
  2242. }
  2243. ],
  2244. "description": "The Illuminate Config package.",
  2245. "homepage": "https://laravel.com",
  2246. "time": "2020-10-27T15:05:51+00:00"
  2247. },
  2248. {
  2249. "name": "illuminate/console",
  2250. "version": "v6.20.17",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/illuminate/console.git",
  2254. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/illuminate/console/zipball/e500b84f88c313432638d84911aa4ddfaa31c663",
  2259. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663",
  2260. "shasum": "",
  2261. "mirrors": [
  2262. {
  2263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2264. "preferred": true
  2265. }
  2266. ]
  2267. },
  2268. "require": {
  2269. "illuminate/contracts": "^6.0",
  2270. "illuminate/support": "^6.0",
  2271. "php": "^7.2.5|^8.0",
  2272. "symfony/console": "^4.3.4",
  2273. "symfony/process": "^4.3.4"
  2274. },
  2275. "suggest": {
  2276. "dragonmantank/cron-expression": "Required to use scheduler (^2.3.1).",
  2277. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.3.1|^7.0.1).",
  2278. "illuminate/bus": "Required to use the scheduled job dispatcher (^6.0)",
  2279. "illuminate/container": "Required to use the scheduler (^6.0)",
  2280. "illuminate/filesystem": "Required to use the generator command (^6.0)",
  2281. "illuminate/queue": "Required to use closures for scheduled jobs (^6.0)"
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "6.x-dev"
  2287. }
  2288. },
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Illuminate\\Console\\": ""
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Taylor Otwell",
  2301. "email": "taylor@laravel.com"
  2302. }
  2303. ],
  2304. "description": "The Illuminate Console package.",
  2305. "homepage": "https://laravel.com",
  2306. "time": "2020-10-27T19:50:31+00:00"
  2307. },
  2308. {
  2309. "name": "illuminate/container",
  2310. "version": "v6.20.17",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/illuminate/container.git",
  2314. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/illuminate/container/zipball/aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2319. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2320. "shasum": "",
  2321. "mirrors": [
  2322. {
  2323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2324. "preferred": true
  2325. }
  2326. ]
  2327. },
  2328. "require": {
  2329. "illuminate/contracts": "^6.0",
  2330. "php": "^7.2.5|^8.0",
  2331. "psr/container": "^1.0"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "6.x-dev"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Illuminate\\Container\\": ""
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Taylor Otwell",
  2351. "email": "taylor@laravel.com"
  2352. }
  2353. ],
  2354. "description": "The Illuminate Container package.",
  2355. "homepage": "https://laravel.com",
  2356. "time": "2020-10-27T16:13:38+00:00"
  2357. },
  2358. {
  2359. "name": "illuminate/contracts",
  2360. "version": "v6.20.17",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/illuminate/contracts.git",
  2364. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/illuminate/contracts/zipball/89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2369. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2370. "shasum": "",
  2371. "mirrors": [
  2372. {
  2373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2374. "preferred": true
  2375. }
  2376. ]
  2377. },
  2378. "require": {
  2379. "php": "^7.2.5|^8.0",
  2380. "psr/container": "^1.0",
  2381. "psr/simple-cache": "^1.0"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "6.x-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "psr-4": {
  2391. "Illuminate\\Contracts\\": ""
  2392. }
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Taylor Otwell",
  2401. "email": "taylor@laravel.com"
  2402. }
  2403. ],
  2404. "description": "The Illuminate Contracts package.",
  2405. "homepage": "https://laravel.com",
  2406. "time": "2020-12-18T14:12:37+00:00"
  2407. },
  2408. {
  2409. "name": "illuminate/database",
  2410. "version": "v6.20.17",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/illuminate/database.git",
  2414. "reference": "99890e3bc59b80f360e52f8838d4745ea5d9b7b8"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/illuminate/database/zipball/99890e3bc59b80f360e52f8838d4745ea5d9b7b8",
  2419. "reference": "99890e3bc59b80f360e52f8838d4745ea5d9b7b8",
  2420. "shasum": "",
  2421. "mirrors": [
  2422. {
  2423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2424. "preferred": true
  2425. }
  2426. ]
  2427. },
  2428. "require": {
  2429. "ext-json": "*",
  2430. "illuminate/container": "^6.0",
  2431. "illuminate/contracts": "^6.0",
  2432. "illuminate/support": "^6.0",
  2433. "php": "^7.2.5|^8.0"
  2434. },
  2435. "suggest": {
  2436. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2437. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2438. "illuminate/console": "Required to use the database commands (^6.0).",
  2439. "illuminate/events": "Required to use the observers with Eloquent (^6.0).",
  2440. "illuminate/filesystem": "Required to use the migrations (^6.0).",
  2441. "illuminate/pagination": "Required to paginate the result set (^6.0).",
  2442. "symfony/finder": "Required to use Eloquent model factories (^4.3.4)."
  2443. },
  2444. "type": "library",
  2445. "extra": {
  2446. "branch-alias": {
  2447. "dev-master": "6.x-dev"
  2448. }
  2449. },
  2450. "autoload": {
  2451. "psr-4": {
  2452. "Illuminate\\Database\\": ""
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "MIT"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "Taylor Otwell",
  2462. "email": "taylor@laravel.com"
  2463. }
  2464. ],
  2465. "description": "The Illuminate Database package.",
  2466. "homepage": "https://laravel.com",
  2467. "keywords": [
  2468. "database",
  2469. "laravel",
  2470. "orm",
  2471. "sql"
  2472. ],
  2473. "time": "2021-02-24T13:50:12+00:00"
  2474. },
  2475. {
  2476. "name": "illuminate/encryption",
  2477. "version": "v6.20.17",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/illuminate/encryption.git",
  2481. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/illuminate/encryption/zipball/b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2486. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2487. "shasum": "",
  2488. "mirrors": [
  2489. {
  2490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2491. "preferred": true
  2492. }
  2493. ]
  2494. },
  2495. "require": {
  2496. "ext-json": "*",
  2497. "ext-mbstring": "*",
  2498. "ext-openssl": "*",
  2499. "illuminate/contracts": "^6.0",
  2500. "illuminate/support": "^6.0",
  2501. "php": "^7.2.5|^8.0"
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "6.x-dev"
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Illuminate\\Encryption\\": ""
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Taylor Otwell",
  2521. "email": "taylor@laravel.com"
  2522. }
  2523. ],
  2524. "description": "The Illuminate Encryption package.",
  2525. "homepage": "https://laravel.com",
  2526. "time": "2020-10-27T15:05:51+00:00"
  2527. },
  2528. {
  2529. "name": "illuminate/events",
  2530. "version": "v6.20.17",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/illuminate/events.git",
  2534. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/illuminate/events/zipball/668581e3c31f9d499dc6919fe873003969a88e6c",
  2539. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c",
  2540. "shasum": "",
  2541. "mirrors": [
  2542. {
  2543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2544. "preferred": true
  2545. }
  2546. ]
  2547. },
  2548. "require": {
  2549. "illuminate/container": "^6.0",
  2550. "illuminate/contracts": "^6.0",
  2551. "illuminate/support": "^6.0",
  2552. "php": "^7.2.5|^8.0"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "6.x-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Illuminate\\Events\\": ""
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "Taylor Otwell",
  2572. "email": "taylor@laravel.com"
  2573. }
  2574. ],
  2575. "description": "The Illuminate Events package.",
  2576. "homepage": "https://laravel.com",
  2577. "time": "2020-10-27T15:05:51+00:00"
  2578. },
  2579. {
  2580. "name": "illuminate/filesystem",
  2581. "version": "v6.20.17",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/illuminate/filesystem.git",
  2585. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/5355953da41db06aac064a3d08dfa1f9bafffd24",
  2590. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24",
  2591. "shasum": "",
  2592. "mirrors": [
  2593. {
  2594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2595. "preferred": true
  2596. }
  2597. ]
  2598. },
  2599. "require": {
  2600. "illuminate/contracts": "^6.0",
  2601. "illuminate/support": "^6.0",
  2602. "php": "^7.2.5|^8.0",
  2603. "symfony/finder": "^4.3.4"
  2604. },
  2605. "suggest": {
  2606. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2607. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  2608. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2609. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2610. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2611. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)."
  2612. },
  2613. "type": "library",
  2614. "extra": {
  2615. "branch-alias": {
  2616. "dev-master": "6.x-dev"
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Illuminate\\Filesystem\\": ""
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Taylor Otwell",
  2631. "email": "taylor@laravel.com"
  2632. }
  2633. ],
  2634. "description": "The Illuminate Filesystem package.",
  2635. "homepage": "https://laravel.com",
  2636. "time": "2020-10-27T15:05:51+00:00"
  2637. },
  2638. {
  2639. "name": "illuminate/hashing",
  2640. "version": "v6.20.17",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/illuminate/hashing.git",
  2644. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/illuminate/hashing/zipball/d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2649. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2650. "shasum": "",
  2651. "mirrors": [
  2652. {
  2653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2654. "preferred": true
  2655. }
  2656. ]
  2657. },
  2658. "require": {
  2659. "illuminate/contracts": "^6.0",
  2660. "illuminate/support": "^6.0",
  2661. "php": "^7.2.5|^8.0"
  2662. },
  2663. "type": "library",
  2664. "extra": {
  2665. "branch-alias": {
  2666. "dev-master": "6.x-dev"
  2667. }
  2668. },
  2669. "autoload": {
  2670. "psr-4": {
  2671. "Illuminate\\Hashing\\": ""
  2672. }
  2673. },
  2674. "notification-url": "https://packagist.org/downloads/",
  2675. "license": [
  2676. "MIT"
  2677. ],
  2678. "authors": [
  2679. {
  2680. "name": "Taylor Otwell",
  2681. "email": "taylor@laravel.com"
  2682. }
  2683. ],
  2684. "description": "The Illuminate Hashing package.",
  2685. "homepage": "https://laravel.com",
  2686. "time": "2020-10-27T15:05:51+00:00"
  2687. },
  2688. {
  2689. "name": "illuminate/http",
  2690. "version": "v6.20.17",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/illuminate/http.git",
  2694. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/illuminate/http/zipball/c20a51c83af75a335b7e97beb168a860bfe2f929",
  2699. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929",
  2700. "shasum": "",
  2701. "mirrors": [
  2702. {
  2703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2704. "preferred": true
  2705. }
  2706. ]
  2707. },
  2708. "require": {
  2709. "ext-json": "*",
  2710. "illuminate/session": "^6.0",
  2711. "illuminate/support": "^6.0",
  2712. "php": "^7.2.5|^8.0",
  2713. "symfony/http-foundation": "^4.3.4",
  2714. "symfony/http-kernel": "^4.3.4"
  2715. },
  2716. "suggest": {
  2717. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image()."
  2718. },
  2719. "type": "library",
  2720. "extra": {
  2721. "branch-alias": {
  2722. "dev-master": "6.x-dev"
  2723. }
  2724. },
  2725. "autoload": {
  2726. "psr-4": {
  2727. "Illuminate\\Http\\": ""
  2728. }
  2729. },
  2730. "notification-url": "https://packagist.org/downloads/",
  2731. "license": [
  2732. "MIT"
  2733. ],
  2734. "authors": [
  2735. {
  2736. "name": "Taylor Otwell",
  2737. "email": "taylor@laravel.com"
  2738. }
  2739. ],
  2740. "description": "The Illuminate Http package.",
  2741. "homepage": "https://laravel.com",
  2742. "time": "2021-01-20T13:50:36+00:00"
  2743. },
  2744. {
  2745. "name": "illuminate/log",
  2746. "version": "v6.20.17",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://github.com/illuminate/log.git",
  2750. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077"
  2751. },
  2752. "dist": {
  2753. "type": "zip",
  2754. "url": "https://api.github.com/repos/illuminate/log/zipball/f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2755. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2756. "shasum": "",
  2757. "mirrors": [
  2758. {
  2759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2760. "preferred": true
  2761. }
  2762. ]
  2763. },
  2764. "require": {
  2765. "illuminate/contracts": "^6.0",
  2766. "illuminate/support": "^6.0",
  2767. "monolog/monolog": "^1.12|^2.0",
  2768. "php": "^7.2.5|^8.0"
  2769. },
  2770. "type": "library",
  2771. "extra": {
  2772. "branch-alias": {
  2773. "dev-master": "6.x-dev"
  2774. }
  2775. },
  2776. "autoload": {
  2777. "psr-4": {
  2778. "Illuminate\\Log\\": ""
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "Taylor Otwell",
  2788. "email": "taylor@laravel.com"
  2789. }
  2790. ],
  2791. "description": "The Illuminate Log package.",
  2792. "homepage": "https://laravel.com",
  2793. "time": "2020-10-27T15:05:51+00:00"
  2794. },
  2795. {
  2796. "name": "illuminate/pagination",
  2797. "version": "v6.20.17",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/illuminate/pagination.git",
  2801. "reference": "c98b4979213660a29a1979813824849f30fd9f27"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/illuminate/pagination/zipball/c98b4979213660a29a1979813824849f30fd9f27",
  2806. "reference": "c98b4979213660a29a1979813824849f30fd9f27",
  2807. "shasum": "",
  2808. "mirrors": [
  2809. {
  2810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2811. "preferred": true
  2812. }
  2813. ]
  2814. },
  2815. "require": {
  2816. "ext-json": "*",
  2817. "illuminate/contracts": "^6.0",
  2818. "illuminate/support": "^6.0",
  2819. "php": "^7.2.5|^8.0"
  2820. },
  2821. "type": "library",
  2822. "extra": {
  2823. "branch-alias": {
  2824. "dev-master": "6.x-dev"
  2825. }
  2826. },
  2827. "autoload": {
  2828. "psr-4": {
  2829. "Illuminate\\Pagination\\": ""
  2830. }
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "Taylor Otwell",
  2839. "email": "taylor@laravel.com"
  2840. }
  2841. ],
  2842. "description": "The Illuminate Pagination package.",
  2843. "homepage": "https://laravel.com",
  2844. "time": "2021-01-26T17:15:42+00:00"
  2845. },
  2846. {
  2847. "name": "illuminate/pipeline",
  2848. "version": "v6.20.17",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://github.com/illuminate/pipeline.git",
  2852. "reference": "01063d3605efd22453316d771802cf5075ed848e"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/01063d3605efd22453316d771802cf5075ed848e",
  2857. "reference": "01063d3605efd22453316d771802cf5075ed848e",
  2858. "shasum": "",
  2859. "mirrors": [
  2860. {
  2861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2862. "preferred": true
  2863. }
  2864. ]
  2865. },
  2866. "require": {
  2867. "illuminate/contracts": "^6.0",
  2868. "illuminate/support": "^6.0",
  2869. "php": "^7.2.5|^8.0",
  2870. "symfony/debug": "^4.3.4"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "6.x-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "psr-4": {
  2880. "Illuminate\\Pipeline\\": ""
  2881. }
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "Taylor Otwell",
  2890. "email": "taylor@laravel.com"
  2891. }
  2892. ],
  2893. "description": "The Illuminate Pipeline package.",
  2894. "homepage": "https://laravel.com",
  2895. "time": "2020-10-27T15:05:51+00:00"
  2896. },
  2897. {
  2898. "name": "illuminate/queue",
  2899. "version": "v6.20.17",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/illuminate/queue.git",
  2903. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/illuminate/queue/zipball/eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2908. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2909. "shasum": "",
  2910. "mirrors": [
  2911. {
  2912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2913. "preferred": true
  2914. }
  2915. ]
  2916. },
  2917. "require": {
  2918. "ext-json": "*",
  2919. "illuminate/console": "^6.0",
  2920. "illuminate/container": "^6.0",
  2921. "illuminate/contracts": "^6.0",
  2922. "illuminate/database": "^6.0",
  2923. "illuminate/filesystem": "^6.0",
  2924. "illuminate/pipeline": "^6.0",
  2925. "illuminate/support": "^6.0",
  2926. "opis/closure": "^3.6",
  2927. "php": "^7.2.5|^8.0",
  2928. "symfony/debug": "^4.3.4",
  2929. "symfony/process": "^4.3.4"
  2930. },
  2931. "suggest": {
  2932. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.155).",
  2933. "ext-pcntl": "Required to use all features of the queue worker.",
  2934. "ext-posix": "Required to use all features of the queue worker.",
  2935. "illuminate/redis": "Required to use the Redis queue driver (^6.0).",
  2936. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  2937. },
  2938. "type": "library",
  2939. "extra": {
  2940. "branch-alias": {
  2941. "dev-master": "6.x-dev"
  2942. }
  2943. },
  2944. "autoload": {
  2945. "psr-4": {
  2946. "Illuminate\\Queue\\": ""
  2947. }
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Taylor Otwell",
  2956. "email": "taylor@laravel.com"
  2957. }
  2958. ],
  2959. "description": "The Illuminate Queue package.",
  2960. "homepage": "https://laravel.com",
  2961. "time": "2020-11-18T14:36:08+00:00"
  2962. },
  2963. {
  2964. "name": "illuminate/routing",
  2965. "version": "v6.20.17",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/illuminate/routing.git",
  2969. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/illuminate/routing/zipball/a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2974. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2975. "shasum": "",
  2976. "mirrors": [
  2977. {
  2978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2979. "preferred": true
  2980. }
  2981. ]
  2982. },
  2983. "require": {
  2984. "ext-json": "*",
  2985. "illuminate/container": "^6.0",
  2986. "illuminate/contracts": "^6.0",
  2987. "illuminate/http": "^6.0",
  2988. "illuminate/pipeline": "^6.0",
  2989. "illuminate/session": "^6.0",
  2990. "illuminate/support": "^6.0",
  2991. "php": "^7.2.5|^8.0",
  2992. "symfony/debug": "^4.3.4",
  2993. "symfony/http-foundation": "^4.3.4",
  2994. "symfony/http-kernel": "^4.3.4",
  2995. "symfony/routing": "^4.3.4"
  2996. },
  2997. "suggest": {
  2998. "illuminate/console": "Required to use the make commands (^6.0).",
  2999. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3000. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3001. },
  3002. "type": "library",
  3003. "extra": {
  3004. "branch-alias": {
  3005. "dev-master": "6.x-dev"
  3006. }
  3007. },
  3008. "autoload": {
  3009. "psr-4": {
  3010. "Illuminate\\Routing\\": ""
  3011. }
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "Taylor Otwell",
  3020. "email": "taylor@laravel.com"
  3021. }
  3022. ],
  3023. "description": "The Illuminate Routing package.",
  3024. "homepage": "https://laravel.com",
  3025. "time": "2020-10-27T19:50:31+00:00"
  3026. },
  3027. {
  3028. "name": "illuminate/session",
  3029. "version": "v6.20.17",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://github.com/illuminate/session.git",
  3033. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://api.github.com/repos/illuminate/session/zipball/3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3038. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  3039. "shasum": "",
  3040. "mirrors": [
  3041. {
  3042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3043. "preferred": true
  3044. }
  3045. ]
  3046. },
  3047. "require": {
  3048. "ext-json": "*",
  3049. "illuminate/contracts": "^6.0",
  3050. "illuminate/filesystem": "^6.0",
  3051. "illuminate/support": "^6.0",
  3052. "php": "^7.2.5|^8.0",
  3053. "symfony/finder": "^4.3.4",
  3054. "symfony/http-foundation": "^4.3.4"
  3055. },
  3056. "suggest": {
  3057. "illuminate/console": "Required to use the session:table command (^6.0)."
  3058. },
  3059. "type": "library",
  3060. "extra": {
  3061. "branch-alias": {
  3062. "dev-master": "6.x-dev"
  3063. }
  3064. },
  3065. "autoload": {
  3066. "psr-4": {
  3067. "Illuminate\\Session\\": ""
  3068. }
  3069. },
  3070. "notification-url": "https://packagist.org/downloads/",
  3071. "license": [
  3072. "MIT"
  3073. ],
  3074. "authors": [
  3075. {
  3076. "name": "Taylor Otwell",
  3077. "email": "taylor@laravel.com"
  3078. }
  3079. ],
  3080. "description": "The Illuminate Session package.",
  3081. "homepage": "https://laravel.com",
  3082. "time": "2020-10-27T15:05:51+00:00"
  3083. },
  3084. {
  3085. "name": "illuminate/support",
  3086. "version": "v6.20.17",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/illuminate/support.git",
  3090. "reference": "20e0535a59b2ba902de334138a632fe2f7455e01"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/illuminate/support/zipball/20e0535a59b2ba902de334138a632fe2f7455e01",
  3095. "reference": "20e0535a59b2ba902de334138a632fe2f7455e01",
  3096. "shasum": "",
  3097. "mirrors": [
  3098. {
  3099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3100. "preferred": true
  3101. }
  3102. ]
  3103. },
  3104. "require": {
  3105. "doctrine/inflector": "^1.4|^2.0",
  3106. "ext-json": "*",
  3107. "ext-mbstring": "*",
  3108. "illuminate/contracts": "^6.0",
  3109. "nesbot/carbon": "^2.31",
  3110. "php": "^7.2.5|^8.0"
  3111. },
  3112. "conflict": {
  3113. "tightenco/collect": "<5.5.33"
  3114. },
  3115. "suggest": {
  3116. "illuminate/filesystem": "Required to use the composer class (^6.0).",
  3117. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  3118. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  3119. "symfony/process": "Required to use the composer class (^4.3.4).",
  3120. "symfony/var-dumper": "Required to use the dd function (^4.3.4).",
  3121. "vlucas/phpdotenv": "Required to use the Env class and env helper (^3.3)."
  3122. },
  3123. "type": "library",
  3124. "extra": {
  3125. "branch-alias": {
  3126. "dev-master": "6.x-dev"
  3127. }
  3128. },
  3129. "autoload": {
  3130. "psr-4": {
  3131. "Illuminate\\Support\\": ""
  3132. },
  3133. "files": [
  3134. "helpers.php"
  3135. ]
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Taylor Otwell",
  3144. "email": "taylor@laravel.com"
  3145. }
  3146. ],
  3147. "description": "The Illuminate Support package.",
  3148. "homepage": "https://laravel.com",
  3149. "time": "2021-02-08T19:49:57+00:00"
  3150. },
  3151. {
  3152. "name": "illuminate/translation",
  3153. "version": "v6.20.17",
  3154. "source": {
  3155. "type": "git",
  3156. "url": "https://github.com/illuminate/translation.git",
  3157. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3"
  3158. },
  3159. "dist": {
  3160. "type": "zip",
  3161. "url": "https://api.github.com/repos/illuminate/translation/zipball/717fad58c8451b86c7b5644bc652430a3369d7b3",
  3162. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3",
  3163. "shasum": "",
  3164. "mirrors": [
  3165. {
  3166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3167. "preferred": true
  3168. }
  3169. ]
  3170. },
  3171. "require": {
  3172. "ext-json": "*",
  3173. "illuminate/contracts": "^6.0",
  3174. "illuminate/filesystem": "^6.0",
  3175. "illuminate/support": "^6.0",
  3176. "php": "^7.2.5|^8.0"
  3177. },
  3178. "type": "library",
  3179. "extra": {
  3180. "branch-alias": {
  3181. "dev-master": "6.x-dev"
  3182. }
  3183. },
  3184. "autoload": {
  3185. "psr-4": {
  3186. "Illuminate\\Translation\\": ""
  3187. }
  3188. },
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "MIT"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "Taylor Otwell",
  3196. "email": "taylor@laravel.com"
  3197. }
  3198. ],
  3199. "description": "The Illuminate Translation package.",
  3200. "homepage": "https://laravel.com",
  3201. "time": "2020-10-27T15:05:51+00:00"
  3202. },
  3203. {
  3204. "name": "illuminate/validation",
  3205. "version": "v6.20.17",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://github.com/illuminate/validation.git",
  3209. "reference": "292b63fb50a999cf8cab8deffb60c696b0be8ce1"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://api.github.com/repos/illuminate/validation/zipball/292b63fb50a999cf8cab8deffb60c696b0be8ce1",
  3214. "reference": "292b63fb50a999cf8cab8deffb60c696b0be8ce1",
  3215. "shasum": "",
  3216. "mirrors": [
  3217. {
  3218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3219. "preferred": true
  3220. }
  3221. ]
  3222. },
  3223. "require": {
  3224. "egulias/email-validator": "^2.1.10",
  3225. "ext-json": "*",
  3226. "illuminate/container": "^6.0",
  3227. "illuminate/contracts": "^6.0",
  3228. "illuminate/support": "^6.0",
  3229. "illuminate/translation": "^6.0",
  3230. "php": "^7.2.5|^8.0",
  3231. "symfony/http-foundation": "^4.3.4"
  3232. },
  3233. "suggest": {
  3234. "illuminate/database": "Required to use the database presence verifier (^6.0)."
  3235. },
  3236. "type": "library",
  3237. "extra": {
  3238. "branch-alias": {
  3239. "dev-master": "6.x-dev"
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Illuminate\\Validation\\": ""
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Taylor Otwell",
  3254. "email": "taylor@laravel.com"
  3255. }
  3256. ],
  3257. "description": "The Illuminate Validation package.",
  3258. "homepage": "https://laravel.com",
  3259. "time": "2021-01-06T13:35:15+00:00"
  3260. },
  3261. {
  3262. "name": "illuminate/view",
  3263. "version": "v6.20.17",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/illuminate/view.git",
  3267. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/illuminate/view/zipball/4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3272. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3273. "shasum": "",
  3274. "mirrors": [
  3275. {
  3276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3277. "preferred": true
  3278. }
  3279. ]
  3280. },
  3281. "require": {
  3282. "ext-json": "*",
  3283. "illuminate/container": "^6.0",
  3284. "illuminate/contracts": "^6.0",
  3285. "illuminate/events": "^6.0",
  3286. "illuminate/filesystem": "^6.0",
  3287. "illuminate/support": "^6.0",
  3288. "php": "^7.2.5|^8.0",
  3289. "symfony/debug": "^4.3.4"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "6.x-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Illuminate\\View\\": ""
  3300. }
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "MIT"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "Taylor Otwell",
  3309. "email": "taylor@laravel.com"
  3310. }
  3311. ],
  3312. "description": "The Illuminate View package.",
  3313. "homepage": "https://laravel.com",
  3314. "time": "2021-02-01T14:20:21+00:00"
  3315. },
  3316. {
  3317. "name": "intervention/image",
  3318. "version": "2.5.1",
  3319. "source": {
  3320. "type": "git",
  3321. "url": "https://github.com/Intervention/image.git",
  3322. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  3323. },
  3324. "dist": {
  3325. "type": "zip",
  3326. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3327. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3328. "shasum": "",
  3329. "mirrors": [
  3330. {
  3331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3332. "preferred": true
  3333. }
  3334. ]
  3335. },
  3336. "require": {
  3337. "ext-fileinfo": "*",
  3338. "guzzlehttp/psr7": "~1.1",
  3339. "php": ">=5.4.0"
  3340. },
  3341. "require-dev": {
  3342. "mockery/mockery": "~0.9.2",
  3343. "phpunit/phpunit": "^4.8 || ^5.7"
  3344. },
  3345. "suggest": {
  3346. "ext-gd": "to use GD library based image processing.",
  3347. "ext-imagick": "to use Imagick based image processing.",
  3348. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "branch-alias": {
  3353. "dev-master": "2.4-dev"
  3354. },
  3355. "laravel": {
  3356. "providers": [
  3357. "Intervention\\Image\\ImageServiceProvider"
  3358. ],
  3359. "aliases": {
  3360. "Image": "Intervention\\Image\\Facades\\Image"
  3361. }
  3362. }
  3363. },
  3364. "autoload": {
  3365. "psr-4": {
  3366. "Intervention\\Image\\": "src/Intervention/Image"
  3367. }
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Oliver Vogel",
  3376. "email": "oliver@olivervogel.com",
  3377. "homepage": "http://olivervogel.com/"
  3378. }
  3379. ],
  3380. "description": "Image handling and manipulation library with support for Laravel integration",
  3381. "homepage": "http://image.intervention.io/",
  3382. "keywords": [
  3383. "gd",
  3384. "image",
  3385. "imagick",
  3386. "laravel",
  3387. "thumbnail",
  3388. "watermark"
  3389. ],
  3390. "time": "2019-11-02T09:15:47+00:00"
  3391. },
  3392. {
  3393. "name": "jaybizzle/crawler-detect",
  3394. "version": "v1.2.105",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3398. "reference": "719c1ed49224857800c3dc40838b6b761d046105"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/719c1ed49224857800c3dc40838b6b761d046105",
  3403. "reference": "719c1ed49224857800c3dc40838b6b761d046105",
  3404. "shasum": "",
  3405. "mirrors": [
  3406. {
  3407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3408. "preferred": true
  3409. }
  3410. ]
  3411. },
  3412. "require": {
  3413. "php": ">=5.3.0"
  3414. },
  3415. "require-dev": {
  3416. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3417. },
  3418. "type": "library",
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Jaybizzle\\CrawlerDetect\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Mark Beech",
  3431. "email": "m@rkbee.ch",
  3432. "role": "Developer"
  3433. }
  3434. ],
  3435. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3436. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3437. "keywords": [
  3438. "crawler",
  3439. "crawler detect",
  3440. "crawler detector",
  3441. "crawlerdetect",
  3442. "php crawler detect"
  3443. ],
  3444. "time": "2021-03-03T20:55:48+00:00"
  3445. },
  3446. {
  3447. "name": "jenssegers/agent",
  3448. "version": "v2.6.4",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/jenssegers/agent.git",
  3452. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  3457. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  3458. "shasum": "",
  3459. "mirrors": [
  3460. {
  3461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3462. "preferred": true
  3463. }
  3464. ]
  3465. },
  3466. "require": {
  3467. "jaybizzle/crawler-detect": "^1.2",
  3468. "mobiledetect/mobiledetectlib": "^2.7.6",
  3469. "php": ">=5.6"
  3470. },
  3471. "require-dev": {
  3472. "php-coveralls/php-coveralls": "^2.1",
  3473. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  3474. },
  3475. "suggest": {
  3476. "illuminate/support": "Required for laravel service providers"
  3477. },
  3478. "type": "library",
  3479. "extra": {
  3480. "branch-alias": {
  3481. "dev-master": "3.0-dev"
  3482. },
  3483. "laravel": {
  3484. "providers": [
  3485. "Jenssegers\\Agent\\AgentServiceProvider"
  3486. ],
  3487. "aliases": {
  3488. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  3489. }
  3490. }
  3491. },
  3492. "autoload": {
  3493. "psr-4": {
  3494. "Jenssegers\\Agent\\": "src/"
  3495. }
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Jens Segers",
  3504. "homepage": "https://jenssegers.com"
  3505. }
  3506. ],
  3507. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  3508. "homepage": "https://github.com/jenssegers/agent",
  3509. "keywords": [
  3510. "Agent",
  3511. "browser",
  3512. "desktop",
  3513. "laravel",
  3514. "mobile",
  3515. "platform",
  3516. "user agent",
  3517. "useragent"
  3518. ],
  3519. "funding": [
  3520. {
  3521. "url": "https://github.com/jenssegers",
  3522. "type": "github"
  3523. },
  3524. {
  3525. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  3526. "type": "tidelift"
  3527. }
  3528. ],
  3529. "time": "2020-06-13T08:05:20+00:00"
  3530. },
  3531. {
  3532. "name": "justinrainbow/json-schema",
  3533. "version": "5.2.10",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/justinrainbow/json-schema.git",
  3537. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3542. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3543. "shasum": "",
  3544. "mirrors": [
  3545. {
  3546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3547. "preferred": true
  3548. }
  3549. ]
  3550. },
  3551. "require": {
  3552. "php": ">=5.3.3"
  3553. },
  3554. "require-dev": {
  3555. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  3556. "json-schema/json-schema-test-suite": "1.2.0",
  3557. "phpunit/phpunit": "^4.8.35"
  3558. },
  3559. "bin": [
  3560. "bin/validate-json"
  3561. ],
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-master": "5.0.x-dev"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "psr-4": {
  3570. "JsonSchema\\": "src/JsonSchema/"
  3571. }
  3572. },
  3573. "notification-url": "https://packagist.org/downloads/",
  3574. "license": [
  3575. "MIT"
  3576. ],
  3577. "authors": [
  3578. {
  3579. "name": "Bruno Prieto Reis",
  3580. "email": "bruno.p.reis@gmail.com"
  3581. },
  3582. {
  3583. "name": "Justin Rainbow",
  3584. "email": "justin.rainbow@gmail.com"
  3585. },
  3586. {
  3587. "name": "Igor Wiedler",
  3588. "email": "igor@wiedler.ch"
  3589. },
  3590. {
  3591. "name": "Robert Schönthal",
  3592. "email": "seroscho@googlemail.com"
  3593. }
  3594. ],
  3595. "description": "A library to validate a json schema.",
  3596. "homepage": "https://github.com/justinrainbow/json-schema",
  3597. "keywords": [
  3598. "json",
  3599. "schema"
  3600. ],
  3601. "time": "2020-05-27T16:41:55+00:00"
  3602. },
  3603. {
  3604. "name": "khanamiryan/qrcode-detector-decoder",
  3605. "version": "1.0.4",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  3609. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/07fceefb79d895e858e52921afb9c1433d2f3d5e",
  3614. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e",
  3615. "shasum": "",
  3616. "mirrors": [
  3617. {
  3618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3619. "preferred": true
  3620. }
  3621. ]
  3622. },
  3623. "require": {
  3624. "php": ">=5.6"
  3625. },
  3626. "require-dev": {
  3627. "phpunit/phpunit": "^9.0"
  3628. },
  3629. "type": "library",
  3630. "autoload": {
  3631. "psr-4": {
  3632. "Zxing\\": "lib/"
  3633. },
  3634. "files": [
  3635. "lib/Common/customFunctions.php"
  3636. ]
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Ashot Khanamiryan",
  3645. "email": "a.khanamiryan@gmail.com",
  3646. "homepage": "https://github.com/khanamiryan",
  3647. "role": "Developer"
  3648. }
  3649. ],
  3650. "description": "QR code decoder / reader",
  3651. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  3652. "keywords": [
  3653. "barcode",
  3654. "qr",
  3655. "zxing"
  3656. ],
  3657. "time": "2020-11-29T18:50:26+00:00"
  3658. },
  3659. {
  3660. "name": "laravel/lumen-framework",
  3661. "version": "v6.3.5",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://github.com/laravel/lumen-framework.git",
  3665. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3670. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3671. "shasum": "",
  3672. "mirrors": [
  3673. {
  3674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3675. "preferred": true
  3676. }
  3677. ]
  3678. },
  3679. "require": {
  3680. "dragonmantank/cron-expression": "^2.0",
  3681. "illuminate/auth": "^6.0",
  3682. "illuminate/broadcasting": "^6.0",
  3683. "illuminate/bus": "^6.0",
  3684. "illuminate/cache": "^6.0",
  3685. "illuminate/config": "^6.0",
  3686. "illuminate/container": "^6.0",
  3687. "illuminate/contracts": "^6.0",
  3688. "illuminate/database": "^6.0",
  3689. "illuminate/encryption": "^6.0",
  3690. "illuminate/events": "^6.0",
  3691. "illuminate/filesystem": "^6.0",
  3692. "illuminate/hashing": "^6.0",
  3693. "illuminate/http": "^6.0",
  3694. "illuminate/log": "^6.0",
  3695. "illuminate/pagination": "^6.0",
  3696. "illuminate/pipeline": "^6.0",
  3697. "illuminate/queue": "^6.0",
  3698. "illuminate/support": "^6.0",
  3699. "illuminate/translation": "^6.0",
  3700. "illuminate/validation": "^6.0",
  3701. "illuminate/view": "^6.0",
  3702. "nikic/fast-route": "^1.3",
  3703. "php": "^7.2",
  3704. "symfony/http-foundation": "^4.3",
  3705. "symfony/http-kernel": "^4.3",
  3706. "symfony/var-dumper": "^4.3",
  3707. "vlucas/phpdotenv": "^3.3"
  3708. },
  3709. "require-dev": {
  3710. "mockery/mockery": "^1.0",
  3711. "phpunit/phpunit": "^7.5|^8.0"
  3712. },
  3713. "suggest": {
  3714. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3715. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3716. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "6.x-dev"
  3722. }
  3723. },
  3724. "autoload": {
  3725. "psr-4": {
  3726. "Laravel\\Lumen\\": "src/"
  3727. },
  3728. "files": [
  3729. "src/helpers.php"
  3730. ]
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "MIT"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Taylor Otwell",
  3739. "email": "taylorotwell@gmail.com"
  3740. }
  3741. ],
  3742. "description": "The Laravel Lumen Framework.",
  3743. "homepage": "https://lumen.laravel.com",
  3744. "keywords": [
  3745. "framework",
  3746. "laravel",
  3747. "lumen"
  3748. ],
  3749. "time": "2020-03-13T20:24:43+00:00"
  3750. },
  3751. {
  3752. "name": "lcobucci/jwt",
  3753. "version": "3.3.3",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/lcobucci/jwt.git",
  3757. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  3762. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  3763. "shasum": "",
  3764. "mirrors": [
  3765. {
  3766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3767. "preferred": true
  3768. }
  3769. ]
  3770. },
  3771. "require": {
  3772. "ext-mbstring": "*",
  3773. "ext-openssl": "*",
  3774. "php": "^5.6 || ^7.0"
  3775. },
  3776. "require-dev": {
  3777. "mikey179/vfsstream": "~1.5",
  3778. "phpmd/phpmd": "~2.2",
  3779. "phpunit/php-invoker": "~1.1",
  3780. "phpunit/phpunit": "^5.7 || ^7.3",
  3781. "squizlabs/php_codesniffer": "~2.3"
  3782. },
  3783. "type": "library",
  3784. "extra": {
  3785. "branch-alias": {
  3786. "dev-master": "3.1-dev"
  3787. }
  3788. },
  3789. "autoload": {
  3790. "psr-4": {
  3791. "Lcobucci\\JWT\\": "src"
  3792. }
  3793. },
  3794. "notification-url": "https://packagist.org/downloads/",
  3795. "license": [
  3796. "BSD-3-Clause"
  3797. ],
  3798. "authors": [
  3799. {
  3800. "name": "Luís Otávio Cobucci Oblonczyk",
  3801. "email": "lcobucci@gmail.com",
  3802. "role": "Developer"
  3803. }
  3804. ],
  3805. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3806. "keywords": [
  3807. "JWS",
  3808. "jwt"
  3809. ],
  3810. "funding": [
  3811. {
  3812. "url": "https://github.com/lcobucci",
  3813. "type": "github"
  3814. },
  3815. {
  3816. "url": "https://www.patreon.com/lcobucci",
  3817. "type": "patreon"
  3818. }
  3819. ],
  3820. "time": "2020-08-20T13:22:28+00:00"
  3821. },
  3822. {
  3823. "name": "league/flysystem",
  3824. "version": "1.1.3",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/thephpleague/flysystem.git",
  3828. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  3833. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  3834. "shasum": "",
  3835. "mirrors": [
  3836. {
  3837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3838. "preferred": true
  3839. }
  3840. ]
  3841. },
  3842. "require": {
  3843. "ext-fileinfo": "*",
  3844. "league/mime-type-detection": "^1.3",
  3845. "php": "^7.2.5 || ^8.0"
  3846. },
  3847. "conflict": {
  3848. "league/flysystem-sftp": "<1.0.6"
  3849. },
  3850. "require-dev": {
  3851. "phpspec/prophecy": "^1.11.1",
  3852. "phpunit/phpunit": "^8.5.8"
  3853. },
  3854. "suggest": {
  3855. "ext-fileinfo": "Required for MimeType",
  3856. "ext-ftp": "Allows you to use FTP server storage",
  3857. "ext-openssl": "Allows you to use FTPS server storage",
  3858. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3859. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3860. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3861. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3862. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3863. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3864. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3865. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3866. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3867. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3868. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3869. },
  3870. "type": "library",
  3871. "extra": {
  3872. "branch-alias": {
  3873. "dev-master": "1.1-dev"
  3874. }
  3875. },
  3876. "autoload": {
  3877. "psr-4": {
  3878. "League\\Flysystem\\": "src/"
  3879. }
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "authors": [
  3886. {
  3887. "name": "Frank de Jonge",
  3888. "email": "info@frenky.net"
  3889. }
  3890. ],
  3891. "description": "Filesystem abstraction: Many filesystems, one API.",
  3892. "keywords": [
  3893. "Cloud Files",
  3894. "WebDAV",
  3895. "abstraction",
  3896. "aws",
  3897. "cloud",
  3898. "copy.com",
  3899. "dropbox",
  3900. "file systems",
  3901. "files",
  3902. "filesystem",
  3903. "filesystems",
  3904. "ftp",
  3905. "rackspace",
  3906. "remote",
  3907. "s3",
  3908. "sftp",
  3909. "storage"
  3910. ],
  3911. "funding": [
  3912. {
  3913. "url": "https://offset.earth/frankdejonge",
  3914. "type": "other"
  3915. }
  3916. ],
  3917. "time": "2020-08-23T07:39:11+00:00"
  3918. },
  3919. {
  3920. "name": "league/fractal",
  3921. "version": "0.17.0",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/thephpleague/fractal.git",
  3925. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3930. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3931. "shasum": "",
  3932. "mirrors": [
  3933. {
  3934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3935. "preferred": true
  3936. }
  3937. ]
  3938. },
  3939. "require": {
  3940. "php": ">=5.4"
  3941. },
  3942. "require-dev": {
  3943. "doctrine/orm": "^2.5",
  3944. "illuminate/contracts": "~5.0",
  3945. "mockery/mockery": "~0.9",
  3946. "pagerfanta/pagerfanta": "~1.0.0",
  3947. "phpunit/phpunit": "~4.0",
  3948. "squizlabs/php_codesniffer": "~1.5",
  3949. "zendframework/zend-paginator": "~2.3"
  3950. },
  3951. "suggest": {
  3952. "illuminate/pagination": "The Illuminate Pagination component.",
  3953. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3954. "zendframework/zend-paginator": "Zend Framework Paginator"
  3955. },
  3956. "type": "library",
  3957. "extra": {
  3958. "branch-alias": {
  3959. "dev-master": "0.13-dev"
  3960. }
  3961. },
  3962. "autoload": {
  3963. "psr-4": {
  3964. "League\\Fractal\\": "src"
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Phil Sturgeon",
  3974. "email": "me@philsturgeon.uk",
  3975. "homepage": "http://philsturgeon.uk/",
  3976. "role": "Developer"
  3977. }
  3978. ],
  3979. "description": "Handle the output of complex data structures ready for API output.",
  3980. "homepage": "http://fractal.thephpleague.com/",
  3981. "keywords": [
  3982. "api",
  3983. "json",
  3984. "league",
  3985. "rest"
  3986. ],
  3987. "time": "2017-06-12T11:04:56+00:00"
  3988. },
  3989. {
  3990. "name": "league/mime-type-detection",
  3991. "version": "1.7.0",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3995. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  4000. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  4001. "shasum": "",
  4002. "mirrors": [
  4003. {
  4004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4005. "preferred": true
  4006. }
  4007. ]
  4008. },
  4009. "require": {
  4010. "ext-fileinfo": "*",
  4011. "php": "^7.2 || ^8.0"
  4012. },
  4013. "require-dev": {
  4014. "friendsofphp/php-cs-fixer": "^2.18",
  4015. "phpstan/phpstan": "^0.12.68",
  4016. "phpunit/phpunit": "^8.5.8 || ^9.3"
  4017. },
  4018. "type": "library",
  4019. "autoload": {
  4020. "psr-4": {
  4021. "League\\MimeTypeDetection\\": "src"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Frank de Jonge",
  4031. "email": "info@frankdejonge.nl"
  4032. }
  4033. ],
  4034. "description": "Mime-type detection for Flysystem",
  4035. "funding": [
  4036. {
  4037. "url": "https://github.com/frankdejonge",
  4038. "type": "github"
  4039. },
  4040. {
  4041. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4042. "type": "tidelift"
  4043. }
  4044. ],
  4045. "time": "2021-01-18T20:58:21+00:00"
  4046. },
  4047. {
  4048. "name": "mobiledetect/mobiledetectlib",
  4049. "version": "2.8.37",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4053. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  4058. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  4059. "shasum": "",
  4060. "mirrors": [
  4061. {
  4062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4063. "preferred": true
  4064. }
  4065. ]
  4066. },
  4067. "require": {
  4068. "php": ">=5.0.0"
  4069. },
  4070. "require-dev": {
  4071. "phpunit/phpunit": "~4.8.35||~5.7"
  4072. },
  4073. "type": "library",
  4074. "autoload": {
  4075. "classmap": [
  4076. "Mobile_Detect.php"
  4077. ],
  4078. "psr-0": {
  4079. "Detection": "namespaced/"
  4080. }
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "authors": [
  4087. {
  4088. "name": "Serban Ghita",
  4089. "email": "serbanghita@gmail.com",
  4090. "homepage": "http://mobiledetect.net",
  4091. "role": "Developer"
  4092. }
  4093. ],
  4094. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  4095. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4096. "keywords": [
  4097. "detect mobile devices",
  4098. "mobile",
  4099. "mobile detect",
  4100. "mobile detector",
  4101. "php mobile detect"
  4102. ],
  4103. "funding": [
  4104. {
  4105. "url": "https://github.com/serbanghita",
  4106. "type": "github"
  4107. }
  4108. ],
  4109. "time": "2021-02-19T21:22:57+00:00"
  4110. },
  4111. {
  4112. "name": "monolog/monolog",
  4113. "version": "2.2.0",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/Seldaek/monolog.git",
  4117. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  4122. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  4123. "shasum": "",
  4124. "mirrors": [
  4125. {
  4126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4127. "preferred": true
  4128. }
  4129. ]
  4130. },
  4131. "require": {
  4132. "php": ">=7.2",
  4133. "psr/log": "^1.0.1"
  4134. },
  4135. "provide": {
  4136. "psr/log-implementation": "1.0.0"
  4137. },
  4138. "require-dev": {
  4139. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4140. "doctrine/couchdb": "~1.0@dev",
  4141. "elasticsearch/elasticsearch": "^7",
  4142. "graylog2/gelf-php": "^1.4.2",
  4143. "mongodb/mongodb": "^1.8",
  4144. "php-amqplib/php-amqplib": "~2.4",
  4145. "php-console/php-console": "^3.1.3",
  4146. "phpspec/prophecy": "^1.6.1",
  4147. "phpstan/phpstan": "^0.12.59",
  4148. "phpunit/phpunit": "^8.5",
  4149. "predis/predis": "^1.1",
  4150. "rollbar/rollbar": "^1.3",
  4151. "ruflin/elastica": ">=0.90 <7.0.1",
  4152. "swiftmailer/swiftmailer": "^5.3|^6.0"
  4153. },
  4154. "suggest": {
  4155. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4156. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4157. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4158. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4159. "ext-mbstring": "Allow to work properly with unicode symbols",
  4160. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4161. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4162. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4163. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4164. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4165. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4166. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4167. },
  4168. "type": "library",
  4169. "extra": {
  4170. "branch-alias": {
  4171. "dev-main": "2.x-dev"
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Monolog\\": "src/Monolog"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Jordi Boggiano",
  4186. "email": "j.boggiano@seld.be",
  4187. "homepage": "https://seld.be"
  4188. }
  4189. ],
  4190. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4191. "homepage": "https://github.com/Seldaek/monolog",
  4192. "keywords": [
  4193. "log",
  4194. "logging",
  4195. "psr-3"
  4196. ],
  4197. "funding": [
  4198. {
  4199. "url": "https://github.com/Seldaek",
  4200. "type": "github"
  4201. },
  4202. {
  4203. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4204. "type": "tidelift"
  4205. }
  4206. ],
  4207. "time": "2020-12-14T13:15:25+00:00"
  4208. },
  4209. {
  4210. "name": "myclabs/php-enum",
  4211. "version": "1.8.3",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/myclabs/php-enum.git",
  4215. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  4220. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  4221. "shasum": "",
  4222. "mirrors": [
  4223. {
  4224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4225. "preferred": true
  4226. }
  4227. ]
  4228. },
  4229. "require": {
  4230. "ext-json": "*",
  4231. "php": "^7.3 || ^8.0"
  4232. },
  4233. "require-dev": {
  4234. "phpunit/phpunit": "^9.5",
  4235. "squizlabs/php_codesniffer": "1.*",
  4236. "vimeo/psalm": "^4.6.2"
  4237. },
  4238. "type": "library",
  4239. "autoload": {
  4240. "psr-4": {
  4241. "MyCLabs\\Enum\\": "src/"
  4242. }
  4243. },
  4244. "notification-url": "https://packagist.org/downloads/",
  4245. "license": [
  4246. "MIT"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "PHP Enum contributors",
  4251. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4252. }
  4253. ],
  4254. "description": "PHP Enum implementation",
  4255. "homepage": "http://github.com/myclabs/php-enum",
  4256. "keywords": [
  4257. "enum"
  4258. ],
  4259. "funding": [
  4260. {
  4261. "url": "https://github.com/mnapoli",
  4262. "type": "github"
  4263. },
  4264. {
  4265. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4266. "type": "tidelift"
  4267. }
  4268. ],
  4269. "time": "2021-07-05T08:18:36+00:00"
  4270. },
  4271. {
  4272. "name": "namshi/jose",
  4273. "version": "7.2.3",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/namshi/jose.git",
  4277. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4282. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4283. "shasum": "",
  4284. "mirrors": [
  4285. {
  4286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4287. "preferred": true
  4288. }
  4289. ]
  4290. },
  4291. "require": {
  4292. "ext-date": "*",
  4293. "ext-hash": "*",
  4294. "ext-json": "*",
  4295. "ext-pcre": "*",
  4296. "ext-spl": "*",
  4297. "php": ">=5.5",
  4298. "symfony/polyfill-php56": "^1.0"
  4299. },
  4300. "require-dev": {
  4301. "phpseclib/phpseclib": "^2.0",
  4302. "phpunit/phpunit": "^4.5|^5.0",
  4303. "satooshi/php-coveralls": "^1.0"
  4304. },
  4305. "suggest": {
  4306. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4307. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4308. },
  4309. "type": "library",
  4310. "autoload": {
  4311. "psr-4": {
  4312. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4313. }
  4314. },
  4315. "notification-url": "https://packagist.org/downloads/",
  4316. "license": [
  4317. "MIT"
  4318. ],
  4319. "authors": [
  4320. {
  4321. "name": "Alessandro Nadalin",
  4322. "email": "alessandro.nadalin@gmail.com"
  4323. },
  4324. {
  4325. "name": "Alessandro Cinelli (cirpo)",
  4326. "email": "alessandro.cinelli@gmail.com"
  4327. }
  4328. ],
  4329. "description": "JSON Object Signing and Encryption library for PHP.",
  4330. "keywords": [
  4331. "JSON Web Signature",
  4332. "JSON Web Token",
  4333. "JWS",
  4334. "json",
  4335. "jwt",
  4336. "token"
  4337. ],
  4338. "time": "2016-12-05T07:27:31+00:00"
  4339. },
  4340. {
  4341. "name": "nesbot/carbon",
  4342. "version": "2.45.1",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/briannesbitt/Carbon.git",
  4346. "reference": "528783b188bdb853eb21239b1722831e0f000a8d"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d",
  4351. "reference": "528783b188bdb853eb21239b1722831e0f000a8d",
  4352. "shasum": "",
  4353. "mirrors": [
  4354. {
  4355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4356. "preferred": true
  4357. }
  4358. ]
  4359. },
  4360. "require": {
  4361. "ext-json": "*",
  4362. "php": "^7.1.8 || ^8.0",
  4363. "symfony/polyfill-mbstring": "^1.0",
  4364. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  4365. },
  4366. "require-dev": {
  4367. "doctrine/orm": "^2.7",
  4368. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  4369. "kylekatarnls/multi-tester": "^2.0",
  4370. "phpmd/phpmd": "^2.9",
  4371. "phpstan/extension-installer": "^1.0",
  4372. "phpstan/phpstan": "^0.12.54",
  4373. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  4374. "squizlabs/php_codesniffer": "^3.4"
  4375. },
  4376. "bin": [
  4377. "bin/carbon"
  4378. ],
  4379. "type": "library",
  4380. "extra": {
  4381. "branch-alias": {
  4382. "dev-master": "2.x-dev",
  4383. "dev-3.x": "3.x-dev"
  4384. },
  4385. "laravel": {
  4386. "providers": [
  4387. "Carbon\\Laravel\\ServiceProvider"
  4388. ]
  4389. },
  4390. "phpstan": {
  4391. "includes": [
  4392. "extension.neon"
  4393. ]
  4394. }
  4395. },
  4396. "autoload": {
  4397. "psr-4": {
  4398. "Carbon\\": "src/Carbon/"
  4399. }
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "Brian Nesbitt",
  4408. "email": "brian@nesbot.com",
  4409. "homepage": "http://nesbot.com"
  4410. },
  4411. {
  4412. "name": "kylekatarnls",
  4413. "homepage": "http://github.com/kylekatarnls"
  4414. }
  4415. ],
  4416. "description": "An API extension for DateTime that supports 281 different languages.",
  4417. "homepage": "http://carbon.nesbot.com",
  4418. "keywords": [
  4419. "date",
  4420. "datetime",
  4421. "time"
  4422. ],
  4423. "funding": [
  4424. {
  4425. "url": "https://opencollective.com/Carbon",
  4426. "type": "open_collective"
  4427. },
  4428. {
  4429. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  4430. "type": "tidelift"
  4431. }
  4432. ],
  4433. "time": "2021-02-11T18:30:17+00:00"
  4434. },
  4435. {
  4436. "name": "nikic/fast-route",
  4437. "version": "v1.3.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://github.com/nikic/FastRoute.git",
  4441. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4446. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4447. "shasum": "",
  4448. "mirrors": [
  4449. {
  4450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4451. "preferred": true
  4452. }
  4453. ]
  4454. },
  4455. "require": {
  4456. "php": ">=5.4.0"
  4457. },
  4458. "require-dev": {
  4459. "phpunit/phpunit": "^4.8.35|~5.7"
  4460. },
  4461. "type": "library",
  4462. "autoload": {
  4463. "psr-4": {
  4464. "FastRoute\\": "src/"
  4465. },
  4466. "files": [
  4467. "src/functions.php"
  4468. ]
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "BSD-3-Clause"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Nikita Popov",
  4477. "email": "nikic@php.net"
  4478. }
  4479. ],
  4480. "description": "Fast request router for PHP",
  4481. "keywords": [
  4482. "router",
  4483. "routing"
  4484. ],
  4485. "time": "2018-02-13T20:26:39+00:00"
  4486. },
  4487. {
  4488. "name": "opis/closure",
  4489. "version": "3.6.1",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/opis/closure.git",
  4493. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  4498. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  4499. "shasum": "",
  4500. "mirrors": [
  4501. {
  4502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4503. "preferred": true
  4504. }
  4505. ]
  4506. },
  4507. "require": {
  4508. "php": "^5.4 || ^7.0 || ^8.0"
  4509. },
  4510. "require-dev": {
  4511. "jeremeamia/superclosure": "^2.0",
  4512. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4513. },
  4514. "type": "library",
  4515. "extra": {
  4516. "branch-alias": {
  4517. "dev-master": "3.6.x-dev"
  4518. }
  4519. },
  4520. "autoload": {
  4521. "psr-4": {
  4522. "Opis\\Closure\\": "src/"
  4523. },
  4524. "files": [
  4525. "functions.php"
  4526. ]
  4527. },
  4528. "notification-url": "https://packagist.org/downloads/",
  4529. "license": [
  4530. "MIT"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "Marius Sarca",
  4535. "email": "marius.sarca@gmail.com"
  4536. },
  4537. {
  4538. "name": "Sorin Sarca",
  4539. "email": "sarca_sorin@hotmail.com"
  4540. }
  4541. ],
  4542. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4543. "homepage": "https://opis.io/closure",
  4544. "keywords": [
  4545. "anonymous functions",
  4546. "closure",
  4547. "function",
  4548. "serializable",
  4549. "serialization",
  4550. "serialize"
  4551. ],
  4552. "time": "2020-11-07T02:01:34+00:00"
  4553. },
  4554. {
  4555. "name": "overtrue/easy-sms",
  4556. "version": "1.3.2",
  4557. "source": {
  4558. "type": "git",
  4559. "url": "https://github.com/overtrue/easy-sms.git",
  4560. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  4561. },
  4562. "dist": {
  4563. "type": "zip",
  4564. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  4565. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  4566. "shasum": "",
  4567. "mirrors": [
  4568. {
  4569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4570. "preferred": true
  4571. }
  4572. ]
  4573. },
  4574. "require": {
  4575. "ext-json": "*",
  4576. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4577. "php": ">=5.6"
  4578. },
  4579. "require-dev": {
  4580. "mockery/mockery": "1.3.1",
  4581. "phpunit/phpunit": "^5.7 || ^7.5"
  4582. },
  4583. "type": "library",
  4584. "autoload": {
  4585. "psr-4": {
  4586. "Overtrue\\EasySms\\": "src"
  4587. }
  4588. },
  4589. "notification-url": "https://packagist.org/downloads/",
  4590. "license": [
  4591. "MIT"
  4592. ],
  4593. "authors": [
  4594. {
  4595. "name": "overtrue",
  4596. "email": "i@overtrue.me"
  4597. }
  4598. ],
  4599. "description": "The easiest way to send short message.",
  4600. "time": "2021-01-22T06:52:59+00:00"
  4601. },
  4602. {
  4603. "name": "overtrue/laravel-wechat",
  4604. "version": "5.1.0",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/overtrue/laravel-wechat.git",
  4608. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4613. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4614. "shasum": "",
  4615. "mirrors": [
  4616. {
  4617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4618. "preferred": true
  4619. }
  4620. ]
  4621. },
  4622. "require": {
  4623. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4624. "overtrue/wechat": "^4.0"
  4625. },
  4626. "require-dev": {
  4627. "friendsofphp/php-cs-fixer": "^2.16",
  4628. "laravel/framework": "^8.5"
  4629. },
  4630. "type": "library",
  4631. "extra": {
  4632. "laravel": {
  4633. "providers": [
  4634. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4635. ],
  4636. "aliases": {
  4637. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4638. }
  4639. }
  4640. },
  4641. "autoload": {
  4642. "psr-4": {
  4643. "Overtrue\\LaravelWeChat\\": "src/"
  4644. }
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "overtrue",
  4653. "email": "anzhengchao@gmail.com"
  4654. }
  4655. ],
  4656. "description": "微信 SDK for Laravel",
  4657. "keywords": [
  4658. "laravel",
  4659. "sdk",
  4660. "wechat",
  4661. "weixin"
  4662. ],
  4663. "time": "2020-09-27T08:32:30+00:00"
  4664. },
  4665. {
  4666. "name": "overtrue/socialite",
  4667. "version": "2.0.23",
  4668. "source": {
  4669. "type": "git",
  4670. "url": "https://github.com/overtrue/socialite.git",
  4671. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2"
  4672. },
  4673. "dist": {
  4674. "type": "zip",
  4675. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4676. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4677. "shasum": "",
  4678. "mirrors": [
  4679. {
  4680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4681. "preferred": true
  4682. }
  4683. ]
  4684. },
  4685. "require": {
  4686. "ext-json": "*",
  4687. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4688. "php": ">=5.6",
  4689. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4690. },
  4691. "require-dev": {
  4692. "mockery/mockery": "~1.2",
  4693. "phpunit/phpunit": "~6"
  4694. },
  4695. "type": "library",
  4696. "autoload": {
  4697. "psr-4": {
  4698. "Overtrue\\Socialite\\": "src/"
  4699. }
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "overtrue",
  4708. "email": "anzhengchao@gmail.com"
  4709. }
  4710. ],
  4711. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4712. "keywords": [
  4713. "login",
  4714. "oauth",
  4715. "qq",
  4716. "social",
  4717. "wechat",
  4718. "weibo"
  4719. ],
  4720. "funding": [
  4721. {
  4722. "url": "https://www.patreon.com/overtrue",
  4723. "type": "patreon"
  4724. }
  4725. ],
  4726. "time": "2020-12-14T03:30:08+00:00"
  4727. },
  4728. {
  4729. "name": "overtrue/wechat",
  4730. "version": "4.4.0",
  4731. "source": {
  4732. "type": "git",
  4733. "url": "https://github.com/w7corp/easywechat.git",
  4734. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6"
  4735. },
  4736. "dist": {
  4737. "type": "zip",
  4738. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4739. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4740. "shasum": "",
  4741. "mirrors": [
  4742. {
  4743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4744. "preferred": true
  4745. }
  4746. ]
  4747. },
  4748. "require": {
  4749. "easywechat-composer/easywechat-composer": "^1.1",
  4750. "ext-fileinfo": "*",
  4751. "ext-openssl": "*",
  4752. "ext-simplexml": "*",
  4753. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4754. "monolog/monolog": "^1.22 || ^2.0",
  4755. "overtrue/socialite": "~2.0",
  4756. "php": ">=7.2",
  4757. "pimple/pimple": "^3.0",
  4758. "psr/simple-cache": "^1.0",
  4759. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  4760. "symfony/event-dispatcher": "^4.3 || ^5.0",
  4761. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  4762. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  4763. },
  4764. "require-dev": {
  4765. "friendsofphp/php-cs-fixer": "^2.15",
  4766. "mikey179/vfsstream": "^1.6",
  4767. "mockery/mockery": "^1.2.3",
  4768. "phpstan/phpstan": "^0.12.0",
  4769. "phpunit/phpunit": "^7.5"
  4770. },
  4771. "type": "library",
  4772. "autoload": {
  4773. "psr-4": {
  4774. "EasyWeChat\\": "src/"
  4775. },
  4776. "files": [
  4777. "src/Kernel/Support/Helpers.php",
  4778. "src/Kernel/Helpers.php"
  4779. ]
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "overtrue",
  4788. "email": "anzhengchao@gmail.com"
  4789. }
  4790. ],
  4791. "description": "微信SDK",
  4792. "keywords": [
  4793. "easywechat",
  4794. "sdk",
  4795. "wechat",
  4796. "weixin",
  4797. "weixin-sdk"
  4798. ],
  4799. "funding": [
  4800. {
  4801. "url": "https://www.easywechat.com/img/pay/wechat.jpg",
  4802. "type": "custom"
  4803. },
  4804. {
  4805. "url": "https://github.com/overtrue",
  4806. "type": "github"
  4807. },
  4808. {
  4809. "url": "https://www.patreon.com/overtrue",
  4810. "type": "patreon"
  4811. }
  4812. ],
  4813. "time": "2020-12-30T06:39:40+00:00"
  4814. },
  4815. {
  4816. "name": "phpdocumentor/reflection-common",
  4817. "version": "2.2.0",
  4818. "source": {
  4819. "type": "git",
  4820. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4821. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4822. },
  4823. "dist": {
  4824. "type": "zip",
  4825. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4826. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4827. "shasum": "",
  4828. "mirrors": [
  4829. {
  4830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4831. "preferred": true
  4832. }
  4833. ]
  4834. },
  4835. "require": {
  4836. "php": "^7.2 || ^8.0"
  4837. },
  4838. "type": "library",
  4839. "extra": {
  4840. "branch-alias": {
  4841. "dev-2.x": "2.x-dev"
  4842. }
  4843. },
  4844. "autoload": {
  4845. "psr-4": {
  4846. "phpDocumentor\\Reflection\\": "src/"
  4847. }
  4848. },
  4849. "notification-url": "https://packagist.org/downloads/",
  4850. "license": [
  4851. "MIT"
  4852. ],
  4853. "authors": [
  4854. {
  4855. "name": "Jaap van Otterdijk",
  4856. "email": "opensource@ijaap.nl"
  4857. }
  4858. ],
  4859. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4860. "homepage": "http://www.phpdoc.org",
  4861. "keywords": [
  4862. "FQSEN",
  4863. "phpDocumentor",
  4864. "phpdoc",
  4865. "reflection",
  4866. "static analysis"
  4867. ],
  4868. "time": "2020-06-27T09:03:43+00:00"
  4869. },
  4870. {
  4871. "name": "phpdocumentor/reflection-docblock",
  4872. "version": "4.3.4",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4876. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4881. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4882. "shasum": "",
  4883. "mirrors": [
  4884. {
  4885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4886. "preferred": true
  4887. }
  4888. ]
  4889. },
  4890. "require": {
  4891. "php": "^7.0",
  4892. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4893. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4894. "webmozart/assert": "^1.0"
  4895. },
  4896. "require-dev": {
  4897. "doctrine/instantiator": "^1.0.5",
  4898. "mockery/mockery": "^1.0",
  4899. "phpdocumentor/type-resolver": "0.4.*",
  4900. "phpunit/phpunit": "^6.4"
  4901. },
  4902. "type": "library",
  4903. "extra": {
  4904. "branch-alias": {
  4905. "dev-master": "4.x-dev"
  4906. }
  4907. },
  4908. "autoload": {
  4909. "psr-4": {
  4910. "phpDocumentor\\Reflection\\": [
  4911. "src/"
  4912. ]
  4913. }
  4914. },
  4915. "notification-url": "https://packagist.org/downloads/",
  4916. "license": [
  4917. "MIT"
  4918. ],
  4919. "authors": [
  4920. {
  4921. "name": "Mike van Riel",
  4922. "email": "me@mikevanriel.com"
  4923. }
  4924. ],
  4925. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4926. "time": "2019-12-28T18:55:12+00:00"
  4927. },
  4928. {
  4929. "name": "phpdocumentor/type-resolver",
  4930. "version": "1.4.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4934. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4939. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  4940. "shasum": "",
  4941. "mirrors": [
  4942. {
  4943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4944. "preferred": true
  4945. }
  4946. ]
  4947. },
  4948. "require": {
  4949. "php": "^7.2 || ^8.0",
  4950. "phpdocumentor/reflection-common": "^2.0"
  4951. },
  4952. "require-dev": {
  4953. "ext-tokenizer": "*"
  4954. },
  4955. "type": "library",
  4956. "extra": {
  4957. "branch-alias": {
  4958. "dev-1.x": "1.x-dev"
  4959. }
  4960. },
  4961. "autoload": {
  4962. "psr-4": {
  4963. "phpDocumentor\\Reflection\\": "src"
  4964. }
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Mike van Riel",
  4973. "email": "me@mikevanriel.com"
  4974. }
  4975. ],
  4976. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4977. "time": "2020-09-17T18:55:26+00:00"
  4978. },
  4979. {
  4980. "name": "phpoption/phpoption",
  4981. "version": "1.7.5",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/schmittjoh/php-option.git",
  4985. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4990. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4991. "shasum": "",
  4992. "mirrors": [
  4993. {
  4994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4995. "preferred": true
  4996. }
  4997. ]
  4998. },
  4999. "require": {
  5000. "php": "^5.5.9 || ^7.0 || ^8.0"
  5001. },
  5002. "require-dev": {
  5003. "bamarni/composer-bin-plugin": "^1.4.1",
  5004. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  5005. },
  5006. "type": "library",
  5007. "extra": {
  5008. "branch-alias": {
  5009. "dev-master": "1.7-dev"
  5010. }
  5011. },
  5012. "autoload": {
  5013. "psr-4": {
  5014. "PhpOption\\": "src/PhpOption/"
  5015. }
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "Apache-2.0"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Johannes M. Schmitt",
  5024. "email": "schmittjoh@gmail.com"
  5025. },
  5026. {
  5027. "name": "Graham Campbell",
  5028. "email": "graham@alt-three.com"
  5029. }
  5030. ],
  5031. "description": "Option Type for PHP",
  5032. "keywords": [
  5033. "language",
  5034. "option",
  5035. "php",
  5036. "type"
  5037. ],
  5038. "funding": [
  5039. {
  5040. "url": "https://github.com/GrahamCampbell",
  5041. "type": "github"
  5042. },
  5043. {
  5044. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5045. "type": "tidelift"
  5046. }
  5047. ],
  5048. "time": "2020-07-20T17:29:33+00:00"
  5049. },
  5050. {
  5051. "name": "pimple/pimple",
  5052. "version": "v3.4.0",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/silexphp/Pimple.git",
  5056. "reference": "86406047271859ffc13424a048541f4531f53601"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  5061. "reference": "86406047271859ffc13424a048541f4531f53601",
  5062. "shasum": "",
  5063. "mirrors": [
  5064. {
  5065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5066. "preferred": true
  5067. }
  5068. ]
  5069. },
  5070. "require": {
  5071. "php": ">=7.2.5",
  5072. "psr/container": "^1.1"
  5073. },
  5074. "require-dev": {
  5075. "symfony/phpunit-bridge": "^5.0"
  5076. },
  5077. "type": "library",
  5078. "extra": {
  5079. "branch-alias": {
  5080. "dev-master": "3.4.x-dev"
  5081. }
  5082. },
  5083. "autoload": {
  5084. "psr-0": {
  5085. "Pimple": "src/"
  5086. }
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "Fabien Potencier",
  5095. "email": "fabien@symfony.com"
  5096. }
  5097. ],
  5098. "description": "Pimple, a simple Dependency Injection Container",
  5099. "homepage": "https://pimple.symfony.com",
  5100. "keywords": [
  5101. "container",
  5102. "dependency injection"
  5103. ],
  5104. "time": "2021-03-06T08:28:00+00:00"
  5105. },
  5106. {
  5107. "name": "psr/cache",
  5108. "version": "1.0.1",
  5109. "source": {
  5110. "type": "git",
  5111. "url": "https://github.com/php-fig/cache.git",
  5112. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5113. },
  5114. "dist": {
  5115. "type": "zip",
  5116. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5117. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5118. "shasum": "",
  5119. "mirrors": [
  5120. {
  5121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5122. "preferred": true
  5123. }
  5124. ]
  5125. },
  5126. "require": {
  5127. "php": ">=5.3.0"
  5128. },
  5129. "type": "library",
  5130. "extra": {
  5131. "branch-alias": {
  5132. "dev-master": "1.0.x-dev"
  5133. }
  5134. },
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Psr\\Cache\\": "src/"
  5138. }
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "MIT"
  5143. ],
  5144. "authors": [
  5145. {
  5146. "name": "PHP-FIG",
  5147. "homepage": "http://www.php-fig.org/"
  5148. }
  5149. ],
  5150. "description": "Common interface for caching libraries",
  5151. "keywords": [
  5152. "cache",
  5153. "psr",
  5154. "psr-6"
  5155. ],
  5156. "time": "2016-08-06T20:24:11+00:00"
  5157. },
  5158. {
  5159. "name": "psr/container",
  5160. "version": "1.1.1",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/php-fig/container.git",
  5164. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  5169. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  5170. "shasum": "",
  5171. "mirrors": [
  5172. {
  5173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5174. "preferred": true
  5175. }
  5176. ]
  5177. },
  5178. "require": {
  5179. "php": ">=7.2.0"
  5180. },
  5181. "type": "library",
  5182. "autoload": {
  5183. "psr-4": {
  5184. "Psr\\Container\\": "src/"
  5185. }
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "PHP-FIG",
  5194. "homepage": "https://www.php-fig.org/"
  5195. }
  5196. ],
  5197. "description": "Common Container Interface (PHP FIG PSR-11)",
  5198. "homepage": "https://github.com/php-fig/container",
  5199. "keywords": [
  5200. "PSR-11",
  5201. "container",
  5202. "container-interface",
  5203. "container-interop",
  5204. "psr"
  5205. ],
  5206. "time": "2021-03-05T17:36:06+00:00"
  5207. },
  5208. {
  5209. "name": "psr/http-message",
  5210. "version": "1.0.1",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/php-fig/http-message.git",
  5214. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5219. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5220. "shasum": "",
  5221. "mirrors": [
  5222. {
  5223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5224. "preferred": true
  5225. }
  5226. ]
  5227. },
  5228. "require": {
  5229. "php": ">=5.3.0"
  5230. },
  5231. "type": "library",
  5232. "extra": {
  5233. "branch-alias": {
  5234. "dev-master": "1.0.x-dev"
  5235. }
  5236. },
  5237. "autoload": {
  5238. "psr-4": {
  5239. "Psr\\Http\\Message\\": "src/"
  5240. }
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "PHP-FIG",
  5249. "homepage": "http://www.php-fig.org/"
  5250. }
  5251. ],
  5252. "description": "Common interface for HTTP messages",
  5253. "homepage": "https://github.com/php-fig/http-message",
  5254. "keywords": [
  5255. "http",
  5256. "http-message",
  5257. "psr",
  5258. "psr-7",
  5259. "request",
  5260. "response"
  5261. ],
  5262. "time": "2016-08-06T14:39:51+00:00"
  5263. },
  5264. {
  5265. "name": "psr/log",
  5266. "version": "1.1.3",
  5267. "source": {
  5268. "type": "git",
  5269. "url": "https://github.com/php-fig/log.git",
  5270. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  5271. },
  5272. "dist": {
  5273. "type": "zip",
  5274. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  5275. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  5276. "shasum": "",
  5277. "mirrors": [
  5278. {
  5279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5280. "preferred": true
  5281. }
  5282. ]
  5283. },
  5284. "require": {
  5285. "php": ">=5.3.0"
  5286. },
  5287. "type": "library",
  5288. "extra": {
  5289. "branch-alias": {
  5290. "dev-master": "1.1.x-dev"
  5291. }
  5292. },
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Psr\\Log\\": "Psr/Log/"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "PHP-FIG",
  5305. "homepage": "http://www.php-fig.org/"
  5306. }
  5307. ],
  5308. "description": "Common interface for logging libraries",
  5309. "homepage": "https://github.com/php-fig/log",
  5310. "keywords": [
  5311. "log",
  5312. "psr",
  5313. "psr-3"
  5314. ],
  5315. "time": "2020-03-23T09:12:05+00:00"
  5316. },
  5317. {
  5318. "name": "psr/simple-cache",
  5319. "version": "1.0.1",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/php-fig/simple-cache.git",
  5323. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5328. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5329. "shasum": "",
  5330. "mirrors": [
  5331. {
  5332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5333. "preferred": true
  5334. }
  5335. ]
  5336. },
  5337. "require": {
  5338. "php": ">=5.3.0"
  5339. },
  5340. "type": "library",
  5341. "extra": {
  5342. "branch-alias": {
  5343. "dev-master": "1.0.x-dev"
  5344. }
  5345. },
  5346. "autoload": {
  5347. "psr-4": {
  5348. "Psr\\SimpleCache\\": "src/"
  5349. }
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "PHP-FIG",
  5358. "homepage": "http://www.php-fig.org/"
  5359. }
  5360. ],
  5361. "description": "Common interfaces for simple caching",
  5362. "keywords": [
  5363. "cache",
  5364. "caching",
  5365. "psr",
  5366. "psr-16",
  5367. "simple-cache"
  5368. ],
  5369. "time": "2017-10-23T01:57:42+00:00"
  5370. },
  5371. {
  5372. "name": "ralouphie/getallheaders",
  5373. "version": "3.0.3",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/ralouphie/getallheaders.git",
  5377. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5382. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5383. "shasum": "",
  5384. "mirrors": [
  5385. {
  5386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5387. "preferred": true
  5388. }
  5389. ]
  5390. },
  5391. "require": {
  5392. "php": ">=5.6"
  5393. },
  5394. "require-dev": {
  5395. "php-coveralls/php-coveralls": "^2.1",
  5396. "phpunit/phpunit": "^5 || ^6.5"
  5397. },
  5398. "type": "library",
  5399. "autoload": {
  5400. "files": [
  5401. "src/getallheaders.php"
  5402. ]
  5403. },
  5404. "notification-url": "https://packagist.org/downloads/",
  5405. "license": [
  5406. "MIT"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Ralph Khattar",
  5411. "email": "ralph.khattar@gmail.com"
  5412. }
  5413. ],
  5414. "description": "A polyfill for getallheaders.",
  5415. "time": "2019-03-08T08:55:37+00:00"
  5416. },
  5417. {
  5418. "name": "react/promise",
  5419. "version": "v2.8.0",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/reactphp/promise.git",
  5423. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5428. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5429. "shasum": "",
  5430. "mirrors": [
  5431. {
  5432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5433. "preferred": true
  5434. }
  5435. ]
  5436. },
  5437. "require": {
  5438. "php": ">=5.4.0"
  5439. },
  5440. "require-dev": {
  5441. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  5442. },
  5443. "type": "library",
  5444. "autoload": {
  5445. "psr-4": {
  5446. "React\\Promise\\": "src/"
  5447. },
  5448. "files": [
  5449. "src/functions_include.php"
  5450. ]
  5451. },
  5452. "notification-url": "https://packagist.org/downloads/",
  5453. "license": [
  5454. "MIT"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "Jan Sorgalla",
  5459. "email": "jsorgalla@gmail.com"
  5460. }
  5461. ],
  5462. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5463. "keywords": [
  5464. "promise",
  5465. "promises"
  5466. ],
  5467. "time": "2020-05-12T15:16:56+00:00"
  5468. },
  5469. {
  5470. "name": "seld/jsonlint",
  5471. "version": "1.8.3",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/Seldaek/jsonlint.git",
  5475. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5480. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5481. "shasum": "",
  5482. "mirrors": [
  5483. {
  5484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5485. "preferred": true
  5486. }
  5487. ]
  5488. },
  5489. "require": {
  5490. "php": "^5.3 || ^7.0 || ^8.0"
  5491. },
  5492. "require-dev": {
  5493. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5494. },
  5495. "bin": [
  5496. "bin/jsonlint"
  5497. ],
  5498. "type": "library",
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Jordi Boggiano",
  5511. "email": "j.boggiano@seld.be",
  5512. "homepage": "http://seld.be"
  5513. }
  5514. ],
  5515. "description": "JSON Linter",
  5516. "keywords": [
  5517. "json",
  5518. "linter",
  5519. "parser",
  5520. "validator"
  5521. ],
  5522. "funding": [
  5523. {
  5524. "url": "https://github.com/Seldaek",
  5525. "type": "github"
  5526. },
  5527. {
  5528. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  5529. "type": "tidelift"
  5530. }
  5531. ],
  5532. "time": "2020-11-11T09:19:24+00:00"
  5533. },
  5534. {
  5535. "name": "seld/phar-utils",
  5536. "version": "1.1.1",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/Seldaek/phar-utils.git",
  5540. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5545. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5546. "shasum": "",
  5547. "mirrors": [
  5548. {
  5549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5550. "preferred": true
  5551. }
  5552. ]
  5553. },
  5554. "require": {
  5555. "php": ">=5.3"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "1.x-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-4": {
  5565. "Seld\\PharUtils\\": "src/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Jordi Boggiano",
  5575. "email": "j.boggiano@seld.be"
  5576. }
  5577. ],
  5578. "description": "PHAR file format utilities, for when PHP phars you up",
  5579. "keywords": [
  5580. "phar"
  5581. ],
  5582. "time": "2020-07-07T18:42:57+00:00"
  5583. },
  5584. {
  5585. "name": "simplesoftwareio/simple-qrcode",
  5586. "version": "4.2.0",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  5590. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  5595. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  5596. "shasum": "",
  5597. "mirrors": [
  5598. {
  5599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5600. "preferred": true
  5601. }
  5602. ]
  5603. },
  5604. "require": {
  5605. "bacon/bacon-qr-code": "^2.0",
  5606. "ext-gd": "*",
  5607. "php": ">=7.2|^8.0"
  5608. },
  5609. "require-dev": {
  5610. "mockery/mockery": "~1",
  5611. "phpunit/phpunit": "~9"
  5612. },
  5613. "suggest": {
  5614. "ext-imagick": "Allows the generation of PNG QrCodes.",
  5615. "illuminate/support": "Allows for use within Laravel."
  5616. },
  5617. "type": "library",
  5618. "extra": {
  5619. "laravel": {
  5620. "providers": [
  5621. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  5622. ],
  5623. "aliases": {
  5624. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  5625. }
  5626. }
  5627. },
  5628. "autoload": {
  5629. "psr-4": {
  5630. "SimpleSoftwareIO\\QrCode\\": "src"
  5631. }
  5632. },
  5633. "notification-url": "https://packagist.org/downloads/",
  5634. "license": [
  5635. "MIT"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "Simple Software LLC",
  5640. "email": "support@simplesoftware.io"
  5641. }
  5642. ],
  5643. "description": "Simple QrCode is a QR code generator made for Laravel.",
  5644. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  5645. "keywords": [
  5646. "Simple",
  5647. "generator",
  5648. "laravel",
  5649. "qrcode",
  5650. "wrapper"
  5651. ],
  5652. "time": "2021-02-08T20:43:55+00:00"
  5653. },
  5654. {
  5655. "name": "symfony/cache",
  5656. "version": "v5.2.4",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/symfony/cache.git",
  5660. "reference": "d15fb2576cdbe2c40d7c851e62f85b0faff3dd3d"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/symfony/cache/zipball/d15fb2576cdbe2c40d7c851e62f85b0faff3dd3d",
  5665. "reference": "d15fb2576cdbe2c40d7c851e62f85b0faff3dd3d",
  5666. "shasum": "",
  5667. "mirrors": [
  5668. {
  5669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5670. "preferred": true
  5671. }
  5672. ]
  5673. },
  5674. "require": {
  5675. "php": ">=7.2.5",
  5676. "psr/cache": "^1.0|^2.0",
  5677. "psr/log": "^1.1",
  5678. "symfony/cache-contracts": "^1.1.7|^2",
  5679. "symfony/polyfill-php80": "^1.15",
  5680. "symfony/service-contracts": "^1.1|^2",
  5681. "symfony/var-exporter": "^4.4|^5.0"
  5682. },
  5683. "conflict": {
  5684. "doctrine/dbal": "<2.10",
  5685. "symfony/dependency-injection": "<4.4",
  5686. "symfony/http-kernel": "<4.4",
  5687. "symfony/var-dumper": "<4.4"
  5688. },
  5689. "provide": {
  5690. "psr/cache-implementation": "1.0|2.0",
  5691. "psr/simple-cache-implementation": "1.0",
  5692. "symfony/cache-implementation": "1.0|2.0"
  5693. },
  5694. "require-dev": {
  5695. "cache/integration-tests": "dev-master",
  5696. "doctrine/cache": "^1.6",
  5697. "doctrine/dbal": "^2.10|^3.0",
  5698. "predis/predis": "^1.1",
  5699. "psr/simple-cache": "^1.0",
  5700. "symfony/config": "^4.4|^5.0",
  5701. "symfony/dependency-injection": "^4.4|^5.0",
  5702. "symfony/filesystem": "^4.4|^5.0",
  5703. "symfony/http-kernel": "^4.4|^5.0",
  5704. "symfony/messenger": "^4.4|^5.0",
  5705. "symfony/var-dumper": "^4.4|^5.0"
  5706. },
  5707. "type": "library",
  5708. "autoload": {
  5709. "psr-4": {
  5710. "Symfony\\Component\\Cache\\": ""
  5711. },
  5712. "exclude-from-classmap": [
  5713. "/Tests/"
  5714. ]
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Nicolas Grekas",
  5723. "email": "p@tchwork.com"
  5724. },
  5725. {
  5726. "name": "Symfony Community",
  5727. "homepage": "https://symfony.com/contributors"
  5728. }
  5729. ],
  5730. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5731. "homepage": "https://symfony.com",
  5732. "keywords": [
  5733. "caching",
  5734. "psr6"
  5735. ],
  5736. "funding": [
  5737. {
  5738. "url": "https://symfony.com/sponsor",
  5739. "type": "custom"
  5740. },
  5741. {
  5742. "url": "https://github.com/fabpot",
  5743. "type": "github"
  5744. },
  5745. {
  5746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5747. "type": "tidelift"
  5748. }
  5749. ],
  5750. "time": "2021-02-25T23:54:56+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/cache-contracts",
  5754. "version": "v2.2.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/cache-contracts.git",
  5758. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  5763. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  5764. "shasum": "",
  5765. "mirrors": [
  5766. {
  5767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5768. "preferred": true
  5769. }
  5770. ]
  5771. },
  5772. "require": {
  5773. "php": ">=7.2.5",
  5774. "psr/cache": "^1.0"
  5775. },
  5776. "suggest": {
  5777. "symfony/cache-implementation": ""
  5778. },
  5779. "type": "library",
  5780. "extra": {
  5781. "branch-alias": {
  5782. "dev-master": "2.2-dev"
  5783. },
  5784. "thanks": {
  5785. "name": "symfony/contracts",
  5786. "url": "https://github.com/symfony/contracts"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "psr-4": {
  5791. "Symfony\\Contracts\\Cache\\": ""
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Nicolas Grekas",
  5801. "email": "p@tchwork.com"
  5802. },
  5803. {
  5804. "name": "Symfony Community",
  5805. "homepage": "https://symfony.com/contributors"
  5806. }
  5807. ],
  5808. "description": "Generic abstractions related to caching",
  5809. "homepage": "https://symfony.com",
  5810. "keywords": [
  5811. "abstractions",
  5812. "contracts",
  5813. "decoupling",
  5814. "interfaces",
  5815. "interoperability",
  5816. "standards"
  5817. ],
  5818. "funding": [
  5819. {
  5820. "url": "https://symfony.com/sponsor",
  5821. "type": "custom"
  5822. },
  5823. {
  5824. "url": "https://github.com/fabpot",
  5825. "type": "github"
  5826. },
  5827. {
  5828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5829. "type": "tidelift"
  5830. }
  5831. ],
  5832. "time": "2020-09-07T11:33:47+00:00"
  5833. },
  5834. {
  5835. "name": "symfony/console",
  5836. "version": "v4.4.20",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/symfony/console.git",
  5840. "reference": "c98349bda966c70d6c08b4cd8658377c94166492"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/symfony/console/zipball/c98349bda966c70d6c08b4cd8658377c94166492",
  5845. "reference": "c98349bda966c70d6c08b4cd8658377c94166492",
  5846. "shasum": "",
  5847. "mirrors": [
  5848. {
  5849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5850. "preferred": true
  5851. }
  5852. ]
  5853. },
  5854. "require": {
  5855. "php": ">=7.1.3",
  5856. "symfony/polyfill-mbstring": "~1.0",
  5857. "symfony/polyfill-php73": "^1.8",
  5858. "symfony/polyfill-php80": "^1.15",
  5859. "symfony/service-contracts": "^1.1|^2"
  5860. },
  5861. "conflict": {
  5862. "symfony/dependency-injection": "<3.4",
  5863. "symfony/event-dispatcher": "<4.3|>=5",
  5864. "symfony/lock": "<4.4",
  5865. "symfony/process": "<3.3"
  5866. },
  5867. "provide": {
  5868. "psr/log-implementation": "1.0"
  5869. },
  5870. "require-dev": {
  5871. "psr/log": "~1.0",
  5872. "symfony/config": "^3.4|^4.0|^5.0",
  5873. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5874. "symfony/event-dispatcher": "^4.3",
  5875. "symfony/lock": "^4.4|^5.0",
  5876. "symfony/process": "^3.4|^4.0|^5.0",
  5877. "symfony/var-dumper": "^4.3|^5.0"
  5878. },
  5879. "suggest": {
  5880. "psr/log": "For using the console logger",
  5881. "symfony/event-dispatcher": "",
  5882. "symfony/lock": "",
  5883. "symfony/process": ""
  5884. },
  5885. "type": "library",
  5886. "autoload": {
  5887. "psr-4": {
  5888. "Symfony\\Component\\Console\\": ""
  5889. },
  5890. "exclude-from-classmap": [
  5891. "/Tests/"
  5892. ]
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Fabien Potencier",
  5901. "email": "fabien@symfony.com"
  5902. },
  5903. {
  5904. "name": "Symfony Community",
  5905. "homepage": "https://symfony.com/contributors"
  5906. }
  5907. ],
  5908. "description": "Eases the creation of beautiful and testable command line interfaces",
  5909. "homepage": "https://symfony.com",
  5910. "funding": [
  5911. {
  5912. "url": "https://symfony.com/sponsor",
  5913. "type": "custom"
  5914. },
  5915. {
  5916. "url": "https://github.com/fabpot",
  5917. "type": "github"
  5918. },
  5919. {
  5920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5921. "type": "tidelift"
  5922. }
  5923. ],
  5924. "time": "2021-02-22T18:44:15+00:00"
  5925. },
  5926. {
  5927. "name": "symfony/debug",
  5928. "version": "v4.4.20",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/symfony/debug.git",
  5932. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16",
  5937. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16",
  5938. "shasum": "",
  5939. "mirrors": [
  5940. {
  5941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5942. "preferred": true
  5943. }
  5944. ]
  5945. },
  5946. "require": {
  5947. "php": ">=7.1.3",
  5948. "psr/log": "~1.0",
  5949. "symfony/polyfill-php80": "^1.15"
  5950. },
  5951. "conflict": {
  5952. "symfony/http-kernel": "<3.4"
  5953. },
  5954. "require-dev": {
  5955. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5956. },
  5957. "type": "library",
  5958. "autoload": {
  5959. "psr-4": {
  5960. "Symfony\\Component\\Debug\\": ""
  5961. },
  5962. "exclude-from-classmap": [
  5963. "/Tests/"
  5964. ]
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "MIT"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Fabien Potencier",
  5973. "email": "fabien@symfony.com"
  5974. },
  5975. {
  5976. "name": "Symfony Community",
  5977. "homepage": "https://symfony.com/contributors"
  5978. }
  5979. ],
  5980. "description": "Provides tools to ease debugging PHP code",
  5981. "homepage": "https://symfony.com",
  5982. "funding": [
  5983. {
  5984. "url": "https://symfony.com/sponsor",
  5985. "type": "custom"
  5986. },
  5987. {
  5988. "url": "https://github.com/fabpot",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2021-01-28T16:54:48+00:00"
  5997. },
  5998. {
  5999. "name": "symfony/deprecation-contracts",
  6000. "version": "v2.2.0",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/symfony/deprecation-contracts.git",
  6004. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  6009. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  6010. "shasum": "",
  6011. "mirrors": [
  6012. {
  6013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6014. "preferred": true
  6015. }
  6016. ]
  6017. },
  6018. "require": {
  6019. "php": ">=7.1"
  6020. },
  6021. "type": "library",
  6022. "extra": {
  6023. "branch-alias": {
  6024. "dev-master": "2.2-dev"
  6025. },
  6026. "thanks": {
  6027. "name": "symfony/contracts",
  6028. "url": "https://github.com/symfony/contracts"
  6029. }
  6030. },
  6031. "autoload": {
  6032. "files": [
  6033. "function.php"
  6034. ]
  6035. },
  6036. "notification-url": "https://packagist.org/downloads/",
  6037. "license": [
  6038. "MIT"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Nicolas Grekas",
  6043. "email": "p@tchwork.com"
  6044. },
  6045. {
  6046. "name": "Symfony Community",
  6047. "homepage": "https://symfony.com/contributors"
  6048. }
  6049. ],
  6050. "description": "A generic function and convention to trigger deprecation notices",
  6051. "homepage": "https://symfony.com",
  6052. "funding": [
  6053. {
  6054. "url": "https://symfony.com/sponsor",
  6055. "type": "custom"
  6056. },
  6057. {
  6058. "url": "https://github.com/fabpot",
  6059. "type": "github"
  6060. },
  6061. {
  6062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6063. "type": "tidelift"
  6064. }
  6065. ],
  6066. "time": "2020-09-07T11:33:47+00:00"
  6067. },
  6068. {
  6069. "name": "symfony/error-handler",
  6070. "version": "v4.4.20",
  6071. "source": {
  6072. "type": "git",
  6073. "url": "https://github.com/symfony/error-handler.git",
  6074. "reference": "a191550d46b73a527b9d244f185fef439d41cf15"
  6075. },
  6076. "dist": {
  6077. "type": "zip",
  6078. "url": "https://api.github.com/repos/symfony/error-handler/zipball/a191550d46b73a527b9d244f185fef439d41cf15",
  6079. "reference": "a191550d46b73a527b9d244f185fef439d41cf15",
  6080. "shasum": "",
  6081. "mirrors": [
  6082. {
  6083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6084. "preferred": true
  6085. }
  6086. ]
  6087. },
  6088. "require": {
  6089. "php": ">=7.1.3",
  6090. "psr/log": "~1.0",
  6091. "symfony/debug": "^4.4.5",
  6092. "symfony/polyfill-php80": "^1.15",
  6093. "symfony/var-dumper": "^4.4|^5.0"
  6094. },
  6095. "require-dev": {
  6096. "symfony/http-kernel": "^4.4|^5.0",
  6097. "symfony/serializer": "^4.4|^5.0"
  6098. },
  6099. "type": "library",
  6100. "autoload": {
  6101. "psr-4": {
  6102. "Symfony\\Component\\ErrorHandler\\": ""
  6103. },
  6104. "exclude-from-classmap": [
  6105. "/Tests/"
  6106. ]
  6107. },
  6108. "notification-url": "https://packagist.org/downloads/",
  6109. "license": [
  6110. "MIT"
  6111. ],
  6112. "authors": [
  6113. {
  6114. "name": "Fabien Potencier",
  6115. "email": "fabien@symfony.com"
  6116. },
  6117. {
  6118. "name": "Symfony Community",
  6119. "homepage": "https://symfony.com/contributors"
  6120. }
  6121. ],
  6122. "description": "Provides tools to manage errors and ease debugging PHP code",
  6123. "homepage": "https://symfony.com",
  6124. "funding": [
  6125. {
  6126. "url": "https://symfony.com/sponsor",
  6127. "type": "custom"
  6128. },
  6129. {
  6130. "url": "https://github.com/fabpot",
  6131. "type": "github"
  6132. },
  6133. {
  6134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6135. "type": "tidelift"
  6136. }
  6137. ],
  6138. "time": "2021-02-11T08:19:35+00:00"
  6139. },
  6140. {
  6141. "name": "symfony/event-dispatcher",
  6142. "version": "v4.4.20",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/symfony/event-dispatcher.git",
  6146. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  6151. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  6152. "shasum": "",
  6153. "mirrors": [
  6154. {
  6155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6156. "preferred": true
  6157. }
  6158. ]
  6159. },
  6160. "require": {
  6161. "php": ">=7.1.3",
  6162. "symfony/event-dispatcher-contracts": "^1.1"
  6163. },
  6164. "conflict": {
  6165. "symfony/dependency-injection": "<3.4"
  6166. },
  6167. "provide": {
  6168. "psr/event-dispatcher-implementation": "1.0",
  6169. "symfony/event-dispatcher-implementation": "1.1"
  6170. },
  6171. "require-dev": {
  6172. "psr/log": "~1.0",
  6173. "symfony/config": "^3.4|^4.0|^5.0",
  6174. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6175. "symfony/error-handler": "~3.4|~4.4",
  6176. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6177. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  6178. "symfony/service-contracts": "^1.1|^2",
  6179. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  6180. },
  6181. "suggest": {
  6182. "symfony/dependency-injection": "",
  6183. "symfony/http-kernel": ""
  6184. },
  6185. "type": "library",
  6186. "autoload": {
  6187. "psr-4": {
  6188. "Symfony\\Component\\EventDispatcher\\": ""
  6189. },
  6190. "exclude-from-classmap": [
  6191. "/Tests/"
  6192. ]
  6193. },
  6194. "notification-url": "https://packagist.org/downloads/",
  6195. "license": [
  6196. "MIT"
  6197. ],
  6198. "authors": [
  6199. {
  6200. "name": "Fabien Potencier",
  6201. "email": "fabien@symfony.com"
  6202. },
  6203. {
  6204. "name": "Symfony Community",
  6205. "homepage": "https://symfony.com/contributors"
  6206. }
  6207. ],
  6208. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6209. "homepage": "https://symfony.com",
  6210. "funding": [
  6211. {
  6212. "url": "https://symfony.com/sponsor",
  6213. "type": "custom"
  6214. },
  6215. {
  6216. "url": "https://github.com/fabpot",
  6217. "type": "github"
  6218. },
  6219. {
  6220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6221. "type": "tidelift"
  6222. }
  6223. ],
  6224. "time": "2021-01-27T09:09:26+00:00"
  6225. },
  6226. {
  6227. "name": "symfony/event-dispatcher-contracts",
  6228. "version": "v1.1.9",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6232. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  6237. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  6238. "shasum": "",
  6239. "mirrors": [
  6240. {
  6241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6242. "preferred": true
  6243. }
  6244. ]
  6245. },
  6246. "require": {
  6247. "php": ">=7.1.3"
  6248. },
  6249. "suggest": {
  6250. "psr/event-dispatcher": "",
  6251. "symfony/event-dispatcher-implementation": ""
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "branch-alias": {
  6256. "dev-master": "1.1-dev"
  6257. },
  6258. "thanks": {
  6259. "name": "symfony/contracts",
  6260. "url": "https://github.com/symfony/contracts"
  6261. }
  6262. },
  6263. "autoload": {
  6264. "psr-4": {
  6265. "Symfony\\Contracts\\EventDispatcher\\": ""
  6266. }
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Nicolas Grekas",
  6275. "email": "p@tchwork.com"
  6276. },
  6277. {
  6278. "name": "Symfony Community",
  6279. "homepage": "https://symfony.com/contributors"
  6280. }
  6281. ],
  6282. "description": "Generic abstractions related to dispatching event",
  6283. "homepage": "https://symfony.com",
  6284. "keywords": [
  6285. "abstractions",
  6286. "contracts",
  6287. "decoupling",
  6288. "interfaces",
  6289. "interoperability",
  6290. "standards"
  6291. ],
  6292. "funding": [
  6293. {
  6294. "url": "https://symfony.com/sponsor",
  6295. "type": "custom"
  6296. },
  6297. {
  6298. "url": "https://github.com/fabpot",
  6299. "type": "github"
  6300. },
  6301. {
  6302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6303. "type": "tidelift"
  6304. }
  6305. ],
  6306. "time": "2020-07-06T13:19:58+00:00"
  6307. },
  6308. {
  6309. "name": "symfony/filesystem",
  6310. "version": "v5.2.4",
  6311. "source": {
  6312. "type": "git",
  6313. "url": "https://github.com/symfony/filesystem.git",
  6314. "reference": "710d364200997a5afde34d9fe57bd52f3cc1e108"
  6315. },
  6316. "dist": {
  6317. "type": "zip",
  6318. "url": "https://api.github.com/repos/symfony/filesystem/zipball/710d364200997a5afde34d9fe57bd52f3cc1e108",
  6319. "reference": "710d364200997a5afde34d9fe57bd52f3cc1e108",
  6320. "shasum": "",
  6321. "mirrors": [
  6322. {
  6323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6324. "preferred": true
  6325. }
  6326. ]
  6327. },
  6328. "require": {
  6329. "php": ">=7.2.5",
  6330. "symfony/polyfill-ctype": "~1.8"
  6331. },
  6332. "type": "library",
  6333. "autoload": {
  6334. "psr-4": {
  6335. "Symfony\\Component\\Filesystem\\": ""
  6336. },
  6337. "exclude-from-classmap": [
  6338. "/Tests/"
  6339. ]
  6340. },
  6341. "notification-url": "https://packagist.org/downloads/",
  6342. "license": [
  6343. "MIT"
  6344. ],
  6345. "authors": [
  6346. {
  6347. "name": "Fabien Potencier",
  6348. "email": "fabien@symfony.com"
  6349. },
  6350. {
  6351. "name": "Symfony Community",
  6352. "homepage": "https://symfony.com/contributors"
  6353. }
  6354. ],
  6355. "description": "Provides basic utilities for the filesystem",
  6356. "homepage": "https://symfony.com",
  6357. "funding": [
  6358. {
  6359. "url": "https://symfony.com/sponsor",
  6360. "type": "custom"
  6361. },
  6362. {
  6363. "url": "https://github.com/fabpot",
  6364. "type": "github"
  6365. },
  6366. {
  6367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6368. "type": "tidelift"
  6369. }
  6370. ],
  6371. "time": "2021-02-12T10:38:38+00:00"
  6372. },
  6373. {
  6374. "name": "symfony/finder",
  6375. "version": "v4.4.20",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/symfony/finder.git",
  6379. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  6384. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  6385. "shasum": "",
  6386. "mirrors": [
  6387. {
  6388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6389. "preferred": true
  6390. }
  6391. ]
  6392. },
  6393. "require": {
  6394. "php": ">=7.1.3"
  6395. },
  6396. "type": "library",
  6397. "autoload": {
  6398. "psr-4": {
  6399. "Symfony\\Component\\Finder\\": ""
  6400. },
  6401. "exclude-from-classmap": [
  6402. "/Tests/"
  6403. ]
  6404. },
  6405. "notification-url": "https://packagist.org/downloads/",
  6406. "license": [
  6407. "MIT"
  6408. ],
  6409. "authors": [
  6410. {
  6411. "name": "Fabien Potencier",
  6412. "email": "fabien@symfony.com"
  6413. },
  6414. {
  6415. "name": "Symfony Community",
  6416. "homepage": "https://symfony.com/contributors"
  6417. }
  6418. ],
  6419. "description": "Finds files and directories via an intuitive fluent interface",
  6420. "homepage": "https://symfony.com",
  6421. "funding": [
  6422. {
  6423. "url": "https://symfony.com/sponsor",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/fabpot",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6432. "type": "tidelift"
  6433. }
  6434. ],
  6435. "time": "2021-02-12T10:48:09+00:00"
  6436. },
  6437. {
  6438. "name": "symfony/http-client-contracts",
  6439. "version": "v2.3.1",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/http-client-contracts.git",
  6443. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  6448. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  6449. "shasum": "",
  6450. "mirrors": [
  6451. {
  6452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6453. "preferred": true
  6454. }
  6455. ]
  6456. },
  6457. "require": {
  6458. "php": ">=7.2.5"
  6459. },
  6460. "suggest": {
  6461. "symfony/http-client-implementation": ""
  6462. },
  6463. "type": "library",
  6464. "extra": {
  6465. "branch-version": "2.3",
  6466. "branch-alias": {
  6467. "dev-main": "2.3-dev"
  6468. },
  6469. "thanks": {
  6470. "name": "symfony/contracts",
  6471. "url": "https://github.com/symfony/contracts"
  6472. }
  6473. },
  6474. "autoload": {
  6475. "psr-4": {
  6476. "Symfony\\Contracts\\HttpClient\\": ""
  6477. }
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "MIT"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "Nicolas Grekas",
  6486. "email": "p@tchwork.com"
  6487. },
  6488. {
  6489. "name": "Symfony Community",
  6490. "homepage": "https://symfony.com/contributors"
  6491. }
  6492. ],
  6493. "description": "Generic abstractions related to HTTP clients",
  6494. "homepage": "https://symfony.com",
  6495. "keywords": [
  6496. "abstractions",
  6497. "contracts",
  6498. "decoupling",
  6499. "interfaces",
  6500. "interoperability",
  6501. "standards"
  6502. ],
  6503. "funding": [
  6504. {
  6505. "url": "https://symfony.com/sponsor",
  6506. "type": "custom"
  6507. },
  6508. {
  6509. "url": "https://github.com/fabpot",
  6510. "type": "github"
  6511. },
  6512. {
  6513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6514. "type": "tidelift"
  6515. }
  6516. ],
  6517. "time": "2020-10-14T17:08:19+00:00"
  6518. },
  6519. {
  6520. "name": "symfony/http-foundation",
  6521. "version": "v4.4.20",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/symfony/http-foundation.git",
  6525. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  6530. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  6531. "shasum": "",
  6532. "mirrors": [
  6533. {
  6534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6535. "preferred": true
  6536. }
  6537. ]
  6538. },
  6539. "require": {
  6540. "php": ">=7.1.3",
  6541. "symfony/mime": "^4.3|^5.0",
  6542. "symfony/polyfill-mbstring": "~1.1",
  6543. "symfony/polyfill-php80": "^1.15"
  6544. },
  6545. "require-dev": {
  6546. "predis/predis": "~1.0",
  6547. "symfony/expression-language": "^3.4|^4.0|^5.0"
  6548. },
  6549. "type": "library",
  6550. "autoload": {
  6551. "psr-4": {
  6552. "Symfony\\Component\\HttpFoundation\\": ""
  6553. },
  6554. "exclude-from-classmap": [
  6555. "/Tests/"
  6556. ]
  6557. },
  6558. "notification-url": "https://packagist.org/downloads/",
  6559. "license": [
  6560. "MIT"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "Fabien Potencier",
  6565. "email": "fabien@symfony.com"
  6566. },
  6567. {
  6568. "name": "Symfony Community",
  6569. "homepage": "https://symfony.com/contributors"
  6570. }
  6571. ],
  6572. "description": "Defines an object-oriented layer for the HTTP specification",
  6573. "homepage": "https://symfony.com",
  6574. "funding": [
  6575. {
  6576. "url": "https://symfony.com/sponsor",
  6577. "type": "custom"
  6578. },
  6579. {
  6580. "url": "https://github.com/fabpot",
  6581. "type": "github"
  6582. },
  6583. {
  6584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6585. "type": "tidelift"
  6586. }
  6587. ],
  6588. "time": "2021-02-25T17:11:33+00:00"
  6589. },
  6590. {
  6591. "name": "symfony/http-kernel",
  6592. "version": "v4.4.20",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/symfony/http-kernel.git",
  6596. "reference": "4f36548465489f293b05406f1770492f6efb8adb"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4f36548465489f293b05406f1770492f6efb8adb",
  6601. "reference": "4f36548465489f293b05406f1770492f6efb8adb",
  6602. "shasum": "",
  6603. "mirrors": [
  6604. {
  6605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6606. "preferred": true
  6607. }
  6608. ]
  6609. },
  6610. "require": {
  6611. "php": ">=7.1.3",
  6612. "psr/log": "~1.0",
  6613. "symfony/error-handler": "^4.4",
  6614. "symfony/event-dispatcher": "^4.4",
  6615. "symfony/http-client-contracts": "^1.1|^2",
  6616. "symfony/http-foundation": "^4.4|^5.0",
  6617. "symfony/polyfill-ctype": "^1.8",
  6618. "symfony/polyfill-php73": "^1.9",
  6619. "symfony/polyfill-php80": "^1.15"
  6620. },
  6621. "conflict": {
  6622. "symfony/browser-kit": "<4.3",
  6623. "symfony/config": "<3.4",
  6624. "symfony/console": ">=5",
  6625. "symfony/dependency-injection": "<4.3",
  6626. "symfony/translation": "<4.2",
  6627. "twig/twig": "<1.43|<2.13,>=2"
  6628. },
  6629. "provide": {
  6630. "psr/log-implementation": "1.0"
  6631. },
  6632. "require-dev": {
  6633. "psr/cache": "^1.0|^2.0|^3.0",
  6634. "symfony/browser-kit": "^4.3|^5.0",
  6635. "symfony/config": "^3.4|^4.0|^5.0",
  6636. "symfony/console": "^3.4|^4.0",
  6637. "symfony/css-selector": "^3.4|^4.0|^5.0",
  6638. "symfony/dependency-injection": "^4.3|^5.0",
  6639. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  6640. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6641. "symfony/finder": "^3.4|^4.0|^5.0",
  6642. "symfony/process": "^3.4|^4.0|^5.0",
  6643. "symfony/routing": "^3.4|^4.0|^5.0",
  6644. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  6645. "symfony/templating": "^3.4|^4.0|^5.0",
  6646. "symfony/translation": "^4.2|^5.0",
  6647. "symfony/translation-contracts": "^1.1|^2",
  6648. "twig/twig": "^1.43|^2.13|^3.0.4"
  6649. },
  6650. "suggest": {
  6651. "symfony/browser-kit": "",
  6652. "symfony/config": "",
  6653. "symfony/console": "",
  6654. "symfony/dependency-injection": ""
  6655. },
  6656. "type": "library",
  6657. "autoload": {
  6658. "psr-4": {
  6659. "Symfony\\Component\\HttpKernel\\": ""
  6660. },
  6661. "exclude-from-classmap": [
  6662. "/Tests/"
  6663. ]
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Fabien Potencier",
  6672. "email": "fabien@symfony.com"
  6673. },
  6674. {
  6675. "name": "Symfony Community",
  6676. "homepage": "https://symfony.com/contributors"
  6677. }
  6678. ],
  6679. "description": "Provides a structured process for converting a Request into a Response",
  6680. "homepage": "https://symfony.com",
  6681. "funding": [
  6682. {
  6683. "url": "https://symfony.com/sponsor",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/fabpot",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2021-03-04T18:00:27+00:00"
  6696. },
  6697. {
  6698. "name": "symfony/mime",
  6699. "version": "v5.2.4",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/symfony/mime.git",
  6703. "reference": "5155d2fe14ef1eb150e3bdbbc1ec1455df95e9cd"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/symfony/mime/zipball/5155d2fe14ef1eb150e3bdbbc1ec1455df95e9cd",
  6708. "reference": "5155d2fe14ef1eb150e3bdbbc1ec1455df95e9cd",
  6709. "shasum": "",
  6710. "mirrors": [
  6711. {
  6712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6713. "preferred": true
  6714. }
  6715. ]
  6716. },
  6717. "require": {
  6718. "php": ">=7.2.5",
  6719. "symfony/deprecation-contracts": "^2.1",
  6720. "symfony/polyfill-intl-idn": "^1.10",
  6721. "symfony/polyfill-mbstring": "^1.0",
  6722. "symfony/polyfill-php80": "^1.15"
  6723. },
  6724. "conflict": {
  6725. "phpdocumentor/reflection-docblock": "<3.2.2",
  6726. "phpdocumentor/type-resolver": "<1.4.0",
  6727. "symfony/mailer": "<4.4"
  6728. },
  6729. "require-dev": {
  6730. "egulias/email-validator": "^2.1.10",
  6731. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6732. "symfony/dependency-injection": "^4.4|^5.0",
  6733. "symfony/property-access": "^4.4|^5.1",
  6734. "symfony/property-info": "^4.4|^5.1",
  6735. "symfony/serializer": "^5.2"
  6736. },
  6737. "type": "library",
  6738. "autoload": {
  6739. "psr-4": {
  6740. "Symfony\\Component\\Mime\\": ""
  6741. },
  6742. "exclude-from-classmap": [
  6743. "/Tests/"
  6744. ]
  6745. },
  6746. "notification-url": "https://packagist.org/downloads/",
  6747. "license": [
  6748. "MIT"
  6749. ],
  6750. "authors": [
  6751. {
  6752. "name": "Fabien Potencier",
  6753. "email": "fabien@symfony.com"
  6754. },
  6755. {
  6756. "name": "Symfony Community",
  6757. "homepage": "https://symfony.com/contributors"
  6758. }
  6759. ],
  6760. "description": "Allows manipulating MIME messages",
  6761. "homepage": "https://symfony.com",
  6762. "keywords": [
  6763. "mime",
  6764. "mime-type"
  6765. ],
  6766. "funding": [
  6767. {
  6768. "url": "https://symfony.com/sponsor",
  6769. "type": "custom"
  6770. },
  6771. {
  6772. "url": "https://github.com/fabpot",
  6773. "type": "github"
  6774. },
  6775. {
  6776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6777. "type": "tidelift"
  6778. }
  6779. ],
  6780. "time": "2021-02-15T18:55:04+00:00"
  6781. },
  6782. {
  6783. "name": "symfony/options-resolver",
  6784. "version": "v5.2.4",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/symfony/options-resolver.git",
  6788. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6793. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6794. "shasum": "",
  6795. "mirrors": [
  6796. {
  6797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6798. "preferred": true
  6799. }
  6800. ]
  6801. },
  6802. "require": {
  6803. "php": ">=7.2.5",
  6804. "symfony/deprecation-contracts": "^2.1",
  6805. "symfony/polyfill-php73": "~1.0",
  6806. "symfony/polyfill-php80": "^1.15"
  6807. },
  6808. "type": "library",
  6809. "autoload": {
  6810. "psr-4": {
  6811. "Symfony\\Component\\OptionsResolver\\": ""
  6812. },
  6813. "exclude-from-classmap": [
  6814. "/Tests/"
  6815. ]
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "MIT"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "Fabien Potencier",
  6824. "email": "fabien@symfony.com"
  6825. },
  6826. {
  6827. "name": "Symfony Community",
  6828. "homepage": "https://symfony.com/contributors"
  6829. }
  6830. ],
  6831. "description": "Provides an improved replacement for the array_replace PHP function",
  6832. "homepage": "https://symfony.com",
  6833. "keywords": [
  6834. "config",
  6835. "configuration",
  6836. "options"
  6837. ],
  6838. "funding": [
  6839. {
  6840. "url": "https://symfony.com/sponsor",
  6841. "type": "custom"
  6842. },
  6843. {
  6844. "url": "https://github.com/fabpot",
  6845. "type": "github"
  6846. },
  6847. {
  6848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6849. "type": "tidelift"
  6850. }
  6851. ],
  6852. "time": "2021-01-27T12:56:27+00:00"
  6853. },
  6854. {
  6855. "name": "symfony/polyfill-ctype",
  6856. "version": "v1.22.1",
  6857. "source": {
  6858. "type": "git",
  6859. "url": "https://github.com/symfony/polyfill-ctype.git",
  6860. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  6861. },
  6862. "dist": {
  6863. "type": "zip",
  6864. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  6865. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  6866. "shasum": "",
  6867. "mirrors": [
  6868. {
  6869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6870. "preferred": true
  6871. }
  6872. ]
  6873. },
  6874. "require": {
  6875. "php": ">=7.1"
  6876. },
  6877. "suggest": {
  6878. "ext-ctype": "For best performance"
  6879. },
  6880. "type": "library",
  6881. "extra": {
  6882. "branch-alias": {
  6883. "dev-main": "1.22-dev"
  6884. },
  6885. "thanks": {
  6886. "name": "symfony/polyfill",
  6887. "url": "https://github.com/symfony/polyfill"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "psr-4": {
  6892. "Symfony\\Polyfill\\Ctype\\": ""
  6893. },
  6894. "files": [
  6895. "bootstrap.php"
  6896. ]
  6897. },
  6898. "notification-url": "https://packagist.org/downloads/",
  6899. "license": [
  6900. "MIT"
  6901. ],
  6902. "authors": [
  6903. {
  6904. "name": "Gert de Pagter",
  6905. "email": "BackEndTea@gmail.com"
  6906. },
  6907. {
  6908. "name": "Symfony Community",
  6909. "homepage": "https://symfony.com/contributors"
  6910. }
  6911. ],
  6912. "description": "Symfony polyfill for ctype functions",
  6913. "homepage": "https://symfony.com",
  6914. "keywords": [
  6915. "compatibility",
  6916. "ctype",
  6917. "polyfill",
  6918. "portable"
  6919. ],
  6920. "funding": [
  6921. {
  6922. "url": "https://symfony.com/sponsor",
  6923. "type": "custom"
  6924. },
  6925. {
  6926. "url": "https://github.com/fabpot",
  6927. "type": "github"
  6928. },
  6929. {
  6930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6931. "type": "tidelift"
  6932. }
  6933. ],
  6934. "time": "2021-01-07T16:49:33+00:00"
  6935. },
  6936. {
  6937. "name": "symfony/polyfill-intl-grapheme",
  6938. "version": "v1.22.1",
  6939. "source": {
  6940. "type": "git",
  6941. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6942. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  6943. },
  6944. "dist": {
  6945. "type": "zip",
  6946. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6947. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  6948. "shasum": "",
  6949. "mirrors": [
  6950. {
  6951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6952. "preferred": true
  6953. }
  6954. ]
  6955. },
  6956. "require": {
  6957. "php": ">=7.1"
  6958. },
  6959. "suggest": {
  6960. "ext-intl": "For best performance"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-main": "1.22-dev"
  6966. },
  6967. "thanks": {
  6968. "name": "symfony/polyfill",
  6969. "url": "https://github.com/symfony/polyfill"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "psr-4": {
  6974. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6975. },
  6976. "files": [
  6977. "bootstrap.php"
  6978. ]
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Nicolas Grekas",
  6987. "email": "p@tchwork.com"
  6988. },
  6989. {
  6990. "name": "Symfony Community",
  6991. "homepage": "https://symfony.com/contributors"
  6992. }
  6993. ],
  6994. "description": "Symfony polyfill for intl's grapheme_* functions",
  6995. "homepage": "https://symfony.com",
  6996. "keywords": [
  6997. "compatibility",
  6998. "grapheme",
  6999. "intl",
  7000. "polyfill",
  7001. "portable",
  7002. "shim"
  7003. ],
  7004. "funding": [
  7005. {
  7006. "url": "https://symfony.com/sponsor",
  7007. "type": "custom"
  7008. },
  7009. {
  7010. "url": "https://github.com/fabpot",
  7011. "type": "github"
  7012. },
  7013. {
  7014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7015. "type": "tidelift"
  7016. }
  7017. ],
  7018. "time": "2021-01-22T09:19:47+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/polyfill-intl-idn",
  7022. "version": "v1.22.1",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7026. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  7031. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  7032. "shasum": "",
  7033. "mirrors": [
  7034. {
  7035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7036. "preferred": true
  7037. }
  7038. ]
  7039. },
  7040. "require": {
  7041. "php": ">=7.1",
  7042. "symfony/polyfill-intl-normalizer": "^1.10",
  7043. "symfony/polyfill-php72": "^1.10"
  7044. },
  7045. "suggest": {
  7046. "ext-intl": "For best performance"
  7047. },
  7048. "type": "library",
  7049. "extra": {
  7050. "branch-alias": {
  7051. "dev-main": "1.22-dev"
  7052. },
  7053. "thanks": {
  7054. "name": "symfony/polyfill",
  7055. "url": "https://github.com/symfony/polyfill"
  7056. }
  7057. },
  7058. "autoload": {
  7059. "psr-4": {
  7060. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7061. },
  7062. "files": [
  7063. "bootstrap.php"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Laurent Bassin",
  7073. "email": "laurent@bassin.info"
  7074. },
  7075. {
  7076. "name": "Trevor Rowbotham",
  7077. "email": "trevor.rowbotham@pm.me"
  7078. },
  7079. {
  7080. "name": "Symfony Community",
  7081. "homepage": "https://symfony.com/contributors"
  7082. }
  7083. ],
  7084. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7085. "homepage": "https://symfony.com",
  7086. "keywords": [
  7087. "compatibility",
  7088. "idn",
  7089. "intl",
  7090. "polyfill",
  7091. "portable",
  7092. "shim"
  7093. ],
  7094. "funding": [
  7095. {
  7096. "url": "https://symfony.com/sponsor",
  7097. "type": "custom"
  7098. },
  7099. {
  7100. "url": "https://github.com/fabpot",
  7101. "type": "github"
  7102. },
  7103. {
  7104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7105. "type": "tidelift"
  7106. }
  7107. ],
  7108. "time": "2021-01-22T09:19:47+00:00"
  7109. },
  7110. {
  7111. "name": "symfony/polyfill-intl-normalizer",
  7112. "version": "v1.22.1",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7116. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  7121. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  7122. "shasum": "",
  7123. "mirrors": [
  7124. {
  7125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7126. "preferred": true
  7127. }
  7128. ]
  7129. },
  7130. "require": {
  7131. "php": ">=7.1"
  7132. },
  7133. "suggest": {
  7134. "ext-intl": "For best performance"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-main": "1.22-dev"
  7140. },
  7141. "thanks": {
  7142. "name": "symfony/polyfill",
  7143. "url": "https://github.com/symfony/polyfill"
  7144. }
  7145. },
  7146. "autoload": {
  7147. "psr-4": {
  7148. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7149. },
  7150. "files": [
  7151. "bootstrap.php"
  7152. ],
  7153. "classmap": [
  7154. "Resources/stubs"
  7155. ]
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Nicolas Grekas",
  7164. "email": "p@tchwork.com"
  7165. },
  7166. {
  7167. "name": "Symfony Community",
  7168. "homepage": "https://symfony.com/contributors"
  7169. }
  7170. ],
  7171. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7172. "homepage": "https://symfony.com",
  7173. "keywords": [
  7174. "compatibility",
  7175. "intl",
  7176. "normalizer",
  7177. "polyfill",
  7178. "portable",
  7179. "shim"
  7180. ],
  7181. "funding": [
  7182. {
  7183. "url": "https://symfony.com/sponsor",
  7184. "type": "custom"
  7185. },
  7186. {
  7187. "url": "https://github.com/fabpot",
  7188. "type": "github"
  7189. },
  7190. {
  7191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7192. "type": "tidelift"
  7193. }
  7194. ],
  7195. "time": "2021-01-22T09:19:47+00:00"
  7196. },
  7197. {
  7198. "name": "symfony/polyfill-mbstring",
  7199. "version": "v1.23.1",
  7200. "source": {
  7201. "type": "git",
  7202. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7203. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  7204. },
  7205. "dist": {
  7206. "type": "zip",
  7207. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7208. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  7209. "shasum": "",
  7210. "mirrors": [
  7211. {
  7212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7213. "preferred": true
  7214. }
  7215. ]
  7216. },
  7217. "require": {
  7218. "php": ">=7.1"
  7219. },
  7220. "suggest": {
  7221. "ext-mbstring": "For best performance"
  7222. },
  7223. "type": "library",
  7224. "extra": {
  7225. "branch-alias": {
  7226. "dev-main": "1.23-dev"
  7227. },
  7228. "thanks": {
  7229. "name": "symfony/polyfill",
  7230. "url": "https://github.com/symfony/polyfill"
  7231. }
  7232. },
  7233. "autoload": {
  7234. "psr-4": {
  7235. "Symfony\\Polyfill\\Mbstring\\": ""
  7236. },
  7237. "files": [
  7238. "bootstrap.php"
  7239. ]
  7240. },
  7241. "notification-url": "https://packagist.org/downloads/",
  7242. "license": [
  7243. "MIT"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Nicolas Grekas",
  7248. "email": "p@tchwork.com"
  7249. },
  7250. {
  7251. "name": "Symfony Community",
  7252. "homepage": "https://symfony.com/contributors"
  7253. }
  7254. ],
  7255. "description": "Symfony polyfill for the Mbstring extension",
  7256. "homepage": "https://symfony.com",
  7257. "keywords": [
  7258. "compatibility",
  7259. "mbstring",
  7260. "polyfill",
  7261. "portable",
  7262. "shim"
  7263. ],
  7264. "funding": [
  7265. {
  7266. "url": "https://symfony.com/sponsor",
  7267. "type": "custom"
  7268. },
  7269. {
  7270. "url": "https://github.com/fabpot",
  7271. "type": "github"
  7272. },
  7273. {
  7274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7275. "type": "tidelift"
  7276. }
  7277. ],
  7278. "time": "2021-05-27T12:26:48+00:00"
  7279. },
  7280. {
  7281. "name": "symfony/polyfill-php56",
  7282. "version": "v1.20.0",
  7283. "source": {
  7284. "type": "git",
  7285. "url": "https://github.com/symfony/polyfill-php56.git",
  7286. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  7287. },
  7288. "dist": {
  7289. "type": "zip",
  7290. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7291. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7292. "shasum": "",
  7293. "mirrors": [
  7294. {
  7295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7296. "preferred": true
  7297. }
  7298. ]
  7299. },
  7300. "require": {
  7301. "php": ">=7.1"
  7302. },
  7303. "type": "metapackage",
  7304. "extra": {
  7305. "branch-alias": {
  7306. "dev-main": "1.20-dev"
  7307. },
  7308. "thanks": {
  7309. "name": "symfony/polyfill",
  7310. "url": "https://github.com/symfony/polyfill"
  7311. }
  7312. },
  7313. "notification-url": "https://packagist.org/downloads/",
  7314. "license": [
  7315. "MIT"
  7316. ],
  7317. "authors": [
  7318. {
  7319. "name": "Nicolas Grekas",
  7320. "email": "p@tchwork.com"
  7321. },
  7322. {
  7323. "name": "Symfony Community",
  7324. "homepage": "https://symfony.com/contributors"
  7325. }
  7326. ],
  7327. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  7328. "homepage": "https://symfony.com",
  7329. "keywords": [
  7330. "compatibility",
  7331. "polyfill",
  7332. "portable",
  7333. "shim"
  7334. ],
  7335. "funding": [
  7336. {
  7337. "url": "https://symfony.com/sponsor",
  7338. "type": "custom"
  7339. },
  7340. {
  7341. "url": "https://github.com/fabpot",
  7342. "type": "github"
  7343. },
  7344. {
  7345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7346. "type": "tidelift"
  7347. }
  7348. ],
  7349. "time": "2020-10-23T14:02:19+00:00"
  7350. },
  7351. {
  7352. "name": "symfony/polyfill-php72",
  7353. "version": "v1.22.1",
  7354. "source": {
  7355. "type": "git",
  7356. "url": "https://github.com/symfony/polyfill-php72.git",
  7357. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  7358. },
  7359. "dist": {
  7360. "type": "zip",
  7361. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  7362. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  7363. "shasum": "",
  7364. "mirrors": [
  7365. {
  7366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7367. "preferred": true
  7368. }
  7369. ]
  7370. },
  7371. "require": {
  7372. "php": ">=7.1"
  7373. },
  7374. "type": "library",
  7375. "extra": {
  7376. "branch-alias": {
  7377. "dev-main": "1.22-dev"
  7378. },
  7379. "thanks": {
  7380. "name": "symfony/polyfill",
  7381. "url": "https://github.com/symfony/polyfill"
  7382. }
  7383. },
  7384. "autoload": {
  7385. "psr-4": {
  7386. "Symfony\\Polyfill\\Php72\\": ""
  7387. },
  7388. "files": [
  7389. "bootstrap.php"
  7390. ]
  7391. },
  7392. "notification-url": "https://packagist.org/downloads/",
  7393. "license": [
  7394. "MIT"
  7395. ],
  7396. "authors": [
  7397. {
  7398. "name": "Nicolas Grekas",
  7399. "email": "p@tchwork.com"
  7400. },
  7401. {
  7402. "name": "Symfony Community",
  7403. "homepage": "https://symfony.com/contributors"
  7404. }
  7405. ],
  7406. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7407. "homepage": "https://symfony.com",
  7408. "keywords": [
  7409. "compatibility",
  7410. "polyfill",
  7411. "portable",
  7412. "shim"
  7413. ],
  7414. "funding": [
  7415. {
  7416. "url": "https://symfony.com/sponsor",
  7417. "type": "custom"
  7418. },
  7419. {
  7420. "url": "https://github.com/fabpot",
  7421. "type": "github"
  7422. },
  7423. {
  7424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7425. "type": "tidelift"
  7426. }
  7427. ],
  7428. "time": "2021-01-07T16:49:33+00:00"
  7429. },
  7430. {
  7431. "name": "symfony/polyfill-php73",
  7432. "version": "v1.22.1",
  7433. "source": {
  7434. "type": "git",
  7435. "url": "https://github.com/symfony/polyfill-php73.git",
  7436. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  7437. },
  7438. "dist": {
  7439. "type": "zip",
  7440. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  7441. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  7442. "shasum": "",
  7443. "mirrors": [
  7444. {
  7445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7446. "preferred": true
  7447. }
  7448. ]
  7449. },
  7450. "require": {
  7451. "php": ">=7.1"
  7452. },
  7453. "type": "library",
  7454. "extra": {
  7455. "branch-alias": {
  7456. "dev-main": "1.22-dev"
  7457. },
  7458. "thanks": {
  7459. "name": "symfony/polyfill",
  7460. "url": "https://github.com/symfony/polyfill"
  7461. }
  7462. },
  7463. "autoload": {
  7464. "psr-4": {
  7465. "Symfony\\Polyfill\\Php73\\": ""
  7466. },
  7467. "files": [
  7468. "bootstrap.php"
  7469. ],
  7470. "classmap": [
  7471. "Resources/stubs"
  7472. ]
  7473. },
  7474. "notification-url": "https://packagist.org/downloads/",
  7475. "license": [
  7476. "MIT"
  7477. ],
  7478. "authors": [
  7479. {
  7480. "name": "Nicolas Grekas",
  7481. "email": "p@tchwork.com"
  7482. },
  7483. {
  7484. "name": "Symfony Community",
  7485. "homepage": "https://symfony.com/contributors"
  7486. }
  7487. ],
  7488. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7489. "homepage": "https://symfony.com",
  7490. "keywords": [
  7491. "compatibility",
  7492. "polyfill",
  7493. "portable",
  7494. "shim"
  7495. ],
  7496. "funding": [
  7497. {
  7498. "url": "https://symfony.com/sponsor",
  7499. "type": "custom"
  7500. },
  7501. {
  7502. "url": "https://github.com/fabpot",
  7503. "type": "github"
  7504. },
  7505. {
  7506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7507. "type": "tidelift"
  7508. }
  7509. ],
  7510. "time": "2021-01-07T16:49:33+00:00"
  7511. },
  7512. {
  7513. "name": "symfony/polyfill-php80",
  7514. "version": "v1.22.1",
  7515. "source": {
  7516. "type": "git",
  7517. "url": "https://github.com/symfony/polyfill-php80.git",
  7518. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  7519. },
  7520. "dist": {
  7521. "type": "zip",
  7522. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  7523. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  7524. "shasum": "",
  7525. "mirrors": [
  7526. {
  7527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7528. "preferred": true
  7529. }
  7530. ]
  7531. },
  7532. "require": {
  7533. "php": ">=7.1"
  7534. },
  7535. "type": "library",
  7536. "extra": {
  7537. "branch-alias": {
  7538. "dev-main": "1.22-dev"
  7539. },
  7540. "thanks": {
  7541. "name": "symfony/polyfill",
  7542. "url": "https://github.com/symfony/polyfill"
  7543. }
  7544. },
  7545. "autoload": {
  7546. "psr-4": {
  7547. "Symfony\\Polyfill\\Php80\\": ""
  7548. },
  7549. "files": [
  7550. "bootstrap.php"
  7551. ],
  7552. "classmap": [
  7553. "Resources/stubs"
  7554. ]
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Ion Bazan",
  7563. "email": "ion.bazan@gmail.com"
  7564. },
  7565. {
  7566. "name": "Nicolas Grekas",
  7567. "email": "p@tchwork.com"
  7568. },
  7569. {
  7570. "name": "Symfony Community",
  7571. "homepage": "https://symfony.com/contributors"
  7572. }
  7573. ],
  7574. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7575. "homepage": "https://symfony.com",
  7576. "keywords": [
  7577. "compatibility",
  7578. "polyfill",
  7579. "portable",
  7580. "shim"
  7581. ],
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2021-01-07T16:49:33+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/process",
  7600. "version": "v4.4.20",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/process.git",
  7604. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  7609. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  7610. "shasum": "",
  7611. "mirrors": [
  7612. {
  7613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7614. "preferred": true
  7615. }
  7616. ]
  7617. },
  7618. "require": {
  7619. "php": ">=7.1.3"
  7620. },
  7621. "type": "library",
  7622. "autoload": {
  7623. "psr-4": {
  7624. "Symfony\\Component\\Process\\": ""
  7625. },
  7626. "exclude-from-classmap": [
  7627. "/Tests/"
  7628. ]
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "MIT"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Fabien Potencier",
  7637. "email": "fabien@symfony.com"
  7638. },
  7639. {
  7640. "name": "Symfony Community",
  7641. "homepage": "https://symfony.com/contributors"
  7642. }
  7643. ],
  7644. "description": "Executes commands in sub-processes",
  7645. "homepage": "https://symfony.com",
  7646. "funding": [
  7647. {
  7648. "url": "https://symfony.com/sponsor",
  7649. "type": "custom"
  7650. },
  7651. {
  7652. "url": "https://github.com/fabpot",
  7653. "type": "github"
  7654. },
  7655. {
  7656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7657. "type": "tidelift"
  7658. }
  7659. ],
  7660. "time": "2021-01-27T09:09:26+00:00"
  7661. },
  7662. {
  7663. "name": "symfony/property-access",
  7664. "version": "v5.2.4",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/symfony/property-access.git",
  7668. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  7673. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  7674. "shasum": "",
  7675. "mirrors": [
  7676. {
  7677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7678. "preferred": true
  7679. }
  7680. ]
  7681. },
  7682. "require": {
  7683. "php": ">=7.2.5",
  7684. "symfony/deprecation-contracts": "^2.1",
  7685. "symfony/polyfill-php80": "^1.15",
  7686. "symfony/property-info": "^5.2"
  7687. },
  7688. "require-dev": {
  7689. "symfony/cache": "^4.4|^5.0"
  7690. },
  7691. "suggest": {
  7692. "psr/cache-implementation": "To cache access methods."
  7693. },
  7694. "type": "library",
  7695. "autoload": {
  7696. "psr-4": {
  7697. "Symfony\\Component\\PropertyAccess\\": ""
  7698. },
  7699. "exclude-from-classmap": [
  7700. "/Tests/"
  7701. ]
  7702. },
  7703. "notification-url": "https://packagist.org/downloads/",
  7704. "license": [
  7705. "MIT"
  7706. ],
  7707. "authors": [
  7708. {
  7709. "name": "Fabien Potencier",
  7710. "email": "fabien@symfony.com"
  7711. },
  7712. {
  7713. "name": "Symfony Community",
  7714. "homepage": "https://symfony.com/contributors"
  7715. }
  7716. ],
  7717. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  7718. "homepage": "https://symfony.com",
  7719. "keywords": [
  7720. "access",
  7721. "array",
  7722. "extraction",
  7723. "index",
  7724. "injection",
  7725. "object",
  7726. "property",
  7727. "property path",
  7728. "reflection"
  7729. ],
  7730. "funding": [
  7731. {
  7732. "url": "https://symfony.com/sponsor",
  7733. "type": "custom"
  7734. },
  7735. {
  7736. "url": "https://github.com/fabpot",
  7737. "type": "github"
  7738. },
  7739. {
  7740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7741. "type": "tidelift"
  7742. }
  7743. ],
  7744. "time": "2021-01-27T10:15:41+00:00"
  7745. },
  7746. {
  7747. "name": "symfony/property-info",
  7748. "version": "v5.2.4",
  7749. "source": {
  7750. "type": "git",
  7751. "url": "https://github.com/symfony/property-info.git",
  7752. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  7753. },
  7754. "dist": {
  7755. "type": "zip",
  7756. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  7757. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  7758. "shasum": "",
  7759. "mirrors": [
  7760. {
  7761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7762. "preferred": true
  7763. }
  7764. ]
  7765. },
  7766. "require": {
  7767. "php": ">=7.2.5",
  7768. "symfony/deprecation-contracts": "^2.1",
  7769. "symfony/polyfill-php80": "^1.15",
  7770. "symfony/string": "^5.1"
  7771. },
  7772. "conflict": {
  7773. "phpdocumentor/reflection-docblock": "<3.2.2",
  7774. "phpdocumentor/type-resolver": "<1.4.0",
  7775. "symfony/dependency-injection": "<4.4"
  7776. },
  7777. "require-dev": {
  7778. "doctrine/annotations": "^1.10.4",
  7779. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7780. "symfony/cache": "^4.4|^5.0",
  7781. "symfony/dependency-injection": "^4.4|^5.0",
  7782. "symfony/serializer": "^4.4|^5.0"
  7783. },
  7784. "suggest": {
  7785. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  7786. "psr/cache-implementation": "To cache results",
  7787. "symfony/doctrine-bridge": "To use Doctrine metadata",
  7788. "symfony/serializer": "To use Serializer metadata"
  7789. },
  7790. "type": "library",
  7791. "autoload": {
  7792. "psr-4": {
  7793. "Symfony\\Component\\PropertyInfo\\": ""
  7794. },
  7795. "exclude-from-classmap": [
  7796. "/Tests/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "MIT"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Kévin Dunglas",
  7806. "email": "dunglas@gmail.com"
  7807. },
  7808. {
  7809. "name": "Symfony Community",
  7810. "homepage": "https://symfony.com/contributors"
  7811. }
  7812. ],
  7813. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7814. "homepage": "https://symfony.com",
  7815. "keywords": [
  7816. "doctrine",
  7817. "phpdoc",
  7818. "property",
  7819. "symfony",
  7820. "type",
  7821. "validator"
  7822. ],
  7823. "funding": [
  7824. {
  7825. "url": "https://symfony.com/sponsor",
  7826. "type": "custom"
  7827. },
  7828. {
  7829. "url": "https://github.com/fabpot",
  7830. "type": "github"
  7831. },
  7832. {
  7833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7834. "type": "tidelift"
  7835. }
  7836. ],
  7837. "time": "2021-02-17T15:24:54+00:00"
  7838. },
  7839. {
  7840. "name": "symfony/psr-http-message-bridge",
  7841. "version": "v2.1.0",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7845. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7850. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7851. "shasum": "",
  7852. "mirrors": [
  7853. {
  7854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7855. "preferred": true
  7856. }
  7857. ]
  7858. },
  7859. "require": {
  7860. "php": ">=7.1",
  7861. "psr/http-message": "^1.0",
  7862. "symfony/http-foundation": "^4.4 || ^5.0"
  7863. },
  7864. "require-dev": {
  7865. "nyholm/psr7": "^1.1",
  7866. "psr/log": "^1.1",
  7867. "symfony/browser-kit": "^4.4 || ^5.0",
  7868. "symfony/config": "^4.4 || ^5.0",
  7869. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7870. "symfony/framework-bundle": "^4.4 || ^5.0",
  7871. "symfony/http-kernel": "^4.4 || ^5.0",
  7872. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  7873. },
  7874. "suggest": {
  7875. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7876. },
  7877. "type": "symfony-bridge",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-main": "2.1-dev"
  7881. }
  7882. },
  7883. "autoload": {
  7884. "psr-4": {
  7885. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7886. },
  7887. "exclude-from-classmap": [
  7888. "/Tests/"
  7889. ]
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Fabien Potencier",
  7898. "email": "fabien@symfony.com"
  7899. },
  7900. {
  7901. "name": "Symfony Community",
  7902. "homepage": "http://symfony.com/contributors"
  7903. }
  7904. ],
  7905. "description": "PSR HTTP message bridge",
  7906. "homepage": "http://symfony.com",
  7907. "keywords": [
  7908. "http",
  7909. "http-message",
  7910. "psr-17",
  7911. "psr-7"
  7912. ],
  7913. "funding": [
  7914. {
  7915. "url": "https://symfony.com/sponsor",
  7916. "type": "custom"
  7917. },
  7918. {
  7919. "url": "https://github.com/fabpot",
  7920. "type": "github"
  7921. },
  7922. {
  7923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7924. "type": "tidelift"
  7925. }
  7926. ],
  7927. "time": "2021-02-17T10:35:25+00:00"
  7928. },
  7929. {
  7930. "name": "symfony/routing",
  7931. "version": "v4.4.20",
  7932. "source": {
  7933. "type": "git",
  7934. "url": "https://github.com/symfony/routing.git",
  7935. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df"
  7936. },
  7937. "dist": {
  7938. "type": "zip",
  7939. "url": "https://api.github.com/repos/symfony/routing/zipball/69919991c845b34626664ddc9b3aef9d09d2a5df",
  7940. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df",
  7941. "shasum": "",
  7942. "mirrors": [
  7943. {
  7944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7945. "preferred": true
  7946. }
  7947. ]
  7948. },
  7949. "require": {
  7950. "php": ">=7.1.3"
  7951. },
  7952. "conflict": {
  7953. "symfony/config": "<4.2",
  7954. "symfony/dependency-injection": "<3.4",
  7955. "symfony/yaml": "<3.4"
  7956. },
  7957. "require-dev": {
  7958. "doctrine/annotations": "^1.10.4",
  7959. "psr/log": "~1.0",
  7960. "symfony/config": "^4.2|^5.0",
  7961. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7962. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7963. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  7964. "symfony/yaml": "^3.4|^4.0|^5.0"
  7965. },
  7966. "suggest": {
  7967. "doctrine/annotations": "For using the annotation loader",
  7968. "symfony/config": "For using the all-in-one router or any loader",
  7969. "symfony/expression-language": "For using expression matching",
  7970. "symfony/http-foundation": "For using a Symfony Request object",
  7971. "symfony/yaml": "For using the YAML loader"
  7972. },
  7973. "type": "library",
  7974. "autoload": {
  7975. "psr-4": {
  7976. "Symfony\\Component\\Routing\\": ""
  7977. },
  7978. "exclude-from-classmap": [
  7979. "/Tests/"
  7980. ]
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Fabien Potencier",
  7989. "email": "fabien@symfony.com"
  7990. },
  7991. {
  7992. "name": "Symfony Community",
  7993. "homepage": "https://symfony.com/contributors"
  7994. }
  7995. ],
  7996. "description": "Maps an HTTP request to a set of configuration variables",
  7997. "homepage": "https://symfony.com",
  7998. "keywords": [
  7999. "router",
  8000. "routing",
  8001. "uri",
  8002. "url"
  8003. ],
  8004. "funding": [
  8005. {
  8006. "url": "https://symfony.com/sponsor",
  8007. "type": "custom"
  8008. },
  8009. {
  8010. "url": "https://github.com/fabpot",
  8011. "type": "github"
  8012. },
  8013. {
  8014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8015. "type": "tidelift"
  8016. }
  8017. ],
  8018. "time": "2021-02-22T15:37:04+00:00"
  8019. },
  8020. {
  8021. "name": "symfony/service-contracts",
  8022. "version": "v2.2.0",
  8023. "source": {
  8024. "type": "git",
  8025. "url": "https://github.com/symfony/service-contracts.git",
  8026. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  8027. },
  8028. "dist": {
  8029. "type": "zip",
  8030. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  8031. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  8032. "shasum": "",
  8033. "mirrors": [
  8034. {
  8035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8036. "preferred": true
  8037. }
  8038. ]
  8039. },
  8040. "require": {
  8041. "php": ">=7.2.5",
  8042. "psr/container": "^1.0"
  8043. },
  8044. "suggest": {
  8045. "symfony/service-implementation": ""
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "branch-alias": {
  8050. "dev-master": "2.2-dev"
  8051. },
  8052. "thanks": {
  8053. "name": "symfony/contracts",
  8054. "url": "https://github.com/symfony/contracts"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "psr-4": {
  8059. "Symfony\\Contracts\\Service\\": ""
  8060. }
  8061. },
  8062. "notification-url": "https://packagist.org/downloads/",
  8063. "license": [
  8064. "MIT"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Nicolas Grekas",
  8069. "email": "p@tchwork.com"
  8070. },
  8071. {
  8072. "name": "Symfony Community",
  8073. "homepage": "https://symfony.com/contributors"
  8074. }
  8075. ],
  8076. "description": "Generic abstractions related to writing services",
  8077. "homepage": "https://symfony.com",
  8078. "keywords": [
  8079. "abstractions",
  8080. "contracts",
  8081. "decoupling",
  8082. "interfaces",
  8083. "interoperability",
  8084. "standards"
  8085. ],
  8086. "funding": [
  8087. {
  8088. "url": "https://symfony.com/sponsor",
  8089. "type": "custom"
  8090. },
  8091. {
  8092. "url": "https://github.com/fabpot",
  8093. "type": "github"
  8094. },
  8095. {
  8096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8097. "type": "tidelift"
  8098. }
  8099. ],
  8100. "time": "2020-09-07T11:33:47+00:00"
  8101. },
  8102. {
  8103. "name": "symfony/string",
  8104. "version": "v5.2.4",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/symfony/string.git",
  8108. "reference": "4e78d7d47061fa183639927ec40d607973699609"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/symfony/string/zipball/4e78d7d47061fa183639927ec40d607973699609",
  8113. "reference": "4e78d7d47061fa183639927ec40d607973699609",
  8114. "shasum": "",
  8115. "mirrors": [
  8116. {
  8117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8118. "preferred": true
  8119. }
  8120. ]
  8121. },
  8122. "require": {
  8123. "php": ">=7.2.5",
  8124. "symfony/polyfill-ctype": "~1.8",
  8125. "symfony/polyfill-intl-grapheme": "~1.0",
  8126. "symfony/polyfill-intl-normalizer": "~1.0",
  8127. "symfony/polyfill-mbstring": "~1.0",
  8128. "symfony/polyfill-php80": "~1.15"
  8129. },
  8130. "require-dev": {
  8131. "symfony/error-handler": "^4.4|^5.0",
  8132. "symfony/http-client": "^4.4|^5.0",
  8133. "symfony/translation-contracts": "^1.1|^2",
  8134. "symfony/var-exporter": "^4.4|^5.0"
  8135. },
  8136. "type": "library",
  8137. "autoload": {
  8138. "psr-4": {
  8139. "Symfony\\Component\\String\\": ""
  8140. },
  8141. "files": [
  8142. "Resources/functions.php"
  8143. ],
  8144. "exclude-from-classmap": [
  8145. "/Tests/"
  8146. ]
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Nicolas Grekas",
  8155. "email": "p@tchwork.com"
  8156. },
  8157. {
  8158. "name": "Symfony Community",
  8159. "homepage": "https://symfony.com/contributors"
  8160. }
  8161. ],
  8162. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8163. "homepage": "https://symfony.com",
  8164. "keywords": [
  8165. "grapheme",
  8166. "i18n",
  8167. "string",
  8168. "unicode",
  8169. "utf-8",
  8170. "utf8"
  8171. ],
  8172. "funding": [
  8173. {
  8174. "url": "https://symfony.com/sponsor",
  8175. "type": "custom"
  8176. },
  8177. {
  8178. "url": "https://github.com/fabpot",
  8179. "type": "github"
  8180. },
  8181. {
  8182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8183. "type": "tidelift"
  8184. }
  8185. ],
  8186. "time": "2021-02-16T10:20:28+00:00"
  8187. },
  8188. {
  8189. "name": "symfony/translation",
  8190. "version": "v4.4.20",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/symfony/translation.git",
  8194. "reference": "2271b6d577018a7dea75a9162a08ac84f8234deb"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/symfony/translation/zipball/2271b6d577018a7dea75a9162a08ac84f8234deb",
  8199. "reference": "2271b6d577018a7dea75a9162a08ac84f8234deb",
  8200. "shasum": "",
  8201. "mirrors": [
  8202. {
  8203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8204. "preferred": true
  8205. }
  8206. ]
  8207. },
  8208. "require": {
  8209. "php": ">=7.1.3",
  8210. "symfony/polyfill-mbstring": "~1.0",
  8211. "symfony/translation-contracts": "^1.1.6|^2"
  8212. },
  8213. "conflict": {
  8214. "symfony/config": "<3.4",
  8215. "symfony/dependency-injection": "<3.4",
  8216. "symfony/http-kernel": "<4.4",
  8217. "symfony/yaml": "<3.4"
  8218. },
  8219. "provide": {
  8220. "symfony/translation-implementation": "1.0|2.0"
  8221. },
  8222. "require-dev": {
  8223. "psr/log": "~1.0",
  8224. "symfony/config": "^3.4|^4.0|^5.0",
  8225. "symfony/console": "^3.4|^4.0|^5.0",
  8226. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8227. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  8228. "symfony/http-kernel": "^4.4",
  8229. "symfony/intl": "^3.4|^4.0|^5.0",
  8230. "symfony/service-contracts": "^1.1.2|^2",
  8231. "symfony/yaml": "^3.4|^4.0|^5.0"
  8232. },
  8233. "suggest": {
  8234. "psr/log-implementation": "To use logging capability in translator",
  8235. "symfony/config": "",
  8236. "symfony/yaml": ""
  8237. },
  8238. "type": "library",
  8239. "autoload": {
  8240. "psr-4": {
  8241. "Symfony\\Component\\Translation\\": ""
  8242. },
  8243. "exclude-from-classmap": [
  8244. "/Tests/"
  8245. ]
  8246. },
  8247. "notification-url": "https://packagist.org/downloads/",
  8248. "license": [
  8249. "MIT"
  8250. ],
  8251. "authors": [
  8252. {
  8253. "name": "Fabien Potencier",
  8254. "email": "fabien@symfony.com"
  8255. },
  8256. {
  8257. "name": "Symfony Community",
  8258. "homepage": "https://symfony.com/contributors"
  8259. }
  8260. ],
  8261. "description": "Provides tools to internationalize your application",
  8262. "homepage": "https://symfony.com",
  8263. "funding": [
  8264. {
  8265. "url": "https://symfony.com/sponsor",
  8266. "type": "custom"
  8267. },
  8268. {
  8269. "url": "https://github.com/fabpot",
  8270. "type": "github"
  8271. },
  8272. {
  8273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8274. "type": "tidelift"
  8275. }
  8276. ],
  8277. "time": "2021-02-26T13:53:48+00:00"
  8278. },
  8279. {
  8280. "name": "symfony/translation-contracts",
  8281. "version": "v2.3.0",
  8282. "source": {
  8283. "type": "git",
  8284. "url": "https://github.com/symfony/translation-contracts.git",
  8285. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  8286. },
  8287. "dist": {
  8288. "type": "zip",
  8289. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  8290. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  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. "php": ">=7.2.5"
  8301. },
  8302. "suggest": {
  8303. "symfony/translation-implementation": ""
  8304. },
  8305. "type": "library",
  8306. "extra": {
  8307. "branch-alias": {
  8308. "dev-master": "2.3-dev"
  8309. },
  8310. "thanks": {
  8311. "name": "symfony/contracts",
  8312. "url": "https://github.com/symfony/contracts"
  8313. }
  8314. },
  8315. "autoload": {
  8316. "psr-4": {
  8317. "Symfony\\Contracts\\Translation\\": ""
  8318. }
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "MIT"
  8323. ],
  8324. "authors": [
  8325. {
  8326. "name": "Nicolas Grekas",
  8327. "email": "p@tchwork.com"
  8328. },
  8329. {
  8330. "name": "Symfony Community",
  8331. "homepage": "https://symfony.com/contributors"
  8332. }
  8333. ],
  8334. "description": "Generic abstractions related to translation",
  8335. "homepage": "https://symfony.com",
  8336. "keywords": [
  8337. "abstractions",
  8338. "contracts",
  8339. "decoupling",
  8340. "interfaces",
  8341. "interoperability",
  8342. "standards"
  8343. ],
  8344. "funding": [
  8345. {
  8346. "url": "https://symfony.com/sponsor",
  8347. "type": "custom"
  8348. },
  8349. {
  8350. "url": "https://github.com/fabpot",
  8351. "type": "github"
  8352. },
  8353. {
  8354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8355. "type": "tidelift"
  8356. }
  8357. ],
  8358. "time": "2020-09-28T13:05:58+00:00"
  8359. },
  8360. {
  8361. "name": "symfony/var-dumper",
  8362. "version": "v4.4.20",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/symfony/var-dumper.git",
  8366. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  8371. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  8372. "shasum": "",
  8373. "mirrors": [
  8374. {
  8375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8376. "preferred": true
  8377. }
  8378. ]
  8379. },
  8380. "require": {
  8381. "php": ">=7.1.3",
  8382. "symfony/polyfill-mbstring": "~1.0",
  8383. "symfony/polyfill-php72": "~1.5",
  8384. "symfony/polyfill-php80": "^1.15"
  8385. },
  8386. "conflict": {
  8387. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8388. "symfony/console": "<3.4"
  8389. },
  8390. "require-dev": {
  8391. "ext-iconv": "*",
  8392. "symfony/console": "^3.4|^4.0|^5.0",
  8393. "symfony/process": "^4.4|^5.0",
  8394. "twig/twig": "^1.43|^2.13|^3.0.4"
  8395. },
  8396. "suggest": {
  8397. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8398. "ext-intl": "To show region name in time zone dump",
  8399. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8400. },
  8401. "bin": [
  8402. "Resources/bin/var-dump-server"
  8403. ],
  8404. "type": "library",
  8405. "autoload": {
  8406. "files": [
  8407. "Resources/functions/dump.php"
  8408. ],
  8409. "psr-4": {
  8410. "Symfony\\Component\\VarDumper\\": ""
  8411. },
  8412. "exclude-from-classmap": [
  8413. "/Tests/"
  8414. ]
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Nicolas Grekas",
  8423. "email": "p@tchwork.com"
  8424. },
  8425. {
  8426. "name": "Symfony Community",
  8427. "homepage": "https://symfony.com/contributors"
  8428. }
  8429. ],
  8430. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8431. "homepage": "https://symfony.com",
  8432. "keywords": [
  8433. "debug",
  8434. "dump"
  8435. ],
  8436. "funding": [
  8437. {
  8438. "url": "https://symfony.com/sponsor",
  8439. "type": "custom"
  8440. },
  8441. {
  8442. "url": "https://github.com/fabpot",
  8443. "type": "github"
  8444. },
  8445. {
  8446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8447. "type": "tidelift"
  8448. }
  8449. ],
  8450. "time": "2021-01-27T09:09:26+00:00"
  8451. },
  8452. {
  8453. "name": "symfony/var-exporter",
  8454. "version": "v5.2.4",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/symfony/var-exporter.git",
  8458. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8463. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8464. "shasum": "",
  8465. "mirrors": [
  8466. {
  8467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8468. "preferred": true
  8469. }
  8470. ]
  8471. },
  8472. "require": {
  8473. "php": ">=7.2.5",
  8474. "symfony/polyfill-php80": "^1.15"
  8475. },
  8476. "require-dev": {
  8477. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8478. },
  8479. "type": "library",
  8480. "autoload": {
  8481. "psr-4": {
  8482. "Symfony\\Component\\VarExporter\\": ""
  8483. },
  8484. "exclude-from-classmap": [
  8485. "/Tests/"
  8486. ]
  8487. },
  8488. "notification-url": "https://packagist.org/downloads/",
  8489. "license": [
  8490. "MIT"
  8491. ],
  8492. "authors": [
  8493. {
  8494. "name": "Nicolas Grekas",
  8495. "email": "p@tchwork.com"
  8496. },
  8497. {
  8498. "name": "Symfony Community",
  8499. "homepage": "https://symfony.com/contributors"
  8500. }
  8501. ],
  8502. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8503. "homepage": "https://symfony.com",
  8504. "keywords": [
  8505. "clone",
  8506. "construct",
  8507. "export",
  8508. "hydrate",
  8509. "instantiate",
  8510. "serialize"
  8511. ],
  8512. "funding": [
  8513. {
  8514. "url": "https://symfony.com/sponsor",
  8515. "type": "custom"
  8516. },
  8517. {
  8518. "url": "https://github.com/fabpot",
  8519. "type": "github"
  8520. },
  8521. {
  8522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8523. "type": "tidelift"
  8524. }
  8525. ],
  8526. "time": "2021-01-27T10:01:46+00:00"
  8527. },
  8528. {
  8529. "name": "tencentcloud/tencentcloud-sdk-php",
  8530. "version": "3.0.344",
  8531. "source": {
  8532. "type": "git",
  8533. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  8534. "reference": "4fe63fd9babb785c25addaadc32ad9935b458600"
  8535. },
  8536. "dist": {
  8537. "type": "zip",
  8538. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/4fe63fd9babb785c25addaadc32ad9935b458600",
  8539. "reference": "4fe63fd9babb785c25addaadc32ad9935b458600",
  8540. "shasum": "",
  8541. "mirrors": [
  8542. {
  8543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8544. "preferred": true
  8545. }
  8546. ]
  8547. },
  8548. "require": {
  8549. "guzzlehttp/guzzle": "^6.3 || ^7.0.1",
  8550. "guzzlehttp/psr7": "^1.4",
  8551. "php": ">=5.6.0"
  8552. },
  8553. "type": "library",
  8554. "autoload": {
  8555. "classmap": [
  8556. "src/QcloudApi/QcloudApi.php"
  8557. ],
  8558. "psr-4": {
  8559. "TencentCloud\\": "./src/TencentCloud"
  8560. }
  8561. },
  8562. "notification-url": "https://packagist.org/downloads/",
  8563. "license": [
  8564. "Apache-2.0"
  8565. ],
  8566. "authors": [
  8567. {
  8568. "name": "coolli",
  8569. "email": "tencentcloudapi@tencent.com",
  8570. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  8571. "role": "Developer"
  8572. }
  8573. ],
  8574. "description": "TencentCloudApi php sdk",
  8575. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  8576. "time": "2021-03-08T01:12:17+00:00"
  8577. },
  8578. {
  8579. "name": "tymon/jwt-auth",
  8580. "version": "1.0.0-rc.5",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8584. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  8589. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  8590. "shasum": "",
  8591. "mirrors": [
  8592. {
  8593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8594. "preferred": true
  8595. }
  8596. ]
  8597. },
  8598. "require": {
  8599. "illuminate/auth": "^5.1|^6",
  8600. "illuminate/contracts": "^5.1|^6",
  8601. "illuminate/http": "^5.1|^6",
  8602. "illuminate/support": "^5.1|^6",
  8603. "lcobucci/jwt": "^3.2",
  8604. "namshi/jose": "^7.0",
  8605. "nesbot/carbon": "^1.0|^2.0",
  8606. "php": "^5.5.9|^7.0"
  8607. },
  8608. "require-dev": {
  8609. "cartalyst/sentinel": "^2|^3",
  8610. "illuminate/console": "^5.1|^6",
  8611. "illuminate/database": "^5.1|^6",
  8612. "illuminate/routing": "^5.1|^6",
  8613. "mockery/mockery": ">=0.9.9",
  8614. "phpunit/phpunit": "~4.8|~6.0"
  8615. },
  8616. "type": "library",
  8617. "extra": {
  8618. "branch-alias": {
  8619. "dev-develop": "1.0-dev"
  8620. },
  8621. "laravel": {
  8622. "aliases": {
  8623. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8624. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8625. },
  8626. "providers": [
  8627. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8628. ]
  8629. }
  8630. },
  8631. "autoload": {
  8632. "psr-4": {
  8633. "Tymon\\JWTAuth\\": "src/"
  8634. }
  8635. },
  8636. "notification-url": "https://packagist.org/downloads/",
  8637. "license": [
  8638. "MIT"
  8639. ],
  8640. "authors": [
  8641. {
  8642. "name": "Sean Tymon",
  8643. "email": "tymon148@gmail.com",
  8644. "homepage": "https://tymon.xyz",
  8645. "role": "Developer"
  8646. }
  8647. ],
  8648. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8649. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8650. "keywords": [
  8651. "Authentication",
  8652. "JSON Web Token",
  8653. "auth",
  8654. "jwt",
  8655. "laravel"
  8656. ],
  8657. "time": "2019-09-09T03:33:47+00:00"
  8658. },
  8659. {
  8660. "name": "vlucas/phpdotenv",
  8661. "version": "v3.6.8",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/vlucas/phpdotenv.git",
  8665. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5e679f7616db829358341e2d5cccbd18773bdab8",
  8670. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8",
  8671. "shasum": "",
  8672. "mirrors": [
  8673. {
  8674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8675. "preferred": true
  8676. }
  8677. ]
  8678. },
  8679. "require": {
  8680. "php": "^5.4 || ^7.0 || ^8.0",
  8681. "phpoption/phpoption": "^1.5.2",
  8682. "symfony/polyfill-ctype": "^1.17"
  8683. },
  8684. "require-dev": {
  8685. "ext-filter": "*",
  8686. "ext-pcre": "*",
  8687. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  8688. },
  8689. "suggest": {
  8690. "ext-filter": "Required to use the boolean validator.",
  8691. "ext-pcre": "Required to use most of the library."
  8692. },
  8693. "type": "library",
  8694. "extra": {
  8695. "branch-alias": {
  8696. "dev-master": "3.6-dev"
  8697. }
  8698. },
  8699. "autoload": {
  8700. "psr-4": {
  8701. "Dotenv\\": "src/"
  8702. }
  8703. },
  8704. "notification-url": "https://packagist.org/downloads/",
  8705. "license": [
  8706. "BSD-3-Clause"
  8707. ],
  8708. "authors": [
  8709. {
  8710. "name": "Graham Campbell",
  8711. "email": "graham@alt-three.com",
  8712. "homepage": "https://gjcampbell.co.uk/"
  8713. },
  8714. {
  8715. "name": "Vance Lucas",
  8716. "email": "vance@vancelucas.com",
  8717. "homepage": "https://vancelucas.com/"
  8718. }
  8719. ],
  8720. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8721. "keywords": [
  8722. "dotenv",
  8723. "env",
  8724. "environment"
  8725. ],
  8726. "funding": [
  8727. {
  8728. "url": "https://github.com/GrahamCampbell",
  8729. "type": "github"
  8730. },
  8731. {
  8732. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8733. "type": "tidelift"
  8734. }
  8735. ],
  8736. "time": "2021-01-20T14:39:46+00:00"
  8737. },
  8738. {
  8739. "name": "webmozart/assert",
  8740. "version": "1.9.1",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/webmozarts/assert.git",
  8744. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8749. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8750. "shasum": "",
  8751. "mirrors": [
  8752. {
  8753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8754. "preferred": true
  8755. }
  8756. ]
  8757. },
  8758. "require": {
  8759. "php": "^5.3.3 || ^7.0 || ^8.0",
  8760. "symfony/polyfill-ctype": "^1.8"
  8761. },
  8762. "conflict": {
  8763. "phpstan/phpstan": "<0.12.20",
  8764. "vimeo/psalm": "<3.9.1"
  8765. },
  8766. "require-dev": {
  8767. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8768. },
  8769. "type": "library",
  8770. "autoload": {
  8771. "psr-4": {
  8772. "Webmozart\\Assert\\": "src/"
  8773. }
  8774. },
  8775. "notification-url": "https://packagist.org/downloads/",
  8776. "license": [
  8777. "MIT"
  8778. ],
  8779. "authors": [
  8780. {
  8781. "name": "Bernhard Schussek",
  8782. "email": "bschussek@gmail.com"
  8783. }
  8784. ],
  8785. "description": "Assertions to validate method input/output with nice error messages.",
  8786. "keywords": [
  8787. "assert",
  8788. "check",
  8789. "validate"
  8790. ],
  8791. "time": "2020-07-08T17:02:28+00:00"
  8792. }
  8793. ],
  8794. "packages-dev": [
  8795. {
  8796. "name": "doctrine/instantiator",
  8797. "version": "1.4.0",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/doctrine/instantiator.git",
  8801. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8806. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8807. "shasum": "",
  8808. "mirrors": [
  8809. {
  8810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8811. "preferred": true
  8812. }
  8813. ]
  8814. },
  8815. "require": {
  8816. "php": "^7.1 || ^8.0"
  8817. },
  8818. "require-dev": {
  8819. "doctrine/coding-standard": "^8.0",
  8820. "ext-pdo": "*",
  8821. "ext-phar": "*",
  8822. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8823. "phpstan/phpstan": "^0.12",
  8824. "phpstan/phpstan-phpunit": "^0.12",
  8825. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8826. },
  8827. "type": "library",
  8828. "autoload": {
  8829. "psr-4": {
  8830. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8831. }
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "MIT"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Marco Pivetta",
  8840. "email": "ocramius@gmail.com",
  8841. "homepage": "https://ocramius.github.io/"
  8842. }
  8843. ],
  8844. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8845. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8846. "keywords": [
  8847. "constructor",
  8848. "instantiate"
  8849. ],
  8850. "funding": [
  8851. {
  8852. "url": "https://www.doctrine-project.org/sponsorship.html",
  8853. "type": "custom"
  8854. },
  8855. {
  8856. "url": "https://www.patreon.com/phpdoctrine",
  8857. "type": "patreon"
  8858. },
  8859. {
  8860. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8861. "type": "tidelift"
  8862. }
  8863. ],
  8864. "time": "2020-11-10T18:47:58+00:00"
  8865. },
  8866. {
  8867. "name": "fzaninotto/faker",
  8868. "version": "v1.9.2",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/fzaninotto/Faker.git",
  8872. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8877. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8878. "shasum": "",
  8879. "mirrors": [
  8880. {
  8881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8882. "preferred": true
  8883. }
  8884. ]
  8885. },
  8886. "require": {
  8887. "php": "^5.3.3 || ^7.0"
  8888. },
  8889. "require-dev": {
  8890. "ext-intl": "*",
  8891. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8892. "squizlabs/php_codesniffer": "^2.9.2"
  8893. },
  8894. "type": "library",
  8895. "extra": {
  8896. "branch-alias": {
  8897. "dev-master": "1.9-dev"
  8898. }
  8899. },
  8900. "autoload": {
  8901. "psr-4": {
  8902. "Faker\\": "src/Faker/"
  8903. }
  8904. },
  8905. "notification-url": "https://packagist.org/downloads/",
  8906. "license": [
  8907. "MIT"
  8908. ],
  8909. "authors": [
  8910. {
  8911. "name": "François Zaninotto"
  8912. }
  8913. ],
  8914. "description": "Faker is a PHP library that generates fake data for you.",
  8915. "keywords": [
  8916. "data",
  8917. "faker",
  8918. "fixtures"
  8919. ],
  8920. "abandoned": true,
  8921. "time": "2020-12-11T09:56:16+00:00"
  8922. },
  8923. {
  8924. "name": "hamcrest/hamcrest-php",
  8925. "version": "v2.0.1",
  8926. "source": {
  8927. "type": "git",
  8928. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8929. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8930. },
  8931. "dist": {
  8932. "type": "zip",
  8933. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8934. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8935. "shasum": "",
  8936. "mirrors": [
  8937. {
  8938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8939. "preferred": true
  8940. }
  8941. ]
  8942. },
  8943. "require": {
  8944. "php": "^5.3|^7.0|^8.0"
  8945. },
  8946. "replace": {
  8947. "cordoval/hamcrest-php": "*",
  8948. "davedevelopment/hamcrest-php": "*",
  8949. "kodova/hamcrest-php": "*"
  8950. },
  8951. "require-dev": {
  8952. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8953. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8954. },
  8955. "type": "library",
  8956. "extra": {
  8957. "branch-alias": {
  8958. "dev-master": "2.1-dev"
  8959. }
  8960. },
  8961. "autoload": {
  8962. "classmap": [
  8963. "hamcrest"
  8964. ]
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "BSD-3-Clause"
  8969. ],
  8970. "description": "This is the PHP port of Hamcrest Matchers",
  8971. "keywords": [
  8972. "test"
  8973. ],
  8974. "time": "2020-07-09T08:09:16+00:00"
  8975. },
  8976. {
  8977. "name": "mockery/mockery",
  8978. "version": "1.4.3",
  8979. "source": {
  8980. "type": "git",
  8981. "url": "https://github.com/mockery/mockery.git",
  8982. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8983. },
  8984. "dist": {
  8985. "type": "zip",
  8986. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8987. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8988. "shasum": "",
  8989. "mirrors": [
  8990. {
  8991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8992. "preferred": true
  8993. }
  8994. ]
  8995. },
  8996. "require": {
  8997. "hamcrest/hamcrest-php": "^2.0.1",
  8998. "lib-pcre": ">=7.0",
  8999. "php": "^7.3 || ^8.0"
  9000. },
  9001. "conflict": {
  9002. "phpunit/phpunit": "<8.0"
  9003. },
  9004. "require-dev": {
  9005. "phpunit/phpunit": "^8.5 || ^9.3"
  9006. },
  9007. "type": "library",
  9008. "extra": {
  9009. "branch-alias": {
  9010. "dev-master": "1.4.x-dev"
  9011. }
  9012. },
  9013. "autoload": {
  9014. "psr-0": {
  9015. "Mockery": "library/"
  9016. }
  9017. },
  9018. "notification-url": "https://packagist.org/downloads/",
  9019. "license": [
  9020. "BSD-3-Clause"
  9021. ],
  9022. "authors": [
  9023. {
  9024. "name": "Pádraic Brady",
  9025. "email": "padraic.brady@gmail.com",
  9026. "homepage": "http://blog.astrumfutura.com"
  9027. },
  9028. {
  9029. "name": "Dave Marshall",
  9030. "email": "dave.marshall@atstsolutions.co.uk",
  9031. "homepage": "http://davedevelopment.co.uk"
  9032. }
  9033. ],
  9034. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9035. "homepage": "https://github.com/mockery/mockery",
  9036. "keywords": [
  9037. "BDD",
  9038. "TDD",
  9039. "library",
  9040. "mock",
  9041. "mock objects",
  9042. "mockery",
  9043. "stub",
  9044. "test",
  9045. "test double",
  9046. "testing"
  9047. ],
  9048. "time": "2021-02-24T09:51:49+00:00"
  9049. },
  9050. {
  9051. "name": "myclabs/deep-copy",
  9052. "version": "1.10.2",
  9053. "source": {
  9054. "type": "git",
  9055. "url": "https://github.com/myclabs/DeepCopy.git",
  9056. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9057. },
  9058. "dist": {
  9059. "type": "zip",
  9060. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9061. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9062. "shasum": "",
  9063. "mirrors": [
  9064. {
  9065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9066. "preferred": true
  9067. }
  9068. ]
  9069. },
  9070. "require": {
  9071. "php": "^7.1 || ^8.0"
  9072. },
  9073. "replace": {
  9074. "myclabs/deep-copy": "self.version"
  9075. },
  9076. "require-dev": {
  9077. "doctrine/collections": "^1.0",
  9078. "doctrine/common": "^2.6",
  9079. "phpunit/phpunit": "^7.1"
  9080. },
  9081. "type": "library",
  9082. "autoload": {
  9083. "psr-4": {
  9084. "DeepCopy\\": "src/DeepCopy/"
  9085. },
  9086. "files": [
  9087. "src/DeepCopy/deep_copy.php"
  9088. ]
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "MIT"
  9093. ],
  9094. "description": "Create deep copies (clones) of your objects",
  9095. "keywords": [
  9096. "clone",
  9097. "copy",
  9098. "duplicate",
  9099. "object",
  9100. "object graph"
  9101. ],
  9102. "funding": [
  9103. {
  9104. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9105. "type": "tidelift"
  9106. }
  9107. ],
  9108. "time": "2020-11-13T09:40:50+00:00"
  9109. },
  9110. {
  9111. "name": "phar-io/manifest",
  9112. "version": "2.0.1",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/phar-io/manifest.git",
  9116. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9121. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9122. "shasum": "",
  9123. "mirrors": [
  9124. {
  9125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9126. "preferred": true
  9127. }
  9128. ]
  9129. },
  9130. "require": {
  9131. "ext-dom": "*",
  9132. "ext-phar": "*",
  9133. "ext-xmlwriter": "*",
  9134. "phar-io/version": "^3.0.1",
  9135. "php": "^7.2 || ^8.0"
  9136. },
  9137. "type": "library",
  9138. "extra": {
  9139. "branch-alias": {
  9140. "dev-master": "2.0.x-dev"
  9141. }
  9142. },
  9143. "autoload": {
  9144. "classmap": [
  9145. "src/"
  9146. ]
  9147. },
  9148. "notification-url": "https://packagist.org/downloads/",
  9149. "license": [
  9150. "BSD-3-Clause"
  9151. ],
  9152. "authors": [
  9153. {
  9154. "name": "Arne Blankerts",
  9155. "email": "arne@blankerts.de",
  9156. "role": "Developer"
  9157. },
  9158. {
  9159. "name": "Sebastian Heuer",
  9160. "email": "sebastian@phpeople.de",
  9161. "role": "Developer"
  9162. },
  9163. {
  9164. "name": "Sebastian Bergmann",
  9165. "email": "sebastian@phpunit.de",
  9166. "role": "Developer"
  9167. }
  9168. ],
  9169. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9170. "time": "2020-06-27T14:33:11+00:00"
  9171. },
  9172. {
  9173. "name": "phar-io/version",
  9174. "version": "3.1.0",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/phar-io/version.git",
  9178. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9183. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9184. "shasum": "",
  9185. "mirrors": [
  9186. {
  9187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9188. "preferred": true
  9189. }
  9190. ]
  9191. },
  9192. "require": {
  9193. "php": "^7.2 || ^8.0"
  9194. },
  9195. "type": "library",
  9196. "autoload": {
  9197. "classmap": [
  9198. "src/"
  9199. ]
  9200. },
  9201. "notification-url": "https://packagist.org/downloads/",
  9202. "license": [
  9203. "BSD-3-Clause"
  9204. ],
  9205. "authors": [
  9206. {
  9207. "name": "Arne Blankerts",
  9208. "email": "arne@blankerts.de",
  9209. "role": "Developer"
  9210. },
  9211. {
  9212. "name": "Sebastian Heuer",
  9213. "email": "sebastian@phpeople.de",
  9214. "role": "Developer"
  9215. },
  9216. {
  9217. "name": "Sebastian Bergmann",
  9218. "email": "sebastian@phpunit.de",
  9219. "role": "Developer"
  9220. }
  9221. ],
  9222. "description": "Library for handling version information and constraints",
  9223. "time": "2021-02-23T14:00:09+00:00"
  9224. },
  9225. {
  9226. "name": "phpspec/prophecy",
  9227. "version": "v1.10.3",
  9228. "source": {
  9229. "type": "git",
  9230. "url": "https://github.com/phpspec/prophecy.git",
  9231. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  9232. },
  9233. "dist": {
  9234. "type": "zip",
  9235. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  9236. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  9237. "shasum": "",
  9238. "mirrors": [
  9239. {
  9240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9241. "preferred": true
  9242. }
  9243. ]
  9244. },
  9245. "require": {
  9246. "doctrine/instantiator": "^1.0.2",
  9247. "php": "^5.3|^7.0",
  9248. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  9249. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  9250. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  9251. },
  9252. "require-dev": {
  9253. "phpspec/phpspec": "^2.5 || ^3.2",
  9254. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9255. },
  9256. "type": "library",
  9257. "extra": {
  9258. "branch-alias": {
  9259. "dev-master": "1.10.x-dev"
  9260. }
  9261. },
  9262. "autoload": {
  9263. "psr-4": {
  9264. "Prophecy\\": "src/Prophecy"
  9265. }
  9266. },
  9267. "notification-url": "https://packagist.org/downloads/",
  9268. "license": [
  9269. "MIT"
  9270. ],
  9271. "authors": [
  9272. {
  9273. "name": "Konstantin Kudryashov",
  9274. "email": "ever.zet@gmail.com",
  9275. "homepage": "http://everzet.com"
  9276. },
  9277. {
  9278. "name": "Marcello Duarte",
  9279. "email": "marcello.duarte@gmail.com"
  9280. }
  9281. ],
  9282. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9283. "homepage": "https://github.com/phpspec/prophecy",
  9284. "keywords": [
  9285. "Double",
  9286. "Dummy",
  9287. "fake",
  9288. "mock",
  9289. "spy",
  9290. "stub"
  9291. ],
  9292. "time": "2020-03-05T15:02:03+00:00"
  9293. },
  9294. {
  9295. "name": "phpunit/php-code-coverage",
  9296. "version": "7.0.14",
  9297. "source": {
  9298. "type": "git",
  9299. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9300. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  9301. },
  9302. "dist": {
  9303. "type": "zip",
  9304. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  9305. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  9306. "shasum": "",
  9307. "mirrors": [
  9308. {
  9309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9310. "preferred": true
  9311. }
  9312. ]
  9313. },
  9314. "require": {
  9315. "ext-dom": "*",
  9316. "ext-xmlwriter": "*",
  9317. "php": ">=7.2",
  9318. "phpunit/php-file-iterator": "^2.0.2",
  9319. "phpunit/php-text-template": "^1.2.1",
  9320. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  9321. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9322. "sebastian/environment": "^4.2.2",
  9323. "sebastian/version": "^2.0.1",
  9324. "theseer/tokenizer": "^1.1.3"
  9325. },
  9326. "require-dev": {
  9327. "phpunit/phpunit": "^8.2.2"
  9328. },
  9329. "suggest": {
  9330. "ext-xdebug": "^2.7.2"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "7.0-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "classmap": [
  9340. "src/"
  9341. ]
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Sebastian Bergmann",
  9350. "email": "sebastian@phpunit.de",
  9351. "role": "lead"
  9352. }
  9353. ],
  9354. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9355. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9356. "keywords": [
  9357. "coverage",
  9358. "testing",
  9359. "xunit"
  9360. ],
  9361. "funding": [
  9362. {
  9363. "url": "https://github.com/sebastianbergmann",
  9364. "type": "github"
  9365. }
  9366. ],
  9367. "time": "2020-12-02T13:39:03+00:00"
  9368. },
  9369. {
  9370. "name": "phpunit/php-file-iterator",
  9371. "version": "2.0.3",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9375. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9380. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9381. "shasum": "",
  9382. "mirrors": [
  9383. {
  9384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9385. "preferred": true
  9386. }
  9387. ]
  9388. },
  9389. "require": {
  9390. "php": ">=7.1"
  9391. },
  9392. "require-dev": {
  9393. "phpunit/phpunit": "^8.5"
  9394. },
  9395. "type": "library",
  9396. "extra": {
  9397. "branch-alias": {
  9398. "dev-master": "2.0.x-dev"
  9399. }
  9400. },
  9401. "autoload": {
  9402. "classmap": [
  9403. "src/"
  9404. ]
  9405. },
  9406. "notification-url": "https://packagist.org/downloads/",
  9407. "license": [
  9408. "BSD-3-Clause"
  9409. ],
  9410. "authors": [
  9411. {
  9412. "name": "Sebastian Bergmann",
  9413. "email": "sebastian@phpunit.de",
  9414. "role": "lead"
  9415. }
  9416. ],
  9417. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9418. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9419. "keywords": [
  9420. "filesystem",
  9421. "iterator"
  9422. ],
  9423. "funding": [
  9424. {
  9425. "url": "https://github.com/sebastianbergmann",
  9426. "type": "github"
  9427. }
  9428. ],
  9429. "time": "2020-11-30T08:25:21+00:00"
  9430. },
  9431. {
  9432. "name": "phpunit/php-text-template",
  9433. "version": "1.2.1",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9437. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9442. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9443. "shasum": "",
  9444. "mirrors": [
  9445. {
  9446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9447. "preferred": true
  9448. }
  9449. ]
  9450. },
  9451. "require": {
  9452. "php": ">=5.3.3"
  9453. },
  9454. "type": "library",
  9455. "autoload": {
  9456. "classmap": [
  9457. "src/"
  9458. ]
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "BSD-3-Clause"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Sebastian Bergmann",
  9467. "email": "sebastian@phpunit.de",
  9468. "role": "lead"
  9469. }
  9470. ],
  9471. "description": "Simple template engine.",
  9472. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9473. "keywords": [
  9474. "template"
  9475. ],
  9476. "time": "2015-06-21T13:50:34+00:00"
  9477. },
  9478. {
  9479. "name": "phpunit/php-timer",
  9480. "version": "2.1.3",
  9481. "source": {
  9482. "type": "git",
  9483. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9484. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9485. },
  9486. "dist": {
  9487. "type": "zip",
  9488. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9489. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9490. "shasum": "",
  9491. "mirrors": [
  9492. {
  9493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9494. "preferred": true
  9495. }
  9496. ]
  9497. },
  9498. "require": {
  9499. "php": ">=7.1"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "^8.5"
  9503. },
  9504. "type": "library",
  9505. "extra": {
  9506. "branch-alias": {
  9507. "dev-master": "2.1-dev"
  9508. }
  9509. },
  9510. "autoload": {
  9511. "classmap": [
  9512. "src/"
  9513. ]
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "license": [
  9517. "BSD-3-Clause"
  9518. ],
  9519. "authors": [
  9520. {
  9521. "name": "Sebastian Bergmann",
  9522. "email": "sebastian@phpunit.de",
  9523. "role": "lead"
  9524. }
  9525. ],
  9526. "description": "Utility class for timing",
  9527. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9528. "keywords": [
  9529. "timer"
  9530. ],
  9531. "funding": [
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. }
  9536. ],
  9537. "time": "2020-11-30T08:20:02+00:00"
  9538. },
  9539. {
  9540. "name": "phpunit/php-token-stream",
  9541. "version": "4.0.4",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9545. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9550. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9551. "shasum": "",
  9552. "mirrors": [
  9553. {
  9554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9555. "preferred": true
  9556. }
  9557. ]
  9558. },
  9559. "require": {
  9560. "ext-tokenizer": "*",
  9561. "php": "^7.3 || ^8.0"
  9562. },
  9563. "require-dev": {
  9564. "phpunit/phpunit": "^9.0"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-master": "4.0-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "classmap": [
  9574. "src/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "BSD-3-Clause"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Sebastian Bergmann",
  9584. "email": "sebastian@phpunit.de"
  9585. }
  9586. ],
  9587. "description": "Wrapper around PHP's tokenizer extension.",
  9588. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9589. "keywords": [
  9590. "tokenizer"
  9591. ],
  9592. "funding": [
  9593. {
  9594. "url": "https://github.com/sebastianbergmann",
  9595. "type": "github"
  9596. }
  9597. ],
  9598. "abandoned": true,
  9599. "time": "2020-08-04T08:28:15+00:00"
  9600. },
  9601. {
  9602. "name": "phpunit/phpunit",
  9603. "version": "8.5.14",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9607. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c25f79895d27b6ecd5abfa63de1606b786a461a3",
  9612. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3",
  9613. "shasum": "",
  9614. "mirrors": [
  9615. {
  9616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9617. "preferred": true
  9618. }
  9619. ]
  9620. },
  9621. "require": {
  9622. "doctrine/instantiator": "^1.3.1",
  9623. "ext-dom": "*",
  9624. "ext-json": "*",
  9625. "ext-libxml": "*",
  9626. "ext-mbstring": "*",
  9627. "ext-xml": "*",
  9628. "ext-xmlwriter": "*",
  9629. "myclabs/deep-copy": "^1.10.0",
  9630. "phar-io/manifest": "^2.0.1",
  9631. "phar-io/version": "^3.0.2",
  9632. "php": ">=7.2",
  9633. "phpspec/prophecy": "^1.10.3",
  9634. "phpunit/php-code-coverage": "^7.0.12",
  9635. "phpunit/php-file-iterator": "^2.0.2",
  9636. "phpunit/php-text-template": "^1.2.1",
  9637. "phpunit/php-timer": "^2.1.2",
  9638. "sebastian/comparator": "^3.0.2",
  9639. "sebastian/diff": "^3.0.2",
  9640. "sebastian/environment": "^4.2.3",
  9641. "sebastian/exporter": "^3.1.2",
  9642. "sebastian/global-state": "^3.0.0",
  9643. "sebastian/object-enumerator": "^3.0.3",
  9644. "sebastian/resource-operations": "^2.0.1",
  9645. "sebastian/type": "^1.1.3",
  9646. "sebastian/version": "^2.0.1"
  9647. },
  9648. "require-dev": {
  9649. "ext-pdo": "*"
  9650. },
  9651. "suggest": {
  9652. "ext-soap": "*",
  9653. "ext-xdebug": "*",
  9654. "phpunit/php-invoker": "^2.0.0"
  9655. },
  9656. "bin": [
  9657. "phpunit"
  9658. ],
  9659. "type": "library",
  9660. "extra": {
  9661. "branch-alias": {
  9662. "dev-master": "8.5-dev"
  9663. }
  9664. },
  9665. "autoload": {
  9666. "classmap": [
  9667. "src/"
  9668. ]
  9669. },
  9670. "notification-url": "https://packagist.org/downloads/",
  9671. "license": [
  9672. "BSD-3-Clause"
  9673. ],
  9674. "authors": [
  9675. {
  9676. "name": "Sebastian Bergmann",
  9677. "email": "sebastian@phpunit.de",
  9678. "role": "lead"
  9679. }
  9680. ],
  9681. "description": "The PHP Unit Testing framework.",
  9682. "homepage": "https://phpunit.de/",
  9683. "keywords": [
  9684. "phpunit",
  9685. "testing",
  9686. "xunit"
  9687. ],
  9688. "funding": [
  9689. {
  9690. "url": "https://phpunit.de/donate.html",
  9691. "type": "custom"
  9692. },
  9693. {
  9694. "url": "https://github.com/sebastianbergmann",
  9695. "type": "github"
  9696. }
  9697. ],
  9698. "time": "2021-01-17T07:37:30+00:00"
  9699. },
  9700. {
  9701. "name": "sebastian/code-unit-reverse-lookup",
  9702. "version": "1.0.2",
  9703. "source": {
  9704. "type": "git",
  9705. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9706. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9707. },
  9708. "dist": {
  9709. "type": "zip",
  9710. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9711. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9712. "shasum": "",
  9713. "mirrors": [
  9714. {
  9715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9716. "preferred": true
  9717. }
  9718. ]
  9719. },
  9720. "require": {
  9721. "php": ">=5.6"
  9722. },
  9723. "require-dev": {
  9724. "phpunit/phpunit": "^8.5"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-master": "1.0.x-dev"
  9730. }
  9731. },
  9732. "autoload": {
  9733. "classmap": [
  9734. "src/"
  9735. ]
  9736. },
  9737. "notification-url": "https://packagist.org/downloads/",
  9738. "license": [
  9739. "BSD-3-Clause"
  9740. ],
  9741. "authors": [
  9742. {
  9743. "name": "Sebastian Bergmann",
  9744. "email": "sebastian@phpunit.de"
  9745. }
  9746. ],
  9747. "description": "Looks up which function or method a line of code belongs to",
  9748. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9749. "funding": [
  9750. {
  9751. "url": "https://github.com/sebastianbergmann",
  9752. "type": "github"
  9753. }
  9754. ],
  9755. "time": "2020-11-30T08:15:22+00:00"
  9756. },
  9757. {
  9758. "name": "sebastian/comparator",
  9759. "version": "3.0.3",
  9760. "source": {
  9761. "type": "git",
  9762. "url": "https://github.com/sebastianbergmann/comparator.git",
  9763. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9764. },
  9765. "dist": {
  9766. "type": "zip",
  9767. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9768. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9769. "shasum": "",
  9770. "mirrors": [
  9771. {
  9772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9773. "preferred": true
  9774. }
  9775. ]
  9776. },
  9777. "require": {
  9778. "php": ">=7.1",
  9779. "sebastian/diff": "^3.0",
  9780. "sebastian/exporter": "^3.1"
  9781. },
  9782. "require-dev": {
  9783. "phpunit/phpunit": "^8.5"
  9784. },
  9785. "type": "library",
  9786. "extra": {
  9787. "branch-alias": {
  9788. "dev-master": "3.0-dev"
  9789. }
  9790. },
  9791. "autoload": {
  9792. "classmap": [
  9793. "src/"
  9794. ]
  9795. },
  9796. "notification-url": "https://packagist.org/downloads/",
  9797. "license": [
  9798. "BSD-3-Clause"
  9799. ],
  9800. "authors": [
  9801. {
  9802. "name": "Sebastian Bergmann",
  9803. "email": "sebastian@phpunit.de"
  9804. },
  9805. {
  9806. "name": "Jeff Welch",
  9807. "email": "whatthejeff@gmail.com"
  9808. },
  9809. {
  9810. "name": "Volker Dusch",
  9811. "email": "github@wallbash.com"
  9812. },
  9813. {
  9814. "name": "Bernhard Schussek",
  9815. "email": "bschussek@2bepublished.at"
  9816. }
  9817. ],
  9818. "description": "Provides the functionality to compare PHP values for equality",
  9819. "homepage": "https://github.com/sebastianbergmann/comparator",
  9820. "keywords": [
  9821. "comparator",
  9822. "compare",
  9823. "equality"
  9824. ],
  9825. "funding": [
  9826. {
  9827. "url": "https://github.com/sebastianbergmann",
  9828. "type": "github"
  9829. }
  9830. ],
  9831. "time": "2020-11-30T08:04:30+00:00"
  9832. },
  9833. {
  9834. "name": "sebastian/diff",
  9835. "version": "3.0.3",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/sebastianbergmann/diff.git",
  9839. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9844. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9845. "shasum": "",
  9846. "mirrors": [
  9847. {
  9848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9849. "preferred": true
  9850. }
  9851. ]
  9852. },
  9853. "require": {
  9854. "php": ">=7.1"
  9855. },
  9856. "require-dev": {
  9857. "phpunit/phpunit": "^7.5 || ^8.0",
  9858. "symfony/process": "^2 || ^3.3 || ^4"
  9859. },
  9860. "type": "library",
  9861. "extra": {
  9862. "branch-alias": {
  9863. "dev-master": "3.0-dev"
  9864. }
  9865. },
  9866. "autoload": {
  9867. "classmap": [
  9868. "src/"
  9869. ]
  9870. },
  9871. "notification-url": "https://packagist.org/downloads/",
  9872. "license": [
  9873. "BSD-3-Clause"
  9874. ],
  9875. "authors": [
  9876. {
  9877. "name": "Sebastian Bergmann",
  9878. "email": "sebastian@phpunit.de"
  9879. },
  9880. {
  9881. "name": "Kore Nordmann",
  9882. "email": "mail@kore-nordmann.de"
  9883. }
  9884. ],
  9885. "description": "Diff implementation",
  9886. "homepage": "https://github.com/sebastianbergmann/diff",
  9887. "keywords": [
  9888. "diff",
  9889. "udiff",
  9890. "unidiff",
  9891. "unified diff"
  9892. ],
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/sebastianbergmann",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2020-11-30T07:59:04+00:00"
  9900. },
  9901. {
  9902. "name": "sebastian/environment",
  9903. "version": "4.2.4",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/sebastianbergmann/environment.git",
  9907. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9912. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9913. "shasum": "",
  9914. "mirrors": [
  9915. {
  9916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9917. "preferred": true
  9918. }
  9919. ]
  9920. },
  9921. "require": {
  9922. "php": ">=7.1"
  9923. },
  9924. "require-dev": {
  9925. "phpunit/phpunit": "^7.5"
  9926. },
  9927. "suggest": {
  9928. "ext-posix": "*"
  9929. },
  9930. "type": "library",
  9931. "extra": {
  9932. "branch-alias": {
  9933. "dev-master": "4.2-dev"
  9934. }
  9935. },
  9936. "autoload": {
  9937. "classmap": [
  9938. "src/"
  9939. ]
  9940. },
  9941. "notification-url": "https://packagist.org/downloads/",
  9942. "license": [
  9943. "BSD-3-Clause"
  9944. ],
  9945. "authors": [
  9946. {
  9947. "name": "Sebastian Bergmann",
  9948. "email": "sebastian@phpunit.de"
  9949. }
  9950. ],
  9951. "description": "Provides functionality to handle HHVM/PHP environments",
  9952. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9953. "keywords": [
  9954. "Xdebug",
  9955. "environment",
  9956. "hhvm"
  9957. ],
  9958. "funding": [
  9959. {
  9960. "url": "https://github.com/sebastianbergmann",
  9961. "type": "github"
  9962. }
  9963. ],
  9964. "time": "2020-11-30T07:53:42+00:00"
  9965. },
  9966. {
  9967. "name": "sebastian/exporter",
  9968. "version": "3.1.3",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/sebastianbergmann/exporter.git",
  9972. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9977. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9978. "shasum": "",
  9979. "mirrors": [
  9980. {
  9981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9982. "preferred": true
  9983. }
  9984. ]
  9985. },
  9986. "require": {
  9987. "php": ">=7.0",
  9988. "sebastian/recursion-context": "^3.0"
  9989. },
  9990. "require-dev": {
  9991. "ext-mbstring": "*",
  9992. "phpunit/phpunit": "^6.0"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-master": "3.1.x-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "classmap": [
  10002. "src/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "BSD-3-Clause"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Sebastian Bergmann",
  10012. "email": "sebastian@phpunit.de"
  10013. },
  10014. {
  10015. "name": "Jeff Welch",
  10016. "email": "whatthejeff@gmail.com"
  10017. },
  10018. {
  10019. "name": "Volker Dusch",
  10020. "email": "github@wallbash.com"
  10021. },
  10022. {
  10023. "name": "Adam Harvey",
  10024. "email": "aharvey@php.net"
  10025. },
  10026. {
  10027. "name": "Bernhard Schussek",
  10028. "email": "bschussek@gmail.com"
  10029. }
  10030. ],
  10031. "description": "Provides the functionality to export PHP variables for visualization",
  10032. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10033. "keywords": [
  10034. "export",
  10035. "exporter"
  10036. ],
  10037. "funding": [
  10038. {
  10039. "url": "https://github.com/sebastianbergmann",
  10040. "type": "github"
  10041. }
  10042. ],
  10043. "time": "2020-11-30T07:47:53+00:00"
  10044. },
  10045. {
  10046. "name": "sebastian/global-state",
  10047. "version": "3.0.1",
  10048. "source": {
  10049. "type": "git",
  10050. "url": "https://github.com/sebastianbergmann/global-state.git",
  10051. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  10052. },
  10053. "dist": {
  10054. "type": "zip",
  10055. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  10056. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  10057. "shasum": "",
  10058. "mirrors": [
  10059. {
  10060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10061. "preferred": true
  10062. }
  10063. ]
  10064. },
  10065. "require": {
  10066. "php": ">=7.2",
  10067. "sebastian/object-reflector": "^1.1.1",
  10068. "sebastian/recursion-context": "^3.0"
  10069. },
  10070. "require-dev": {
  10071. "ext-dom": "*",
  10072. "phpunit/phpunit": "^8.0"
  10073. },
  10074. "suggest": {
  10075. "ext-uopz": "*"
  10076. },
  10077. "type": "library",
  10078. "extra": {
  10079. "branch-alias": {
  10080. "dev-master": "3.0-dev"
  10081. }
  10082. },
  10083. "autoload": {
  10084. "classmap": [
  10085. "src/"
  10086. ]
  10087. },
  10088. "notification-url": "https://packagist.org/downloads/",
  10089. "license": [
  10090. "BSD-3-Clause"
  10091. ],
  10092. "authors": [
  10093. {
  10094. "name": "Sebastian Bergmann",
  10095. "email": "sebastian@phpunit.de"
  10096. }
  10097. ],
  10098. "description": "Snapshotting of global state",
  10099. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10100. "keywords": [
  10101. "global state"
  10102. ],
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/sebastianbergmann",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2020-11-30T07:43:24+00:00"
  10110. },
  10111. {
  10112. "name": "sebastian/object-enumerator",
  10113. "version": "3.0.4",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10117. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10122. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10123. "shasum": "",
  10124. "mirrors": [
  10125. {
  10126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10127. "preferred": true
  10128. }
  10129. ]
  10130. },
  10131. "require": {
  10132. "php": ">=7.0",
  10133. "sebastian/object-reflector": "^1.1.1",
  10134. "sebastian/recursion-context": "^3.0"
  10135. },
  10136. "require-dev": {
  10137. "phpunit/phpunit": "^6.0"
  10138. },
  10139. "type": "library",
  10140. "extra": {
  10141. "branch-alias": {
  10142. "dev-master": "3.0.x-dev"
  10143. }
  10144. },
  10145. "autoload": {
  10146. "classmap": [
  10147. "src/"
  10148. ]
  10149. },
  10150. "notification-url": "https://packagist.org/downloads/",
  10151. "license": [
  10152. "BSD-3-Clause"
  10153. ],
  10154. "authors": [
  10155. {
  10156. "name": "Sebastian Bergmann",
  10157. "email": "sebastian@phpunit.de"
  10158. }
  10159. ],
  10160. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10161. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10162. "funding": [
  10163. {
  10164. "url": "https://github.com/sebastianbergmann",
  10165. "type": "github"
  10166. }
  10167. ],
  10168. "time": "2020-11-30T07:40:27+00:00"
  10169. },
  10170. {
  10171. "name": "sebastian/object-reflector",
  10172. "version": "1.1.2",
  10173. "source": {
  10174. "type": "git",
  10175. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10176. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10177. },
  10178. "dist": {
  10179. "type": "zip",
  10180. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10181. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10182. "shasum": "",
  10183. "mirrors": [
  10184. {
  10185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10186. "preferred": true
  10187. }
  10188. ]
  10189. },
  10190. "require": {
  10191. "php": ">=7.0"
  10192. },
  10193. "require-dev": {
  10194. "phpunit/phpunit": "^6.0"
  10195. },
  10196. "type": "library",
  10197. "extra": {
  10198. "branch-alias": {
  10199. "dev-master": "1.1-dev"
  10200. }
  10201. },
  10202. "autoload": {
  10203. "classmap": [
  10204. "src/"
  10205. ]
  10206. },
  10207. "notification-url": "https://packagist.org/downloads/",
  10208. "license": [
  10209. "BSD-3-Clause"
  10210. ],
  10211. "authors": [
  10212. {
  10213. "name": "Sebastian Bergmann",
  10214. "email": "sebastian@phpunit.de"
  10215. }
  10216. ],
  10217. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10218. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10219. "funding": [
  10220. {
  10221. "url": "https://github.com/sebastianbergmann",
  10222. "type": "github"
  10223. }
  10224. ],
  10225. "time": "2020-11-30T07:37:18+00:00"
  10226. },
  10227. {
  10228. "name": "sebastian/recursion-context",
  10229. "version": "3.0.1",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10233. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10238. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10239. "shasum": "",
  10240. "mirrors": [
  10241. {
  10242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10243. "preferred": true
  10244. }
  10245. ]
  10246. },
  10247. "require": {
  10248. "php": ">=7.0"
  10249. },
  10250. "require-dev": {
  10251. "phpunit/phpunit": "^6.0"
  10252. },
  10253. "type": "library",
  10254. "extra": {
  10255. "branch-alias": {
  10256. "dev-master": "3.0.x-dev"
  10257. }
  10258. },
  10259. "autoload": {
  10260. "classmap": [
  10261. "src/"
  10262. ]
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "BSD-3-Clause"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Sebastian Bergmann",
  10271. "email": "sebastian@phpunit.de"
  10272. },
  10273. {
  10274. "name": "Jeff Welch",
  10275. "email": "whatthejeff@gmail.com"
  10276. },
  10277. {
  10278. "name": "Adam Harvey",
  10279. "email": "aharvey@php.net"
  10280. }
  10281. ],
  10282. "description": "Provides functionality to recursively process PHP variables",
  10283. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10284. "funding": [
  10285. {
  10286. "url": "https://github.com/sebastianbergmann",
  10287. "type": "github"
  10288. }
  10289. ],
  10290. "time": "2020-11-30T07:34:24+00:00"
  10291. },
  10292. {
  10293. "name": "sebastian/resource-operations",
  10294. "version": "2.0.2",
  10295. "source": {
  10296. "type": "git",
  10297. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10298. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10299. },
  10300. "dist": {
  10301. "type": "zip",
  10302. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10303. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10304. "shasum": "",
  10305. "mirrors": [
  10306. {
  10307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10308. "preferred": true
  10309. }
  10310. ]
  10311. },
  10312. "require": {
  10313. "php": ">=7.1"
  10314. },
  10315. "type": "library",
  10316. "extra": {
  10317. "branch-alias": {
  10318. "dev-master": "2.0-dev"
  10319. }
  10320. },
  10321. "autoload": {
  10322. "classmap": [
  10323. "src/"
  10324. ]
  10325. },
  10326. "notification-url": "https://packagist.org/downloads/",
  10327. "license": [
  10328. "BSD-3-Clause"
  10329. ],
  10330. "authors": [
  10331. {
  10332. "name": "Sebastian Bergmann",
  10333. "email": "sebastian@phpunit.de"
  10334. }
  10335. ],
  10336. "description": "Provides a list of PHP built-in functions that operate on resources",
  10337. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10338. "funding": [
  10339. {
  10340. "url": "https://github.com/sebastianbergmann",
  10341. "type": "github"
  10342. }
  10343. ],
  10344. "time": "2020-11-30T07:30:19+00:00"
  10345. },
  10346. {
  10347. "name": "sebastian/type",
  10348. "version": "1.1.4",
  10349. "source": {
  10350. "type": "git",
  10351. "url": "https://github.com/sebastianbergmann/type.git",
  10352. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10353. },
  10354. "dist": {
  10355. "type": "zip",
  10356. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10357. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10358. "shasum": "",
  10359. "mirrors": [
  10360. {
  10361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10362. "preferred": true
  10363. }
  10364. ]
  10365. },
  10366. "require": {
  10367. "php": ">=7.2"
  10368. },
  10369. "require-dev": {
  10370. "phpunit/phpunit": "^8.2"
  10371. },
  10372. "type": "library",
  10373. "extra": {
  10374. "branch-alias": {
  10375. "dev-master": "1.1-dev"
  10376. }
  10377. },
  10378. "autoload": {
  10379. "classmap": [
  10380. "src/"
  10381. ]
  10382. },
  10383. "notification-url": "https://packagist.org/downloads/",
  10384. "license": [
  10385. "BSD-3-Clause"
  10386. ],
  10387. "authors": [
  10388. {
  10389. "name": "Sebastian Bergmann",
  10390. "email": "sebastian@phpunit.de",
  10391. "role": "lead"
  10392. }
  10393. ],
  10394. "description": "Collection of value objects that represent the types of the PHP type system",
  10395. "homepage": "https://github.com/sebastianbergmann/type",
  10396. "funding": [
  10397. {
  10398. "url": "https://github.com/sebastianbergmann",
  10399. "type": "github"
  10400. }
  10401. ],
  10402. "time": "2020-11-30T07:25:11+00:00"
  10403. },
  10404. {
  10405. "name": "sebastian/version",
  10406. "version": "2.0.1",
  10407. "source": {
  10408. "type": "git",
  10409. "url": "https://github.com/sebastianbergmann/version.git",
  10410. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10411. },
  10412. "dist": {
  10413. "type": "zip",
  10414. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10415. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10416. "shasum": "",
  10417. "mirrors": [
  10418. {
  10419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10420. "preferred": true
  10421. }
  10422. ]
  10423. },
  10424. "require": {
  10425. "php": ">=5.6"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "2.0.x-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "classmap": [
  10435. "src/"
  10436. ]
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "BSD-3-Clause"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Sebastian Bergmann",
  10445. "email": "sebastian@phpunit.de",
  10446. "role": "lead"
  10447. }
  10448. ],
  10449. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10450. "homepage": "https://github.com/sebastianbergmann/version",
  10451. "time": "2016-10-03T07:35:21+00:00"
  10452. },
  10453. {
  10454. "name": "theseer/tokenizer",
  10455. "version": "1.2.0",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/theseer/tokenizer.git",
  10459. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10464. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10465. "shasum": "",
  10466. "mirrors": [
  10467. {
  10468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10469. "preferred": true
  10470. }
  10471. ]
  10472. },
  10473. "require": {
  10474. "ext-dom": "*",
  10475. "ext-tokenizer": "*",
  10476. "ext-xmlwriter": "*",
  10477. "php": "^7.2 || ^8.0"
  10478. },
  10479. "type": "library",
  10480. "autoload": {
  10481. "classmap": [
  10482. "src/"
  10483. ]
  10484. },
  10485. "notification-url": "https://packagist.org/downloads/",
  10486. "license": [
  10487. "BSD-3-Clause"
  10488. ],
  10489. "authors": [
  10490. {
  10491. "name": "Arne Blankerts",
  10492. "email": "arne@blankerts.de",
  10493. "role": "Developer"
  10494. }
  10495. ],
  10496. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/theseer",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2020-07-12T23:59:07+00:00"
  10504. }
  10505. ],
  10506. "aliases": [],
  10507. "minimum-stability": "dev",
  10508. "stability-flags": [],
  10509. "prefer-stable": true,
  10510. "prefer-lowest": false,
  10511. "platform": {
  10512. "php": "^7.2"
  10513. },
  10514. "platform-dev": [],
  10515. "plugin-api-version": "1.1.0"
  10516. }