composer.lock 412 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557
  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": "04879cdf04f34417c35aebbabc2229f6",
  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. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  76. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1|^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15|^8.5",
  86. "vimeo/psalm": "^3.5"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/master"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2020-08-18T23:57:15+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.8",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "8a7ecad675253e4654ea05505233285377405215"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  132. "reference": "8a7ecad675253e4654ea05505233285377405215",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-openssl": "*",
  137. "ext-pcre": "*",
  138. "php": "^5.3.2 || ^7.0 || ^8.0"
  139. },
  140. "require-dev": {
  141. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  142. "psr/log": "^1.0",
  143. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  144. },
  145. "type": "library",
  146. "extra": {
  147. "branch-alias": {
  148. "dev-master": "1.x-dev"
  149. }
  150. },
  151. "autoload": {
  152. "psr-4": {
  153. "Composer\\CaBundle\\": "src"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Jordi Boggiano",
  163. "email": "j.boggiano@seld.be",
  164. "homepage": "http://seld.be"
  165. }
  166. ],
  167. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  168. "keywords": [
  169. "cabundle",
  170. "cacert",
  171. "certificate",
  172. "ssl",
  173. "tls"
  174. ],
  175. "support": {
  176. "irc": "irc://irc.freenode.org/composer",
  177. "issues": "https://github.com/composer/ca-bundle/issues",
  178. "source": "https://github.com/composer/ca-bundle/tree/1.2.8"
  179. },
  180. "funding": [
  181. {
  182. "url": "https://packagist.com",
  183. "type": "custom"
  184. },
  185. {
  186. "url": "https://github.com/composer",
  187. "type": "github"
  188. },
  189. {
  190. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  191. "type": "tidelift"
  192. }
  193. ],
  194. "time": "2020-08-23T12:54:47+00:00"
  195. },
  196. {
  197. "name": "dnoegel/php-xdg-base-dir",
  198. "version": "v0.1.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  202. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  207. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3.2"
  212. },
  213. "require-dev": {
  214. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "XdgBaseDir\\": "src/"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "description": "implementation of xdg base directory specification for php",
  227. "support": {
  228. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  229. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  230. },
  231. "time": "2019-12-04T15:06:13+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "1.10.2",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "13e3381b25847283a91948d04640543941309727"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  244. "reference": "13e3381b25847283a91948d04640543941309727",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "alcaeus/mongo-php-adapter": "^1.1",
  255. "doctrine/coding-standard": "^6.0",
  256. "mongodb/mongodb": "^1.1",
  257. "phpunit/phpunit": "^7.0",
  258. "predis/predis": "~1.0"
  259. },
  260. "suggest": {
  261. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  262. },
  263. "type": "library",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.9.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Guilherme Blanco",
  281. "email": "guilhermeblanco@gmail.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. },
  291. {
  292. "name": "Jonathan Wage",
  293. "email": "jonwage@gmail.com"
  294. },
  295. {
  296. "name": "Johannes Schmitt",
  297. "email": "schmittjoh@gmail.com"
  298. }
  299. ],
  300. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  301. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  302. "keywords": [
  303. "abstraction",
  304. "apcu",
  305. "cache",
  306. "caching",
  307. "couchdb",
  308. "memcached",
  309. "php",
  310. "redis",
  311. "xcache"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/cache/issues",
  315. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-07-07T18:54:01+00:00"
  332. },
  333. {
  334. "name": "doctrine/dbal",
  335. "version": "2.12.1",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/dbal.git",
  339. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  344. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/cache": "^1.0",
  349. "doctrine/event-manager": "^1.0",
  350. "ext-pdo": "*",
  351. "php": "^7.3 || ^8"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^8.1",
  355. "jetbrains/phpstorm-stubs": "^2019.1",
  356. "phpstan/phpstan": "^0.12.40",
  357. "phpunit/phpunit": "^9.4",
  358. "psalm/plugin-phpunit": "^0.10.0",
  359. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  360. "vimeo/psalm": "^3.17.2"
  361. },
  362. "suggest": {
  363. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  364. },
  365. "bin": [
  366. "bin/doctrine-dbal"
  367. ],
  368. "type": "library",
  369. "extra": {
  370. "branch-alias": {
  371. "dev-master": "4.0.x-dev"
  372. }
  373. },
  374. "autoload": {
  375. "psr-4": {
  376. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Guilherme Blanco",
  386. "email": "guilhermeblanco@gmail.com"
  387. },
  388. {
  389. "name": "Roman Borschel",
  390. "email": "roman@code-factory.org"
  391. },
  392. {
  393. "name": "Benjamin Eberlei",
  394. "email": "kontakt@beberlei.de"
  395. },
  396. {
  397. "name": "Jonathan Wage",
  398. "email": "jonwage@gmail.com"
  399. }
  400. ],
  401. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  402. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  403. "keywords": [
  404. "abstraction",
  405. "database",
  406. "db2",
  407. "dbal",
  408. "mariadb",
  409. "mssql",
  410. "mysql",
  411. "oci8",
  412. "oracle",
  413. "pdo",
  414. "pgsql",
  415. "postgresql",
  416. "queryobject",
  417. "sasql",
  418. "sql",
  419. "sqlanywhere",
  420. "sqlite",
  421. "sqlserver",
  422. "sqlsrv"
  423. ],
  424. "support": {
  425. "issues": "https://github.com/doctrine/dbal/issues",
  426. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  427. },
  428. "funding": [
  429. {
  430. "url": "https://www.doctrine-project.org/sponsorship.html",
  431. "type": "custom"
  432. },
  433. {
  434. "url": "https://www.patreon.com/phpdoctrine",
  435. "type": "patreon"
  436. },
  437. {
  438. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  439. "type": "tidelift"
  440. }
  441. ],
  442. "time": "2020-11-14T20:26:58+00:00"
  443. },
  444. {
  445. "name": "doctrine/event-manager",
  446. "version": "1.1.1",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/doctrine/event-manager.git",
  450. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  455. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": "^7.1 || ^8.0"
  460. },
  461. "conflict": {
  462. "doctrine/common": "<2.9@dev"
  463. },
  464. "require-dev": {
  465. "doctrine/coding-standard": "^6.0",
  466. "phpunit/phpunit": "^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "1.0.x-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Doctrine\\Common\\": "lib/Doctrine/Common"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Guilherme Blanco",
  486. "email": "guilhermeblanco@gmail.com"
  487. },
  488. {
  489. "name": "Roman Borschel",
  490. "email": "roman@code-factory.org"
  491. },
  492. {
  493. "name": "Benjamin Eberlei",
  494. "email": "kontakt@beberlei.de"
  495. },
  496. {
  497. "name": "Jonathan Wage",
  498. "email": "jonwage@gmail.com"
  499. },
  500. {
  501. "name": "Johannes Schmitt",
  502. "email": "schmittjoh@gmail.com"
  503. },
  504. {
  505. "name": "Marco Pivetta",
  506. "email": "ocramius@gmail.com"
  507. }
  508. ],
  509. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  510. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  511. "keywords": [
  512. "event",
  513. "event dispatcher",
  514. "event manager",
  515. "event system",
  516. "events"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/doctrine/event-manager/issues",
  520. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://www.doctrine-project.org/sponsorship.html",
  525. "type": "custom"
  526. },
  527. {
  528. "url": "https://www.patreon.com/phpdoctrine",
  529. "type": "patreon"
  530. },
  531. {
  532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  533. "type": "tidelift"
  534. }
  535. ],
  536. "time": "2020-05-29T18:28:51+00:00"
  537. },
  538. {
  539. "name": "doctrine/inflector",
  540. "version": "2.0.3",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/doctrine/inflector.git",
  544. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  549. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "php": "^7.2 || ^8.0"
  554. },
  555. "require-dev": {
  556. "doctrine/coding-standard": "^7.0",
  557. "phpstan/phpstan": "^0.11",
  558. "phpstan/phpstan-phpunit": "^0.11",
  559. "phpstan/phpstan-strict-rules": "^0.11",
  560. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "branch-alias": {
  565. "dev-master": "2.0.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Guilherme Blanco",
  580. "email": "guilhermeblanco@gmail.com"
  581. },
  582. {
  583. "name": "Roman Borschel",
  584. "email": "roman@code-factory.org"
  585. },
  586. {
  587. "name": "Benjamin Eberlei",
  588. "email": "kontakt@beberlei.de"
  589. },
  590. {
  591. "name": "Jonathan Wage",
  592. "email": "jonwage@gmail.com"
  593. },
  594. {
  595. "name": "Johannes Schmitt",
  596. "email": "schmittjoh@gmail.com"
  597. }
  598. ],
  599. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  600. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  601. "keywords": [
  602. "inflection",
  603. "inflector",
  604. "lowercase",
  605. "manipulation",
  606. "php",
  607. "plural",
  608. "singular",
  609. "strings",
  610. "uppercase",
  611. "words"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/inflector/issues",
  615. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2020-05-29T15:13:26+00:00"
  632. },
  633. {
  634. "name": "doctrine/lexer",
  635. "version": "1.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/doctrine/lexer.git",
  639. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  644. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "php": "^7.2 || ^8.0"
  649. },
  650. "require-dev": {
  651. "doctrine/coding-standard": "^6.0",
  652. "phpstan/phpstan": "^0.11.8",
  653. "phpunit/phpunit": "^8.2"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "branch-alias": {
  658. "dev-master": "1.2.x-dev"
  659. }
  660. },
  661. "autoload": {
  662. "psr-4": {
  663. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "guilhermeblanco@gmail.com"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "roman@code-factory.org"
  678. },
  679. {
  680. "name": "Johannes Schmitt",
  681. "email": "schmittjoh@gmail.com"
  682. }
  683. ],
  684. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  685. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  686. "keywords": [
  687. "annotations",
  688. "docblock",
  689. "lexer",
  690. "parser",
  691. "php"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/doctrine/lexer/issues",
  695. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://www.doctrine-project.org/sponsorship.html",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://www.patreon.com/phpdoctrine",
  704. "type": "patreon"
  705. },
  706. {
  707. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  708. "type": "tidelift"
  709. }
  710. ],
  711. "time": "2020-05-25T17:44:05+00:00"
  712. },
  713. {
  714. "name": "dragonmantank/cron-expression",
  715. "version": "v2.3.1",
  716. "source": {
  717. "type": "git",
  718. "url": "https://github.com/dragonmantank/cron-expression.git",
  719. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  720. },
  721. "dist": {
  722. "type": "zip",
  723. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  724. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "shasum": ""
  726. },
  727. "require": {
  728. "php": "^7.0|^8.0"
  729. },
  730. "require-dev": {
  731. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.3-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Cron\\": "src/Cron/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Michael Dowling",
  751. "email": "mtdowling@gmail.com",
  752. "homepage": "https://github.com/mtdowling"
  753. },
  754. {
  755. "name": "Chris Tankersley",
  756. "email": "chris@ctankersley.com",
  757. "homepage": "https://github.com/dragonmantank"
  758. }
  759. ],
  760. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  761. "keywords": [
  762. "cron",
  763. "schedule"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  767. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://github.com/dragonmantank",
  772. "type": "github"
  773. }
  774. ],
  775. "time": "2020-10-13T00:52:37+00:00"
  776. },
  777. {
  778. "name": "egulias/email-validator",
  779. "version": "2.1.24",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/egulias/EmailValidator.git",
  783. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  788. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "doctrine/lexer": "^1.0.1",
  793. "php": ">=5.5",
  794. "symfony/polyfill-intl-idn": "^1.10"
  795. },
  796. "require-dev": {
  797. "dominicsayers/isemail": "^3.0.7",
  798. "phpunit/phpunit": "^4.8.36|^7.5.15",
  799. "satooshi/php-coveralls": "^1.0.1"
  800. },
  801. "suggest": {
  802. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "2.1.x-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-4": {
  812. "Egulias\\EmailValidator\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Eduardo Gulias Davis"
  822. }
  823. ],
  824. "description": "A library for validating emails against several RFCs",
  825. "homepage": "https://github.com/egulias/EmailValidator",
  826. "keywords": [
  827. "email",
  828. "emailvalidation",
  829. "emailvalidator",
  830. "validation",
  831. "validator"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/egulias/EmailValidator/issues",
  835. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/egulias",
  840. "type": "github"
  841. }
  842. ],
  843. "time": "2020-11-14T15:56:27+00:00"
  844. },
  845. {
  846. "name": "ezyang/htmlpurifier",
  847. "version": "v4.13.0",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/ezyang/htmlpurifier.git",
  851. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  856. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": ">=5.2"
  861. },
  862. "require-dev": {
  863. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  864. },
  865. "type": "library",
  866. "autoload": {
  867. "psr-0": {
  868. "HTMLPurifier": "library/"
  869. },
  870. "files": [
  871. "library/HTMLPurifier.composer.php"
  872. ],
  873. "exclude-from-classmap": [
  874. "/library/HTMLPurifier/Language/"
  875. ]
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "LGPL-2.1-or-later"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Edward Z. Yang",
  884. "email": "admin@htmlpurifier.org",
  885. "homepage": "http://ezyang.com"
  886. }
  887. ],
  888. "description": "Standards compliant HTML filter written in PHP",
  889. "homepage": "http://htmlpurifier.org/",
  890. "keywords": [
  891. "html"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  895. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  896. },
  897. "time": "2020-06-29T00:56:53+00:00"
  898. },
  899. {
  900. "name": "fideloper/proxy",
  901. "version": "4.4.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/fideloper/TrustedProxy.git",
  905. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  910. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  915. "php": ">=5.4.0"
  916. },
  917. "require-dev": {
  918. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  919. "mockery/mockery": "^1.0",
  920. "phpunit/phpunit": "^6.0"
  921. },
  922. "type": "library",
  923. "extra": {
  924. "laravel": {
  925. "providers": [
  926. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  927. ]
  928. }
  929. },
  930. "autoload": {
  931. "psr-4": {
  932. "Fideloper\\Proxy\\": "src/"
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Chris Fidao",
  942. "email": "fideloper@gmail.com"
  943. }
  944. ],
  945. "description": "Set trusted proxies for Laravel",
  946. "keywords": [
  947. "load balancing",
  948. "proxy",
  949. "trusted proxy"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  953. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  954. },
  955. "time": "2020-10-22T13:48:01+00:00"
  956. },
  957. {
  958. "name": "fruitcake/laravel-cors",
  959. "version": "v2.0.3",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/fruitcake/laravel-cors.git",
  963. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  968. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "asm89/stack-cors": "^2.0.1",
  973. "illuminate/contracts": "^6|^7|^8|^9",
  974. "illuminate/support": "^6|^7|^8|^9",
  975. "php": ">=7.2",
  976. "symfony/http-foundation": "^4|^5",
  977. "symfony/http-kernel": "^4.3.4|^5"
  978. },
  979. "require-dev": {
  980. "laravel/framework": "^6|^7|^8",
  981. "orchestra/testbench-dusk": "^4|^5|^6",
  982. "phpunit/phpunit": "^6|^7|^8",
  983. "squizlabs/php_codesniffer": "^3.5"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "2.0-dev"
  989. },
  990. "laravel": {
  991. "providers": [
  992. "Fruitcake\\Cors\\CorsServiceProvider"
  993. ]
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Fruitcake\\Cors\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Fruitcake",
  1008. "homepage": "https://fruitcake.nl"
  1009. },
  1010. {
  1011. "name": "Barry vd. Heuvel",
  1012. "email": "barryvdh@gmail.com"
  1013. }
  1014. ],
  1015. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1016. "keywords": [
  1017. "api",
  1018. "cors",
  1019. "crossdomain",
  1020. "laravel"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1024. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://github.com/barryvdh",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2020-10-22T13:57:20+00:00"
  1033. },
  1034. {
  1035. "name": "geoip2/geoip2",
  1036. "version": "v2.11.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1040. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1045. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-json": "*",
  1050. "maxmind-db/reader": "~1.8",
  1051. "maxmind/web-service-common": "~0.8",
  1052. "php": ">=7.2"
  1053. },
  1054. "require-dev": {
  1055. "friendsofphp/php-cs-fixer": "2.*",
  1056. "phpunit/phpunit": "^8.0 || ^9.0",
  1057. "squizlabs/php_codesniffer": "3.*"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "GeoIp2\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "Apache-2.0"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Gregory J. Oschwald",
  1072. "email": "goschwald@maxmind.com",
  1073. "homepage": "https://www.maxmind.com/"
  1074. }
  1075. ],
  1076. "description": "MaxMind GeoIP2 PHP API",
  1077. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1078. "keywords": [
  1079. "IP",
  1080. "geoip",
  1081. "geoip2",
  1082. "geolocation",
  1083. "maxmind"
  1084. ],
  1085. "support": {
  1086. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1087. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1088. },
  1089. "time": "2020-10-01T18:48:34+00:00"
  1090. },
  1091. {
  1092. "name": "guzzlehttp/guzzle",
  1093. "version": "6.5.5",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/guzzle/guzzle.git",
  1097. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1102. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "ext-json": "*",
  1107. "guzzlehttp/promises": "^1.0",
  1108. "guzzlehttp/psr7": "^1.6.1",
  1109. "php": ">=5.5",
  1110. "symfony/polyfill-intl-idn": "^1.17.0"
  1111. },
  1112. "require-dev": {
  1113. "ext-curl": "*",
  1114. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1115. "psr/log": "^1.1"
  1116. },
  1117. "suggest": {
  1118. "psr/log": "Required for using the Log middleware"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "6.5-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "GuzzleHttp\\": "src/"
  1129. },
  1130. "files": [
  1131. "src/functions_include.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Michael Dowling",
  1141. "email": "mtdowling@gmail.com",
  1142. "homepage": "https://github.com/mtdowling"
  1143. }
  1144. ],
  1145. "description": "Guzzle is a PHP HTTP client library",
  1146. "homepage": "http://guzzlephp.org/",
  1147. "keywords": [
  1148. "client",
  1149. "curl",
  1150. "framework",
  1151. "http",
  1152. "http client",
  1153. "rest",
  1154. "web service"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/guzzle/guzzle/issues",
  1158. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1159. },
  1160. "time": "2020-06-16T21:01:06+00:00"
  1161. },
  1162. {
  1163. "name": "guzzlehttp/promises",
  1164. "version": "1.4.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/guzzle/promises.git",
  1168. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1173. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.5"
  1178. },
  1179. "require-dev": {
  1180. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.4-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "GuzzleHttp\\Promise\\": "src/"
  1191. },
  1192. "files": [
  1193. "src/functions_include.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Michael Dowling",
  1203. "email": "mtdowling@gmail.com",
  1204. "homepage": "https://github.com/mtdowling"
  1205. }
  1206. ],
  1207. "description": "Guzzle promises library",
  1208. "keywords": [
  1209. "promise"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/guzzle/promises/issues",
  1213. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1214. },
  1215. "time": "2020-09-30T07:37:28+00:00"
  1216. },
  1217. {
  1218. "name": "guzzlehttp/psr7",
  1219. "version": "1.7.0",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/guzzle/psr7.git",
  1223. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1228. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "php": ">=5.4.0",
  1233. "psr/http-message": "~1.0",
  1234. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1235. },
  1236. "provide": {
  1237. "psr/http-message-implementation": "1.0"
  1238. },
  1239. "require-dev": {
  1240. "ext-zlib": "*",
  1241. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1242. },
  1243. "suggest": {
  1244. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.7-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "GuzzleHttp\\Psr7\\": "src/"
  1255. },
  1256. "files": [
  1257. "src/functions_include.php"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Michael Dowling",
  1267. "email": "mtdowling@gmail.com",
  1268. "homepage": "https://github.com/mtdowling"
  1269. },
  1270. {
  1271. "name": "Tobias Schultze",
  1272. "homepage": "https://github.com/Tobion"
  1273. }
  1274. ],
  1275. "description": "PSR-7 message implementation that also provides common utility methods",
  1276. "keywords": [
  1277. "http",
  1278. "message",
  1279. "psr-7",
  1280. "request",
  1281. "response",
  1282. "stream",
  1283. "uri",
  1284. "url"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/guzzle/psr7/issues",
  1288. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1289. },
  1290. "time": "2020-09-30T07:37:11+00:00"
  1291. },
  1292. {
  1293. "name": "intervention/image",
  1294. "version": "2.5.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/Intervention/image.git",
  1298. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1303. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "ext-fileinfo": "*",
  1308. "guzzlehttp/psr7": "~1.1",
  1309. "php": ">=5.4.0"
  1310. },
  1311. "require-dev": {
  1312. "mockery/mockery": "~0.9.2",
  1313. "phpunit/phpunit": "^4.8 || ^5.7"
  1314. },
  1315. "suggest": {
  1316. "ext-gd": "to use GD library based image processing.",
  1317. "ext-imagick": "to use Imagick based image processing.",
  1318. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "2.4-dev"
  1324. },
  1325. "laravel": {
  1326. "providers": [
  1327. "Intervention\\Image\\ImageServiceProvider"
  1328. ],
  1329. "aliases": {
  1330. "Image": "Intervention\\Image\\Facades\\Image"
  1331. }
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Intervention\\Image\\": "src/Intervention/Image"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Oliver Vogel",
  1346. "email": "oliver@olivervogel.com",
  1347. "homepage": "http://olivervogel.com/"
  1348. }
  1349. ],
  1350. "description": "Image handling and manipulation library with support for Laravel integration",
  1351. "homepage": "http://image.intervention.io/",
  1352. "keywords": [
  1353. "gd",
  1354. "image",
  1355. "imagick",
  1356. "laravel",
  1357. "thumbnail",
  1358. "watermark"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/Intervention/image/issues",
  1362. "source": "https://github.com/Intervention/image/tree/master"
  1363. },
  1364. "time": "2019-11-02T09:15:47+00:00"
  1365. },
  1366. {
  1367. "name": "ip2location/ip2location-laravel",
  1368. "version": "1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1372. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1377. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "ip2location/ip2location-php": "8.*",
  1382. "php": ">=5.4"
  1383. },
  1384. "type": "library",
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Ip2location\\IP2LocationLaravel\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "IP2Location",
  1397. "email": "support@ip2location.com"
  1398. }
  1399. ],
  1400. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1401. "keywords": [
  1402. "geolocation",
  1403. "ip2location",
  1404. "laravel",
  1405. "laravel 5",
  1406. "laravel 7"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1410. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1411. },
  1412. "time": "2020-08-27T07:47:55+00:00"
  1413. },
  1414. {
  1415. "name": "ip2location/ip2location-php",
  1416. "version": "8.3.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1420. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1425. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1426. "shasum": ""
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "classmap": [
  1431. "IP2Location.php"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "IP2Location",
  1441. "email": "support@ip2location.com",
  1442. "homepage": "http://www.ip2location.com"
  1443. }
  1444. ],
  1445. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1446. "homepage": "http://www.ip2location.com",
  1447. "keywords": [
  1448. "geolocation",
  1449. "ip2location",
  1450. "ip2locationlite"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1454. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1455. },
  1456. "time": "2020-11-23T04:30:39+00:00"
  1457. },
  1458. {
  1459. "name": "ipip/db",
  1460. "version": "v1.0.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1464. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1469. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.4.0"
  1474. },
  1475. "type": "library",
  1476. "autoload": {
  1477. "psr-4": {
  1478. "ipip\\db\\": "src/ipip/db/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "Apache-2.0"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "IPIP.net",
  1488. "email": "frk@ipip.net",
  1489. "homepage": "https://www.ipip.net"
  1490. }
  1491. ],
  1492. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1493. "homepage": "https://www.ipip.net",
  1494. "keywords": [
  1495. "IP",
  1496. "geo",
  1497. "geoip",
  1498. "geolocation",
  1499. "ipdb",
  1500. "ipip.net"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1504. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1505. },
  1506. "time": "2018-11-01T08:07:04+00:00"
  1507. },
  1508. {
  1509. "name": "jaybizzle/crawler-detect",
  1510. "version": "v1.2.103",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1514. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1519. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3.0"
  1524. },
  1525. "require-dev": {
  1526. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Jaybizzle\\CrawlerDetect\\": "src/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Mark Beech",
  1541. "email": "m@rkbee.ch",
  1542. "role": "Developer"
  1543. }
  1544. ],
  1545. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1546. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1547. "keywords": [
  1548. "crawler",
  1549. "crawler detect",
  1550. "crawler detector",
  1551. "crawlerdetect",
  1552. "php crawler detect"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1556. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1557. },
  1558. "time": "2020-11-23T19:49:25+00:00"
  1559. },
  1560. {
  1561. "name": "jenssegers/agent",
  1562. "version": "v2.6.4",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/jenssegers/agent.git",
  1566. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1571. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "jaybizzle/crawler-detect": "^1.2",
  1576. "mobiledetect/mobiledetectlib": "^2.7.6",
  1577. "php": ">=5.6"
  1578. },
  1579. "require-dev": {
  1580. "php-coveralls/php-coveralls": "^2.1",
  1581. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1582. },
  1583. "suggest": {
  1584. "illuminate/support": "Required for laravel service providers"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "3.0-dev"
  1590. },
  1591. "laravel": {
  1592. "providers": [
  1593. "Jenssegers\\Agent\\AgentServiceProvider"
  1594. ],
  1595. "aliases": {
  1596. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1597. }
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Jenssegers\\Agent\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Jens Segers",
  1612. "homepage": "https://jenssegers.com"
  1613. }
  1614. ],
  1615. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1616. "homepage": "https://github.com/jenssegers/agent",
  1617. "keywords": [
  1618. "Agent",
  1619. "browser",
  1620. "desktop",
  1621. "laravel",
  1622. "mobile",
  1623. "platform",
  1624. "user agent",
  1625. "useragent"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/jenssegers/agent/issues",
  1629. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/jenssegers",
  1634. "type": "github"
  1635. },
  1636. {
  1637. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1638. "type": "tidelift"
  1639. }
  1640. ],
  1641. "time": "2020-06-13T08:05:20+00:00"
  1642. },
  1643. {
  1644. "name": "laravel-lang/lang",
  1645. "version": "7.0.9",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/Laravel-Lang/lang.git",
  1649. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1654. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1655. "shasum": ""
  1656. },
  1657. "require": {
  1658. "ext-json": "*"
  1659. },
  1660. "suggest": {
  1661. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1662. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1663. "overtrue/laravel-lang": "Command to add languages in your project"
  1664. },
  1665. "type": "library",
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Laravel-Lang Team"
  1673. }
  1674. ],
  1675. "description": "Languages for Laravel",
  1676. "keywords": [
  1677. "lang",
  1678. "languages",
  1679. "laravel",
  1680. "lpm"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1684. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1685. },
  1686. "time": "2020-11-30T20:35:41+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/framework",
  1690. "version": "v7.30.0",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/framework.git",
  1694. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/framework/zipball/629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  1699. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "doctrine/inflector": "^1.4|^2.0",
  1704. "dragonmantank/cron-expression": "^2.3.1",
  1705. "egulias/email-validator": "^2.1.10",
  1706. "ext-json": "*",
  1707. "ext-mbstring": "*",
  1708. "ext-openssl": "*",
  1709. "league/commonmark": "^1.3",
  1710. "league/flysystem": "^1.1",
  1711. "monolog/monolog": "^2.0",
  1712. "nesbot/carbon": "^2.31",
  1713. "opis/closure": "^3.6",
  1714. "php": "^7.2.5|^8.0",
  1715. "psr/container": "^1.0",
  1716. "psr/simple-cache": "^1.0",
  1717. "ramsey/uuid": "^3.7|^4.0",
  1718. "swiftmailer/swiftmailer": "^6.0",
  1719. "symfony/console": "^5.0",
  1720. "symfony/error-handler": "^5.0",
  1721. "symfony/finder": "^5.0",
  1722. "symfony/http-foundation": "^5.0",
  1723. "symfony/http-kernel": "^5.0",
  1724. "symfony/mime": "^5.0",
  1725. "symfony/polyfill-php73": "^1.17",
  1726. "symfony/process": "^5.0",
  1727. "symfony/routing": "^5.0",
  1728. "symfony/var-dumper": "^5.0",
  1729. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1730. "vlucas/phpdotenv": "^4.0",
  1731. "voku/portable-ascii": "^1.4.8"
  1732. },
  1733. "conflict": {
  1734. "tightenco/collect": "<5.5.33"
  1735. },
  1736. "provide": {
  1737. "psr/container-implementation": "1.0"
  1738. },
  1739. "replace": {
  1740. "illuminate/auth": "self.version",
  1741. "illuminate/broadcasting": "self.version",
  1742. "illuminate/bus": "self.version",
  1743. "illuminate/cache": "self.version",
  1744. "illuminate/config": "self.version",
  1745. "illuminate/console": "self.version",
  1746. "illuminate/container": "self.version",
  1747. "illuminate/contracts": "self.version",
  1748. "illuminate/cookie": "self.version",
  1749. "illuminate/database": "self.version",
  1750. "illuminate/encryption": "self.version",
  1751. "illuminate/events": "self.version",
  1752. "illuminate/filesystem": "self.version",
  1753. "illuminate/hashing": "self.version",
  1754. "illuminate/http": "self.version",
  1755. "illuminate/log": "self.version",
  1756. "illuminate/mail": "self.version",
  1757. "illuminate/notifications": "self.version",
  1758. "illuminate/pagination": "self.version",
  1759. "illuminate/pipeline": "self.version",
  1760. "illuminate/queue": "self.version",
  1761. "illuminate/redis": "self.version",
  1762. "illuminate/routing": "self.version",
  1763. "illuminate/session": "self.version",
  1764. "illuminate/support": "self.version",
  1765. "illuminate/testing": "self.version",
  1766. "illuminate/translation": "self.version",
  1767. "illuminate/validation": "self.version",
  1768. "illuminate/view": "self.version"
  1769. },
  1770. "require-dev": {
  1771. "aws/aws-sdk-php": "^3.155",
  1772. "doctrine/dbal": "^2.6",
  1773. "filp/whoops": "^2.8",
  1774. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1775. "league/flysystem-cached-adapter": "^1.0",
  1776. "mockery/mockery": "~1.3.3|^1.4.2",
  1777. "moontoast/math": "^1.1",
  1778. "orchestra/testbench-core": "^5.8",
  1779. "pda/pheanstalk": "^4.0",
  1780. "phpunit/phpunit": "^8.4|^9.3.3",
  1781. "predis/predis": "^1.1.1",
  1782. "symfony/cache": "^5.0"
  1783. },
  1784. "suggest": {
  1785. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1786. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1787. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1788. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1789. "ext-memcached": "Required to use the memcache cache driver.",
  1790. "ext-pcntl": "Required to use all features of the queue worker.",
  1791. "ext-posix": "Required to use all features of the queue worker.",
  1792. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1793. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1794. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1795. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1796. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1797. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1798. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1799. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1800. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1801. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1802. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1803. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1804. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1805. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1806. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1807. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1808. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1809. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1810. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1811. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "branch-alias": {
  1816. "dev-master": "7.x-dev"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/Illuminate/Foundation/helpers.php",
  1822. "src/Illuminate/Support/helpers.php"
  1823. ],
  1824. "psr-4": {
  1825. "Illuminate\\": "src/Illuminate/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Taylor Otwell",
  1835. "email": "taylor@laravel.com"
  1836. }
  1837. ],
  1838. "description": "The Laravel Framework.",
  1839. "homepage": "https://laravel.com",
  1840. "keywords": [
  1841. "framework",
  1842. "laravel"
  1843. ],
  1844. "support": {
  1845. "issues": "https://github.com/laravel/framework/issues",
  1846. "source": "https://github.com/laravel/framework"
  1847. },
  1848. "time": "2020-12-01T15:01:25+00:00"
  1849. },
  1850. {
  1851. "name": "laravel/tinker",
  1852. "version": "v2.5.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/laravel/tinker.git",
  1856. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1861. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "illuminate/console": "^6.0|^7.0|^8.0",
  1866. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1867. "illuminate/support": "^6.0|^7.0|^8.0",
  1868. "php": "^7.2.5|^8.0",
  1869. "psy/psysh": "^0.10.4",
  1870. "symfony/var-dumper": "^4.3.4|^5.0"
  1871. },
  1872. "require-dev": {
  1873. "mockery/mockery": "~1.3.3|^1.4.2",
  1874. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1875. },
  1876. "suggest": {
  1877. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "2.x-dev"
  1883. },
  1884. "laravel": {
  1885. "providers": [
  1886. "Laravel\\Tinker\\TinkerServiceProvider"
  1887. ]
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Laravel\\Tinker\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "Powerful REPL for the Laravel framework.",
  1906. "keywords": [
  1907. "REPL",
  1908. "Tinker",
  1909. "laravel",
  1910. "psysh"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/laravel/tinker/issues",
  1914. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1915. },
  1916. "time": "2020-10-29T13:07:12+00:00"
  1917. },
  1918. {
  1919. "name": "lcobucci/jwt",
  1920. "version": "3.3.3",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/lcobucci/jwt.git",
  1924. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  1929. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "ext-mbstring": "*",
  1934. "ext-openssl": "*",
  1935. "php": "^5.6 || ^7.0"
  1936. },
  1937. "require-dev": {
  1938. "mikey179/vfsstream": "~1.5",
  1939. "phpmd/phpmd": "~2.2",
  1940. "phpunit/php-invoker": "~1.1",
  1941. "phpunit/phpunit": "^5.7 || ^7.3",
  1942. "squizlabs/php_codesniffer": "~2.3"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "3.1-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Lcobucci\\JWT\\": "src"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "BSD-3-Clause"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Luís Otávio Cobucci Oblonczyk",
  1962. "email": "lcobucci@gmail.com",
  1963. "role": "Developer"
  1964. }
  1965. ],
  1966. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1967. "keywords": [
  1968. "JWS",
  1969. "jwt"
  1970. ],
  1971. "support": {
  1972. "issues": "https://github.com/lcobucci/jwt/issues",
  1973. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://github.com/lcobucci",
  1978. "type": "github"
  1979. },
  1980. {
  1981. "url": "https://www.patreon.com/lcobucci",
  1982. "type": "patreon"
  1983. }
  1984. ],
  1985. "time": "2020-08-20T13:22:28+00:00"
  1986. },
  1987. {
  1988. "name": "league/commonmark",
  1989. "version": "1.5.7",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/thephpleague/commonmark.git",
  1993. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1998. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "ext-mbstring": "*",
  2003. "php": "^7.1 || ^8.0"
  2004. },
  2005. "conflict": {
  2006. "scrutinizer/ocular": "1.7.*"
  2007. },
  2008. "require-dev": {
  2009. "cebe/markdown": "~1.0",
  2010. "commonmark/commonmark.js": "0.29.2",
  2011. "erusev/parsedown": "~1.0",
  2012. "ext-json": "*",
  2013. "github/gfm": "0.29.0",
  2014. "michelf/php-markdown": "~1.4",
  2015. "mikehaertl/php-shellcommand": "^1.4",
  2016. "phpstan/phpstan": "^0.12",
  2017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2018. "scrutinizer/ocular": "^1.5",
  2019. "symfony/finder": "^4.2"
  2020. },
  2021. "bin": [
  2022. "bin/commonmark"
  2023. ],
  2024. "type": "library",
  2025. "autoload": {
  2026. "psr-4": {
  2027. "League\\CommonMark\\": "src"
  2028. }
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "BSD-3-Clause"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Colin O'Dell",
  2037. "email": "colinodell@gmail.com",
  2038. "homepage": "https://www.colinodell.com",
  2039. "role": "Lead Developer"
  2040. }
  2041. ],
  2042. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2043. "homepage": "https://commonmark.thephpleague.com",
  2044. "keywords": [
  2045. "commonmark",
  2046. "flavored",
  2047. "gfm",
  2048. "github",
  2049. "github-flavored",
  2050. "markdown",
  2051. "md",
  2052. "parser"
  2053. ],
  2054. "support": {
  2055. "docs": "https://commonmark.thephpleague.com/",
  2056. "issues": "https://github.com/thephpleague/commonmark/issues",
  2057. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2058. "source": "https://github.com/thephpleague/commonmark"
  2059. },
  2060. "funding": [
  2061. {
  2062. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2063. "type": "custom"
  2064. },
  2065. {
  2066. "url": "https://www.colinodell.com/sponsor",
  2067. "type": "custom"
  2068. },
  2069. {
  2070. "url": "https://www.paypal.me/colinpodell/10.00",
  2071. "type": "custom"
  2072. },
  2073. {
  2074. "url": "https://github.com/colinodell",
  2075. "type": "github"
  2076. },
  2077. {
  2078. "url": "https://www.patreon.com/colinodell",
  2079. "type": "patreon"
  2080. },
  2081. {
  2082. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2083. "type": "tidelift"
  2084. }
  2085. ],
  2086. "time": "2020-10-31T13:49:32+00:00"
  2087. },
  2088. {
  2089. "name": "league/flysystem",
  2090. "version": "1.1.3",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/thephpleague/flysystem.git",
  2094. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2099. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2100. "shasum": ""
  2101. },
  2102. "require": {
  2103. "ext-fileinfo": "*",
  2104. "league/mime-type-detection": "^1.3",
  2105. "php": "^7.2.5 || ^8.0"
  2106. },
  2107. "conflict": {
  2108. "league/flysystem-sftp": "<1.0.6"
  2109. },
  2110. "require-dev": {
  2111. "phpspec/prophecy": "^1.11.1",
  2112. "phpunit/phpunit": "^8.5.8"
  2113. },
  2114. "suggest": {
  2115. "ext-fileinfo": "Required for MimeType",
  2116. "ext-ftp": "Allows you to use FTP server storage",
  2117. "ext-openssl": "Allows you to use FTPS server storage",
  2118. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2119. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2120. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2121. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2122. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2123. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2124. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2125. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2126. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2127. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2128. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "1.1-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "League\\Flysystem\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Frank de Jonge",
  2148. "email": "info@frenky.net"
  2149. }
  2150. ],
  2151. "description": "Filesystem abstraction: Many filesystems, one API.",
  2152. "keywords": [
  2153. "Cloud Files",
  2154. "WebDAV",
  2155. "abstraction",
  2156. "aws",
  2157. "cloud",
  2158. "copy.com",
  2159. "dropbox",
  2160. "file systems",
  2161. "files",
  2162. "filesystem",
  2163. "filesystems",
  2164. "ftp",
  2165. "rackspace",
  2166. "remote",
  2167. "s3",
  2168. "sftp",
  2169. "storage"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/thephpleague/flysystem/issues",
  2173. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://offset.earth/frankdejonge",
  2178. "type": "other"
  2179. }
  2180. ],
  2181. "time": "2020-08-23T07:39:11+00:00"
  2182. },
  2183. {
  2184. "name": "league/mime-type-detection",
  2185. "version": "1.5.1",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2189. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2194. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "ext-fileinfo": "*",
  2199. "php": "^7.2 || ^8.0"
  2200. },
  2201. "require-dev": {
  2202. "phpstan/phpstan": "^0.12.36",
  2203. "phpunit/phpunit": "^8.5.8"
  2204. },
  2205. "type": "library",
  2206. "autoload": {
  2207. "psr-4": {
  2208. "League\\MimeTypeDetection\\": "src"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Frank de Jonge",
  2218. "email": "info@frankdejonge.nl"
  2219. }
  2220. ],
  2221. "description": "Mime-type detection for Flysystem",
  2222. "support": {
  2223. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2224. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://github.com/frankdejonge",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2020-10-18T11:50:25+00:00"
  2237. },
  2238. {
  2239. "name": "maennchen/zipstream-php",
  2240. "version": "2.1.0",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2244. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2249. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "myclabs/php-enum": "^1.5",
  2254. "php": ">= 7.1",
  2255. "psr/http-message": "^1.0",
  2256. "symfony/polyfill-mbstring": "^1.0"
  2257. },
  2258. "require-dev": {
  2259. "ext-zip": "*",
  2260. "guzzlehttp/guzzle": ">= 6.3",
  2261. "mikey179/vfsstream": "^1.6",
  2262. "phpunit/phpunit": ">= 7.5"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "ZipStream\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Paul Duncan",
  2277. "email": "pabs@pablotron.org"
  2278. },
  2279. {
  2280. "name": "Jonatan Männchen",
  2281. "email": "jonatan@maennchen.ch"
  2282. },
  2283. {
  2284. "name": "Jesse Donat",
  2285. "email": "donatj@gmail.com"
  2286. },
  2287. {
  2288. "name": "András Kolesár",
  2289. "email": "kolesar@kolesar.hu"
  2290. }
  2291. ],
  2292. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2293. "keywords": [
  2294. "stream",
  2295. "zip"
  2296. ],
  2297. "support": {
  2298. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2299. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2300. },
  2301. "funding": [
  2302. {
  2303. "url": "https://opencollective.com/zipstream",
  2304. "type": "open_collective"
  2305. }
  2306. ],
  2307. "time": "2020-05-30T13:11:16+00:00"
  2308. },
  2309. {
  2310. "name": "markbaker/complex",
  2311. "version": "2.0.0",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2315. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2320. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "php": "^7.2 || ^8.0"
  2325. },
  2326. "require-dev": {
  2327. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2328. "phpcompatibility/php-compatibility": "^9.0",
  2329. "phpdocumentor/phpdocumentor": "2.*",
  2330. "phploc/phploc": "^4.0",
  2331. "phpmd/phpmd": "2.*",
  2332. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2333. "sebastian/phpcpd": "^4.0",
  2334. "squizlabs/php_codesniffer": "^3.4"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Complex\\": "classes/src/"
  2340. },
  2341. "files": [
  2342. "classes/src/functions/abs.php",
  2343. "classes/src/functions/acos.php",
  2344. "classes/src/functions/acosh.php",
  2345. "classes/src/functions/acot.php",
  2346. "classes/src/functions/acoth.php",
  2347. "classes/src/functions/acsc.php",
  2348. "classes/src/functions/acsch.php",
  2349. "classes/src/functions/argument.php",
  2350. "classes/src/functions/asec.php",
  2351. "classes/src/functions/asech.php",
  2352. "classes/src/functions/asin.php",
  2353. "classes/src/functions/asinh.php",
  2354. "classes/src/functions/atan.php",
  2355. "classes/src/functions/atanh.php",
  2356. "classes/src/functions/conjugate.php",
  2357. "classes/src/functions/cos.php",
  2358. "classes/src/functions/cosh.php",
  2359. "classes/src/functions/cot.php",
  2360. "classes/src/functions/coth.php",
  2361. "classes/src/functions/csc.php",
  2362. "classes/src/functions/csch.php",
  2363. "classes/src/functions/exp.php",
  2364. "classes/src/functions/inverse.php",
  2365. "classes/src/functions/ln.php",
  2366. "classes/src/functions/log2.php",
  2367. "classes/src/functions/log10.php",
  2368. "classes/src/functions/negative.php",
  2369. "classes/src/functions/pow.php",
  2370. "classes/src/functions/rho.php",
  2371. "classes/src/functions/sec.php",
  2372. "classes/src/functions/sech.php",
  2373. "classes/src/functions/sin.php",
  2374. "classes/src/functions/sinh.php",
  2375. "classes/src/functions/sqrt.php",
  2376. "classes/src/functions/tan.php",
  2377. "classes/src/functions/tanh.php",
  2378. "classes/src/functions/theta.php",
  2379. "classes/src/operations/add.php",
  2380. "classes/src/operations/subtract.php",
  2381. "classes/src/operations/multiply.php",
  2382. "classes/src/operations/divideby.php",
  2383. "classes/src/operations/divideinto.php"
  2384. ]
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Mark Baker",
  2393. "email": "mark@lange.demon.co.uk"
  2394. }
  2395. ],
  2396. "description": "PHP Class for working with complex numbers",
  2397. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2398. "keywords": [
  2399. "complex",
  2400. "mathematics"
  2401. ],
  2402. "support": {
  2403. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2404. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2405. },
  2406. "time": "2020-08-26T10:42:07+00:00"
  2407. },
  2408. {
  2409. "name": "markbaker/matrix",
  2410. "version": "2.0.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2414. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2419. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": "^7.2 || ^8.0"
  2424. },
  2425. "require-dev": {
  2426. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2427. "phpcompatibility/php-compatibility": "^9.0",
  2428. "phpdocumentor/phpdocumentor": "2.*",
  2429. "phploc/phploc": "^4.0",
  2430. "phpmd/phpmd": "2.*",
  2431. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2432. "sebastian/phpcpd": "^4.0",
  2433. "squizlabs/php_codesniffer": "^3.4"
  2434. },
  2435. "type": "library",
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Matrix\\": "classes/src/"
  2439. },
  2440. "files": [
  2441. "classes/src/functions/adjoint.php",
  2442. "classes/src/functions/antidiagonal.php",
  2443. "classes/src/functions/cofactors.php",
  2444. "classes/src/functions/determinant.php",
  2445. "classes/src/functions/diagonal.php",
  2446. "classes/src/functions/identity.php",
  2447. "classes/src/functions/inverse.php",
  2448. "classes/src/functions/minors.php",
  2449. "classes/src/functions/trace.php",
  2450. "classes/src/functions/transpose.php",
  2451. "classes/src/operations/add.php",
  2452. "classes/src/operations/directsum.php",
  2453. "classes/src/operations/subtract.php",
  2454. "classes/src/operations/multiply.php",
  2455. "classes/src/operations/divideby.php",
  2456. "classes/src/operations/divideinto.php"
  2457. ]
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Mark Baker",
  2466. "email": "mark@demon-angel.eu"
  2467. }
  2468. ],
  2469. "description": "PHP Class for working with matrices",
  2470. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2471. "keywords": [
  2472. "mathematics",
  2473. "matrix",
  2474. "vector"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2478. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2479. },
  2480. "time": "2020-08-28T17:11:00+00:00"
  2481. },
  2482. {
  2483. "name": "maxmind-db/reader",
  2484. "version": "v1.8.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2488. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2493. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=7.2"
  2498. },
  2499. "conflict": {
  2500. "ext-maxminddb": "<1.8.0,>=2.0.0"
  2501. },
  2502. "require-dev": {
  2503. "friendsofphp/php-cs-fixer": "2.*",
  2504. "php-coveralls/php-coveralls": "^2.1",
  2505. "phpunit/phpcov": ">=6.0.0",
  2506. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2507. "squizlabs/php_codesniffer": "3.*"
  2508. },
  2509. "suggest": {
  2510. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2511. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2512. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2513. },
  2514. "type": "library",
  2515. "autoload": {
  2516. "psr-4": {
  2517. "MaxMind\\Db\\": "src/MaxMind/Db"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "Apache-2.0"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Gregory J. Oschwald",
  2527. "email": "goschwald@maxmind.com",
  2528. "homepage": "https://www.maxmind.com/"
  2529. }
  2530. ],
  2531. "description": "MaxMind DB Reader API",
  2532. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2533. "keywords": [
  2534. "database",
  2535. "geoip",
  2536. "geoip2",
  2537. "geolocation",
  2538. "maxmind"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2542. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.8.0"
  2543. },
  2544. "time": "2020-10-01T17:30:21+00:00"
  2545. },
  2546. {
  2547. "name": "maxmind/web-service-common",
  2548. "version": "v0.8.1",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/maxmind/web-service-common-php.git",
  2552. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2557. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "composer/ca-bundle": "^1.0.3",
  2562. "ext-curl": "*",
  2563. "ext-json": "*",
  2564. "php": ">=7.2"
  2565. },
  2566. "require-dev": {
  2567. "friendsofphp/php-cs-fixer": "2.*",
  2568. "phpunit/phpunit": "^8.0 || ^9.0",
  2569. "squizlabs/php_codesniffer": "3.*"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-4": {
  2574. "MaxMind\\Exception\\": "src/Exception",
  2575. "MaxMind\\WebService\\": "src/WebService"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "Apache-2.0"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Gregory Oschwald",
  2585. "email": "goschwald@maxmind.com"
  2586. }
  2587. ],
  2588. "description": "Internal MaxMind Web Service API",
  2589. "homepage": "https://github.com/maxmind/web-service-common-php",
  2590. "support": {
  2591. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2592. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2593. },
  2594. "time": "2020-11-02T17:00:53+00:00"
  2595. },
  2596. {
  2597. "name": "mews/captcha",
  2598. "version": "3.2.3",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/mewebstudio/captcha.git",
  2602. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2607. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2608. "shasum": ""
  2609. },
  2610. "require": {
  2611. "ext-gd": "*",
  2612. "illuminate/config": "~5|^6|^7|^8",
  2613. "illuminate/filesystem": "~5|^6|^7|^8",
  2614. "illuminate/hashing": "~5|^6|^7|^8",
  2615. "illuminate/session": "~5|^6|^7|^8",
  2616. "illuminate/support": "~5|^6|^7|^8",
  2617. "intervention/image": "~2.5",
  2618. "php": "^7.2"
  2619. },
  2620. "require-dev": {
  2621. "mockery/mockery": "^1.0",
  2622. "phpunit/phpunit": "^8.5"
  2623. },
  2624. "type": "package",
  2625. "extra": {
  2626. "laravel": {
  2627. "providers": [
  2628. "Mews\\Captcha\\CaptchaServiceProvider"
  2629. ],
  2630. "aliases": {
  2631. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2632. }
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Mews\\Captcha\\": "src/"
  2638. },
  2639. "files": [
  2640. "src/helpers.php"
  2641. ]
  2642. },
  2643. "notification-url": "https://packagist.org/downloads/",
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Muharrem ERİN",
  2650. "email": "me@mewebstudio.com",
  2651. "homepage": "https://github.com/mewebstudio",
  2652. "role": "Developer"
  2653. }
  2654. ],
  2655. "description": "Laravel 5 & 6 Captcha Package",
  2656. "homepage": "https://github.com/mewebstudio/captcha",
  2657. "keywords": [
  2658. "captcha",
  2659. "laravel5 Security",
  2660. "laravel6 Captcha",
  2661. "laravel6 Security"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/mewebstudio/captcha/issues",
  2665. "source": "https://github.com/mewebstudio/captcha/tree/3.2.3"
  2666. },
  2667. "time": "2020-11-03T19:44:37+00:00"
  2668. },
  2669. {
  2670. "name": "mews/purifier",
  2671. "version": "3.3.3",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/mewebstudio/Purifier.git",
  2675. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2680. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "ezyang/htmlpurifier": "4.13.*",
  2685. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2686. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2687. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2688. "php": "^7.2|^8.0"
  2689. },
  2690. "require-dev": {
  2691. "graham-campbell/testbench": "^3.2|^5.5.1",
  2692. "mockery/mockery": "^1.3.3",
  2693. "phpunit/phpunit": "^8.0|^9.0"
  2694. },
  2695. "suggest": {
  2696. "laravel/framework": "To test the Laravel bindings",
  2697. "laravel/lumen-framework": "To test the Lumen bindings"
  2698. },
  2699. "type": "package",
  2700. "extra": {
  2701. "laravel": {
  2702. "providers": [
  2703. "Mews\\Purifier\\PurifierServiceProvider"
  2704. ],
  2705. "aliases": {
  2706. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2707. }
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Mews\\Purifier\\": "src/"
  2713. },
  2714. "files": [
  2715. "src/helpers.php"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "MIT"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Muharrem ERİN",
  2725. "email": "me@mewebstudio.com",
  2726. "homepage": "https://github.com/mewebstudio",
  2727. "role": "Developer"
  2728. }
  2729. ],
  2730. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2731. "homepage": "https://github.com/mewebstudio/purifier",
  2732. "keywords": [
  2733. "Purifier",
  2734. "htmlpurifier",
  2735. "laravel5 HtmlPurifier",
  2736. "laravel5 Purifier",
  2737. "laravel5 Security",
  2738. "laravel6 HtmlPurifier",
  2739. "laravel6 Purifier",
  2740. "laravel6 Security",
  2741. "security",
  2742. "xss"
  2743. ],
  2744. "support": {
  2745. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2746. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2747. },
  2748. "time": "2020-11-03T19:46:27+00:00"
  2749. },
  2750. {
  2751. "name": "mobiledetect/mobiledetectlib",
  2752. "version": "2.8.34",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2756. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2761. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "php": ">=5.0.0"
  2766. },
  2767. "require-dev": {
  2768. "phpunit/phpunit": "~4.8.35||~5.7"
  2769. },
  2770. "type": "library",
  2771. "autoload": {
  2772. "classmap": [
  2773. "Mobile_Detect.php"
  2774. ],
  2775. "psr-0": {
  2776. "Detection": "namespaced/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Serban Ghita",
  2786. "email": "serbanghita@gmail.com",
  2787. "homepage": "http://mobiledetect.net",
  2788. "role": "Developer"
  2789. }
  2790. ],
  2791. "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.",
  2792. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2793. "keywords": [
  2794. "detect mobile devices",
  2795. "mobile",
  2796. "mobile detect",
  2797. "mobile detector",
  2798. "php mobile detect"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2802. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  2803. },
  2804. "time": "2019-09-18T18:44:20+00:00"
  2805. },
  2806. {
  2807. "name": "monolog/monolog",
  2808. "version": "2.1.1",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/Seldaek/monolog.git",
  2812. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2817. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "php": ">=7.2",
  2822. "psr/log": "^1.0.1"
  2823. },
  2824. "provide": {
  2825. "psr/log-implementation": "1.0.0"
  2826. },
  2827. "require-dev": {
  2828. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2829. "doctrine/couchdb": "~1.0@dev",
  2830. "elasticsearch/elasticsearch": "^6.0",
  2831. "graylog2/gelf-php": "^1.4.2",
  2832. "php-amqplib/php-amqplib": "~2.4",
  2833. "php-console/php-console": "^3.1.3",
  2834. "php-parallel-lint/php-parallel-lint": "^1.0",
  2835. "phpspec/prophecy": "^1.6.1",
  2836. "phpunit/phpunit": "^8.5",
  2837. "predis/predis": "^1.1",
  2838. "rollbar/rollbar": "^1.3",
  2839. "ruflin/elastica": ">=0.90 <3.0",
  2840. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2841. },
  2842. "suggest": {
  2843. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2844. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2845. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2846. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2847. "ext-mbstring": "Allow to work properly with unicode symbols",
  2848. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2849. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2850. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2851. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2852. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2853. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2854. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2855. },
  2856. "type": "library",
  2857. "extra": {
  2858. "branch-alias": {
  2859. "dev-master": "2.x-dev"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Monolog\\": "src/Monolog"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Jordi Boggiano",
  2874. "email": "j.boggiano@seld.be",
  2875. "homepage": "http://seld.be"
  2876. }
  2877. ],
  2878. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2879. "homepage": "http://github.com/Seldaek/monolog",
  2880. "keywords": [
  2881. "log",
  2882. "logging",
  2883. "psr-3"
  2884. ],
  2885. "support": {
  2886. "issues": "https://github.com/Seldaek/monolog/issues",
  2887. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  2888. },
  2889. "funding": [
  2890. {
  2891. "url": "https://github.com/Seldaek",
  2892. "type": "github"
  2893. },
  2894. {
  2895. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2896. "type": "tidelift"
  2897. }
  2898. ],
  2899. "time": "2020-07-23T08:41:23+00:00"
  2900. },
  2901. {
  2902. "name": "myclabs/php-enum",
  2903. "version": "1.7.7",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/myclabs/php-enum.git",
  2907. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2912. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2913. "shasum": ""
  2914. },
  2915. "require": {
  2916. "ext-json": "*",
  2917. "php": ">=7.1"
  2918. },
  2919. "require-dev": {
  2920. "phpunit/phpunit": "^7",
  2921. "squizlabs/php_codesniffer": "1.*",
  2922. "vimeo/psalm": "^3.8"
  2923. },
  2924. "type": "library",
  2925. "autoload": {
  2926. "psr-4": {
  2927. "MyCLabs\\Enum\\": "src/"
  2928. }
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "PHP Enum contributors",
  2937. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2938. }
  2939. ],
  2940. "description": "PHP Enum implementation",
  2941. "homepage": "http://github.com/myclabs/php-enum",
  2942. "keywords": [
  2943. "enum"
  2944. ],
  2945. "support": {
  2946. "issues": "https://github.com/myclabs/php-enum/issues",
  2947. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2948. },
  2949. "funding": [
  2950. {
  2951. "url": "https://github.com/mnapoli",
  2952. "type": "github"
  2953. },
  2954. {
  2955. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2956. "type": "tidelift"
  2957. }
  2958. ],
  2959. "time": "2020-11-14T18:14:52+00:00"
  2960. },
  2961. {
  2962. "name": "namshi/jose",
  2963. "version": "7.2.3",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/namshi/jose.git",
  2967. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2972. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "ext-date": "*",
  2977. "ext-hash": "*",
  2978. "ext-json": "*",
  2979. "ext-pcre": "*",
  2980. "ext-spl": "*",
  2981. "php": ">=5.5",
  2982. "symfony/polyfill-php56": "^1.0"
  2983. },
  2984. "require-dev": {
  2985. "phpseclib/phpseclib": "^2.0",
  2986. "phpunit/phpunit": "^4.5|^5.0",
  2987. "satooshi/php-coveralls": "^1.0"
  2988. },
  2989. "suggest": {
  2990. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2991. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2992. },
  2993. "type": "library",
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "Alessandro Nadalin",
  3006. "email": "alessandro.nadalin@gmail.com"
  3007. },
  3008. {
  3009. "name": "Alessandro Cinelli (cirpo)",
  3010. "email": "alessandro.cinelli@gmail.com"
  3011. }
  3012. ],
  3013. "description": "JSON Object Signing and Encryption library for PHP.",
  3014. "keywords": [
  3015. "JSON Web Signature",
  3016. "JSON Web Token",
  3017. "JWS",
  3018. "json",
  3019. "jwt",
  3020. "token"
  3021. ],
  3022. "support": {
  3023. "issues": "https://github.com/namshi/jose/issues",
  3024. "source": "https://github.com/namshi/jose/tree/master"
  3025. },
  3026. "time": "2016-12-05T07:27:31+00:00"
  3027. },
  3028. {
  3029. "name": "nesbot/carbon",
  3030. "version": "2.42.0",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/briannesbitt/Carbon.git",
  3034. "reference": "d0463779663437392fe42ff339ebc0213bd55498"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498",
  3039. "reference": "d0463779663437392fe42ff339ebc0213bd55498",
  3040. "shasum": ""
  3041. },
  3042. "require": {
  3043. "ext-json": "*",
  3044. "php": "^7.1.8 || ^8.0",
  3045. "symfony/polyfill-mbstring": "^1.0",
  3046. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3047. },
  3048. "require-dev": {
  3049. "doctrine/orm": "^2.7",
  3050. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3051. "kylekatarnls/multi-tester": "^2.0",
  3052. "phpmd/phpmd": "^2.9",
  3053. "phpstan/extension-installer": "^1.0",
  3054. "phpstan/phpstan": "^0.12.54",
  3055. "phpunit/phpunit": "^7.5 || ^8.0",
  3056. "squizlabs/php_codesniffer": "^3.4"
  3057. },
  3058. "bin": [
  3059. "bin/carbon"
  3060. ],
  3061. "type": "library",
  3062. "extra": {
  3063. "branch-alias": {
  3064. "dev-master": "2.x-dev",
  3065. "dev-3.x": "3.x-dev"
  3066. },
  3067. "laravel": {
  3068. "providers": [
  3069. "Carbon\\Laravel\\ServiceProvider"
  3070. ]
  3071. },
  3072. "phpstan": {
  3073. "includes": [
  3074. "extension.neon"
  3075. ]
  3076. }
  3077. },
  3078. "autoload": {
  3079. "psr-4": {
  3080. "Carbon\\": "src/Carbon/"
  3081. }
  3082. },
  3083. "notification-url": "https://packagist.org/downloads/",
  3084. "license": [
  3085. "MIT"
  3086. ],
  3087. "authors": [
  3088. {
  3089. "name": "Brian Nesbitt",
  3090. "email": "brian@nesbot.com",
  3091. "homepage": "http://nesbot.com"
  3092. },
  3093. {
  3094. "name": "kylekatarnls",
  3095. "homepage": "http://github.com/kylekatarnls"
  3096. }
  3097. ],
  3098. "description": "An API extension for DateTime that supports 281 different languages.",
  3099. "homepage": "http://carbon.nesbot.com",
  3100. "keywords": [
  3101. "date",
  3102. "datetime",
  3103. "time"
  3104. ],
  3105. "support": {
  3106. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3107. "source": "https://github.com/briannesbitt/Carbon"
  3108. },
  3109. "funding": [
  3110. {
  3111. "url": "https://opencollective.com/Carbon",
  3112. "type": "open_collective"
  3113. },
  3114. {
  3115. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3116. "type": "tidelift"
  3117. }
  3118. ],
  3119. "time": "2020-11-28T14:25:28+00:00"
  3120. },
  3121. {
  3122. "name": "nikic/php-parser",
  3123. "version": "v4.10.3",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/nikic/PHP-Parser.git",
  3127. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  3132. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "ext-tokenizer": "*",
  3137. "php": ">=7.0"
  3138. },
  3139. "require-dev": {
  3140. "ircmaxell/php-yacc": "^0.0.7",
  3141. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3142. },
  3143. "bin": [
  3144. "bin/php-parse"
  3145. ],
  3146. "type": "library",
  3147. "extra": {
  3148. "branch-alias": {
  3149. "dev-master": "4.9-dev"
  3150. }
  3151. },
  3152. "autoload": {
  3153. "psr-4": {
  3154. "PhpParser\\": "lib/PhpParser"
  3155. }
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "BSD-3-Clause"
  3160. ],
  3161. "authors": [
  3162. {
  3163. "name": "Nikita Popov"
  3164. }
  3165. ],
  3166. "description": "A PHP parser written in PHP",
  3167. "keywords": [
  3168. "parser",
  3169. "php"
  3170. ],
  3171. "support": {
  3172. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3173. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.3"
  3174. },
  3175. "time": "2020-12-03T17:45:45+00:00"
  3176. },
  3177. {
  3178. "name": "opis/closure",
  3179. "version": "3.6.1",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/opis/closure.git",
  3183. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3188. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3189. "shasum": ""
  3190. },
  3191. "require": {
  3192. "php": "^5.4 || ^7.0 || ^8.0"
  3193. },
  3194. "require-dev": {
  3195. "jeremeamia/superclosure": "^2.0",
  3196. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3197. },
  3198. "type": "library",
  3199. "extra": {
  3200. "branch-alias": {
  3201. "dev-master": "3.6.x-dev"
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Opis\\Closure\\": "src/"
  3207. },
  3208. "files": [
  3209. "functions.php"
  3210. ]
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "Marius Sarca",
  3219. "email": "marius.sarca@gmail.com"
  3220. },
  3221. {
  3222. "name": "Sorin Sarca",
  3223. "email": "sarca_sorin@hotmail.com"
  3224. }
  3225. ],
  3226. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3227. "homepage": "https://opis.io/closure",
  3228. "keywords": [
  3229. "anonymous functions",
  3230. "closure",
  3231. "function",
  3232. "serializable",
  3233. "serialization",
  3234. "serialize"
  3235. ],
  3236. "support": {
  3237. "issues": "https://github.com/opis/closure/issues",
  3238. "source": "https://github.com/opis/closure/tree/3.6.1"
  3239. },
  3240. "time": "2020-11-07T02:01:34+00:00"
  3241. },
  3242. {
  3243. "name": "overtrue/laravel-lang",
  3244. "version": "4.2.1",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/overtrue/laravel-lang.git",
  3248. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3253. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "ext-json": "*",
  3258. "laravel-lang/lang": "^7.0",
  3259. "symfony/process": "^5.0.0"
  3260. },
  3261. "require-dev": {
  3262. "laravel/framework": "~8.1"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "laravel": {
  3267. "providers": [
  3268. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3269. ]
  3270. }
  3271. },
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Overtrue\\LaravelLang\\": "src/"
  3275. }
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "MIT"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "overtrue",
  3284. "email": "anzhengchao@gmail.com"
  3285. }
  3286. ],
  3287. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3288. "keywords": [
  3289. "i18n",
  3290. "languages",
  3291. "laravel",
  3292. "locale",
  3293. "overtrue"
  3294. ],
  3295. "support": {
  3296. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3297. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3298. },
  3299. "funding": [
  3300. {
  3301. "url": "https://www.patreon.com/overtrue",
  3302. "type": "patreon"
  3303. }
  3304. ],
  3305. "time": "2020-11-12T01:44:31+00:00"
  3306. },
  3307. {
  3308. "name": "phpoffice/phpspreadsheet",
  3309. "version": "1.15.0",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3313. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3318. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "ext-ctype": "*",
  3323. "ext-dom": "*",
  3324. "ext-fileinfo": "*",
  3325. "ext-gd": "*",
  3326. "ext-iconv": "*",
  3327. "ext-libxml": "*",
  3328. "ext-mbstring": "*",
  3329. "ext-simplexml": "*",
  3330. "ext-xml": "*",
  3331. "ext-xmlreader": "*",
  3332. "ext-xmlwriter": "*",
  3333. "ext-zip": "*",
  3334. "ext-zlib": "*",
  3335. "maennchen/zipstream-php": "^2.1",
  3336. "markbaker/complex": "^1.5|^2.0",
  3337. "markbaker/matrix": "^1.2|^2.0",
  3338. "php": "^7.2|^8.0",
  3339. "psr/http-client": "^1.0",
  3340. "psr/http-factory": "^1.0",
  3341. "psr/simple-cache": "^1.0"
  3342. },
  3343. "require-dev": {
  3344. "dompdf/dompdf": "^0.8.5",
  3345. "friendsofphp/php-cs-fixer": "^2.16",
  3346. "jpgraph/jpgraph": "^4.0",
  3347. "mpdf/mpdf": "^8.0",
  3348. "phpcompatibility/php-compatibility": "^9.3",
  3349. "phpunit/phpunit": "^8.5|^9.3",
  3350. "squizlabs/php_codesniffer": "^3.5",
  3351. "tecnickcom/tcpdf": "^6.3"
  3352. },
  3353. "suggest": {
  3354. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3355. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3356. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3357. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3358. },
  3359. "type": "library",
  3360. "autoload": {
  3361. "psr-4": {
  3362. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3363. }
  3364. },
  3365. "notification-url": "https://packagist.org/downloads/",
  3366. "license": [
  3367. "MIT"
  3368. ],
  3369. "authors": [
  3370. {
  3371. "name": "Maarten Balliauw",
  3372. "homepage": "https://blog.maartenballiauw.be"
  3373. },
  3374. {
  3375. "name": "Mark Baker",
  3376. "homepage": "https://markbakeruk.net"
  3377. },
  3378. {
  3379. "name": "Franck Lefevre",
  3380. "homepage": "https://rootslabs.net"
  3381. },
  3382. {
  3383. "name": "Erik Tilt"
  3384. },
  3385. {
  3386. "name": "Adrien Crivelli"
  3387. }
  3388. ],
  3389. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3390. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3391. "keywords": [
  3392. "OpenXML",
  3393. "excel",
  3394. "gnumeric",
  3395. "ods",
  3396. "php",
  3397. "spreadsheet",
  3398. "xls",
  3399. "xlsx"
  3400. ],
  3401. "support": {
  3402. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3403. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0"
  3404. },
  3405. "time": "2020-10-11T13:20:59+00:00"
  3406. },
  3407. {
  3408. "name": "phpoption/phpoption",
  3409. "version": "1.7.5",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://github.com/schmittjoh/php-option.git",
  3413. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3418. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3419. "shasum": ""
  3420. },
  3421. "require": {
  3422. "php": "^5.5.9 || ^7.0 || ^8.0"
  3423. },
  3424. "require-dev": {
  3425. "bamarni/composer-bin-plugin": "^1.4.1",
  3426. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3427. },
  3428. "type": "library",
  3429. "extra": {
  3430. "branch-alias": {
  3431. "dev-master": "1.7-dev"
  3432. }
  3433. },
  3434. "autoload": {
  3435. "psr-4": {
  3436. "PhpOption\\": "src/PhpOption/"
  3437. }
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "Apache-2.0"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Johannes M. Schmitt",
  3446. "email": "schmittjoh@gmail.com"
  3447. },
  3448. {
  3449. "name": "Graham Campbell",
  3450. "email": "graham@alt-three.com"
  3451. }
  3452. ],
  3453. "description": "Option Type for PHP",
  3454. "keywords": [
  3455. "language",
  3456. "option",
  3457. "php",
  3458. "type"
  3459. ],
  3460. "support": {
  3461. "issues": "https://github.com/schmittjoh/php-option/issues",
  3462. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3463. },
  3464. "funding": [
  3465. {
  3466. "url": "https://github.com/GrahamCampbell",
  3467. "type": "github"
  3468. },
  3469. {
  3470. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3471. "type": "tidelift"
  3472. }
  3473. ],
  3474. "time": "2020-07-20T17:29:33+00:00"
  3475. },
  3476. {
  3477. "name": "psr/container",
  3478. "version": "1.0.0",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/php-fig/container.git",
  3482. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3487. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "php": ">=5.3.0"
  3492. },
  3493. "type": "library",
  3494. "extra": {
  3495. "branch-alias": {
  3496. "dev-master": "1.0.x-dev"
  3497. }
  3498. },
  3499. "autoload": {
  3500. "psr-4": {
  3501. "Psr\\Container\\": "src/"
  3502. }
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "PHP-FIG",
  3511. "homepage": "http://www.php-fig.org/"
  3512. }
  3513. ],
  3514. "description": "Common Container Interface (PHP FIG PSR-11)",
  3515. "homepage": "https://github.com/php-fig/container",
  3516. "keywords": [
  3517. "PSR-11",
  3518. "container",
  3519. "container-interface",
  3520. "container-interop",
  3521. "psr"
  3522. ],
  3523. "support": {
  3524. "issues": "https://github.com/php-fig/container/issues",
  3525. "source": "https://github.com/php-fig/container/tree/master"
  3526. },
  3527. "time": "2017-02-14T16:28:37+00:00"
  3528. },
  3529. {
  3530. "name": "psr/event-dispatcher",
  3531. "version": "1.0.0",
  3532. "source": {
  3533. "type": "git",
  3534. "url": "https://github.com/php-fig/event-dispatcher.git",
  3535. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3536. },
  3537. "dist": {
  3538. "type": "zip",
  3539. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3540. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3541. "shasum": ""
  3542. },
  3543. "require": {
  3544. "php": ">=7.2.0"
  3545. },
  3546. "type": "library",
  3547. "extra": {
  3548. "branch-alias": {
  3549. "dev-master": "1.0.x-dev"
  3550. }
  3551. },
  3552. "autoload": {
  3553. "psr-4": {
  3554. "Psr\\EventDispatcher\\": "src/"
  3555. }
  3556. },
  3557. "notification-url": "https://packagist.org/downloads/",
  3558. "license": [
  3559. "MIT"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "PHP-FIG",
  3564. "homepage": "http://www.php-fig.org/"
  3565. }
  3566. ],
  3567. "description": "Standard interfaces for event handling.",
  3568. "keywords": [
  3569. "events",
  3570. "psr",
  3571. "psr-14"
  3572. ],
  3573. "support": {
  3574. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3575. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3576. },
  3577. "time": "2019-01-08T18:20:26+00:00"
  3578. },
  3579. {
  3580. "name": "psr/http-client",
  3581. "version": "1.0.1",
  3582. "source": {
  3583. "type": "git",
  3584. "url": "https://github.com/php-fig/http-client.git",
  3585. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3586. },
  3587. "dist": {
  3588. "type": "zip",
  3589. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3590. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3591. "shasum": ""
  3592. },
  3593. "require": {
  3594. "php": "^7.0 || ^8.0",
  3595. "psr/http-message": "^1.0"
  3596. },
  3597. "type": "library",
  3598. "extra": {
  3599. "branch-alias": {
  3600. "dev-master": "1.0.x-dev"
  3601. }
  3602. },
  3603. "autoload": {
  3604. "psr-4": {
  3605. "Psr\\Http\\Client\\": "src/"
  3606. }
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "MIT"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "PHP-FIG",
  3615. "homepage": "http://www.php-fig.org/"
  3616. }
  3617. ],
  3618. "description": "Common interface for HTTP clients",
  3619. "homepage": "https://github.com/php-fig/http-client",
  3620. "keywords": [
  3621. "http",
  3622. "http-client",
  3623. "psr",
  3624. "psr-18"
  3625. ],
  3626. "support": {
  3627. "source": "https://github.com/php-fig/http-client/tree/master"
  3628. },
  3629. "time": "2020-06-29T06:28:15+00:00"
  3630. },
  3631. {
  3632. "name": "psr/http-factory",
  3633. "version": "1.0.1",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/php-fig/http-factory.git",
  3637. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3642. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "php": ">=7.0.0",
  3647. "psr/http-message": "^1.0"
  3648. },
  3649. "type": "library",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-master": "1.0.x-dev"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Psr\\Http\\Message\\": "src/"
  3658. }
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "PHP-FIG",
  3667. "homepage": "http://www.php-fig.org/"
  3668. }
  3669. ],
  3670. "description": "Common interfaces for PSR-7 HTTP message factories",
  3671. "keywords": [
  3672. "factory",
  3673. "http",
  3674. "message",
  3675. "psr",
  3676. "psr-17",
  3677. "psr-7",
  3678. "request",
  3679. "response"
  3680. ],
  3681. "support": {
  3682. "source": "https://github.com/php-fig/http-factory/tree/master"
  3683. },
  3684. "time": "2019-04-30T12:38:16+00:00"
  3685. },
  3686. {
  3687. "name": "psr/http-message",
  3688. "version": "1.0.1",
  3689. "source": {
  3690. "type": "git",
  3691. "url": "https://github.com/php-fig/http-message.git",
  3692. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3693. },
  3694. "dist": {
  3695. "type": "zip",
  3696. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3697. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3698. "shasum": ""
  3699. },
  3700. "require": {
  3701. "php": ">=5.3.0"
  3702. },
  3703. "type": "library",
  3704. "extra": {
  3705. "branch-alias": {
  3706. "dev-master": "1.0.x-dev"
  3707. }
  3708. },
  3709. "autoload": {
  3710. "psr-4": {
  3711. "Psr\\Http\\Message\\": "src/"
  3712. }
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "PHP-FIG",
  3721. "homepage": "http://www.php-fig.org/"
  3722. }
  3723. ],
  3724. "description": "Common interface for HTTP messages",
  3725. "homepage": "https://github.com/php-fig/http-message",
  3726. "keywords": [
  3727. "http",
  3728. "http-message",
  3729. "psr",
  3730. "psr-7",
  3731. "request",
  3732. "response"
  3733. ],
  3734. "support": {
  3735. "source": "https://github.com/php-fig/http-message/tree/master"
  3736. },
  3737. "time": "2016-08-06T14:39:51+00:00"
  3738. },
  3739. {
  3740. "name": "psr/log",
  3741. "version": "1.1.3",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://github.com/php-fig/log.git",
  3745. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3750. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3751. "shasum": ""
  3752. },
  3753. "require": {
  3754. "php": ">=5.3.0"
  3755. },
  3756. "type": "library",
  3757. "extra": {
  3758. "branch-alias": {
  3759. "dev-master": "1.1.x-dev"
  3760. }
  3761. },
  3762. "autoload": {
  3763. "psr-4": {
  3764. "Psr\\Log\\": "Psr/Log/"
  3765. }
  3766. },
  3767. "notification-url": "https://packagist.org/downloads/",
  3768. "license": [
  3769. "MIT"
  3770. ],
  3771. "authors": [
  3772. {
  3773. "name": "PHP-FIG",
  3774. "homepage": "http://www.php-fig.org/"
  3775. }
  3776. ],
  3777. "description": "Common interface for logging libraries",
  3778. "homepage": "https://github.com/php-fig/log",
  3779. "keywords": [
  3780. "log",
  3781. "psr",
  3782. "psr-3"
  3783. ],
  3784. "support": {
  3785. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3786. },
  3787. "time": "2020-03-23T09:12:05+00:00"
  3788. },
  3789. {
  3790. "name": "psr/simple-cache",
  3791. "version": "1.0.1",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/php-fig/simple-cache.git",
  3795. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3800. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3801. "shasum": ""
  3802. },
  3803. "require": {
  3804. "php": ">=5.3.0"
  3805. },
  3806. "type": "library",
  3807. "extra": {
  3808. "branch-alias": {
  3809. "dev-master": "1.0.x-dev"
  3810. }
  3811. },
  3812. "autoload": {
  3813. "psr-4": {
  3814. "Psr\\SimpleCache\\": "src/"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "MIT"
  3820. ],
  3821. "authors": [
  3822. {
  3823. "name": "PHP-FIG",
  3824. "homepage": "http://www.php-fig.org/"
  3825. }
  3826. ],
  3827. "description": "Common interfaces for simple caching",
  3828. "keywords": [
  3829. "cache",
  3830. "caching",
  3831. "psr",
  3832. "psr-16",
  3833. "simple-cache"
  3834. ],
  3835. "support": {
  3836. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3837. },
  3838. "time": "2017-10-23T01:57:42+00:00"
  3839. },
  3840. {
  3841. "name": "psy/psysh",
  3842. "version": "v0.10.5",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/bobthecow/psysh.git",
  3846. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3851. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "dnoegel/php-xdg-base-dir": "0.1.*",
  3856. "ext-json": "*",
  3857. "ext-tokenizer": "*",
  3858. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3859. "php": "^8.0 || ^7.0 || ^5.5.9",
  3860. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3861. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3862. },
  3863. "require-dev": {
  3864. "bamarni/composer-bin-plugin": "^1.2",
  3865. "hoa/console": "3.17.*"
  3866. },
  3867. "suggest": {
  3868. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3869. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3870. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3871. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3872. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3873. },
  3874. "bin": [
  3875. "bin/psysh"
  3876. ],
  3877. "type": "library",
  3878. "extra": {
  3879. "branch-alias": {
  3880. "dev-master": "0.10.x-dev"
  3881. }
  3882. },
  3883. "autoload": {
  3884. "files": [
  3885. "src/functions.php"
  3886. ],
  3887. "psr-4": {
  3888. "Psy\\": "src/"
  3889. }
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "Justin Hileman",
  3898. "email": "justin@justinhileman.info",
  3899. "homepage": "http://justinhileman.com"
  3900. }
  3901. ],
  3902. "description": "An interactive shell for modern PHP.",
  3903. "homepage": "http://psysh.org",
  3904. "keywords": [
  3905. "REPL",
  3906. "console",
  3907. "interactive",
  3908. "shell"
  3909. ],
  3910. "support": {
  3911. "issues": "https://github.com/bobthecow/psysh/issues",
  3912. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3913. },
  3914. "time": "2020-12-04T02:51:30+00:00"
  3915. },
  3916. {
  3917. "name": "ralouphie/getallheaders",
  3918. "version": "3.0.3",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://github.com/ralouphie/getallheaders.git",
  3922. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3923. },
  3924. "dist": {
  3925. "type": "zip",
  3926. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3927. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3928. "shasum": ""
  3929. },
  3930. "require": {
  3931. "php": ">=5.6"
  3932. },
  3933. "require-dev": {
  3934. "php-coveralls/php-coveralls": "^2.1",
  3935. "phpunit/phpunit": "^5 || ^6.5"
  3936. },
  3937. "type": "library",
  3938. "autoload": {
  3939. "files": [
  3940. "src/getallheaders.php"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Ralph Khattar",
  3950. "email": "ralph.khattar@gmail.com"
  3951. }
  3952. ],
  3953. "description": "A polyfill for getallheaders.",
  3954. "support": {
  3955. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3956. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3957. },
  3958. "time": "2019-03-08T08:55:37+00:00"
  3959. },
  3960. {
  3961. "name": "ramsey/collection",
  3962. "version": "1.1.1",
  3963. "source": {
  3964. "type": "git",
  3965. "url": "https://github.com/ramsey/collection.git",
  3966. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3967. },
  3968. "dist": {
  3969. "type": "zip",
  3970. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3971. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3972. "shasum": ""
  3973. },
  3974. "require": {
  3975. "php": "^7.2 || ^8"
  3976. },
  3977. "require-dev": {
  3978. "captainhook/captainhook": "^5.3",
  3979. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3980. "ergebnis/composer-normalize": "^2.6",
  3981. "fzaninotto/faker": "^1.5",
  3982. "hamcrest/hamcrest-php": "^2",
  3983. "jangregor/phpstan-prophecy": "^0.6",
  3984. "mockery/mockery": "^1.3",
  3985. "phpstan/extension-installer": "^1",
  3986. "phpstan/phpstan": "^0.12.32",
  3987. "phpstan/phpstan-mockery": "^0.12.5",
  3988. "phpstan/phpstan-phpunit": "^0.12.11",
  3989. "phpunit/phpunit": "^8.5",
  3990. "psy/psysh": "^0.10.4",
  3991. "slevomat/coding-standard": "^6.3",
  3992. "squizlabs/php_codesniffer": "^3.5",
  3993. "vimeo/psalm": "^3.12.2"
  3994. },
  3995. "type": "library",
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Ramsey\\Collection\\": "src/"
  3999. }
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "Ben Ramsey",
  4008. "email": "ben@benramsey.com",
  4009. "homepage": "https://benramsey.com"
  4010. }
  4011. ],
  4012. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4013. "keywords": [
  4014. "array",
  4015. "collection",
  4016. "hash",
  4017. "map",
  4018. "queue",
  4019. "set"
  4020. ],
  4021. "support": {
  4022. "issues": "https://github.com/ramsey/collection/issues",
  4023. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4024. },
  4025. "funding": [
  4026. {
  4027. "url": "https://github.com/ramsey",
  4028. "type": "github"
  4029. }
  4030. ],
  4031. "time": "2020-09-10T20:58:17+00:00"
  4032. },
  4033. {
  4034. "name": "ramsey/uuid",
  4035. "version": "4.1.1",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://github.com/ramsey/uuid.git",
  4039. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4044. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4045. "shasum": ""
  4046. },
  4047. "require": {
  4048. "brick/math": "^0.8 || ^0.9",
  4049. "ext-json": "*",
  4050. "php": "^7.2 || ^8",
  4051. "ramsey/collection": "^1.0",
  4052. "symfony/polyfill-ctype": "^1.8"
  4053. },
  4054. "replace": {
  4055. "rhumsaa/uuid": "self.version"
  4056. },
  4057. "require-dev": {
  4058. "codeception/aspect-mock": "^3",
  4059. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4060. "doctrine/annotations": "^1.8",
  4061. "goaop/framework": "^2",
  4062. "mockery/mockery": "^1.3",
  4063. "moontoast/math": "^1.1",
  4064. "paragonie/random-lib": "^2",
  4065. "php-mock/php-mock-mockery": "^1.3",
  4066. "php-mock/php-mock-phpunit": "^2.5",
  4067. "php-parallel-lint/php-parallel-lint": "^1.1",
  4068. "phpbench/phpbench": "^0.17.1",
  4069. "phpstan/extension-installer": "^1.0",
  4070. "phpstan/phpstan": "^0.12",
  4071. "phpstan/phpstan-mockery": "^0.12",
  4072. "phpstan/phpstan-phpunit": "^0.12",
  4073. "phpunit/phpunit": "^8.5",
  4074. "psy/psysh": "^0.10.0",
  4075. "slevomat/coding-standard": "^6.0",
  4076. "squizlabs/php_codesniffer": "^3.5",
  4077. "vimeo/psalm": "3.9.4"
  4078. },
  4079. "suggest": {
  4080. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4081. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4082. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4083. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4084. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4085. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4086. },
  4087. "type": "library",
  4088. "extra": {
  4089. "branch-alias": {
  4090. "dev-master": "4.x-dev"
  4091. }
  4092. },
  4093. "autoload": {
  4094. "psr-4": {
  4095. "Ramsey\\Uuid\\": "src/"
  4096. },
  4097. "files": [
  4098. "src/functions.php"
  4099. ]
  4100. },
  4101. "notification-url": "https://packagist.org/downloads/",
  4102. "license": [
  4103. "MIT"
  4104. ],
  4105. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4106. "homepage": "https://github.com/ramsey/uuid",
  4107. "keywords": [
  4108. "guid",
  4109. "identifier",
  4110. "uuid"
  4111. ],
  4112. "support": {
  4113. "issues": "https://github.com/ramsey/uuid/issues",
  4114. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4115. "source": "https://github.com/ramsey/uuid"
  4116. },
  4117. "funding": [
  4118. {
  4119. "url": "https://github.com/ramsey",
  4120. "type": "github"
  4121. }
  4122. ],
  4123. "time": "2020-08-18T17:17:46+00:00"
  4124. },
  4125. {
  4126. "name": "rap2hpoutre/laravel-log-viewer",
  4127. "version": "v1.7.0",
  4128. "source": {
  4129. "type": "git",
  4130. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4131. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4132. },
  4133. "dist": {
  4134. "type": "zip",
  4135. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4136. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4137. "shasum": ""
  4138. },
  4139. "require": {
  4140. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4141. "php": ">=5.4.0"
  4142. },
  4143. "require-dev": {
  4144. "orchestra/testbench": "3.7.*",
  4145. "phpunit/phpunit": "^7"
  4146. },
  4147. "type": "laravel-package",
  4148. "extra": {
  4149. "laravel": {
  4150. "providers": [
  4151. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4152. ]
  4153. }
  4154. },
  4155. "autoload": {
  4156. "classmap": [
  4157. "src/controllers"
  4158. ],
  4159. "psr-0": {
  4160. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4161. }
  4162. },
  4163. "notification-url": "https://packagist.org/downloads/",
  4164. "license": [
  4165. "MIT"
  4166. ],
  4167. "authors": [
  4168. {
  4169. "name": "rap2hpoutre",
  4170. "email": "raphaelht@gmail.com"
  4171. }
  4172. ],
  4173. "description": "A Laravel log reader",
  4174. "keywords": [
  4175. "laravel",
  4176. "log",
  4177. "log-reader",
  4178. "log-viewer",
  4179. "logging",
  4180. "lumen"
  4181. ],
  4182. "support": {
  4183. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4184. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4185. },
  4186. "time": "2020-09-08T12:21:27+00:00"
  4187. },
  4188. {
  4189. "name": "riverslei/payment",
  4190. "version": "v5.1.0",
  4191. "source": {
  4192. "type": "git",
  4193. "url": "https://github.com/helei112g/payment.git",
  4194. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4195. },
  4196. "dist": {
  4197. "type": "zip",
  4198. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4199. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4200. "shasum": ""
  4201. },
  4202. "require": {
  4203. "ext-bcmath": "*",
  4204. "ext-json": "*",
  4205. "ext-mbstring": "*",
  4206. "ext-openssl": "*",
  4207. "ext-simplexml": "*",
  4208. "ext-xml": "*",
  4209. "guzzlehttp/guzzle": "~6.0",
  4210. "php": ">=7.0"
  4211. },
  4212. "require-dev": {
  4213. "codeception/codeception": "*"
  4214. },
  4215. "type": "library",
  4216. "autoload": {
  4217. "psr-4": {
  4218. "Payment\\": "src/"
  4219. }
  4220. },
  4221. "notification-url": "https://packagist.org/downloads/",
  4222. "license": [
  4223. "MIT"
  4224. ],
  4225. "authors": [
  4226. {
  4227. "name": "Leo",
  4228. "email": "dayugog@gmail.com",
  4229. "homepage": "https://dayutalk.cn"
  4230. }
  4231. ],
  4232. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4233. "homepage": "http://helei112g.github.io/payment",
  4234. "keywords": [
  4235. "alipay",
  4236. "weixin",
  4237. "一网通",
  4238. "微信支付",
  4239. "招商一网通",
  4240. "支付宝支付",
  4241. "集成支付接口SDK"
  4242. ],
  4243. "support": {
  4244. "issues": "https://github.com/helei112g/payment/issues",
  4245. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4246. },
  4247. "time": "2020-05-04T03:07:17+00:00"
  4248. },
  4249. {
  4250. "name": "spatie/laravel-permission",
  4251. "version": "3.18.0",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/spatie/laravel-permission.git",
  4255. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4260. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4261. "shasum": ""
  4262. },
  4263. "require": {
  4264. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4265. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4266. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4267. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4268. "php": "^7.2.5|^8.0"
  4269. },
  4270. "require-dev": {
  4271. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4272. "phpunit/phpunit": "^8.0|^9.0",
  4273. "predis/predis": "^1.1"
  4274. },
  4275. "type": "library",
  4276. "extra": {
  4277. "laravel": {
  4278. "providers": [
  4279. "Spatie\\Permission\\PermissionServiceProvider"
  4280. ]
  4281. }
  4282. },
  4283. "autoload": {
  4284. "psr-4": {
  4285. "Spatie\\Permission\\": "src"
  4286. },
  4287. "files": [
  4288. "src/helpers.php"
  4289. ]
  4290. },
  4291. "notification-url": "https://packagist.org/downloads/",
  4292. "license": [
  4293. "MIT"
  4294. ],
  4295. "authors": [
  4296. {
  4297. "name": "Freek Van der Herten",
  4298. "email": "freek@spatie.be",
  4299. "homepage": "https://spatie.be",
  4300. "role": "Developer"
  4301. }
  4302. ],
  4303. "description": "Permission handling for Laravel 5.8 and up",
  4304. "homepage": "https://github.com/spatie/laravel-permission",
  4305. "keywords": [
  4306. "acl",
  4307. "laravel",
  4308. "permission",
  4309. "permissions",
  4310. "rbac",
  4311. "roles",
  4312. "security",
  4313. "spatie"
  4314. ],
  4315. "support": {
  4316. "issues": "https://github.com/spatie/laravel-permission/issues",
  4317. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4318. },
  4319. "funding": [
  4320. {
  4321. "url": "https://github.com/spatie",
  4322. "type": "github"
  4323. }
  4324. ],
  4325. "time": "2020-11-09T14:08:36+00:00"
  4326. },
  4327. {
  4328. "name": "srmklive/paypal",
  4329. "version": "1.8.0",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/srmklive/laravel-paypal.git",
  4333. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4338. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "guzzlehttp/guzzle": "~6.0|~7.0",
  4343. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4344. "nesbot/carbon": "~1.0|~2.0"
  4345. },
  4346. "type": "library",
  4347. "extra": {
  4348. "laravel": {
  4349. "providers": [
  4350. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4351. ],
  4352. "aliases": {
  4353. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4354. }
  4355. }
  4356. },
  4357. "autoload": {
  4358. "psr-4": {
  4359. "Srmklive\\PayPal\\": "src/"
  4360. }
  4361. },
  4362. "notification-url": "https://packagist.org/downloads/",
  4363. "license": [
  4364. "MIT"
  4365. ],
  4366. "authors": [
  4367. {
  4368. "name": "Raza Mehdi",
  4369. "email": "srmk@outlook.com"
  4370. }
  4371. ],
  4372. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4373. "keywords": [
  4374. "http",
  4375. "laravel paypal",
  4376. "paypal",
  4377. "rest",
  4378. "web service"
  4379. ],
  4380. "support": {
  4381. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4382. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4383. },
  4384. "time": "2020-09-03T07:50:08+00:00"
  4385. },
  4386. {
  4387. "name": "stripe/stripe-php",
  4388. "version": "v7.67.0",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/stripe/stripe-php.git",
  4392. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4397. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4398. "shasum": ""
  4399. },
  4400. "require": {
  4401. "ext-curl": "*",
  4402. "ext-json": "*",
  4403. "ext-mbstring": "*",
  4404. "php": ">=5.6.0"
  4405. },
  4406. "require-dev": {
  4407. "friendsofphp/php-cs-fixer": "2.17.1",
  4408. "php-coveralls/php-coveralls": "^2.1",
  4409. "phpunit/phpunit": "^5.7",
  4410. "squizlabs/php_codesniffer": "^3.3",
  4411. "symfony/process": "~3.4"
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "branch-alias": {
  4416. "dev-master": "2.0-dev"
  4417. }
  4418. },
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Stripe\\": "lib/"
  4422. }
  4423. },
  4424. "notification-url": "https://packagist.org/downloads/",
  4425. "license": [
  4426. "MIT"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "Stripe and contributors",
  4431. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4432. }
  4433. ],
  4434. "description": "Stripe PHP Library",
  4435. "homepage": "https://stripe.com/",
  4436. "keywords": [
  4437. "api",
  4438. "payment processing",
  4439. "stripe"
  4440. ],
  4441. "support": {
  4442. "issues": "https://github.com/stripe/stripe-php/issues",
  4443. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4444. },
  4445. "time": "2020-12-09T19:00:34+00:00"
  4446. },
  4447. {
  4448. "name": "swiftmailer/swiftmailer",
  4449. "version": "v6.2.4",
  4450. "source": {
  4451. "type": "git",
  4452. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4453. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4454. },
  4455. "dist": {
  4456. "type": "zip",
  4457. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4458. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4459. "shasum": ""
  4460. },
  4461. "require": {
  4462. "egulias/email-validator": "^2.0",
  4463. "php": ">=7.0.0",
  4464. "symfony/polyfill-iconv": "^1.0",
  4465. "symfony/polyfill-intl-idn": "^1.10",
  4466. "symfony/polyfill-mbstring": "^1.0"
  4467. },
  4468. "require-dev": {
  4469. "mockery/mockery": "^1.0",
  4470. "symfony/phpunit-bridge": "^4.4|^5.0"
  4471. },
  4472. "suggest": {
  4473. "ext-intl": "Needed to support internationalized email addresses"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "6.2-dev"
  4479. }
  4480. },
  4481. "autoload": {
  4482. "files": [
  4483. "lib/swift_required.php"
  4484. ]
  4485. },
  4486. "notification-url": "https://packagist.org/downloads/",
  4487. "license": [
  4488. "MIT"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Chris Corbyn"
  4493. },
  4494. {
  4495. "name": "Fabien Potencier",
  4496. "email": "fabien@symfony.com"
  4497. }
  4498. ],
  4499. "description": "Swiftmailer, free feature-rich PHP mailer",
  4500. "homepage": "https://swiftmailer.symfony.com",
  4501. "keywords": [
  4502. "email",
  4503. "mail",
  4504. "mailer"
  4505. ],
  4506. "support": {
  4507. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4508. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4509. },
  4510. "funding": [
  4511. {
  4512. "url": "https://github.com/fabpot",
  4513. "type": "github"
  4514. },
  4515. {
  4516. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4517. "type": "tidelift"
  4518. }
  4519. ],
  4520. "time": "2020-12-08T18:02:06+00:00"
  4521. },
  4522. {
  4523. "name": "symfony/console",
  4524. "version": "v5.2.0",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/symfony/console.git",
  4528. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/symfony/console/zipball/3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4533. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4534. "shasum": ""
  4535. },
  4536. "require": {
  4537. "php": ">=7.2.5",
  4538. "symfony/polyfill-mbstring": "~1.0",
  4539. "symfony/polyfill-php73": "^1.8",
  4540. "symfony/polyfill-php80": "^1.15",
  4541. "symfony/service-contracts": "^1.1|^2",
  4542. "symfony/string": "^5.1"
  4543. },
  4544. "conflict": {
  4545. "symfony/dependency-injection": "<4.4",
  4546. "symfony/dotenv": "<5.1",
  4547. "symfony/event-dispatcher": "<4.4",
  4548. "symfony/lock": "<4.4",
  4549. "symfony/process": "<4.4"
  4550. },
  4551. "provide": {
  4552. "psr/log-implementation": "1.0"
  4553. },
  4554. "require-dev": {
  4555. "psr/log": "~1.0",
  4556. "symfony/config": "^4.4|^5.0",
  4557. "symfony/dependency-injection": "^4.4|^5.0",
  4558. "symfony/event-dispatcher": "^4.4|^5.0",
  4559. "symfony/lock": "^4.4|^5.0",
  4560. "symfony/process": "^4.4|^5.0",
  4561. "symfony/var-dumper": "^4.4|^5.0"
  4562. },
  4563. "suggest": {
  4564. "psr/log": "For using the console logger",
  4565. "symfony/event-dispatcher": "",
  4566. "symfony/lock": "",
  4567. "symfony/process": ""
  4568. },
  4569. "type": "library",
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Symfony\\Component\\Console\\": ""
  4573. },
  4574. "exclude-from-classmap": [
  4575. "/Tests/"
  4576. ]
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Fabien Potencier",
  4585. "email": "fabien@symfony.com"
  4586. },
  4587. {
  4588. "name": "Symfony Community",
  4589. "homepage": "https://symfony.com/contributors"
  4590. }
  4591. ],
  4592. "description": "Symfony Console Component",
  4593. "homepage": "https://symfony.com",
  4594. "keywords": [
  4595. "cli",
  4596. "command line",
  4597. "console",
  4598. "terminal"
  4599. ],
  4600. "support": {
  4601. "source": "https://github.com/symfony/console/tree/v5.2.0"
  4602. },
  4603. "funding": [
  4604. {
  4605. "url": "https://symfony.com/sponsor",
  4606. "type": "custom"
  4607. },
  4608. {
  4609. "url": "https://github.com/fabpot",
  4610. "type": "github"
  4611. },
  4612. {
  4613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4614. "type": "tidelift"
  4615. }
  4616. ],
  4617. "time": "2020-11-28T11:24:18+00:00"
  4618. },
  4619. {
  4620. "name": "symfony/css-selector",
  4621. "version": "v5.2.0",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://github.com/symfony/css-selector.git",
  4625. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4630. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4631. "shasum": ""
  4632. },
  4633. "require": {
  4634. "php": ">=7.2.5"
  4635. },
  4636. "type": "library",
  4637. "autoload": {
  4638. "psr-4": {
  4639. "Symfony\\Component\\CssSelector\\": ""
  4640. },
  4641. "exclude-from-classmap": [
  4642. "/Tests/"
  4643. ]
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "Fabien Potencier",
  4652. "email": "fabien@symfony.com"
  4653. },
  4654. {
  4655. "name": "Jean-François Simon",
  4656. "email": "jeanfrancois.simon@sensiolabs.com"
  4657. },
  4658. {
  4659. "name": "Symfony Community",
  4660. "homepage": "https://symfony.com/contributors"
  4661. }
  4662. ],
  4663. "description": "Symfony CssSelector Component",
  4664. "homepage": "https://symfony.com",
  4665. "support": {
  4666. "source": "https://github.com/symfony/css-selector/tree/v5.2.0"
  4667. },
  4668. "funding": [
  4669. {
  4670. "url": "https://symfony.com/sponsor",
  4671. "type": "custom"
  4672. },
  4673. {
  4674. "url": "https://github.com/fabpot",
  4675. "type": "github"
  4676. },
  4677. {
  4678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4679. "type": "tidelift"
  4680. }
  4681. ],
  4682. "time": "2020-10-28T21:31:18+00:00"
  4683. },
  4684. {
  4685. "name": "symfony/deprecation-contracts",
  4686. "version": "v2.2.0",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/symfony/deprecation-contracts.git",
  4690. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4695. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4696. "shasum": ""
  4697. },
  4698. "require": {
  4699. "php": ">=7.1"
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "2.2-dev"
  4705. },
  4706. "thanks": {
  4707. "name": "symfony/contracts",
  4708. "url": "https://github.com/symfony/contracts"
  4709. }
  4710. },
  4711. "autoload": {
  4712. "files": [
  4713. "function.php"
  4714. ]
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "authors": [
  4721. {
  4722. "name": "Nicolas Grekas",
  4723. "email": "p@tchwork.com"
  4724. },
  4725. {
  4726. "name": "Symfony Community",
  4727. "homepage": "https://symfony.com/contributors"
  4728. }
  4729. ],
  4730. "description": "A generic function and convention to trigger deprecation notices",
  4731. "homepage": "https://symfony.com",
  4732. "support": {
  4733. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4734. },
  4735. "funding": [
  4736. {
  4737. "url": "https://symfony.com/sponsor",
  4738. "type": "custom"
  4739. },
  4740. {
  4741. "url": "https://github.com/fabpot",
  4742. "type": "github"
  4743. },
  4744. {
  4745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4746. "type": "tidelift"
  4747. }
  4748. ],
  4749. "time": "2020-09-07T11:33:47+00:00"
  4750. },
  4751. {
  4752. "name": "symfony/error-handler",
  4753. "version": "v5.2.0",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/symfony/error-handler.git",
  4757. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/symfony/error-handler/zipball/289008c5be039e39908d33ae0a8ac99be1210bba",
  4762. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba",
  4763. "shasum": ""
  4764. },
  4765. "require": {
  4766. "php": ">=7.2.5",
  4767. "psr/log": "^1.0",
  4768. "symfony/polyfill-php80": "^1.15",
  4769. "symfony/var-dumper": "^4.4|^5.0"
  4770. },
  4771. "require-dev": {
  4772. "symfony/deprecation-contracts": "^2.1",
  4773. "symfony/http-kernel": "^4.4|^5.0",
  4774. "symfony/serializer": "^4.4|^5.0"
  4775. },
  4776. "type": "library",
  4777. "autoload": {
  4778. "psr-4": {
  4779. "Symfony\\Component\\ErrorHandler\\": ""
  4780. },
  4781. "exclude-from-classmap": [
  4782. "/Tests/"
  4783. ]
  4784. },
  4785. "notification-url": "https://packagist.org/downloads/",
  4786. "license": [
  4787. "MIT"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "Fabien Potencier",
  4792. "email": "fabien@symfony.com"
  4793. },
  4794. {
  4795. "name": "Symfony Community",
  4796. "homepage": "https://symfony.com/contributors"
  4797. }
  4798. ],
  4799. "description": "Symfony ErrorHandler Component",
  4800. "homepage": "https://symfony.com",
  4801. "support": {
  4802. "source": "https://github.com/symfony/error-handler/tree/v5.2.0"
  4803. },
  4804. "funding": [
  4805. {
  4806. "url": "https://symfony.com/sponsor",
  4807. "type": "custom"
  4808. },
  4809. {
  4810. "url": "https://github.com/fabpot",
  4811. "type": "github"
  4812. },
  4813. {
  4814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4815. "type": "tidelift"
  4816. }
  4817. ],
  4818. "time": "2020-10-28T21:46:03+00:00"
  4819. },
  4820. {
  4821. "name": "symfony/event-dispatcher",
  4822. "version": "v5.2.0",
  4823. "source": {
  4824. "type": "git",
  4825. "url": "https://github.com/symfony/event-dispatcher.git",
  4826. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c"
  4827. },
  4828. "dist": {
  4829. "type": "zip",
  4830. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4831. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4832. "shasum": ""
  4833. },
  4834. "require": {
  4835. "php": ">=7.2.5",
  4836. "symfony/deprecation-contracts": "^2.1",
  4837. "symfony/event-dispatcher-contracts": "^2",
  4838. "symfony/polyfill-php80": "^1.15"
  4839. },
  4840. "conflict": {
  4841. "symfony/dependency-injection": "<4.4"
  4842. },
  4843. "provide": {
  4844. "psr/event-dispatcher-implementation": "1.0",
  4845. "symfony/event-dispatcher-implementation": "2.0"
  4846. },
  4847. "require-dev": {
  4848. "psr/log": "~1.0",
  4849. "symfony/config": "^4.4|^5.0",
  4850. "symfony/dependency-injection": "^4.4|^5.0",
  4851. "symfony/error-handler": "^4.4|^5.0",
  4852. "symfony/expression-language": "^4.4|^5.0",
  4853. "symfony/http-foundation": "^4.4|^5.0",
  4854. "symfony/service-contracts": "^1.1|^2",
  4855. "symfony/stopwatch": "^4.4|^5.0"
  4856. },
  4857. "suggest": {
  4858. "symfony/dependency-injection": "",
  4859. "symfony/http-kernel": ""
  4860. },
  4861. "type": "library",
  4862. "autoload": {
  4863. "psr-4": {
  4864. "Symfony\\Component\\EventDispatcher\\": ""
  4865. },
  4866. "exclude-from-classmap": [
  4867. "/Tests/"
  4868. ]
  4869. },
  4870. "notification-url": "https://packagist.org/downloads/",
  4871. "license": [
  4872. "MIT"
  4873. ],
  4874. "authors": [
  4875. {
  4876. "name": "Fabien Potencier",
  4877. "email": "fabien@symfony.com"
  4878. },
  4879. {
  4880. "name": "Symfony Community",
  4881. "homepage": "https://symfony.com/contributors"
  4882. }
  4883. ],
  4884. "description": "Symfony EventDispatcher Component",
  4885. "homepage": "https://symfony.com",
  4886. "support": {
  4887. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.0"
  4888. },
  4889. "funding": [
  4890. {
  4891. "url": "https://symfony.com/sponsor",
  4892. "type": "custom"
  4893. },
  4894. {
  4895. "url": "https://github.com/fabpot",
  4896. "type": "github"
  4897. },
  4898. {
  4899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4900. "type": "tidelift"
  4901. }
  4902. ],
  4903. "time": "2020-11-01T16:14:45+00:00"
  4904. },
  4905. {
  4906. "name": "symfony/event-dispatcher-contracts",
  4907. "version": "v2.2.0",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4911. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4916. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4917. "shasum": ""
  4918. },
  4919. "require": {
  4920. "php": ">=7.2.5",
  4921. "psr/event-dispatcher": "^1"
  4922. },
  4923. "suggest": {
  4924. "symfony/event-dispatcher-implementation": ""
  4925. },
  4926. "type": "library",
  4927. "extra": {
  4928. "branch-alias": {
  4929. "dev-master": "2.2-dev"
  4930. },
  4931. "thanks": {
  4932. "name": "symfony/contracts",
  4933. "url": "https://github.com/symfony/contracts"
  4934. }
  4935. },
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Symfony\\Contracts\\EventDispatcher\\": ""
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Nicolas Grekas",
  4948. "email": "p@tchwork.com"
  4949. },
  4950. {
  4951. "name": "Symfony Community",
  4952. "homepage": "https://symfony.com/contributors"
  4953. }
  4954. ],
  4955. "description": "Generic abstractions related to dispatching event",
  4956. "homepage": "https://symfony.com",
  4957. "keywords": [
  4958. "abstractions",
  4959. "contracts",
  4960. "decoupling",
  4961. "interfaces",
  4962. "interoperability",
  4963. "standards"
  4964. ],
  4965. "support": {
  4966. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4967. },
  4968. "funding": [
  4969. {
  4970. "url": "https://symfony.com/sponsor",
  4971. "type": "custom"
  4972. },
  4973. {
  4974. "url": "https://github.com/fabpot",
  4975. "type": "github"
  4976. },
  4977. {
  4978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4979. "type": "tidelift"
  4980. }
  4981. ],
  4982. "time": "2020-09-07T11:33:47+00:00"
  4983. },
  4984. {
  4985. "name": "symfony/finder",
  4986. "version": "v5.2.0",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://github.com/symfony/finder.git",
  4990. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d",
  4995. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d",
  4996. "shasum": ""
  4997. },
  4998. "require": {
  4999. "php": ">=7.2.5"
  5000. },
  5001. "type": "library",
  5002. "autoload": {
  5003. "psr-4": {
  5004. "Symfony\\Component\\Finder\\": ""
  5005. },
  5006. "exclude-from-classmap": [
  5007. "/Tests/"
  5008. ]
  5009. },
  5010. "notification-url": "https://packagist.org/downloads/",
  5011. "license": [
  5012. "MIT"
  5013. ],
  5014. "authors": [
  5015. {
  5016. "name": "Fabien Potencier",
  5017. "email": "fabien@symfony.com"
  5018. },
  5019. {
  5020. "name": "Symfony Community",
  5021. "homepage": "https://symfony.com/contributors"
  5022. }
  5023. ],
  5024. "description": "Symfony Finder Component",
  5025. "homepage": "https://symfony.com",
  5026. "support": {
  5027. "source": "https://github.com/symfony/finder/tree/v5.2.0"
  5028. },
  5029. "funding": [
  5030. {
  5031. "url": "https://symfony.com/sponsor",
  5032. "type": "custom"
  5033. },
  5034. {
  5035. "url": "https://github.com/fabpot",
  5036. "type": "github"
  5037. },
  5038. {
  5039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5040. "type": "tidelift"
  5041. }
  5042. ],
  5043. "time": "2020-11-18T09:42:36+00:00"
  5044. },
  5045. {
  5046. "name": "symfony/http-client-contracts",
  5047. "version": "v2.3.1",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/symfony/http-client-contracts.git",
  5051. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5056. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5057. "shasum": ""
  5058. },
  5059. "require": {
  5060. "php": ">=7.2.5"
  5061. },
  5062. "suggest": {
  5063. "symfony/http-client-implementation": ""
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-version": "2.3",
  5068. "branch-alias": {
  5069. "dev-main": "2.3-dev"
  5070. },
  5071. "thanks": {
  5072. "name": "symfony/contracts",
  5073. "url": "https://github.com/symfony/contracts"
  5074. }
  5075. },
  5076. "autoload": {
  5077. "psr-4": {
  5078. "Symfony\\Contracts\\HttpClient\\": ""
  5079. }
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Nicolas Grekas",
  5088. "email": "p@tchwork.com"
  5089. },
  5090. {
  5091. "name": "Symfony Community",
  5092. "homepage": "https://symfony.com/contributors"
  5093. }
  5094. ],
  5095. "description": "Generic abstractions related to HTTP clients",
  5096. "homepage": "https://symfony.com",
  5097. "keywords": [
  5098. "abstractions",
  5099. "contracts",
  5100. "decoupling",
  5101. "interfaces",
  5102. "interoperability",
  5103. "standards"
  5104. ],
  5105. "support": {
  5106. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5107. },
  5108. "funding": [
  5109. {
  5110. "url": "https://symfony.com/sponsor",
  5111. "type": "custom"
  5112. },
  5113. {
  5114. "url": "https://github.com/fabpot",
  5115. "type": "github"
  5116. },
  5117. {
  5118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5119. "type": "tidelift"
  5120. }
  5121. ],
  5122. "time": "2020-10-14T17:08:19+00:00"
  5123. },
  5124. {
  5125. "name": "symfony/http-foundation",
  5126. "version": "v5.2.0",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/symfony/http-foundation.git",
  5130. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  5135. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  5136. "shasum": ""
  5137. },
  5138. "require": {
  5139. "php": ">=7.2.5",
  5140. "symfony/deprecation-contracts": "^2.1",
  5141. "symfony/polyfill-mbstring": "~1.1",
  5142. "symfony/polyfill-php80": "^1.15"
  5143. },
  5144. "require-dev": {
  5145. "predis/predis": "~1.0",
  5146. "symfony/cache": "^4.4|^5.0",
  5147. "symfony/expression-language": "^4.4|^5.0",
  5148. "symfony/mime": "^4.4|^5.0"
  5149. },
  5150. "suggest": {
  5151. "symfony/mime": "To use the file extension guesser"
  5152. },
  5153. "type": "library",
  5154. "autoload": {
  5155. "psr-4": {
  5156. "Symfony\\Component\\HttpFoundation\\": ""
  5157. },
  5158. "exclude-from-classmap": [
  5159. "/Tests/"
  5160. ]
  5161. },
  5162. "notification-url": "https://packagist.org/downloads/",
  5163. "license": [
  5164. "MIT"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "Fabien Potencier",
  5169. "email": "fabien@symfony.com"
  5170. },
  5171. {
  5172. "name": "Symfony Community",
  5173. "homepage": "https://symfony.com/contributors"
  5174. }
  5175. ],
  5176. "description": "Symfony HttpFoundation Component",
  5177. "homepage": "https://symfony.com",
  5178. "support": {
  5179. "source": "https://github.com/symfony/http-foundation/tree/v5.2.0"
  5180. },
  5181. "funding": [
  5182. {
  5183. "url": "https://symfony.com/sponsor",
  5184. "type": "custom"
  5185. },
  5186. {
  5187. "url": "https://github.com/fabpot",
  5188. "type": "github"
  5189. },
  5190. {
  5191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5192. "type": "tidelift"
  5193. }
  5194. ],
  5195. "time": "2020-11-27T06:13:25+00:00"
  5196. },
  5197. {
  5198. "name": "symfony/http-kernel",
  5199. "version": "v5.2.0",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/symfony/http-kernel.git",
  5203. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/38907e5ccb2d9d371191a946734afc83c7a03160",
  5208. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "php": ">=7.2.5",
  5213. "psr/log": "~1.0",
  5214. "symfony/deprecation-contracts": "^2.1",
  5215. "symfony/error-handler": "^4.4|^5.0",
  5216. "symfony/event-dispatcher": "^5.0",
  5217. "symfony/http-client-contracts": "^1.1|^2",
  5218. "symfony/http-foundation": "^4.4|^5.0",
  5219. "symfony/polyfill-ctype": "^1.8",
  5220. "symfony/polyfill-php73": "^1.9",
  5221. "symfony/polyfill-php80": "^1.15"
  5222. },
  5223. "conflict": {
  5224. "symfony/browser-kit": "<4.4",
  5225. "symfony/cache": "<5.0",
  5226. "symfony/config": "<5.0",
  5227. "symfony/console": "<4.4",
  5228. "symfony/dependency-injection": "<5.1.8",
  5229. "symfony/doctrine-bridge": "<5.0",
  5230. "symfony/form": "<5.0",
  5231. "symfony/http-client": "<5.0",
  5232. "symfony/mailer": "<5.0",
  5233. "symfony/messenger": "<5.0",
  5234. "symfony/translation": "<5.0",
  5235. "symfony/twig-bridge": "<5.0",
  5236. "symfony/validator": "<5.0",
  5237. "twig/twig": "<2.4"
  5238. },
  5239. "provide": {
  5240. "psr/log-implementation": "1.0"
  5241. },
  5242. "require-dev": {
  5243. "psr/cache": "~1.0",
  5244. "symfony/browser-kit": "^4.4|^5.0",
  5245. "symfony/config": "^5.0",
  5246. "symfony/console": "^4.4|^5.0",
  5247. "symfony/css-selector": "^4.4|^5.0",
  5248. "symfony/dependency-injection": "^5.1.8",
  5249. "symfony/dom-crawler": "^4.4|^5.0",
  5250. "symfony/expression-language": "^4.4|^5.0",
  5251. "symfony/finder": "^4.4|^5.0",
  5252. "symfony/process": "^4.4|^5.0",
  5253. "symfony/routing": "^4.4|^5.0",
  5254. "symfony/stopwatch": "^4.4|^5.0",
  5255. "symfony/translation": "^4.4|^5.0",
  5256. "symfony/translation-contracts": "^1.1|^2",
  5257. "twig/twig": "^2.4|^3.0"
  5258. },
  5259. "suggest": {
  5260. "symfony/browser-kit": "",
  5261. "symfony/config": "",
  5262. "symfony/console": "",
  5263. "symfony/dependency-injection": ""
  5264. },
  5265. "type": "library",
  5266. "autoload": {
  5267. "psr-4": {
  5268. "Symfony\\Component\\HttpKernel\\": ""
  5269. },
  5270. "exclude-from-classmap": [
  5271. "/Tests/"
  5272. ]
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Fabien Potencier",
  5281. "email": "fabien@symfony.com"
  5282. },
  5283. {
  5284. "name": "Symfony Community",
  5285. "homepage": "https://symfony.com/contributors"
  5286. }
  5287. ],
  5288. "description": "Symfony HttpKernel Component",
  5289. "homepage": "https://symfony.com",
  5290. "support": {
  5291. "source": "https://github.com/symfony/http-kernel/tree/v5.2.0"
  5292. },
  5293. "funding": [
  5294. {
  5295. "url": "https://symfony.com/sponsor",
  5296. "type": "custom"
  5297. },
  5298. {
  5299. "url": "https://github.com/fabpot",
  5300. "type": "github"
  5301. },
  5302. {
  5303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5304. "type": "tidelift"
  5305. }
  5306. ],
  5307. "time": "2020-11-30T05:54:18+00:00"
  5308. },
  5309. {
  5310. "name": "symfony/mime",
  5311. "version": "v5.2.0",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/symfony/mime.git",
  5315. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/symfony/mime/zipball/05f667e8fa029568964fd3bec6bc17765b853cc5",
  5320. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "php": ">=7.2.5",
  5325. "symfony/deprecation-contracts": "^2.1",
  5326. "symfony/polyfill-intl-idn": "^1.10",
  5327. "symfony/polyfill-mbstring": "^1.0",
  5328. "symfony/polyfill-php80": "^1.15"
  5329. },
  5330. "conflict": {
  5331. "symfony/mailer": "<4.4"
  5332. },
  5333. "require-dev": {
  5334. "egulias/email-validator": "^2.1.10",
  5335. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5336. "symfony/dependency-injection": "^4.4|^5.0",
  5337. "symfony/property-access": "^4.4|^5.1",
  5338. "symfony/property-info": "^4.4|^5.1",
  5339. "symfony/serializer": "^5.2"
  5340. },
  5341. "type": "library",
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Symfony\\Component\\Mime\\": ""
  5345. },
  5346. "exclude-from-classmap": [
  5347. "/Tests/"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Fabien Potencier",
  5357. "email": "fabien@symfony.com"
  5358. },
  5359. {
  5360. "name": "Symfony Community",
  5361. "homepage": "https://symfony.com/contributors"
  5362. }
  5363. ],
  5364. "description": "A library to manipulate MIME messages",
  5365. "homepage": "https://symfony.com",
  5366. "keywords": [
  5367. "mime",
  5368. "mime-type"
  5369. ],
  5370. "support": {
  5371. "source": "https://github.com/symfony/mime/tree/v5.2.0"
  5372. },
  5373. "funding": [
  5374. {
  5375. "url": "https://symfony.com/sponsor",
  5376. "type": "custom"
  5377. },
  5378. {
  5379. "url": "https://github.com/fabpot",
  5380. "type": "github"
  5381. },
  5382. {
  5383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5384. "type": "tidelift"
  5385. }
  5386. ],
  5387. "time": "2020-10-30T14:55:39+00:00"
  5388. },
  5389. {
  5390. "name": "symfony/polyfill-ctype",
  5391. "version": "v1.20.0",
  5392. "source": {
  5393. "type": "git",
  5394. "url": "https://github.com/symfony/polyfill-ctype.git",
  5395. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5396. },
  5397. "dist": {
  5398. "type": "zip",
  5399. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5400. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5401. "shasum": ""
  5402. },
  5403. "require": {
  5404. "php": ">=7.1"
  5405. },
  5406. "suggest": {
  5407. "ext-ctype": "For best performance"
  5408. },
  5409. "type": "library",
  5410. "extra": {
  5411. "branch-alias": {
  5412. "dev-main": "1.20-dev"
  5413. },
  5414. "thanks": {
  5415. "name": "symfony/polyfill",
  5416. "url": "https://github.com/symfony/polyfill"
  5417. }
  5418. },
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Symfony\\Polyfill\\Ctype\\": ""
  5422. },
  5423. "files": [
  5424. "bootstrap.php"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Gert de Pagter",
  5434. "email": "BackEndTea@gmail.com"
  5435. },
  5436. {
  5437. "name": "Symfony Community",
  5438. "homepage": "https://symfony.com/contributors"
  5439. }
  5440. ],
  5441. "description": "Symfony polyfill for ctype functions",
  5442. "homepage": "https://symfony.com",
  5443. "keywords": [
  5444. "compatibility",
  5445. "ctype",
  5446. "polyfill",
  5447. "portable"
  5448. ],
  5449. "support": {
  5450. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://symfony.com/sponsor",
  5455. "type": "custom"
  5456. },
  5457. {
  5458. "url": "https://github.com/fabpot",
  5459. "type": "github"
  5460. },
  5461. {
  5462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5463. "type": "tidelift"
  5464. }
  5465. ],
  5466. "time": "2020-10-23T14:02:19+00:00"
  5467. },
  5468. {
  5469. "name": "symfony/polyfill-iconv",
  5470. "version": "v1.20.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/symfony/polyfill-iconv.git",
  5474. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5479. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": ">=7.1"
  5484. },
  5485. "suggest": {
  5486. "ext-iconv": "For best performance"
  5487. },
  5488. "type": "library",
  5489. "extra": {
  5490. "branch-alias": {
  5491. "dev-main": "1.20-dev"
  5492. },
  5493. "thanks": {
  5494. "name": "symfony/polyfill",
  5495. "url": "https://github.com/symfony/polyfill"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "psr-4": {
  5500. "Symfony\\Polyfill\\Iconv\\": ""
  5501. },
  5502. "files": [
  5503. "bootstrap.php"
  5504. ]
  5505. },
  5506. "notification-url": "https://packagist.org/downloads/",
  5507. "license": [
  5508. "MIT"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "Nicolas Grekas",
  5513. "email": "p@tchwork.com"
  5514. },
  5515. {
  5516. "name": "Symfony Community",
  5517. "homepage": "https://symfony.com/contributors"
  5518. }
  5519. ],
  5520. "description": "Symfony polyfill for the Iconv extension",
  5521. "homepage": "https://symfony.com",
  5522. "keywords": [
  5523. "compatibility",
  5524. "iconv",
  5525. "polyfill",
  5526. "portable",
  5527. "shim"
  5528. ],
  5529. "support": {
  5530. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5531. },
  5532. "funding": [
  5533. {
  5534. "url": "https://symfony.com/sponsor",
  5535. "type": "custom"
  5536. },
  5537. {
  5538. "url": "https://github.com/fabpot",
  5539. "type": "github"
  5540. },
  5541. {
  5542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5543. "type": "tidelift"
  5544. }
  5545. ],
  5546. "time": "2020-10-23T14:02:19+00:00"
  5547. },
  5548. {
  5549. "name": "symfony/polyfill-intl-grapheme",
  5550. "version": "v1.20.0",
  5551. "source": {
  5552. "type": "git",
  5553. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5554. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5555. },
  5556. "dist": {
  5557. "type": "zip",
  5558. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5559. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5560. "shasum": ""
  5561. },
  5562. "require": {
  5563. "php": ">=7.1"
  5564. },
  5565. "suggest": {
  5566. "ext-intl": "For best performance"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-main": "1.20-dev"
  5572. },
  5573. "thanks": {
  5574. "name": "symfony/polyfill",
  5575. "url": "https://github.com/symfony/polyfill"
  5576. }
  5577. },
  5578. "autoload": {
  5579. "psr-4": {
  5580. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5581. },
  5582. "files": [
  5583. "bootstrap.php"
  5584. ]
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "MIT"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Nicolas Grekas",
  5593. "email": "p@tchwork.com"
  5594. },
  5595. {
  5596. "name": "Symfony Community",
  5597. "homepage": "https://symfony.com/contributors"
  5598. }
  5599. ],
  5600. "description": "Symfony polyfill for intl's grapheme_* functions",
  5601. "homepage": "https://symfony.com",
  5602. "keywords": [
  5603. "compatibility",
  5604. "grapheme",
  5605. "intl",
  5606. "polyfill",
  5607. "portable",
  5608. "shim"
  5609. ],
  5610. "support": {
  5611. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5612. },
  5613. "funding": [
  5614. {
  5615. "url": "https://symfony.com/sponsor",
  5616. "type": "custom"
  5617. },
  5618. {
  5619. "url": "https://github.com/fabpot",
  5620. "type": "github"
  5621. },
  5622. {
  5623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5624. "type": "tidelift"
  5625. }
  5626. ],
  5627. "time": "2020-10-23T14:02:19+00:00"
  5628. },
  5629. {
  5630. "name": "symfony/polyfill-intl-idn",
  5631. "version": "v1.20.0",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5635. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5640. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5641. "shasum": ""
  5642. },
  5643. "require": {
  5644. "php": ">=7.1",
  5645. "symfony/polyfill-intl-normalizer": "^1.10",
  5646. "symfony/polyfill-php72": "^1.10"
  5647. },
  5648. "suggest": {
  5649. "ext-intl": "For best performance"
  5650. },
  5651. "type": "library",
  5652. "extra": {
  5653. "branch-alias": {
  5654. "dev-main": "1.20-dev"
  5655. },
  5656. "thanks": {
  5657. "name": "symfony/polyfill",
  5658. "url": "https://github.com/symfony/polyfill"
  5659. }
  5660. },
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5664. },
  5665. "files": [
  5666. "bootstrap.php"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Laurent Bassin",
  5676. "email": "laurent@bassin.info"
  5677. },
  5678. {
  5679. "name": "Trevor Rowbotham",
  5680. "email": "trevor.rowbotham@pm.me"
  5681. },
  5682. {
  5683. "name": "Symfony Community",
  5684. "homepage": "https://symfony.com/contributors"
  5685. }
  5686. ],
  5687. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5688. "homepage": "https://symfony.com",
  5689. "keywords": [
  5690. "compatibility",
  5691. "idn",
  5692. "intl",
  5693. "polyfill",
  5694. "portable",
  5695. "shim"
  5696. ],
  5697. "support": {
  5698. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5699. },
  5700. "funding": [
  5701. {
  5702. "url": "https://symfony.com/sponsor",
  5703. "type": "custom"
  5704. },
  5705. {
  5706. "url": "https://github.com/fabpot",
  5707. "type": "github"
  5708. },
  5709. {
  5710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5711. "type": "tidelift"
  5712. }
  5713. ],
  5714. "time": "2020-10-23T14:02:19+00:00"
  5715. },
  5716. {
  5717. "name": "symfony/polyfill-intl-normalizer",
  5718. "version": "v1.20.0",
  5719. "source": {
  5720. "type": "git",
  5721. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5722. "reference": "727d1096295d807c309fb01a851577302394c897"
  5723. },
  5724. "dist": {
  5725. "type": "zip",
  5726. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5727. "reference": "727d1096295d807c309fb01a851577302394c897",
  5728. "shasum": ""
  5729. },
  5730. "require": {
  5731. "php": ">=7.1"
  5732. },
  5733. "suggest": {
  5734. "ext-intl": "For best performance"
  5735. },
  5736. "type": "library",
  5737. "extra": {
  5738. "branch-alias": {
  5739. "dev-main": "1.20-dev"
  5740. },
  5741. "thanks": {
  5742. "name": "symfony/polyfill",
  5743. "url": "https://github.com/symfony/polyfill"
  5744. }
  5745. },
  5746. "autoload": {
  5747. "psr-4": {
  5748. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5749. },
  5750. "files": [
  5751. "bootstrap.php"
  5752. ],
  5753. "classmap": [
  5754. "Resources/stubs"
  5755. ]
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Nicolas Grekas",
  5764. "email": "p@tchwork.com"
  5765. },
  5766. {
  5767. "name": "Symfony Community",
  5768. "homepage": "https://symfony.com/contributors"
  5769. }
  5770. ],
  5771. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5772. "homepage": "https://symfony.com",
  5773. "keywords": [
  5774. "compatibility",
  5775. "intl",
  5776. "normalizer",
  5777. "polyfill",
  5778. "portable",
  5779. "shim"
  5780. ],
  5781. "support": {
  5782. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5783. },
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2020-10-23T14:02:19+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/polyfill-mbstring",
  5802. "version": "v1.20.0",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5806. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5811. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=7.1"
  5816. },
  5817. "suggest": {
  5818. "ext-mbstring": "For best performance"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-main": "1.20-dev"
  5824. },
  5825. "thanks": {
  5826. "name": "symfony/polyfill",
  5827. "url": "https://github.com/symfony/polyfill"
  5828. }
  5829. },
  5830. "autoload": {
  5831. "psr-4": {
  5832. "Symfony\\Polyfill\\Mbstring\\": ""
  5833. },
  5834. "files": [
  5835. "bootstrap.php"
  5836. ]
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Nicolas Grekas",
  5845. "email": "p@tchwork.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Symfony polyfill for the Mbstring extension",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "compatibility",
  5856. "mbstring",
  5857. "polyfill",
  5858. "portable",
  5859. "shim"
  5860. ],
  5861. "support": {
  5862. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5863. },
  5864. "funding": [
  5865. {
  5866. "url": "https://symfony.com/sponsor",
  5867. "type": "custom"
  5868. },
  5869. {
  5870. "url": "https://github.com/fabpot",
  5871. "type": "github"
  5872. },
  5873. {
  5874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5875. "type": "tidelift"
  5876. }
  5877. ],
  5878. "time": "2020-10-23T14:02:19+00:00"
  5879. },
  5880. {
  5881. "name": "symfony/polyfill-php56",
  5882. "version": "v1.20.0",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://github.com/symfony/polyfill-php56.git",
  5886. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5891. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5892. "shasum": ""
  5893. },
  5894. "require": {
  5895. "php": ">=7.1"
  5896. },
  5897. "type": "metapackage",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-main": "1.20-dev"
  5901. },
  5902. "thanks": {
  5903. "name": "symfony/polyfill",
  5904. "url": "https://github.com/symfony/polyfill"
  5905. }
  5906. },
  5907. "notification-url": "https://packagist.org/downloads/",
  5908. "license": [
  5909. "MIT"
  5910. ],
  5911. "authors": [
  5912. {
  5913. "name": "Nicolas Grekas",
  5914. "email": "p@tchwork.com"
  5915. },
  5916. {
  5917. "name": "Symfony Community",
  5918. "homepage": "https://symfony.com/contributors"
  5919. }
  5920. ],
  5921. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5922. "homepage": "https://symfony.com",
  5923. "keywords": [
  5924. "compatibility",
  5925. "polyfill",
  5926. "portable",
  5927. "shim"
  5928. ],
  5929. "support": {
  5930. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5931. },
  5932. "funding": [
  5933. {
  5934. "url": "https://symfony.com/sponsor",
  5935. "type": "custom"
  5936. },
  5937. {
  5938. "url": "https://github.com/fabpot",
  5939. "type": "github"
  5940. },
  5941. {
  5942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5943. "type": "tidelift"
  5944. }
  5945. ],
  5946. "time": "2020-10-23T14:02:19+00:00"
  5947. },
  5948. {
  5949. "name": "symfony/polyfill-php72",
  5950. "version": "v1.20.0",
  5951. "source": {
  5952. "type": "git",
  5953. "url": "https://github.com/symfony/polyfill-php72.git",
  5954. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5955. },
  5956. "dist": {
  5957. "type": "zip",
  5958. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5959. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5960. "shasum": ""
  5961. },
  5962. "require": {
  5963. "php": ">=7.1"
  5964. },
  5965. "type": "library",
  5966. "extra": {
  5967. "branch-alias": {
  5968. "dev-main": "1.20-dev"
  5969. },
  5970. "thanks": {
  5971. "name": "symfony/polyfill",
  5972. "url": "https://github.com/symfony/polyfill"
  5973. }
  5974. },
  5975. "autoload": {
  5976. "psr-4": {
  5977. "Symfony\\Polyfill\\Php72\\": ""
  5978. },
  5979. "files": [
  5980. "bootstrap.php"
  5981. ]
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "MIT"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Nicolas Grekas",
  5990. "email": "p@tchwork.com"
  5991. },
  5992. {
  5993. "name": "Symfony Community",
  5994. "homepage": "https://symfony.com/contributors"
  5995. }
  5996. ],
  5997. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5998. "homepage": "https://symfony.com",
  5999. "keywords": [
  6000. "compatibility",
  6001. "polyfill",
  6002. "portable",
  6003. "shim"
  6004. ],
  6005. "support": {
  6006. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  6007. },
  6008. "funding": [
  6009. {
  6010. "url": "https://symfony.com/sponsor",
  6011. "type": "custom"
  6012. },
  6013. {
  6014. "url": "https://github.com/fabpot",
  6015. "type": "github"
  6016. },
  6017. {
  6018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6019. "type": "tidelift"
  6020. }
  6021. ],
  6022. "time": "2020-10-23T14:02:19+00:00"
  6023. },
  6024. {
  6025. "name": "symfony/polyfill-php73",
  6026. "version": "v1.20.0",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://github.com/symfony/polyfill-php73.git",
  6030. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  6035. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  6036. "shasum": ""
  6037. },
  6038. "require": {
  6039. "php": ">=7.1"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "branch-alias": {
  6044. "dev-main": "1.20-dev"
  6045. },
  6046. "thanks": {
  6047. "name": "symfony/polyfill",
  6048. "url": "https://github.com/symfony/polyfill"
  6049. }
  6050. },
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Symfony\\Polyfill\\Php73\\": ""
  6054. },
  6055. "files": [
  6056. "bootstrap.php"
  6057. ],
  6058. "classmap": [
  6059. "Resources/stubs"
  6060. ]
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "MIT"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Nicolas Grekas",
  6069. "email": "p@tchwork.com"
  6070. },
  6071. {
  6072. "name": "Symfony Community",
  6073. "homepage": "https://symfony.com/contributors"
  6074. }
  6075. ],
  6076. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6077. "homepage": "https://symfony.com",
  6078. "keywords": [
  6079. "compatibility",
  6080. "polyfill",
  6081. "portable",
  6082. "shim"
  6083. ],
  6084. "support": {
  6085. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  6086. },
  6087. "funding": [
  6088. {
  6089. "url": "https://symfony.com/sponsor",
  6090. "type": "custom"
  6091. },
  6092. {
  6093. "url": "https://github.com/fabpot",
  6094. "type": "github"
  6095. },
  6096. {
  6097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6098. "type": "tidelift"
  6099. }
  6100. ],
  6101. "time": "2020-10-23T14:02:19+00:00"
  6102. },
  6103. {
  6104. "name": "symfony/polyfill-php80",
  6105. "version": "v1.20.0",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/symfony/polyfill-php80.git",
  6109. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6114. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6115. "shasum": ""
  6116. },
  6117. "require": {
  6118. "php": ">=7.1"
  6119. },
  6120. "type": "library",
  6121. "extra": {
  6122. "branch-alias": {
  6123. "dev-main": "1.20-dev"
  6124. },
  6125. "thanks": {
  6126. "name": "symfony/polyfill",
  6127. "url": "https://github.com/symfony/polyfill"
  6128. }
  6129. },
  6130. "autoload": {
  6131. "psr-4": {
  6132. "Symfony\\Polyfill\\Php80\\": ""
  6133. },
  6134. "files": [
  6135. "bootstrap.php"
  6136. ],
  6137. "classmap": [
  6138. "Resources/stubs"
  6139. ]
  6140. },
  6141. "notification-url": "https://packagist.org/downloads/",
  6142. "license": [
  6143. "MIT"
  6144. ],
  6145. "authors": [
  6146. {
  6147. "name": "Ion Bazan",
  6148. "email": "ion.bazan@gmail.com"
  6149. },
  6150. {
  6151. "name": "Nicolas Grekas",
  6152. "email": "p@tchwork.com"
  6153. },
  6154. {
  6155. "name": "Symfony Community",
  6156. "homepage": "https://symfony.com/contributors"
  6157. }
  6158. ],
  6159. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6160. "homepage": "https://symfony.com",
  6161. "keywords": [
  6162. "compatibility",
  6163. "polyfill",
  6164. "portable",
  6165. "shim"
  6166. ],
  6167. "support": {
  6168. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  6169. },
  6170. "funding": [
  6171. {
  6172. "url": "https://symfony.com/sponsor",
  6173. "type": "custom"
  6174. },
  6175. {
  6176. "url": "https://github.com/fabpot",
  6177. "type": "github"
  6178. },
  6179. {
  6180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6181. "type": "tidelift"
  6182. }
  6183. ],
  6184. "time": "2020-10-23T14:02:19+00:00"
  6185. },
  6186. {
  6187. "name": "symfony/process",
  6188. "version": "v5.2.0",
  6189. "source": {
  6190. "type": "git",
  6191. "url": "https://github.com/symfony/process.git",
  6192. "reference": "240e74140d4d956265048f3025c0aecbbc302d54"
  6193. },
  6194. "dist": {
  6195. "type": "zip",
  6196. "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54",
  6197. "reference": "240e74140d4d956265048f3025c0aecbbc302d54",
  6198. "shasum": ""
  6199. },
  6200. "require": {
  6201. "php": ">=7.2.5",
  6202. "symfony/polyfill-php80": "^1.15"
  6203. },
  6204. "type": "library",
  6205. "autoload": {
  6206. "psr-4": {
  6207. "Symfony\\Component\\Process\\": ""
  6208. },
  6209. "exclude-from-classmap": [
  6210. "/Tests/"
  6211. ]
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "MIT"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "Fabien Potencier",
  6220. "email": "fabien@symfony.com"
  6221. },
  6222. {
  6223. "name": "Symfony Community",
  6224. "homepage": "https://symfony.com/contributors"
  6225. }
  6226. ],
  6227. "description": "Symfony Process Component",
  6228. "homepage": "https://symfony.com",
  6229. "support": {
  6230. "source": "https://github.com/symfony/process/tree/v5.2.0"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://symfony.com/sponsor",
  6235. "type": "custom"
  6236. },
  6237. {
  6238. "url": "https://github.com/fabpot",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2020-11-02T15:47:15+00:00"
  6247. },
  6248. {
  6249. "name": "symfony/routing",
  6250. "version": "v5.2.0",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/symfony/routing.git",
  6254. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/symfony/routing/zipball/130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6259. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=7.2.5",
  6264. "symfony/deprecation-contracts": "^2.1",
  6265. "symfony/polyfill-php80": "^1.15"
  6266. },
  6267. "conflict": {
  6268. "symfony/config": "<5.0",
  6269. "symfony/dependency-injection": "<4.4",
  6270. "symfony/yaml": "<4.4"
  6271. },
  6272. "require-dev": {
  6273. "doctrine/annotations": "^1.7",
  6274. "psr/log": "~1.0",
  6275. "symfony/config": "^5.0",
  6276. "symfony/dependency-injection": "^4.4|^5.0",
  6277. "symfony/expression-language": "^4.4|^5.0",
  6278. "symfony/http-foundation": "^4.4|^5.0",
  6279. "symfony/yaml": "^4.4|^5.0"
  6280. },
  6281. "suggest": {
  6282. "doctrine/annotations": "For using the annotation loader",
  6283. "symfony/config": "For using the all-in-one router or any loader",
  6284. "symfony/expression-language": "For using expression matching",
  6285. "symfony/http-foundation": "For using a Symfony Request object",
  6286. "symfony/yaml": "For using the YAML loader"
  6287. },
  6288. "type": "library",
  6289. "autoload": {
  6290. "psr-4": {
  6291. "Symfony\\Component\\Routing\\": ""
  6292. },
  6293. "exclude-from-classmap": [
  6294. "/Tests/"
  6295. ]
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Fabien Potencier",
  6304. "email": "fabien@symfony.com"
  6305. },
  6306. {
  6307. "name": "Symfony Community",
  6308. "homepage": "https://symfony.com/contributors"
  6309. }
  6310. ],
  6311. "description": "Symfony Routing Component",
  6312. "homepage": "https://symfony.com",
  6313. "keywords": [
  6314. "router",
  6315. "routing",
  6316. "uri",
  6317. "url"
  6318. ],
  6319. "support": {
  6320. "source": "https://github.com/symfony/routing/tree/v5.2.0"
  6321. },
  6322. "funding": [
  6323. {
  6324. "url": "https://symfony.com/sponsor",
  6325. "type": "custom"
  6326. },
  6327. {
  6328. "url": "https://github.com/fabpot",
  6329. "type": "github"
  6330. },
  6331. {
  6332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6333. "type": "tidelift"
  6334. }
  6335. ],
  6336. "time": "2020-11-27T00:39:34+00:00"
  6337. },
  6338. {
  6339. "name": "symfony/service-contracts",
  6340. "version": "v2.2.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/symfony/service-contracts.git",
  6344. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6349. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6350. "shasum": ""
  6351. },
  6352. "require": {
  6353. "php": ">=7.2.5",
  6354. "psr/container": "^1.0"
  6355. },
  6356. "suggest": {
  6357. "symfony/service-implementation": ""
  6358. },
  6359. "type": "library",
  6360. "extra": {
  6361. "branch-alias": {
  6362. "dev-master": "2.2-dev"
  6363. },
  6364. "thanks": {
  6365. "name": "symfony/contracts",
  6366. "url": "https://github.com/symfony/contracts"
  6367. }
  6368. },
  6369. "autoload": {
  6370. "psr-4": {
  6371. "Symfony\\Contracts\\Service\\": ""
  6372. }
  6373. },
  6374. "notification-url": "https://packagist.org/downloads/",
  6375. "license": [
  6376. "MIT"
  6377. ],
  6378. "authors": [
  6379. {
  6380. "name": "Nicolas Grekas",
  6381. "email": "p@tchwork.com"
  6382. },
  6383. {
  6384. "name": "Symfony Community",
  6385. "homepage": "https://symfony.com/contributors"
  6386. }
  6387. ],
  6388. "description": "Generic abstractions related to writing services",
  6389. "homepage": "https://symfony.com",
  6390. "keywords": [
  6391. "abstractions",
  6392. "contracts",
  6393. "decoupling",
  6394. "interfaces",
  6395. "interoperability",
  6396. "standards"
  6397. ],
  6398. "support": {
  6399. "source": "https://github.com/symfony/service-contracts/tree/master"
  6400. },
  6401. "funding": [
  6402. {
  6403. "url": "https://symfony.com/sponsor",
  6404. "type": "custom"
  6405. },
  6406. {
  6407. "url": "https://github.com/fabpot",
  6408. "type": "github"
  6409. },
  6410. {
  6411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6412. "type": "tidelift"
  6413. }
  6414. ],
  6415. "time": "2020-09-07T11:33:47+00:00"
  6416. },
  6417. {
  6418. "name": "symfony/string",
  6419. "version": "v5.2.0",
  6420. "source": {
  6421. "type": "git",
  6422. "url": "https://github.com/symfony/string.git",
  6423. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242"
  6424. },
  6425. "dist": {
  6426. "type": "zip",
  6427. "url": "https://api.github.com/repos/symfony/string/zipball/40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6428. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6429. "shasum": ""
  6430. },
  6431. "require": {
  6432. "php": ">=7.2.5",
  6433. "symfony/polyfill-ctype": "~1.8",
  6434. "symfony/polyfill-intl-grapheme": "~1.0",
  6435. "symfony/polyfill-intl-normalizer": "~1.0",
  6436. "symfony/polyfill-mbstring": "~1.0",
  6437. "symfony/polyfill-php80": "~1.15"
  6438. },
  6439. "require-dev": {
  6440. "symfony/error-handler": "^4.4|^5.0",
  6441. "symfony/http-client": "^4.4|^5.0",
  6442. "symfony/translation-contracts": "^1.1|^2",
  6443. "symfony/var-exporter": "^4.4|^5.0"
  6444. },
  6445. "type": "library",
  6446. "autoload": {
  6447. "psr-4": {
  6448. "Symfony\\Component\\String\\": ""
  6449. },
  6450. "files": [
  6451. "Resources/functions.php"
  6452. ],
  6453. "exclude-from-classmap": [
  6454. "/Tests/"
  6455. ]
  6456. },
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "MIT"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Nicolas Grekas",
  6464. "email": "p@tchwork.com"
  6465. },
  6466. {
  6467. "name": "Symfony Community",
  6468. "homepage": "https://symfony.com/contributors"
  6469. }
  6470. ],
  6471. "description": "Symfony String component",
  6472. "homepage": "https://symfony.com",
  6473. "keywords": [
  6474. "grapheme",
  6475. "i18n",
  6476. "string",
  6477. "unicode",
  6478. "utf-8",
  6479. "utf8"
  6480. ],
  6481. "support": {
  6482. "source": "https://github.com/symfony/string/tree/v5.2.0"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://symfony.com/sponsor",
  6487. "type": "custom"
  6488. },
  6489. {
  6490. "url": "https://github.com/fabpot",
  6491. "type": "github"
  6492. },
  6493. {
  6494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6495. "type": "tidelift"
  6496. }
  6497. ],
  6498. "time": "2020-10-24T12:08:07+00:00"
  6499. },
  6500. {
  6501. "name": "symfony/translation",
  6502. "version": "v5.2.0",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://github.com/symfony/translation.git",
  6506. "reference": "52f486a707510884450df461b5a6429dd7a67379"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379",
  6511. "reference": "52f486a707510884450df461b5a6429dd7a67379",
  6512. "shasum": ""
  6513. },
  6514. "require": {
  6515. "php": ">=7.2.5",
  6516. "symfony/polyfill-mbstring": "~1.0",
  6517. "symfony/polyfill-php80": "^1.15",
  6518. "symfony/translation-contracts": "^2.3"
  6519. },
  6520. "conflict": {
  6521. "symfony/config": "<4.4",
  6522. "symfony/dependency-injection": "<5.0",
  6523. "symfony/http-kernel": "<5.0",
  6524. "symfony/twig-bundle": "<5.0",
  6525. "symfony/yaml": "<4.4"
  6526. },
  6527. "provide": {
  6528. "symfony/translation-implementation": "2.0"
  6529. },
  6530. "require-dev": {
  6531. "psr/log": "~1.0",
  6532. "symfony/config": "^4.4|^5.0",
  6533. "symfony/console": "^4.4|^5.0",
  6534. "symfony/dependency-injection": "^5.0",
  6535. "symfony/finder": "^4.4|^5.0",
  6536. "symfony/http-kernel": "^5.0",
  6537. "symfony/intl": "^4.4|^5.0",
  6538. "symfony/service-contracts": "^1.1.2|^2",
  6539. "symfony/yaml": "^4.4|^5.0"
  6540. },
  6541. "suggest": {
  6542. "psr/log-implementation": "To use logging capability in translator",
  6543. "symfony/config": "",
  6544. "symfony/yaml": ""
  6545. },
  6546. "type": "library",
  6547. "autoload": {
  6548. "files": [
  6549. "Resources/functions.php"
  6550. ],
  6551. "psr-4": {
  6552. "Symfony\\Component\\Translation\\": ""
  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": "Symfony Translation Component",
  6573. "homepage": "https://symfony.com",
  6574. "support": {
  6575. "source": "https://github.com/symfony/translation/tree/v5.2.0"
  6576. },
  6577. "funding": [
  6578. {
  6579. "url": "https://symfony.com/sponsor",
  6580. "type": "custom"
  6581. },
  6582. {
  6583. "url": "https://github.com/fabpot",
  6584. "type": "github"
  6585. },
  6586. {
  6587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6588. "type": "tidelift"
  6589. }
  6590. ],
  6591. "time": "2020-11-28T11:24:18+00:00"
  6592. },
  6593. {
  6594. "name": "symfony/translation-contracts",
  6595. "version": "v2.3.0",
  6596. "source": {
  6597. "type": "git",
  6598. "url": "https://github.com/symfony/translation-contracts.git",
  6599. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6600. },
  6601. "dist": {
  6602. "type": "zip",
  6603. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6604. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6605. "shasum": ""
  6606. },
  6607. "require": {
  6608. "php": ">=7.2.5"
  6609. },
  6610. "suggest": {
  6611. "symfony/translation-implementation": ""
  6612. },
  6613. "type": "library",
  6614. "extra": {
  6615. "branch-alias": {
  6616. "dev-master": "2.3-dev"
  6617. },
  6618. "thanks": {
  6619. "name": "symfony/contracts",
  6620. "url": "https://github.com/symfony/contracts"
  6621. }
  6622. },
  6623. "autoload": {
  6624. "psr-4": {
  6625. "Symfony\\Contracts\\Translation\\": ""
  6626. }
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Nicolas Grekas",
  6635. "email": "p@tchwork.com"
  6636. },
  6637. {
  6638. "name": "Symfony Community",
  6639. "homepage": "https://symfony.com/contributors"
  6640. }
  6641. ],
  6642. "description": "Generic abstractions related to translation",
  6643. "homepage": "https://symfony.com",
  6644. "keywords": [
  6645. "abstractions",
  6646. "contracts",
  6647. "decoupling",
  6648. "interfaces",
  6649. "interoperability",
  6650. "standards"
  6651. ],
  6652. "support": {
  6653. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6654. },
  6655. "funding": [
  6656. {
  6657. "url": "https://symfony.com/sponsor",
  6658. "type": "custom"
  6659. },
  6660. {
  6661. "url": "https://github.com/fabpot",
  6662. "type": "github"
  6663. },
  6664. {
  6665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6666. "type": "tidelift"
  6667. }
  6668. ],
  6669. "time": "2020-09-28T13:05:58+00:00"
  6670. },
  6671. {
  6672. "name": "symfony/var-dumper",
  6673. "version": "v5.2.0",
  6674. "source": {
  6675. "type": "git",
  6676. "url": "https://github.com/symfony/var-dumper.git",
  6677. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26"
  6678. },
  6679. "dist": {
  6680. "type": "zip",
  6681. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26",
  6682. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26",
  6683. "shasum": ""
  6684. },
  6685. "require": {
  6686. "php": ">=7.2.5",
  6687. "symfony/polyfill-mbstring": "~1.0",
  6688. "symfony/polyfill-php80": "^1.15"
  6689. },
  6690. "conflict": {
  6691. "phpunit/phpunit": "<5.4.3",
  6692. "symfony/console": "<4.4"
  6693. },
  6694. "require-dev": {
  6695. "ext-iconv": "*",
  6696. "symfony/console": "^4.4|^5.0",
  6697. "symfony/process": "^4.4|^5.0",
  6698. "twig/twig": "^2.4|^3.0"
  6699. },
  6700. "suggest": {
  6701. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6702. "ext-intl": "To show region name in time zone dump",
  6703. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6704. },
  6705. "bin": [
  6706. "Resources/bin/var-dump-server"
  6707. ],
  6708. "type": "library",
  6709. "autoload": {
  6710. "files": [
  6711. "Resources/functions/dump.php"
  6712. ],
  6713. "psr-4": {
  6714. "Symfony\\Component\\VarDumper\\": ""
  6715. },
  6716. "exclude-from-classmap": [
  6717. "/Tests/"
  6718. ]
  6719. },
  6720. "notification-url": "https://packagist.org/downloads/",
  6721. "license": [
  6722. "MIT"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Nicolas Grekas",
  6727. "email": "p@tchwork.com"
  6728. },
  6729. {
  6730. "name": "Symfony Community",
  6731. "homepage": "https://symfony.com/contributors"
  6732. }
  6733. ],
  6734. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6735. "homepage": "https://symfony.com",
  6736. "keywords": [
  6737. "debug",
  6738. "dump"
  6739. ],
  6740. "support": {
  6741. "source": "https://github.com/symfony/var-dumper/tree/v5.2.0"
  6742. },
  6743. "funding": [
  6744. {
  6745. "url": "https://symfony.com/sponsor",
  6746. "type": "custom"
  6747. },
  6748. {
  6749. "url": "https://github.com/fabpot",
  6750. "type": "github"
  6751. },
  6752. {
  6753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6754. "type": "tidelift"
  6755. }
  6756. ],
  6757. "time": "2020-11-27T00:39:34+00:00"
  6758. },
  6759. {
  6760. "name": "symfony/yaml",
  6761. "version": "v5.2.0",
  6762. "source": {
  6763. "type": "git",
  6764. "url": "https://github.com/symfony/yaml.git",
  6765. "reference": "bb73619b2ae5121bbbcd9f191dfd53ded17ae598"
  6766. },
  6767. "dist": {
  6768. "type": "zip",
  6769. "url": "https://api.github.com/repos/symfony/yaml/zipball/bb73619b2ae5121bbbcd9f191dfd53ded17ae598",
  6770. "reference": "bb73619b2ae5121bbbcd9f191dfd53ded17ae598",
  6771. "shasum": ""
  6772. },
  6773. "require": {
  6774. "php": ">=7.2.5",
  6775. "symfony/deprecation-contracts": "^2.1",
  6776. "symfony/polyfill-ctype": "~1.8"
  6777. },
  6778. "conflict": {
  6779. "symfony/console": "<4.4"
  6780. },
  6781. "require-dev": {
  6782. "symfony/console": "^4.4|^5.0"
  6783. },
  6784. "suggest": {
  6785. "symfony/console": "For validating YAML files using the lint command"
  6786. },
  6787. "bin": [
  6788. "Resources/bin/yaml-lint"
  6789. ],
  6790. "type": "library",
  6791. "autoload": {
  6792. "psr-4": {
  6793. "Symfony\\Component\\Yaml\\": ""
  6794. },
  6795. "exclude-from-classmap": [
  6796. "/Tests/"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Fabien Potencier",
  6806. "email": "fabien@symfony.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony Yaml Component",
  6814. "homepage": "https://symfony.com",
  6815. "support": {
  6816. "source": "https://github.com/symfony/yaml/tree/v5.2.0"
  6817. },
  6818. "funding": [
  6819. {
  6820. "url": "https://symfony.com/sponsor",
  6821. "type": "custom"
  6822. },
  6823. {
  6824. "url": "https://github.com/fabpot",
  6825. "type": "github"
  6826. },
  6827. {
  6828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6829. "type": "tidelift"
  6830. }
  6831. ],
  6832. "time": "2020-11-28T10:57:20+00:00"
  6833. },
  6834. {
  6835. "name": "tijsverkoyen/css-to-inline-styles",
  6836. "version": "2.2.3",
  6837. "source": {
  6838. "type": "git",
  6839. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6840. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6841. },
  6842. "dist": {
  6843. "type": "zip",
  6844. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6845. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6846. "shasum": ""
  6847. },
  6848. "require": {
  6849. "ext-dom": "*",
  6850. "ext-libxml": "*",
  6851. "php": "^5.5 || ^7.0 || ^8.0",
  6852. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6853. },
  6854. "require-dev": {
  6855. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6856. },
  6857. "type": "library",
  6858. "extra": {
  6859. "branch-alias": {
  6860. "dev-master": "2.2.x-dev"
  6861. }
  6862. },
  6863. "autoload": {
  6864. "psr-4": {
  6865. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6866. }
  6867. },
  6868. "notification-url": "https://packagist.org/downloads/",
  6869. "license": [
  6870. "BSD-3-Clause"
  6871. ],
  6872. "authors": [
  6873. {
  6874. "name": "Tijs Verkoyen",
  6875. "email": "css_to_inline_styles@verkoyen.eu",
  6876. "role": "Developer"
  6877. }
  6878. ],
  6879. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  6880. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6881. "support": {
  6882. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6883. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6884. },
  6885. "time": "2020-07-13T06:12:54+00:00"
  6886. },
  6887. {
  6888. "name": "tymon/jwt-auth",
  6889. "version": "1.0.2",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6893. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6898. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6899. "shasum": ""
  6900. },
  6901. "require": {
  6902. "illuminate/auth": "^5.2|^6|^7|^8",
  6903. "illuminate/contracts": "^5.2|^6|^7|^8",
  6904. "illuminate/http": "^5.2|^6|^7|^8",
  6905. "illuminate/support": "^5.2|^6|^7|^8",
  6906. "lcobucci/jwt": "<3.4",
  6907. "namshi/jose": "^7.0",
  6908. "nesbot/carbon": "^1.0|^2.0",
  6909. "php": "^5.5.9|^7.0"
  6910. },
  6911. "require-dev": {
  6912. "illuminate/console": "^5.2|^6|^7|^8",
  6913. "illuminate/database": "^5.2|^6|^7|^8",
  6914. "illuminate/routing": "^5.2|^6|^7|^8",
  6915. "mockery/mockery": ">=0.9.9",
  6916. "phpunit/phpunit": "~4.8|~6.0"
  6917. },
  6918. "type": "library",
  6919. "extra": {
  6920. "branch-alias": {
  6921. "dev-develop": "1.0-dev"
  6922. },
  6923. "laravel": {
  6924. "aliases": {
  6925. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6926. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6927. },
  6928. "providers": [
  6929. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6930. ]
  6931. }
  6932. },
  6933. "autoload": {
  6934. "psr-4": {
  6935. "Tymon\\JWTAuth\\": "src/"
  6936. }
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Sean Tymon",
  6945. "email": "tymon148@gmail.com",
  6946. "homepage": "https://tymon.xyz",
  6947. "role": "Developer"
  6948. }
  6949. ],
  6950. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6951. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6952. "keywords": [
  6953. "Authentication",
  6954. "JSON Web Token",
  6955. "auth",
  6956. "jwt",
  6957. "laravel"
  6958. ],
  6959. "support": {
  6960. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6961. "source": "https://github.com/tymondesigns/jwt-auth"
  6962. },
  6963. "funding": [
  6964. {
  6965. "url": "https://www.patreon.com/seantymon",
  6966. "type": "patreon"
  6967. }
  6968. ],
  6969. "time": "2020-11-27T12:32:42+00:00"
  6970. },
  6971. {
  6972. "name": "vlucas/phpdotenv",
  6973. "version": "v4.1.8",
  6974. "source": {
  6975. "type": "git",
  6976. "url": "https://github.com/vlucas/phpdotenv.git",
  6977. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6978. },
  6979. "dist": {
  6980. "type": "zip",
  6981. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6982. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6983. "shasum": ""
  6984. },
  6985. "require": {
  6986. "php": "^5.5.9 || ^7.0 || ^8.0",
  6987. "phpoption/phpoption": "^1.7.3",
  6988. "symfony/polyfill-ctype": "^1.17"
  6989. },
  6990. "require-dev": {
  6991. "bamarni/composer-bin-plugin": "^1.4.1",
  6992. "ext-filter": "*",
  6993. "ext-pcre": "*",
  6994. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6995. },
  6996. "suggest": {
  6997. "ext-filter": "Required to use the boolean validator.",
  6998. "ext-pcre": "Required to use most of the library."
  6999. },
  7000. "type": "library",
  7001. "extra": {
  7002. "branch-alias": {
  7003. "dev-master": "4.1-dev"
  7004. }
  7005. },
  7006. "autoload": {
  7007. "psr-4": {
  7008. "Dotenv\\": "src/"
  7009. }
  7010. },
  7011. "notification-url": "https://packagist.org/downloads/",
  7012. "license": [
  7013. "BSD-3-Clause"
  7014. ],
  7015. "authors": [
  7016. {
  7017. "name": "Graham Campbell",
  7018. "email": "graham@alt-three.com",
  7019. "homepage": "https://gjcampbell.co.uk/"
  7020. },
  7021. {
  7022. "name": "Vance Lucas",
  7023. "email": "vance@vancelucas.com",
  7024. "homepage": "https://vancelucas.com/"
  7025. }
  7026. ],
  7027. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7028. "keywords": [
  7029. "dotenv",
  7030. "env",
  7031. "environment"
  7032. ],
  7033. "support": {
  7034. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7035. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7036. },
  7037. "funding": [
  7038. {
  7039. "url": "https://github.com/GrahamCampbell",
  7040. "type": "github"
  7041. },
  7042. {
  7043. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7044. "type": "tidelift"
  7045. }
  7046. ],
  7047. "time": "2020-07-14T19:22:52+00:00"
  7048. },
  7049. {
  7050. "name": "voku/portable-ascii",
  7051. "version": "1.5.6",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/voku/portable-ascii.git",
  7055. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7060. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": ">=7.0.0"
  7065. },
  7066. "require-dev": {
  7067. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7068. },
  7069. "suggest": {
  7070. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7071. },
  7072. "type": "library",
  7073. "autoload": {
  7074. "psr-4": {
  7075. "voku\\": "src/voku/"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Lars Moelleken",
  7085. "homepage": "http://www.moelleken.org/"
  7086. }
  7087. ],
  7088. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7089. "homepage": "https://github.com/voku/portable-ascii",
  7090. "keywords": [
  7091. "ascii",
  7092. "clean",
  7093. "php"
  7094. ],
  7095. "support": {
  7096. "issues": "https://github.com/voku/portable-ascii/issues",
  7097. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7098. },
  7099. "funding": [
  7100. {
  7101. "url": "https://www.paypal.me/moelleken",
  7102. "type": "custom"
  7103. },
  7104. {
  7105. "url": "https://github.com/voku",
  7106. "type": "github"
  7107. },
  7108. {
  7109. "url": "https://opencollective.com/portable-ascii",
  7110. "type": "open_collective"
  7111. },
  7112. {
  7113. "url": "https://www.patreon.com/voku",
  7114. "type": "patreon"
  7115. },
  7116. {
  7117. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7118. "type": "tidelift"
  7119. }
  7120. ],
  7121. "time": "2020-11-12T00:07:28+00:00"
  7122. },
  7123. {
  7124. "name": "xhat/payjs",
  7125. "version": "1.5.0",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/xhat/payjs.git",
  7129. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7134. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7135. "shasum": ""
  7136. },
  7137. "type": "library",
  7138. "autoload": {
  7139. "psr-4": {
  7140. "Xhat\\Payjs\\": "src/"
  7141. }
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "andy",
  7150. "email": "andy@popfeng.com"
  7151. }
  7152. ],
  7153. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7154. "support": {
  7155. "issues": "https://github.com/xhat/payjs/issues",
  7156. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7157. },
  7158. "funding": [
  7159. {
  7160. "url": "https://payjs.cn/sponsor/dajjxz",
  7161. "type": "custom"
  7162. }
  7163. ],
  7164. "time": "2020-09-11T06:02:42+00:00"
  7165. },
  7166. {
  7167. "name": "zbrettonye/geetest",
  7168. "version": "v1.2.0",
  7169. "source": {
  7170. "type": "git",
  7171. "url": "https://github.com/ZBrettonYe/geetest.git",
  7172. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7173. },
  7174. "dist": {
  7175. "type": "zip",
  7176. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7177. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7178. "shasum": ""
  7179. },
  7180. "require": {
  7181. "ext-json": "*",
  7182. "guzzlehttp/guzzle": "^6.3|^7.0",
  7183. "illuminate/routing": "^6|^7|^8",
  7184. "illuminate/support": "^6|^7|^8",
  7185. "php": "^7.2"
  7186. },
  7187. "require-dev": {
  7188. "mockery/mockery": "^1.3.1",
  7189. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7190. },
  7191. "type": "library",
  7192. "extra": {
  7193. "laravel": {
  7194. "providers": [
  7195. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7196. ],
  7197. "aliases": {
  7198. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7199. }
  7200. }
  7201. },
  7202. "autoload": {
  7203. "psr-4": {
  7204. "ZBrettonYe\\Geetest\\": "src/"
  7205. }
  7206. },
  7207. "notification-url": "https://packagist.org/downloads/",
  7208. "license": [
  7209. "MIT"
  7210. ],
  7211. "authors": [
  7212. {
  7213. "name": "zbrettonye",
  7214. "email": "monkeyblacktech97@gmail.com"
  7215. }
  7216. ],
  7217. "description": "Geetest Package for Laravel6-8",
  7218. "keywords": [
  7219. "geetest",
  7220. "laravel"
  7221. ],
  7222. "support": {
  7223. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7224. },
  7225. "time": "2020-10-13T20:15:36+00:00"
  7226. },
  7227. {
  7228. "name": "zbrettonye/hcaptcha",
  7229. "version": "V1.1.0",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7233. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7238. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7239. "shasum": ""
  7240. },
  7241. "require": {
  7242. "guzzlehttp/guzzle": "^6.2|^7.0",
  7243. "illuminate/support": "^6|^7|^8",
  7244. "php": "^7.2"
  7245. },
  7246. "require-dev": {
  7247. "phpunit/phpunit": "~4.8"
  7248. },
  7249. "type": "library",
  7250. "extra": {
  7251. "laravel": {
  7252. "providers": [
  7253. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7254. ],
  7255. "aliases": {
  7256. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7257. }
  7258. }
  7259. },
  7260. "autoload": {
  7261. "psr-4": {
  7262. "ZBrettonYe\\HCaptcha\\": "src/"
  7263. }
  7264. },
  7265. "notification-url": "https://packagist.org/downloads/",
  7266. "license": [
  7267. "MIT"
  7268. ],
  7269. "authors": [
  7270. {
  7271. "name": "zbrettonye",
  7272. "email": "monkeyblacktech97@gmail.com"
  7273. }
  7274. ],
  7275. "description": "hCaptcha For Laravel6~8",
  7276. "keywords": [
  7277. "captcha",
  7278. "hcaptcha",
  7279. "laravel"
  7280. ],
  7281. "support": {
  7282. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7283. },
  7284. "time": "2020-10-13T21:22:51+00:00"
  7285. },
  7286. {
  7287. "name": "zbrettonye/no-captcha",
  7288. "version": "v1.1.0",
  7289. "source": {
  7290. "type": "git",
  7291. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7292. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7293. },
  7294. "dist": {
  7295. "type": "zip",
  7296. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7297. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7298. "shasum": ""
  7299. },
  7300. "require": {
  7301. "ext-json": "*",
  7302. "guzzlehttp/guzzle": "^6.2|^7.0",
  7303. "illuminate/support": "^6|^7|^8",
  7304. "php": "^7.2"
  7305. },
  7306. "require-dev": {
  7307. "phpunit/phpunit": "~4.8"
  7308. },
  7309. "type": "library",
  7310. "extra": {
  7311. "laravel": {
  7312. "providers": [
  7313. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7314. ],
  7315. "aliases": {
  7316. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7317. }
  7318. }
  7319. },
  7320. "autoload": {
  7321. "psr-4": {
  7322. "ZBrettonYe\\NoCaptcha\\": "src/"
  7323. }
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "MIT"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "zbrettonye",
  7332. "email": "monkeyblacktech97@gmail.com"
  7333. }
  7334. ],
  7335. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7336. "keywords": [
  7337. "captcha",
  7338. "laravel",
  7339. "no-captcha",
  7340. "recaptcha"
  7341. ],
  7342. "support": {
  7343. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7344. },
  7345. "time": "2020-10-13T21:35:30+00:00"
  7346. },
  7347. {
  7348. "name": "zoujingli/ip2region",
  7349. "version": "v1.0.9",
  7350. "source": {
  7351. "type": "git",
  7352. "url": "https://github.com/zoujingli/ip2region.git",
  7353. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7354. },
  7355. "dist": {
  7356. "type": "zip",
  7357. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7358. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7359. "shasum": ""
  7360. },
  7361. "require": {
  7362. "php": ">=5.3"
  7363. },
  7364. "type": "library",
  7365. "autoload": {
  7366. "classmap": [
  7367. "Ip2Region.php"
  7368. ]
  7369. },
  7370. "notification-url": "https://packagist.org/downloads/",
  7371. "license": [
  7372. "Apache-2.0"
  7373. ],
  7374. "authors": [
  7375. {
  7376. "name": "Anyon",
  7377. "email": "zoujingli@qq.com",
  7378. "homepage": "http://ctolog.com"
  7379. }
  7380. ],
  7381. "description": "Ip2Region for PHP",
  7382. "homepage": "https://github.com/zoujingli/Ip2Region",
  7383. "keywords": [
  7384. "Ip2Region"
  7385. ],
  7386. "support": {
  7387. "issues": "https://github.com/zoujingli/ip2region/issues",
  7388. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7389. },
  7390. "time": "2020-11-06T07:21:55+00:00"
  7391. }
  7392. ],
  7393. "packages-dev": [
  7394. {
  7395. "name": "andrey-helldar/laravel-lang-publisher",
  7396. "version": "v6.2.0",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7400. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7405. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7406. "shasum": ""
  7407. },
  7408. "require": {
  7409. "andrey-helldar/pretty-array": "^1.4.2",
  7410. "andrey-helldar/support": "^1.4.1",
  7411. "ext-json": "*",
  7412. "illuminate/console": "^7.0|^8.0",
  7413. "illuminate/support": "^7.0|^8.0",
  7414. "laravel-lang/lang": "^7.0",
  7415. "php": "^7.2.5|^8.0"
  7416. },
  7417. "require-dev": {
  7418. "mockery/mockery": "^1.3.1",
  7419. "orchestra/testbench": "^5.0|^6.0",
  7420. "phpunit/phpunit": "^8.4|^9.0"
  7421. },
  7422. "suggest": {
  7423. "andrey-helldar/lang-translations": "Translation of main messages",
  7424. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7425. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7426. },
  7427. "type": "library",
  7428. "extra": {
  7429. "laravel": {
  7430. "providers": [
  7431. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7432. ]
  7433. }
  7434. },
  7435. "autoload": {
  7436. "psr-4": {
  7437. "Helldar\\LaravelLangPublisher\\": "src"
  7438. }
  7439. },
  7440. "notification-url": "https://packagist.org/downloads/",
  7441. "license": [
  7442. "MIT"
  7443. ],
  7444. "authors": [
  7445. {
  7446. "name": "Andrey Helldar",
  7447. "email": "helldar@ai-rus.com"
  7448. }
  7449. ],
  7450. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7451. "keywords": [
  7452. "fortify",
  7453. "i18n",
  7454. "jetstream",
  7455. "lang",
  7456. "languages",
  7457. "laravel",
  7458. "locale",
  7459. "localization",
  7460. "lpm",
  7461. "lumen",
  7462. "publisher",
  7463. "trans",
  7464. "translations",
  7465. "validations"
  7466. ],
  7467. "support": {
  7468. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7469. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7470. },
  7471. "funding": [
  7472. {
  7473. "url": "https://money.yandex.ru/to/410012115955701",
  7474. "type": "custom"
  7475. },
  7476. {
  7477. "url": "https://paypal.me/helldar",
  7478. "type": "custom"
  7479. }
  7480. ],
  7481. "time": "2020-11-30T10:15:29+00:00"
  7482. },
  7483. {
  7484. "name": "andrey-helldar/pretty-array",
  7485. "version": "v1.5.0",
  7486. "source": {
  7487. "type": "git",
  7488. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7489. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7490. },
  7491. "dist": {
  7492. "type": "zip",
  7493. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7494. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7495. "shasum": ""
  7496. },
  7497. "require": {
  7498. "andrey-helldar/support": "^1.16.0",
  7499. "ext-dom": "*",
  7500. "ext-mbstring": "*",
  7501. "php": "^7.1.3|^8.0"
  7502. },
  7503. "require-dev": {
  7504. "phpstan/phpstan": "^0.12.7",
  7505. "phpunit/phpunit": "^7.0|^8.0"
  7506. },
  7507. "suggest": {
  7508. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7509. },
  7510. "type": "library",
  7511. "autoload": {
  7512. "psr-4": {
  7513. "Helldar\\PrettyArray\\": "src/"
  7514. }
  7515. },
  7516. "notification-url": "https://packagist.org/downloads/",
  7517. "license": [
  7518. "MIT"
  7519. ],
  7520. "authors": [
  7521. {
  7522. "name": "Andrey Helldar",
  7523. "email": "helldar@ai-rus.com"
  7524. }
  7525. ],
  7526. "description": "Simple conversion of an array to a pretty view.",
  7527. "keywords": [
  7528. "array",
  7529. "pretty",
  7530. "pretty array"
  7531. ],
  7532. "support": {
  7533. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7534. "source": "https://github.com/andrey-helldar/pretty-array"
  7535. },
  7536. "funding": [
  7537. {
  7538. "url": "https://money.yandex.ru/to/410012115955701",
  7539. "type": "custom"
  7540. },
  7541. {
  7542. "url": "https://paypal.me/helldar",
  7543. "type": "custom"
  7544. }
  7545. ],
  7546. "time": "2020-11-30T10:28:20+00:00"
  7547. },
  7548. {
  7549. "name": "andrey-helldar/support",
  7550. "version": "v1.26.0",
  7551. "source": {
  7552. "type": "git",
  7553. "url": "https://github.com/andrey-helldar/support.git",
  7554. "reference": "608895d7324d44167a97a88ebec766e99dee92c7"
  7555. },
  7556. "dist": {
  7557. "type": "zip",
  7558. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/608895d7324d44167a97a88ebec766e99dee92c7",
  7559. "reference": "608895d7324d44167a97a88ebec766e99dee92c7",
  7560. "shasum": ""
  7561. },
  7562. "require": {
  7563. "ext-ctype": "*",
  7564. "ext-dom": "*",
  7565. "ext-json": "*",
  7566. "ext-mbstring": "*",
  7567. "php": "^7.1.3|^8.0"
  7568. },
  7569. "require-dev": {
  7570. "ext-bcmath": "*",
  7571. "phpunit/phpunit": "^9.0"
  7572. },
  7573. "suggest": {
  7574. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7575. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7576. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7577. },
  7578. "type": "library",
  7579. "extra": {
  7580. "laravel": {
  7581. "providers": [
  7582. "Helldar\\Support\\ServiceProvider"
  7583. ]
  7584. }
  7585. },
  7586. "autoload": {
  7587. "psr-4": {
  7588. "Helldar\\Support\\": "src/"
  7589. },
  7590. "files": [
  7591. "src/helpers/digit.php",
  7592. "src/helpers/dumper.php",
  7593. "src/helpers/http.php",
  7594. "src/helpers/strings.php"
  7595. ]
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "MIT"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "Andrey Helldar",
  7604. "email": "helldar@ai-rus.com"
  7605. }
  7606. ],
  7607. "description": "Support package is a collection of helpers and tools for projects.",
  7608. "keywords": [
  7609. "framework",
  7610. "laravel",
  7611. "support",
  7612. "symfony",
  7613. "yii",
  7614. "yii2"
  7615. ],
  7616. "support": {
  7617. "issues": "https://github.com/andrey-helldar/support/issues",
  7618. "source": "https://github.com/andrey-helldar/support"
  7619. },
  7620. "funding": [
  7621. {
  7622. "url": "https://money.yandex.ru/to/410012115955701",
  7623. "type": "custom"
  7624. },
  7625. {
  7626. "url": "https://paypal.me/helldar",
  7627. "type": "custom"
  7628. }
  7629. ],
  7630. "time": "2020-11-30T12:10:47+00:00"
  7631. },
  7632. {
  7633. "name": "arcanedev/laravel-lang",
  7634. "version": "8.0.0",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7638. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7643. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7644. "shasum": ""
  7645. },
  7646. "require": {
  7647. "arcanedev/support": "^7.1.2",
  7648. "caouecs/laravel-lang": "^6.0",
  7649. "php": "^7.2.5"
  7650. },
  7651. "require-dev": {
  7652. "mockery/mockery": "^1.3.1",
  7653. "orchestra/testbench": "^5.0",
  7654. "phpunit/phpunit": "^8.5|^9.0"
  7655. },
  7656. "type": "library",
  7657. "extra": {
  7658. "laravel": {
  7659. "providers": [
  7660. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7661. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7662. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7663. ]
  7664. }
  7665. },
  7666. "autoload": {
  7667. "psr-4": {
  7668. "Arcanedev\\LaravelLang\\": "src/"
  7669. }
  7670. },
  7671. "notification-url": "https://packagist.org/downloads/",
  7672. "license": [
  7673. "MIT"
  7674. ],
  7675. "authors": [
  7676. {
  7677. "name": "ARCANEDEV",
  7678. "email": "arcanedev.maroc@gmail.com",
  7679. "homepage": "https://github.com/arcanedev-maroc",
  7680. "role": "Developer"
  7681. }
  7682. ],
  7683. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7684. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7685. "keywords": [
  7686. "arcanedev",
  7687. "lang",
  7688. "languages",
  7689. "laravel",
  7690. "localisation",
  7691. "localization",
  7692. "trans",
  7693. "translations",
  7694. "validations"
  7695. ],
  7696. "support": {
  7697. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7698. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7699. },
  7700. "time": "2020-03-21T21:29:29+00:00"
  7701. },
  7702. {
  7703. "name": "arcanedev/support",
  7704. "version": "7.1.2",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/ARCANEDEV/Support.git",
  7708. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7713. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7714. "shasum": ""
  7715. },
  7716. "require": {
  7717. "illuminate/filesystem": "^7.0",
  7718. "illuminate/support": "^7.0",
  7719. "php": "^7.2.5"
  7720. },
  7721. "require-dev": {
  7722. "orchestra/testbench": "^5.0",
  7723. "phpunit/phpunit": "^8.0|^9.0"
  7724. },
  7725. "type": "library",
  7726. "extra": {
  7727. "branch-alias": {
  7728. "dev-master": "7.x-dev"
  7729. }
  7730. },
  7731. "autoload": {
  7732. "psr-4": {
  7733. "Arcanedev\\Support\\": "src/"
  7734. },
  7735. "files": [
  7736. "helpers.php"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "ARCANEDEV",
  7746. "email": "arcanedev.maroc@gmail.com",
  7747. "homepage": "https://github.com/arcanedev-maroc"
  7748. }
  7749. ],
  7750. "description": "ARCANEDEV Support Helpers",
  7751. "homepage": "https://github.com/ARCANEDEV/Support",
  7752. "keywords": [
  7753. "arcanedev",
  7754. "arcanesoft",
  7755. "laravel",
  7756. "support"
  7757. ],
  7758. "support": {
  7759. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7760. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7761. },
  7762. "time": "2020-03-12T09:28:19+00:00"
  7763. },
  7764. {
  7765. "name": "barryvdh/laravel-debugbar",
  7766. "version": "v3.5.1",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7770. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7775. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7776. "shasum": ""
  7777. },
  7778. "require": {
  7779. "illuminate/routing": "^6|^7|^8",
  7780. "illuminate/session": "^6|^7|^8",
  7781. "illuminate/support": "^6|^7|^8",
  7782. "maximebf/debugbar": "^1.16.3",
  7783. "php": ">=7.2",
  7784. "symfony/debug": "^4.3|^5",
  7785. "symfony/finder": "^4.3|^5"
  7786. },
  7787. "require-dev": {
  7788. "orchestra/testbench-dusk": "^4|^5|^6",
  7789. "phpunit/phpunit": "^8.5|^9.0",
  7790. "squizlabs/php_codesniffer": "^3.5"
  7791. },
  7792. "type": "library",
  7793. "extra": {
  7794. "branch-alias": {
  7795. "dev-master": "3.5-dev"
  7796. },
  7797. "laravel": {
  7798. "providers": [
  7799. "Barryvdh\\Debugbar\\ServiceProvider"
  7800. ],
  7801. "aliases": {
  7802. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7803. }
  7804. }
  7805. },
  7806. "autoload": {
  7807. "psr-4": {
  7808. "Barryvdh\\Debugbar\\": "src/"
  7809. },
  7810. "files": [
  7811. "src/helpers.php"
  7812. ]
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "MIT"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "Barry vd. Heuvel",
  7821. "email": "barryvdh@gmail.com"
  7822. }
  7823. ],
  7824. "description": "PHP Debugbar integration for Laravel",
  7825. "keywords": [
  7826. "debug",
  7827. "debugbar",
  7828. "laravel",
  7829. "profiler",
  7830. "webprofiler"
  7831. ],
  7832. "support": {
  7833. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7834. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://github.com/barryvdh",
  7839. "type": "github"
  7840. }
  7841. ],
  7842. "time": "2020-09-07T19:32:39+00:00"
  7843. },
  7844. {
  7845. "name": "barryvdh/laravel-ide-helper",
  7846. "version": "v2.8.2",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7850. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7855. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "barryvdh/reflection-docblock": "^2.0.6",
  7860. "composer/composer": "^1.6 || ^2",
  7861. "doctrine/dbal": "~2.3",
  7862. "ext-json": "*",
  7863. "illuminate/console": "^6 || ^7 || ^8",
  7864. "illuminate/filesystem": "^6 || ^7 || ^8",
  7865. "illuminate/support": "^6 || ^7 || ^8",
  7866. "php": ">=7.2",
  7867. "phpdocumentor/type-resolver": "^1.1.0"
  7868. },
  7869. "require-dev": {
  7870. "ext-pdo_sqlite": "*",
  7871. "friendsofphp/php-cs-fixer": "^2",
  7872. "illuminate/config": "^6 || ^7 || ^8",
  7873. "illuminate/view": "^6 || ^7 || ^8",
  7874. "mockery/mockery": "^1.3.3",
  7875. "orchestra/testbench": "^4 || ^5 || ^6",
  7876. "phpunit/phpunit": "^8.5 || ^9",
  7877. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7878. "vimeo/psalm": "^3.12"
  7879. },
  7880. "type": "library",
  7881. "extra": {
  7882. "branch-alias": {
  7883. "dev-master": "2.8-dev"
  7884. },
  7885. "laravel": {
  7886. "providers": [
  7887. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7888. ]
  7889. }
  7890. },
  7891. "autoload": {
  7892. "psr-4": {
  7893. "Barryvdh\\LaravelIdeHelper\\": "src"
  7894. }
  7895. },
  7896. "notification-url": "https://packagist.org/downloads/",
  7897. "license": [
  7898. "MIT"
  7899. ],
  7900. "authors": [
  7901. {
  7902. "name": "Barry vd. Heuvel",
  7903. "email": "barryvdh@gmail.com"
  7904. }
  7905. ],
  7906. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7907. "keywords": [
  7908. "autocomplete",
  7909. "codeintel",
  7910. "helper",
  7911. "ide",
  7912. "laravel",
  7913. "netbeans",
  7914. "phpdoc",
  7915. "phpstorm",
  7916. "sublime"
  7917. ],
  7918. "support": {
  7919. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7920. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  7921. },
  7922. "funding": [
  7923. {
  7924. "url": "https://github.com/barryvdh",
  7925. "type": "github"
  7926. }
  7927. ],
  7928. "time": "2020-12-06T08:55:05+00:00"
  7929. },
  7930. {
  7931. "name": "barryvdh/reflection-docblock",
  7932. "version": "v2.0.6",
  7933. "source": {
  7934. "type": "git",
  7935. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7936. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7937. },
  7938. "dist": {
  7939. "type": "zip",
  7940. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7941. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7942. "shasum": ""
  7943. },
  7944. "require": {
  7945. "php": ">=5.3.3"
  7946. },
  7947. "require-dev": {
  7948. "phpunit/phpunit": "~4.0,<4.5"
  7949. },
  7950. "suggest": {
  7951. "dflydev/markdown": "~1.0",
  7952. "erusev/parsedown": "~1.0"
  7953. },
  7954. "type": "library",
  7955. "extra": {
  7956. "branch-alias": {
  7957. "dev-master": "2.0.x-dev"
  7958. }
  7959. },
  7960. "autoload": {
  7961. "psr-0": {
  7962. "Barryvdh": [
  7963. "src/"
  7964. ]
  7965. }
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Mike van Riel",
  7974. "email": "mike.vanriel@naenius.com"
  7975. }
  7976. ],
  7977. "support": {
  7978. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7979. },
  7980. "time": "2018-12-13T10:34:14+00:00"
  7981. },
  7982. {
  7983. "name": "caouecs/laravel-lang",
  7984. "version": "6.1.4",
  7985. "source": {
  7986. "type": "git",
  7987. "url": "https://github.com/caouecs/lang.git",
  7988. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7989. },
  7990. "dist": {
  7991. "type": "zip",
  7992. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7993. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7994. "shasum": ""
  7995. },
  7996. "require": {
  7997. "ext-json": "*"
  7998. },
  7999. "suggest": {
  8000. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8001. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8002. "overtrue/laravel-lang": "Command to add languages in your project"
  8003. },
  8004. "type": "library",
  8005. "notification-url": "https://packagist.org/downloads/",
  8006. "license": [
  8007. "MIT"
  8008. ],
  8009. "authors": [
  8010. {
  8011. "name": "caouecs",
  8012. "email": "caouecs@caouecs.net"
  8013. }
  8014. ],
  8015. "description": "Languages for Laravel",
  8016. "keywords": [
  8017. "lang",
  8018. "languages",
  8019. "laravel",
  8020. "lpm"
  8021. ],
  8022. "support": {
  8023. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8024. },
  8025. "abandoned": "https://github.com/Laravel-Lang/lang",
  8026. "time": "2020-07-13T14:35:32+00:00"
  8027. },
  8028. {
  8029. "name": "composer/composer",
  8030. "version": "2.0.8",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/composer/composer.git",
  8034. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8039. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "composer/ca-bundle": "^1.0",
  8044. "composer/semver": "^3.0",
  8045. "composer/spdx-licenses": "^1.2",
  8046. "composer/xdebug-handler": "^1.1",
  8047. "justinrainbow/json-schema": "^5.2.10",
  8048. "php": "^5.3.2 || ^7.0 || ^8.0",
  8049. "psr/log": "^1.0",
  8050. "react/promise": "^1.2 || ^2.7",
  8051. "seld/jsonlint": "^1.4",
  8052. "seld/phar-utils": "^1.0",
  8053. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8054. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8055. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8056. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8057. },
  8058. "require-dev": {
  8059. "phpspec/prophecy": "^1.10",
  8060. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8061. },
  8062. "suggest": {
  8063. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8064. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8065. "ext-zlib": "Allow gzip compression of HTTP requests"
  8066. },
  8067. "bin": [
  8068. "bin/composer"
  8069. ],
  8070. "type": "library",
  8071. "extra": {
  8072. "branch-alias": {
  8073. "dev-master": "2.0-dev"
  8074. }
  8075. },
  8076. "autoload": {
  8077. "psr-4": {
  8078. "Composer\\": "src/Composer"
  8079. }
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "MIT"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Nils Adermann",
  8088. "email": "naderman@naderman.de",
  8089. "homepage": "https://www.naderman.de"
  8090. },
  8091. {
  8092. "name": "Jordi Boggiano",
  8093. "email": "j.boggiano@seld.be",
  8094. "homepage": "https://seld.be"
  8095. }
  8096. ],
  8097. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8098. "homepage": "https://getcomposer.org/",
  8099. "keywords": [
  8100. "autoload",
  8101. "dependency",
  8102. "package"
  8103. ],
  8104. "support": {
  8105. "irc": "irc://irc.freenode.org/composer",
  8106. "issues": "https://github.com/composer/composer/issues",
  8107. "source": "https://github.com/composer/composer/tree/2.0.8"
  8108. },
  8109. "funding": [
  8110. {
  8111. "url": "https://packagist.com",
  8112. "type": "custom"
  8113. },
  8114. {
  8115. "url": "https://github.com/composer",
  8116. "type": "github"
  8117. },
  8118. {
  8119. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8120. "type": "tidelift"
  8121. }
  8122. ],
  8123. "time": "2020-12-03T16:20:39+00:00"
  8124. },
  8125. {
  8126. "name": "composer/semver",
  8127. "version": "3.2.4",
  8128. "source": {
  8129. "type": "git",
  8130. "url": "https://github.com/composer/semver.git",
  8131. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8132. },
  8133. "dist": {
  8134. "type": "zip",
  8135. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8136. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8137. "shasum": ""
  8138. },
  8139. "require": {
  8140. "php": "^5.3.2 || ^7.0 || ^8.0"
  8141. },
  8142. "require-dev": {
  8143. "phpstan/phpstan": "^0.12.54",
  8144. "symfony/phpunit-bridge": "^4.2 || ^5"
  8145. },
  8146. "type": "library",
  8147. "extra": {
  8148. "branch-alias": {
  8149. "dev-main": "3.x-dev"
  8150. }
  8151. },
  8152. "autoload": {
  8153. "psr-4": {
  8154. "Composer\\Semver\\": "src"
  8155. }
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "MIT"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Nils Adermann",
  8164. "email": "naderman@naderman.de",
  8165. "homepage": "http://www.naderman.de"
  8166. },
  8167. {
  8168. "name": "Jordi Boggiano",
  8169. "email": "j.boggiano@seld.be",
  8170. "homepage": "http://seld.be"
  8171. },
  8172. {
  8173. "name": "Rob Bast",
  8174. "email": "rob.bast@gmail.com",
  8175. "homepage": "http://robbast.nl"
  8176. }
  8177. ],
  8178. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8179. "keywords": [
  8180. "semantic",
  8181. "semver",
  8182. "validation",
  8183. "versioning"
  8184. ],
  8185. "support": {
  8186. "irc": "irc://irc.freenode.org/composer",
  8187. "issues": "https://github.com/composer/semver/issues",
  8188. "source": "https://github.com/composer/semver/tree/3.2.4"
  8189. },
  8190. "funding": [
  8191. {
  8192. "url": "https://packagist.com",
  8193. "type": "custom"
  8194. },
  8195. {
  8196. "url": "https://github.com/composer",
  8197. "type": "github"
  8198. },
  8199. {
  8200. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8201. "type": "tidelift"
  8202. }
  8203. ],
  8204. "time": "2020-11-13T08:59:24+00:00"
  8205. },
  8206. {
  8207. "name": "composer/spdx-licenses",
  8208. "version": "1.5.5",
  8209. "source": {
  8210. "type": "git",
  8211. "url": "https://github.com/composer/spdx-licenses.git",
  8212. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8213. },
  8214. "dist": {
  8215. "type": "zip",
  8216. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8217. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8218. "shasum": ""
  8219. },
  8220. "require": {
  8221. "php": "^5.3.2 || ^7.0 || ^8.0"
  8222. },
  8223. "require-dev": {
  8224. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8225. },
  8226. "type": "library",
  8227. "extra": {
  8228. "branch-alias": {
  8229. "dev-main": "1.x-dev"
  8230. }
  8231. },
  8232. "autoload": {
  8233. "psr-4": {
  8234. "Composer\\Spdx\\": "src"
  8235. }
  8236. },
  8237. "notification-url": "https://packagist.org/downloads/",
  8238. "license": [
  8239. "MIT"
  8240. ],
  8241. "authors": [
  8242. {
  8243. "name": "Nils Adermann",
  8244. "email": "naderman@naderman.de",
  8245. "homepage": "http://www.naderman.de"
  8246. },
  8247. {
  8248. "name": "Jordi Boggiano",
  8249. "email": "j.boggiano@seld.be",
  8250. "homepage": "http://seld.be"
  8251. },
  8252. {
  8253. "name": "Rob Bast",
  8254. "email": "rob.bast@gmail.com",
  8255. "homepage": "http://robbast.nl"
  8256. }
  8257. ],
  8258. "description": "SPDX licenses list and validation library.",
  8259. "keywords": [
  8260. "license",
  8261. "spdx",
  8262. "validator"
  8263. ],
  8264. "support": {
  8265. "irc": "irc://irc.freenode.org/composer",
  8266. "issues": "https://github.com/composer/spdx-licenses/issues",
  8267. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://packagist.com",
  8272. "type": "custom"
  8273. },
  8274. {
  8275. "url": "https://github.com/composer",
  8276. "type": "github"
  8277. },
  8278. {
  8279. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8280. "type": "tidelift"
  8281. }
  8282. ],
  8283. "time": "2020-12-03T16:04:16+00:00"
  8284. },
  8285. {
  8286. "name": "composer/xdebug-handler",
  8287. "version": "1.4.5",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/composer/xdebug-handler.git",
  8291. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8296. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "php": "^5.3.2 || ^7.0 || ^8.0",
  8301. "psr/log": "^1.0"
  8302. },
  8303. "require-dev": {
  8304. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8305. },
  8306. "type": "library",
  8307. "autoload": {
  8308. "psr-4": {
  8309. "Composer\\XdebugHandler\\": "src"
  8310. }
  8311. },
  8312. "notification-url": "https://packagist.org/downloads/",
  8313. "license": [
  8314. "MIT"
  8315. ],
  8316. "authors": [
  8317. {
  8318. "name": "John Stevenson",
  8319. "email": "john-stevenson@blueyonder.co.uk"
  8320. }
  8321. ],
  8322. "description": "Restarts a process without Xdebug.",
  8323. "keywords": [
  8324. "Xdebug",
  8325. "performance"
  8326. ],
  8327. "support": {
  8328. "irc": "irc://irc.freenode.org/composer",
  8329. "issues": "https://github.com/composer/xdebug-handler/issues",
  8330. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8331. },
  8332. "funding": [
  8333. {
  8334. "url": "https://packagist.com",
  8335. "type": "custom"
  8336. },
  8337. {
  8338. "url": "https://github.com/composer",
  8339. "type": "github"
  8340. },
  8341. {
  8342. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8343. "type": "tidelift"
  8344. }
  8345. ],
  8346. "time": "2020-11-13T08:04:11+00:00"
  8347. },
  8348. {
  8349. "name": "doctrine/instantiator",
  8350. "version": "1.4.0",
  8351. "source": {
  8352. "type": "git",
  8353. "url": "https://github.com/doctrine/instantiator.git",
  8354. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8355. },
  8356. "dist": {
  8357. "type": "zip",
  8358. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8359. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8360. "shasum": ""
  8361. },
  8362. "require": {
  8363. "php": "^7.1 || ^8.0"
  8364. },
  8365. "require-dev": {
  8366. "doctrine/coding-standard": "^8.0",
  8367. "ext-pdo": "*",
  8368. "ext-phar": "*",
  8369. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8370. "phpstan/phpstan": "^0.12",
  8371. "phpstan/phpstan-phpunit": "^0.12",
  8372. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8373. },
  8374. "type": "library",
  8375. "autoload": {
  8376. "psr-4": {
  8377. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8378. }
  8379. },
  8380. "notification-url": "https://packagist.org/downloads/",
  8381. "license": [
  8382. "MIT"
  8383. ],
  8384. "authors": [
  8385. {
  8386. "name": "Marco Pivetta",
  8387. "email": "ocramius@gmail.com",
  8388. "homepage": "https://ocramius.github.io/"
  8389. }
  8390. ],
  8391. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8392. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8393. "keywords": [
  8394. "constructor",
  8395. "instantiate"
  8396. ],
  8397. "support": {
  8398. "issues": "https://github.com/doctrine/instantiator/issues",
  8399. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8400. },
  8401. "funding": [
  8402. {
  8403. "url": "https://www.doctrine-project.org/sponsorship.html",
  8404. "type": "custom"
  8405. },
  8406. {
  8407. "url": "https://www.patreon.com/phpdoctrine",
  8408. "type": "patreon"
  8409. },
  8410. {
  8411. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8412. "type": "tidelift"
  8413. }
  8414. ],
  8415. "time": "2020-11-10T18:47:58+00:00"
  8416. },
  8417. {
  8418. "name": "facade/flare-client-php",
  8419. "version": "1.3.7",
  8420. "source": {
  8421. "type": "git",
  8422. "url": "https://github.com/facade/flare-client-php.git",
  8423. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8424. },
  8425. "dist": {
  8426. "type": "zip",
  8427. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8428. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8429. "shasum": ""
  8430. },
  8431. "require": {
  8432. "facade/ignition-contracts": "~1.0",
  8433. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8434. "php": "^7.1|^8.0",
  8435. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8436. "symfony/mime": "^3.4|^4.0|^5.1",
  8437. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8438. },
  8439. "require-dev": {
  8440. "friendsofphp/php-cs-fixer": "^2.14",
  8441. "phpunit/phpunit": "^7.5.16",
  8442. "spatie/phpunit-snapshot-assertions": "^2.0"
  8443. },
  8444. "type": "library",
  8445. "extra": {
  8446. "branch-alias": {
  8447. "dev-master": "1.0-dev"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "psr-4": {
  8452. "Facade\\FlareClient\\": "src"
  8453. },
  8454. "files": [
  8455. "src/helpers.php"
  8456. ]
  8457. },
  8458. "notification-url": "https://packagist.org/downloads/",
  8459. "license": [
  8460. "MIT"
  8461. ],
  8462. "description": "Send PHP errors to Flare",
  8463. "homepage": "https://github.com/facade/flare-client-php",
  8464. "keywords": [
  8465. "exception",
  8466. "facade",
  8467. "flare",
  8468. "reporting"
  8469. ],
  8470. "support": {
  8471. "issues": "https://github.com/facade/flare-client-php/issues",
  8472. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8473. },
  8474. "funding": [
  8475. {
  8476. "url": "https://github.com/spatie",
  8477. "type": "github"
  8478. }
  8479. ],
  8480. "time": "2020-10-21T16:02:39+00:00"
  8481. },
  8482. {
  8483. "name": "facade/ignition",
  8484. "version": "2.5.3",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/facade/ignition.git",
  8488. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/facade/ignition/zipball/d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8493. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "ext-json": "*",
  8498. "ext-mbstring": "*",
  8499. "facade/flare-client-php": "^1.3.7",
  8500. "facade/ignition-contracts": "^1.0.2",
  8501. "filp/whoops": "^2.4",
  8502. "illuminate/support": "^7.0|^8.0",
  8503. "monolog/monolog": "^2.0",
  8504. "php": "^7.2.5|^8.0",
  8505. "symfony/console": "^5.0",
  8506. "symfony/var-dumper": "^5.0"
  8507. },
  8508. "require-dev": {
  8509. "friendsofphp/php-cs-fixer": "^2.14",
  8510. "mockery/mockery": "^1.3",
  8511. "orchestra/testbench": "^5.0|^6.0",
  8512. "psalm/plugin-laravel": "^1.2"
  8513. },
  8514. "suggest": {
  8515. "laravel/telescope": "^3.1"
  8516. },
  8517. "type": "library",
  8518. "extra": {
  8519. "branch-alias": {
  8520. "dev-master": "2.x-dev"
  8521. },
  8522. "laravel": {
  8523. "providers": [
  8524. "Facade\\Ignition\\IgnitionServiceProvider"
  8525. ],
  8526. "aliases": {
  8527. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8528. }
  8529. }
  8530. },
  8531. "autoload": {
  8532. "psr-4": {
  8533. "Facade\\Ignition\\": "src"
  8534. },
  8535. "files": [
  8536. "src/helpers.php"
  8537. ]
  8538. },
  8539. "notification-url": "https://packagist.org/downloads/",
  8540. "license": [
  8541. "MIT"
  8542. ],
  8543. "description": "A beautiful error page for Laravel applications.",
  8544. "homepage": "https://github.com/facade/ignition",
  8545. "keywords": [
  8546. "error",
  8547. "flare",
  8548. "laravel",
  8549. "page"
  8550. ],
  8551. "support": {
  8552. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8553. "forum": "https://twitter.com/flareappio",
  8554. "issues": "https://github.com/facade/ignition/issues",
  8555. "source": "https://github.com/facade/ignition"
  8556. },
  8557. "time": "2020-12-09T20:25:45+00:00"
  8558. },
  8559. {
  8560. "name": "facade/ignition-contracts",
  8561. "version": "1.0.2",
  8562. "source": {
  8563. "type": "git",
  8564. "url": "https://github.com/facade/ignition-contracts.git",
  8565. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8566. },
  8567. "dist": {
  8568. "type": "zip",
  8569. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8570. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8571. "shasum": ""
  8572. },
  8573. "require": {
  8574. "php": "^7.3|^8.0"
  8575. },
  8576. "require-dev": {
  8577. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8578. "phpunit/phpunit": "^9.3.11",
  8579. "vimeo/psalm": "^3.17.1"
  8580. },
  8581. "type": "library",
  8582. "autoload": {
  8583. "psr-4": {
  8584. "Facade\\IgnitionContracts\\": "src"
  8585. }
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "Freek Van der Herten",
  8594. "email": "freek@spatie.be",
  8595. "homepage": "https://flareapp.io",
  8596. "role": "Developer"
  8597. }
  8598. ],
  8599. "description": "Solution contracts for Ignition",
  8600. "homepage": "https://github.com/facade/ignition-contracts",
  8601. "keywords": [
  8602. "contracts",
  8603. "flare",
  8604. "ignition"
  8605. ],
  8606. "support": {
  8607. "issues": "https://github.com/facade/ignition-contracts/issues",
  8608. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8609. },
  8610. "time": "2020-10-16T08:27:54+00:00"
  8611. },
  8612. {
  8613. "name": "fakerphp/faker",
  8614. "version": "v1.12.0",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/FakerPHP/Faker.git",
  8618. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8623. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8624. "shasum": ""
  8625. },
  8626. "require": {
  8627. "php": "^7.1 || ^8.0"
  8628. },
  8629. "conflict": {
  8630. "fzaninotto/faker": "*"
  8631. },
  8632. "require-dev": {
  8633. "bamarni/composer-bin-plugin": "^1.4.1",
  8634. "ext-intl": "*",
  8635. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8636. },
  8637. "type": "library",
  8638. "autoload": {
  8639. "psr-4": {
  8640. "Faker\\": "src/Faker/"
  8641. }
  8642. },
  8643. "notification-url": "https://packagist.org/downloads/",
  8644. "license": [
  8645. "MIT"
  8646. ],
  8647. "authors": [
  8648. {
  8649. "name": "François Zaninotto"
  8650. }
  8651. ],
  8652. "description": "Faker is a PHP library that generates fake data for you.",
  8653. "keywords": [
  8654. "data",
  8655. "faker",
  8656. "fixtures"
  8657. ],
  8658. "support": {
  8659. "issues": "https://github.com/FakerPHP/Faker/issues",
  8660. "source": "https://github.com/FakerPHP/Faker/tree/v1.12.0"
  8661. },
  8662. "time": "2020-11-23T09:33:08+00:00"
  8663. },
  8664. {
  8665. "name": "filp/whoops",
  8666. "version": "2.9.1",
  8667. "source": {
  8668. "type": "git",
  8669. "url": "https://github.com/filp/whoops.git",
  8670. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8671. },
  8672. "dist": {
  8673. "type": "zip",
  8674. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8675. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8676. "shasum": ""
  8677. },
  8678. "require": {
  8679. "php": "^5.5.9 || ^7.0 || ^8.0",
  8680. "psr/log": "^1.0.1"
  8681. },
  8682. "require-dev": {
  8683. "mockery/mockery": "^0.9 || ^1.0",
  8684. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8685. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8686. },
  8687. "suggest": {
  8688. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8689. "whoops/soap": "Formats errors as SOAP responses"
  8690. },
  8691. "type": "library",
  8692. "extra": {
  8693. "branch-alias": {
  8694. "dev-master": "2.7-dev"
  8695. }
  8696. },
  8697. "autoload": {
  8698. "psr-4": {
  8699. "Whoops\\": "src/Whoops/"
  8700. }
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "MIT"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Filipe Dobreira",
  8709. "homepage": "https://github.com/filp",
  8710. "role": "Developer"
  8711. }
  8712. ],
  8713. "description": "php error handling for cool kids",
  8714. "homepage": "https://filp.github.io/whoops/",
  8715. "keywords": [
  8716. "error",
  8717. "exception",
  8718. "handling",
  8719. "library",
  8720. "throwable",
  8721. "whoops"
  8722. ],
  8723. "support": {
  8724. "issues": "https://github.com/filp/whoops/issues",
  8725. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8726. },
  8727. "time": "2020-11-01T12:00:00+00:00"
  8728. },
  8729. {
  8730. "name": "hamcrest/hamcrest-php",
  8731. "version": "v2.0.1",
  8732. "source": {
  8733. "type": "git",
  8734. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8735. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8736. },
  8737. "dist": {
  8738. "type": "zip",
  8739. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8740. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8741. "shasum": ""
  8742. },
  8743. "require": {
  8744. "php": "^5.3|^7.0|^8.0"
  8745. },
  8746. "replace": {
  8747. "cordoval/hamcrest-php": "*",
  8748. "davedevelopment/hamcrest-php": "*",
  8749. "kodova/hamcrest-php": "*"
  8750. },
  8751. "require-dev": {
  8752. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8753. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "branch-alias": {
  8758. "dev-master": "2.1-dev"
  8759. }
  8760. },
  8761. "autoload": {
  8762. "classmap": [
  8763. "hamcrest"
  8764. ]
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "BSD-3-Clause"
  8769. ],
  8770. "description": "This is the PHP port of Hamcrest Matchers",
  8771. "keywords": [
  8772. "test"
  8773. ],
  8774. "support": {
  8775. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8776. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8777. },
  8778. "time": "2020-07-09T08:09:16+00:00"
  8779. },
  8780. {
  8781. "name": "justinrainbow/json-schema",
  8782. "version": "5.2.10",
  8783. "source": {
  8784. "type": "git",
  8785. "url": "https://github.com/justinrainbow/json-schema.git",
  8786. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8787. },
  8788. "dist": {
  8789. "type": "zip",
  8790. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8791. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8792. "shasum": ""
  8793. },
  8794. "require": {
  8795. "php": ">=5.3.3"
  8796. },
  8797. "require-dev": {
  8798. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8799. "json-schema/json-schema-test-suite": "1.2.0",
  8800. "phpunit/phpunit": "^4.8.35"
  8801. },
  8802. "bin": [
  8803. "bin/validate-json"
  8804. ],
  8805. "type": "library",
  8806. "extra": {
  8807. "branch-alias": {
  8808. "dev-master": "5.0.x-dev"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "psr-4": {
  8813. "JsonSchema\\": "src/JsonSchema/"
  8814. }
  8815. },
  8816. "notification-url": "https://packagist.org/downloads/",
  8817. "license": [
  8818. "MIT"
  8819. ],
  8820. "authors": [
  8821. {
  8822. "name": "Bruno Prieto Reis",
  8823. "email": "bruno.p.reis@gmail.com"
  8824. },
  8825. {
  8826. "name": "Justin Rainbow",
  8827. "email": "justin.rainbow@gmail.com"
  8828. },
  8829. {
  8830. "name": "Igor Wiedler",
  8831. "email": "igor@wiedler.ch"
  8832. },
  8833. {
  8834. "name": "Robert Schönthal",
  8835. "email": "seroscho@googlemail.com"
  8836. }
  8837. ],
  8838. "description": "A library to validate a json schema.",
  8839. "homepage": "https://github.com/justinrainbow/json-schema",
  8840. "keywords": [
  8841. "json",
  8842. "schema"
  8843. ],
  8844. "support": {
  8845. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8846. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8847. },
  8848. "time": "2020-05-27T16:41:55+00:00"
  8849. },
  8850. {
  8851. "name": "laravel/telescope",
  8852. "version": "v3.5.1",
  8853. "source": {
  8854. "type": "git",
  8855. "url": "https://github.com/laravel/telescope.git",
  8856. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8857. },
  8858. "dist": {
  8859. "type": "zip",
  8860. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8861. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8862. "shasum": ""
  8863. },
  8864. "require": {
  8865. "ext-json": "*",
  8866. "laravel/framework": "^6.0|^7.0",
  8867. "moontoast/math": "^1.1",
  8868. "php": "^7.2",
  8869. "symfony/var-dumper": "^4.4|^5.0"
  8870. },
  8871. "require-dev": {
  8872. "ext-gd": "*",
  8873. "orchestra/testbench": "^4.0|^5.0"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "3.x-dev"
  8879. },
  8880. "laravel": {
  8881. "providers": [
  8882. "Laravel\\Telescope\\TelescopeServiceProvider"
  8883. ]
  8884. }
  8885. },
  8886. "autoload": {
  8887. "psr-4": {
  8888. "Laravel\\Telescope\\": "src/"
  8889. }
  8890. },
  8891. "notification-url": "https://packagist.org/downloads/",
  8892. "license": [
  8893. "MIT"
  8894. ],
  8895. "authors": [
  8896. {
  8897. "name": "Taylor Otwell",
  8898. "email": "taylor@laravel.com"
  8899. },
  8900. {
  8901. "name": "Mohamed Said",
  8902. "email": "mohamed@laravel.com"
  8903. }
  8904. ],
  8905. "description": "An elegant debug assistant for the Laravel framework.",
  8906. "keywords": [
  8907. "debugging",
  8908. "laravel",
  8909. "monitoring"
  8910. ],
  8911. "support": {
  8912. "issues": "https://github.com/laravel/telescope/issues",
  8913. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8914. },
  8915. "time": "2020-07-28T19:12:33+00:00"
  8916. },
  8917. {
  8918. "name": "maximebf/debugbar",
  8919. "version": "v1.16.4",
  8920. "source": {
  8921. "type": "git",
  8922. "url": "https://github.com/maximebf/php-debugbar.git",
  8923. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  8924. },
  8925. "dist": {
  8926. "type": "zip",
  8927. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8928. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8929. "shasum": ""
  8930. },
  8931. "require": {
  8932. "php": "^7.1|^8",
  8933. "psr/log": "^1.0",
  8934. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8935. },
  8936. "require-dev": {
  8937. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8938. },
  8939. "suggest": {
  8940. "kriswallsmith/assetic": "The best way to manage assets",
  8941. "monolog/monolog": "Log using Monolog",
  8942. "predis/predis": "Redis storage"
  8943. },
  8944. "type": "library",
  8945. "extra": {
  8946. "branch-alias": {
  8947. "dev-master": "1.16-dev"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "psr-4": {
  8952. "DebugBar\\": "src/DebugBar/"
  8953. }
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "MIT"
  8958. ],
  8959. "authors": [
  8960. {
  8961. "name": "Maxime Bouroumeau-Fuseau",
  8962. "email": "maxime.bouroumeau@gmail.com",
  8963. "homepage": "http://maximebf.com"
  8964. },
  8965. {
  8966. "name": "Barry vd. Heuvel",
  8967. "email": "barryvdh@gmail.com"
  8968. }
  8969. ],
  8970. "description": "Debug bar in the browser for php application",
  8971. "homepage": "https://github.com/maximebf/php-debugbar",
  8972. "keywords": [
  8973. "debug",
  8974. "debugbar"
  8975. ],
  8976. "support": {
  8977. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8978. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8979. },
  8980. "time": "2020-12-07T10:48:48+00:00"
  8981. },
  8982. {
  8983. "name": "mockery/mockery",
  8984. "version": "1.4.2",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/mockery/mockery.git",
  8988. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8993. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8994. "shasum": ""
  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. "support": {
  9049. "issues": "https://github.com/mockery/mockery/issues",
  9050. "source": "https://github.com/mockery/mockery/tree/master"
  9051. },
  9052. "time": "2020-08-11T18:10:13+00:00"
  9053. },
  9054. {
  9055. "name": "moontoast/math",
  9056. "version": "1.2.1",
  9057. "source": {
  9058. "type": "git",
  9059. "url": "https://github.com/ramsey/moontoast-math.git",
  9060. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9061. },
  9062. "dist": {
  9063. "type": "zip",
  9064. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9065. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9066. "shasum": ""
  9067. },
  9068. "require": {
  9069. "php": ">=5.3.3",
  9070. "phpseclib/bcmath_compat": ">=1.0.3"
  9071. },
  9072. "require-dev": {
  9073. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9074. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9075. "satooshi/php-coveralls": "^0.6.1",
  9076. "squizlabs/php_codesniffer": "^2.3"
  9077. },
  9078. "type": "library",
  9079. "autoload": {
  9080. "psr-4": {
  9081. "Moontoast\\Math\\": "src/Moontoast/Math",
  9082. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9083. }
  9084. },
  9085. "notification-url": "https://packagist.org/downloads/",
  9086. "license": [
  9087. "Apache-2.0"
  9088. ],
  9089. "authors": [
  9090. {
  9091. "name": "Ben Ramsey",
  9092. "email": "ben@benramsey.com",
  9093. "homepage": "https://benramsey.com"
  9094. }
  9095. ],
  9096. "description": "A mathematics library, providing functionality for large numbers",
  9097. "homepage": "https://github.com/ramsey/moontoast-math",
  9098. "keywords": [
  9099. "bcmath",
  9100. "math"
  9101. ],
  9102. "support": {
  9103. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9104. "source": "https://github.com/ramsey/moontoast-math"
  9105. },
  9106. "abandoned": "brick/math",
  9107. "time": "2020-01-05T04:49:34+00:00"
  9108. },
  9109. {
  9110. "name": "myclabs/deep-copy",
  9111. "version": "1.10.2",
  9112. "source": {
  9113. "type": "git",
  9114. "url": "https://github.com/myclabs/DeepCopy.git",
  9115. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9116. },
  9117. "dist": {
  9118. "type": "zip",
  9119. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9120. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9121. "shasum": ""
  9122. },
  9123. "require": {
  9124. "php": "^7.1 || ^8.0"
  9125. },
  9126. "replace": {
  9127. "myclabs/deep-copy": "self.version"
  9128. },
  9129. "require-dev": {
  9130. "doctrine/collections": "^1.0",
  9131. "doctrine/common": "^2.6",
  9132. "phpunit/phpunit": "^7.1"
  9133. },
  9134. "type": "library",
  9135. "autoload": {
  9136. "psr-4": {
  9137. "DeepCopy\\": "src/DeepCopy/"
  9138. },
  9139. "files": [
  9140. "src/DeepCopy/deep_copy.php"
  9141. ]
  9142. },
  9143. "notification-url": "https://packagist.org/downloads/",
  9144. "license": [
  9145. "MIT"
  9146. ],
  9147. "description": "Create deep copies (clones) of your objects",
  9148. "keywords": [
  9149. "clone",
  9150. "copy",
  9151. "duplicate",
  9152. "object",
  9153. "object graph"
  9154. ],
  9155. "support": {
  9156. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9157. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9158. },
  9159. "funding": [
  9160. {
  9161. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9162. "type": "tidelift"
  9163. }
  9164. ],
  9165. "time": "2020-11-13T09:40:50+00:00"
  9166. },
  9167. {
  9168. "name": "nunomaduro/collision",
  9169. "version": "v4.3.0",
  9170. "source": {
  9171. "type": "git",
  9172. "url": "https://github.com/nunomaduro/collision.git",
  9173. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9174. },
  9175. "dist": {
  9176. "type": "zip",
  9177. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9178. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9179. "shasum": ""
  9180. },
  9181. "require": {
  9182. "facade/ignition-contracts": "^1.0",
  9183. "filp/whoops": "^2.4",
  9184. "php": "^7.2.5 || ^8.0",
  9185. "symfony/console": "^5.0"
  9186. },
  9187. "require-dev": {
  9188. "facade/ignition": "^2.0",
  9189. "fideloper/proxy": "^4.2",
  9190. "friendsofphp/php-cs-fixer": "^2.16",
  9191. "fruitcake/laravel-cors": "^1.0",
  9192. "laravel/framework": "^7.0",
  9193. "laravel/tinker": "^2.0",
  9194. "nunomaduro/larastan": "^0.6",
  9195. "orchestra/testbench": "^5.0",
  9196. "phpstan/phpstan": "^0.12.3",
  9197. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9198. },
  9199. "type": "library",
  9200. "extra": {
  9201. "laravel": {
  9202. "providers": [
  9203. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9204. ]
  9205. }
  9206. },
  9207. "autoload": {
  9208. "psr-4": {
  9209. "NunoMaduro\\Collision\\": "src/"
  9210. }
  9211. },
  9212. "notification-url": "https://packagist.org/downloads/",
  9213. "license": [
  9214. "MIT"
  9215. ],
  9216. "authors": [
  9217. {
  9218. "name": "Nuno Maduro",
  9219. "email": "enunomaduro@gmail.com"
  9220. }
  9221. ],
  9222. "description": "Cli error handling for console/command-line PHP applications.",
  9223. "keywords": [
  9224. "artisan",
  9225. "cli",
  9226. "command-line",
  9227. "console",
  9228. "error",
  9229. "handling",
  9230. "laravel",
  9231. "laravel-zero",
  9232. "php",
  9233. "symfony"
  9234. ],
  9235. "support": {
  9236. "issues": "https://github.com/nunomaduro/collision/issues",
  9237. "source": "https://github.com/nunomaduro/collision"
  9238. },
  9239. "funding": [
  9240. {
  9241. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9242. "type": "custom"
  9243. },
  9244. {
  9245. "url": "https://github.com/nunomaduro",
  9246. "type": "github"
  9247. },
  9248. {
  9249. "url": "https://www.patreon.com/nunomaduro",
  9250. "type": "patreon"
  9251. }
  9252. ],
  9253. "time": "2020-10-29T15:12:23+00:00"
  9254. },
  9255. {
  9256. "name": "phar-io/manifest",
  9257. "version": "2.0.1",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/phar-io/manifest.git",
  9261. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9266. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "ext-dom": "*",
  9271. "ext-phar": "*",
  9272. "ext-xmlwriter": "*",
  9273. "phar-io/version": "^3.0.1",
  9274. "php": "^7.2 || ^8.0"
  9275. },
  9276. "type": "library",
  9277. "extra": {
  9278. "branch-alias": {
  9279. "dev-master": "2.0.x-dev"
  9280. }
  9281. },
  9282. "autoload": {
  9283. "classmap": [
  9284. "src/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Arne Blankerts",
  9294. "email": "arne@blankerts.de",
  9295. "role": "Developer"
  9296. },
  9297. {
  9298. "name": "Sebastian Heuer",
  9299. "email": "sebastian@phpeople.de",
  9300. "role": "Developer"
  9301. },
  9302. {
  9303. "name": "Sebastian Bergmann",
  9304. "email": "sebastian@phpunit.de",
  9305. "role": "Developer"
  9306. }
  9307. ],
  9308. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9309. "support": {
  9310. "issues": "https://github.com/phar-io/manifest/issues",
  9311. "source": "https://github.com/phar-io/manifest/tree/master"
  9312. },
  9313. "time": "2020-06-27T14:33:11+00:00"
  9314. },
  9315. {
  9316. "name": "phar-io/version",
  9317. "version": "3.0.3",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/phar-io/version.git",
  9321. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/phar-io/version/zipball/726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  9326. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "php": "^7.2 || ^8.0"
  9331. },
  9332. "type": "library",
  9333. "autoload": {
  9334. "classmap": [
  9335. "src/"
  9336. ]
  9337. },
  9338. "notification-url": "https://packagist.org/downloads/",
  9339. "license": [
  9340. "BSD-3-Clause"
  9341. ],
  9342. "authors": [
  9343. {
  9344. "name": "Arne Blankerts",
  9345. "email": "arne@blankerts.de",
  9346. "role": "Developer"
  9347. },
  9348. {
  9349. "name": "Sebastian Heuer",
  9350. "email": "sebastian@phpeople.de",
  9351. "role": "Developer"
  9352. },
  9353. {
  9354. "name": "Sebastian Bergmann",
  9355. "email": "sebastian@phpunit.de",
  9356. "role": "Developer"
  9357. }
  9358. ],
  9359. "description": "Library for handling version information and constraints",
  9360. "support": {
  9361. "issues": "https://github.com/phar-io/version/issues",
  9362. "source": "https://github.com/phar-io/version/tree/3.0.3"
  9363. },
  9364. "time": "2020-11-30T09:21:21+00:00"
  9365. },
  9366. {
  9367. "name": "phpdocumentor/reflection-common",
  9368. "version": "2.2.0",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9372. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9377. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "php": "^7.2 || ^8.0"
  9382. },
  9383. "type": "library",
  9384. "extra": {
  9385. "branch-alias": {
  9386. "dev-2.x": "2.x-dev"
  9387. }
  9388. },
  9389. "autoload": {
  9390. "psr-4": {
  9391. "phpDocumentor\\Reflection\\": "src/"
  9392. }
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "MIT"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Jaap van Otterdijk",
  9401. "email": "opensource@ijaap.nl"
  9402. }
  9403. ],
  9404. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9405. "homepage": "http://www.phpdoc.org",
  9406. "keywords": [
  9407. "FQSEN",
  9408. "phpDocumentor",
  9409. "phpdoc",
  9410. "reflection",
  9411. "static analysis"
  9412. ],
  9413. "support": {
  9414. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9415. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9416. },
  9417. "time": "2020-06-27T09:03:43+00:00"
  9418. },
  9419. {
  9420. "name": "phpdocumentor/reflection-docblock",
  9421. "version": "5.2.2",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9425. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9430. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "ext-filter": "*",
  9435. "php": "^7.2 || ^8.0",
  9436. "phpdocumentor/reflection-common": "^2.2",
  9437. "phpdocumentor/type-resolver": "^1.3",
  9438. "webmozart/assert": "^1.9.1"
  9439. },
  9440. "require-dev": {
  9441. "mockery/mockery": "~1.3.2"
  9442. },
  9443. "type": "library",
  9444. "extra": {
  9445. "branch-alias": {
  9446. "dev-master": "5.x-dev"
  9447. }
  9448. },
  9449. "autoload": {
  9450. "psr-4": {
  9451. "phpDocumentor\\Reflection\\": "src"
  9452. }
  9453. },
  9454. "notification-url": "https://packagist.org/downloads/",
  9455. "license": [
  9456. "MIT"
  9457. ],
  9458. "authors": [
  9459. {
  9460. "name": "Mike van Riel",
  9461. "email": "me@mikevanriel.com"
  9462. },
  9463. {
  9464. "name": "Jaap van Otterdijk",
  9465. "email": "account@ijaap.nl"
  9466. }
  9467. ],
  9468. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9469. "support": {
  9470. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9471. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9472. },
  9473. "time": "2020-09-03T19:13:55+00:00"
  9474. },
  9475. {
  9476. "name": "phpdocumentor/type-resolver",
  9477. "version": "1.4.0",
  9478. "source": {
  9479. "type": "git",
  9480. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9481. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9482. },
  9483. "dist": {
  9484. "type": "zip",
  9485. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9486. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9487. "shasum": ""
  9488. },
  9489. "require": {
  9490. "php": "^7.2 || ^8.0",
  9491. "phpdocumentor/reflection-common": "^2.0"
  9492. },
  9493. "require-dev": {
  9494. "ext-tokenizer": "*"
  9495. },
  9496. "type": "library",
  9497. "extra": {
  9498. "branch-alias": {
  9499. "dev-1.x": "1.x-dev"
  9500. }
  9501. },
  9502. "autoload": {
  9503. "psr-4": {
  9504. "phpDocumentor\\Reflection\\": "src"
  9505. }
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "MIT"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Mike van Riel",
  9514. "email": "me@mikevanriel.com"
  9515. }
  9516. ],
  9517. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9518. "support": {
  9519. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9520. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9521. },
  9522. "time": "2020-09-17T18:55:26+00:00"
  9523. },
  9524. {
  9525. "name": "phpseclib/bcmath_compat",
  9526. "version": "1.0.5",
  9527. "source": {
  9528. "type": "git",
  9529. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9530. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  9531. },
  9532. "dist": {
  9533. "type": "zip",
  9534. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  9535. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  9536. "shasum": ""
  9537. },
  9538. "require": {
  9539. "phpseclib/phpseclib": ">=2.0.19"
  9540. },
  9541. "provide": {
  9542. "ext-bcmath": "7.3.5"
  9543. },
  9544. "require-dev": {
  9545. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9546. "squizlabs/php_codesniffer": "^3.0"
  9547. },
  9548. "suggest": {
  9549. "ext-gmp": "Will enable faster math operations"
  9550. },
  9551. "type": "library",
  9552. "autoload": {
  9553. "files": [
  9554. "lib/bcmath.php"
  9555. ],
  9556. "psr-4": {
  9557. "bcmath_compat\\": "src"
  9558. }
  9559. },
  9560. "notification-url": "https://packagist.org/downloads/",
  9561. "license": [
  9562. "MIT"
  9563. ],
  9564. "authors": [
  9565. {
  9566. "name": "Jim Wigginton",
  9567. "email": "terrafrost@php.net",
  9568. "homepage": "http://phpseclib.sourceforge.net"
  9569. }
  9570. ],
  9571. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9572. "keywords": [
  9573. "BigInteger",
  9574. "bcmath",
  9575. "bigdecimal",
  9576. "math",
  9577. "polyfill"
  9578. ],
  9579. "support": {
  9580. "email": "terrafrost@php.net",
  9581. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9582. "source": "https://github.com/phpseclib/bcmath_compat"
  9583. },
  9584. "time": "2020-04-26T16:34:33+00:00"
  9585. },
  9586. {
  9587. "name": "phpseclib/phpseclib",
  9588. "version": "2.0.29",
  9589. "source": {
  9590. "type": "git",
  9591. "url": "https://github.com/phpseclib/phpseclib.git",
  9592. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  9593. },
  9594. "dist": {
  9595. "type": "zip",
  9596. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  9597. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  9598. "shasum": ""
  9599. },
  9600. "require": {
  9601. "php": ">=5.3.3"
  9602. },
  9603. "require-dev": {
  9604. "phing/phing": "~2.7",
  9605. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9606. "squizlabs/php_codesniffer": "~2.0"
  9607. },
  9608. "suggest": {
  9609. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9610. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9611. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9612. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9613. },
  9614. "type": "library",
  9615. "autoload": {
  9616. "files": [
  9617. "phpseclib/bootstrap.php"
  9618. ],
  9619. "psr-4": {
  9620. "phpseclib\\": "phpseclib/"
  9621. }
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "MIT"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Jim Wigginton",
  9630. "email": "terrafrost@php.net",
  9631. "role": "Lead Developer"
  9632. },
  9633. {
  9634. "name": "Patrick Monnerat",
  9635. "email": "pm@datasphere.ch",
  9636. "role": "Developer"
  9637. },
  9638. {
  9639. "name": "Andreas Fischer",
  9640. "email": "bantu@phpbb.com",
  9641. "role": "Developer"
  9642. },
  9643. {
  9644. "name": "Hans-Jürgen Petrich",
  9645. "email": "petrich@tronic-media.com",
  9646. "role": "Developer"
  9647. },
  9648. {
  9649. "name": "Graham Campbell",
  9650. "email": "graham@alt-three.com",
  9651. "role": "Developer"
  9652. }
  9653. ],
  9654. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9655. "homepage": "http://phpseclib.sourceforge.net",
  9656. "keywords": [
  9657. "BigInteger",
  9658. "aes",
  9659. "asn.1",
  9660. "asn1",
  9661. "blowfish",
  9662. "crypto",
  9663. "cryptography",
  9664. "encryption",
  9665. "rsa",
  9666. "security",
  9667. "sftp",
  9668. "signature",
  9669. "signing",
  9670. "ssh",
  9671. "twofish",
  9672. "x.509",
  9673. "x509"
  9674. ],
  9675. "support": {
  9676. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9677. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  9678. },
  9679. "funding": [
  9680. {
  9681. "url": "https://github.com/terrafrost",
  9682. "type": "github"
  9683. },
  9684. {
  9685. "url": "https://www.patreon.com/phpseclib",
  9686. "type": "patreon"
  9687. },
  9688. {
  9689. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9690. "type": "tidelift"
  9691. }
  9692. ],
  9693. "time": "2020-09-08T04:24:43+00:00"
  9694. },
  9695. {
  9696. "name": "phpspec/prophecy",
  9697. "version": "1.12.1",
  9698. "source": {
  9699. "type": "git",
  9700. "url": "https://github.com/phpspec/prophecy.git",
  9701. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9702. },
  9703. "dist": {
  9704. "type": "zip",
  9705. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9706. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9707. "shasum": ""
  9708. },
  9709. "require": {
  9710. "doctrine/instantiator": "^1.2",
  9711. "php": "^7.2 || ~8.0, <8.1",
  9712. "phpdocumentor/reflection-docblock": "^5.2",
  9713. "sebastian/comparator": "^3.0 || ^4.0",
  9714. "sebastian/recursion-context": "^3.0 || ^4.0"
  9715. },
  9716. "require-dev": {
  9717. "phpspec/phpspec": "^6.0",
  9718. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9719. },
  9720. "type": "library",
  9721. "extra": {
  9722. "branch-alias": {
  9723. "dev-master": "1.11.x-dev"
  9724. }
  9725. },
  9726. "autoload": {
  9727. "psr-4": {
  9728. "Prophecy\\": "src/Prophecy"
  9729. }
  9730. },
  9731. "notification-url": "https://packagist.org/downloads/",
  9732. "license": [
  9733. "MIT"
  9734. ],
  9735. "authors": [
  9736. {
  9737. "name": "Konstantin Kudryashov",
  9738. "email": "ever.zet@gmail.com",
  9739. "homepage": "http://everzet.com"
  9740. },
  9741. {
  9742. "name": "Marcello Duarte",
  9743. "email": "marcello.duarte@gmail.com"
  9744. }
  9745. ],
  9746. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9747. "homepage": "https://github.com/phpspec/prophecy",
  9748. "keywords": [
  9749. "Double",
  9750. "Dummy",
  9751. "fake",
  9752. "mock",
  9753. "spy",
  9754. "stub"
  9755. ],
  9756. "support": {
  9757. "issues": "https://github.com/phpspec/prophecy/issues",
  9758. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  9759. },
  9760. "time": "2020-09-29T09:10:42+00:00"
  9761. },
  9762. {
  9763. "name": "phpunit/php-code-coverage",
  9764. "version": "9.2.5",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9768. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9773. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9774. "shasum": ""
  9775. },
  9776. "require": {
  9777. "ext-dom": "*",
  9778. "ext-libxml": "*",
  9779. "ext-xmlwriter": "*",
  9780. "nikic/php-parser": "^4.10.2",
  9781. "php": ">=7.3",
  9782. "phpunit/php-file-iterator": "^3.0.3",
  9783. "phpunit/php-text-template": "^2.0.2",
  9784. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9785. "sebastian/complexity": "^2.0",
  9786. "sebastian/environment": "^5.1.2",
  9787. "sebastian/lines-of-code": "^1.0.3",
  9788. "sebastian/version": "^3.0.1",
  9789. "theseer/tokenizer": "^1.2.0"
  9790. },
  9791. "require-dev": {
  9792. "phpunit/phpunit": "^9.3"
  9793. },
  9794. "suggest": {
  9795. "ext-pcov": "*",
  9796. "ext-xdebug": "*"
  9797. },
  9798. "type": "library",
  9799. "extra": {
  9800. "branch-alias": {
  9801. "dev-master": "9.2-dev"
  9802. }
  9803. },
  9804. "autoload": {
  9805. "classmap": [
  9806. "src/"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "BSD-3-Clause"
  9812. ],
  9813. "authors": [
  9814. {
  9815. "name": "Sebastian Bergmann",
  9816. "email": "sebastian@phpunit.de",
  9817. "role": "lead"
  9818. }
  9819. ],
  9820. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9821. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9822. "keywords": [
  9823. "coverage",
  9824. "testing",
  9825. "xunit"
  9826. ],
  9827. "support": {
  9828. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9829. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9830. },
  9831. "funding": [
  9832. {
  9833. "url": "https://github.com/sebastianbergmann",
  9834. "type": "github"
  9835. }
  9836. ],
  9837. "time": "2020-11-28T06:44:49+00:00"
  9838. },
  9839. {
  9840. "name": "phpunit/php-file-iterator",
  9841. "version": "3.0.5",
  9842. "source": {
  9843. "type": "git",
  9844. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9845. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9846. },
  9847. "dist": {
  9848. "type": "zip",
  9849. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9850. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9851. "shasum": ""
  9852. },
  9853. "require": {
  9854. "php": ">=7.3"
  9855. },
  9856. "require-dev": {
  9857. "phpunit/phpunit": "^9.3"
  9858. },
  9859. "type": "library",
  9860. "extra": {
  9861. "branch-alias": {
  9862. "dev-master": "3.0-dev"
  9863. }
  9864. },
  9865. "autoload": {
  9866. "classmap": [
  9867. "src/"
  9868. ]
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "BSD-3-Clause"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Sebastian Bergmann",
  9877. "email": "sebastian@phpunit.de",
  9878. "role": "lead"
  9879. }
  9880. ],
  9881. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9882. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9883. "keywords": [
  9884. "filesystem",
  9885. "iterator"
  9886. ],
  9887. "support": {
  9888. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9889. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/sebastianbergmann",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2020-09-28T05:57:25+00:00"
  9898. },
  9899. {
  9900. "name": "phpunit/php-invoker",
  9901. "version": "3.1.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9905. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9910. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9911. "shasum": ""
  9912. },
  9913. "require": {
  9914. "php": ">=7.3"
  9915. },
  9916. "require-dev": {
  9917. "ext-pcntl": "*",
  9918. "phpunit/phpunit": "^9.3"
  9919. },
  9920. "suggest": {
  9921. "ext-pcntl": "*"
  9922. },
  9923. "type": "library",
  9924. "extra": {
  9925. "branch-alias": {
  9926. "dev-master": "3.1-dev"
  9927. }
  9928. },
  9929. "autoload": {
  9930. "classmap": [
  9931. "src/"
  9932. ]
  9933. },
  9934. "notification-url": "https://packagist.org/downloads/",
  9935. "license": [
  9936. "BSD-3-Clause"
  9937. ],
  9938. "authors": [
  9939. {
  9940. "name": "Sebastian Bergmann",
  9941. "email": "sebastian@phpunit.de",
  9942. "role": "lead"
  9943. }
  9944. ],
  9945. "description": "Invoke callables with a timeout",
  9946. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9947. "keywords": [
  9948. "process"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9952. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9953. },
  9954. "funding": [
  9955. {
  9956. "url": "https://github.com/sebastianbergmann",
  9957. "type": "github"
  9958. }
  9959. ],
  9960. "time": "2020-09-28T05:58:55+00:00"
  9961. },
  9962. {
  9963. "name": "phpunit/php-text-template",
  9964. "version": "2.0.4",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9968. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9973. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "php": ">=7.3"
  9978. },
  9979. "require-dev": {
  9980. "phpunit/phpunit": "^9.3"
  9981. },
  9982. "type": "library",
  9983. "extra": {
  9984. "branch-alias": {
  9985. "dev-master": "2.0-dev"
  9986. }
  9987. },
  9988. "autoload": {
  9989. "classmap": [
  9990. "src/"
  9991. ]
  9992. },
  9993. "notification-url": "https://packagist.org/downloads/",
  9994. "license": [
  9995. "BSD-3-Clause"
  9996. ],
  9997. "authors": [
  9998. {
  9999. "name": "Sebastian Bergmann",
  10000. "email": "sebastian@phpunit.de",
  10001. "role": "lead"
  10002. }
  10003. ],
  10004. "description": "Simple template engine.",
  10005. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10006. "keywords": [
  10007. "template"
  10008. ],
  10009. "support": {
  10010. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10011. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://github.com/sebastianbergmann",
  10016. "type": "github"
  10017. }
  10018. ],
  10019. "time": "2020-10-26T05:33:50+00:00"
  10020. },
  10021. {
  10022. "name": "phpunit/php-timer",
  10023. "version": "5.0.3",
  10024. "source": {
  10025. "type": "git",
  10026. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10027. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10028. },
  10029. "dist": {
  10030. "type": "zip",
  10031. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10032. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10033. "shasum": ""
  10034. },
  10035. "require": {
  10036. "php": ">=7.3"
  10037. },
  10038. "require-dev": {
  10039. "phpunit/phpunit": "^9.3"
  10040. },
  10041. "type": "library",
  10042. "extra": {
  10043. "branch-alias": {
  10044. "dev-master": "5.0-dev"
  10045. }
  10046. },
  10047. "autoload": {
  10048. "classmap": [
  10049. "src/"
  10050. ]
  10051. },
  10052. "notification-url": "https://packagist.org/downloads/",
  10053. "license": [
  10054. "BSD-3-Clause"
  10055. ],
  10056. "authors": [
  10057. {
  10058. "name": "Sebastian Bergmann",
  10059. "email": "sebastian@phpunit.de",
  10060. "role": "lead"
  10061. }
  10062. ],
  10063. "description": "Utility class for timing",
  10064. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10065. "keywords": [
  10066. "timer"
  10067. ],
  10068. "support": {
  10069. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10070. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10071. },
  10072. "funding": [
  10073. {
  10074. "url": "https://github.com/sebastianbergmann",
  10075. "type": "github"
  10076. }
  10077. ],
  10078. "time": "2020-10-26T13:16:10+00:00"
  10079. },
  10080. {
  10081. "name": "phpunit/phpunit",
  10082. "version": "9.5.0",
  10083. "source": {
  10084. "type": "git",
  10085. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10086. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  10087. },
  10088. "dist": {
  10089. "type": "zip",
  10090. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10091. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10092. "shasum": ""
  10093. },
  10094. "require": {
  10095. "doctrine/instantiator": "^1.3.1",
  10096. "ext-dom": "*",
  10097. "ext-json": "*",
  10098. "ext-libxml": "*",
  10099. "ext-mbstring": "*",
  10100. "ext-xml": "*",
  10101. "ext-xmlwriter": "*",
  10102. "myclabs/deep-copy": "^1.10.1",
  10103. "phar-io/manifest": "^2.0.1",
  10104. "phar-io/version": "^3.0.2",
  10105. "php": ">=7.3",
  10106. "phpspec/prophecy": "^1.12.1",
  10107. "phpunit/php-code-coverage": "^9.2.3",
  10108. "phpunit/php-file-iterator": "^3.0.5",
  10109. "phpunit/php-invoker": "^3.1.1",
  10110. "phpunit/php-text-template": "^2.0.3",
  10111. "phpunit/php-timer": "^5.0.2",
  10112. "sebastian/cli-parser": "^1.0.1",
  10113. "sebastian/code-unit": "^1.0.6",
  10114. "sebastian/comparator": "^4.0.5",
  10115. "sebastian/diff": "^4.0.3",
  10116. "sebastian/environment": "^5.1.3",
  10117. "sebastian/exporter": "^4.0.3",
  10118. "sebastian/global-state": "^5.0.1",
  10119. "sebastian/object-enumerator": "^4.0.3",
  10120. "sebastian/resource-operations": "^3.0.3",
  10121. "sebastian/type": "^2.3",
  10122. "sebastian/version": "^3.0.2"
  10123. },
  10124. "require-dev": {
  10125. "ext-pdo": "*",
  10126. "phpspec/prophecy-phpunit": "^2.0.1"
  10127. },
  10128. "suggest": {
  10129. "ext-soap": "*",
  10130. "ext-xdebug": "*"
  10131. },
  10132. "bin": [
  10133. "phpunit"
  10134. ],
  10135. "type": "library",
  10136. "extra": {
  10137. "branch-alias": {
  10138. "dev-master": "9.5-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "classmap": [
  10143. "src/"
  10144. ],
  10145. "files": [
  10146. "src/Framework/Assert/Functions.php"
  10147. ]
  10148. },
  10149. "notification-url": "https://packagist.org/downloads/",
  10150. "license": [
  10151. "BSD-3-Clause"
  10152. ],
  10153. "authors": [
  10154. {
  10155. "name": "Sebastian Bergmann",
  10156. "email": "sebastian@phpunit.de",
  10157. "role": "lead"
  10158. }
  10159. ],
  10160. "description": "The PHP Unit Testing framework.",
  10161. "homepage": "https://phpunit.de/",
  10162. "keywords": [
  10163. "phpunit",
  10164. "testing",
  10165. "xunit"
  10166. ],
  10167. "support": {
  10168. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10169. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  10170. },
  10171. "funding": [
  10172. {
  10173. "url": "https://phpunit.de/donate.html",
  10174. "type": "custom"
  10175. },
  10176. {
  10177. "url": "https://github.com/sebastianbergmann",
  10178. "type": "github"
  10179. }
  10180. ],
  10181. "time": "2020-12-04T05:05:53+00:00"
  10182. },
  10183. {
  10184. "name": "react/promise",
  10185. "version": "v2.8.0",
  10186. "source": {
  10187. "type": "git",
  10188. "url": "https://github.com/reactphp/promise.git",
  10189. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10190. },
  10191. "dist": {
  10192. "type": "zip",
  10193. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10194. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10195. "shasum": ""
  10196. },
  10197. "require": {
  10198. "php": ">=5.4.0"
  10199. },
  10200. "require-dev": {
  10201. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10202. },
  10203. "type": "library",
  10204. "autoload": {
  10205. "psr-4": {
  10206. "React\\Promise\\": "src/"
  10207. },
  10208. "files": [
  10209. "src/functions_include.php"
  10210. ]
  10211. },
  10212. "notification-url": "https://packagist.org/downloads/",
  10213. "license": [
  10214. "MIT"
  10215. ],
  10216. "authors": [
  10217. {
  10218. "name": "Jan Sorgalla",
  10219. "email": "jsorgalla@gmail.com"
  10220. }
  10221. ],
  10222. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10223. "keywords": [
  10224. "promise",
  10225. "promises"
  10226. ],
  10227. "support": {
  10228. "issues": "https://github.com/reactphp/promise/issues",
  10229. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10230. },
  10231. "time": "2020-05-12T15:16:56+00:00"
  10232. },
  10233. {
  10234. "name": "sebastian/cli-parser",
  10235. "version": "1.0.1",
  10236. "source": {
  10237. "type": "git",
  10238. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10239. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10240. },
  10241. "dist": {
  10242. "type": "zip",
  10243. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10244. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10245. "shasum": ""
  10246. },
  10247. "require": {
  10248. "php": ">=7.3"
  10249. },
  10250. "require-dev": {
  10251. "phpunit/phpunit": "^9.3"
  10252. },
  10253. "type": "library",
  10254. "extra": {
  10255. "branch-alias": {
  10256. "dev-master": "1.0-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. "role": "lead"
  10273. }
  10274. ],
  10275. "description": "Library for parsing CLI options",
  10276. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10277. "support": {
  10278. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10279. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10280. },
  10281. "funding": [
  10282. {
  10283. "url": "https://github.com/sebastianbergmann",
  10284. "type": "github"
  10285. }
  10286. ],
  10287. "time": "2020-09-28T06:08:49+00:00"
  10288. },
  10289. {
  10290. "name": "sebastian/code-unit",
  10291. "version": "1.0.8",
  10292. "source": {
  10293. "type": "git",
  10294. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10295. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10296. },
  10297. "dist": {
  10298. "type": "zip",
  10299. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10300. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10301. "shasum": ""
  10302. },
  10303. "require": {
  10304. "php": ">=7.3"
  10305. },
  10306. "require-dev": {
  10307. "phpunit/phpunit": "^9.3"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-master": "1.0-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "classmap": [
  10317. "src/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "BSD-3-Clause"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Sebastian Bergmann",
  10327. "email": "sebastian@phpunit.de",
  10328. "role": "lead"
  10329. }
  10330. ],
  10331. "description": "Collection of value objects that represent the PHP code units",
  10332. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10333. "support": {
  10334. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10335. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10336. },
  10337. "funding": [
  10338. {
  10339. "url": "https://github.com/sebastianbergmann",
  10340. "type": "github"
  10341. }
  10342. ],
  10343. "time": "2020-10-26T13:08:54+00:00"
  10344. },
  10345. {
  10346. "name": "sebastian/code-unit-reverse-lookup",
  10347. "version": "2.0.3",
  10348. "source": {
  10349. "type": "git",
  10350. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10351. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10352. },
  10353. "dist": {
  10354. "type": "zip",
  10355. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10356. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10357. "shasum": ""
  10358. },
  10359. "require": {
  10360. "php": ">=7.3"
  10361. },
  10362. "require-dev": {
  10363. "phpunit/phpunit": "^9.3"
  10364. },
  10365. "type": "library",
  10366. "extra": {
  10367. "branch-alias": {
  10368. "dev-master": "2.0-dev"
  10369. }
  10370. },
  10371. "autoload": {
  10372. "classmap": [
  10373. "src/"
  10374. ]
  10375. },
  10376. "notification-url": "https://packagist.org/downloads/",
  10377. "license": [
  10378. "BSD-3-Clause"
  10379. ],
  10380. "authors": [
  10381. {
  10382. "name": "Sebastian Bergmann",
  10383. "email": "sebastian@phpunit.de"
  10384. }
  10385. ],
  10386. "description": "Looks up which function or method a line of code belongs to",
  10387. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10388. "support": {
  10389. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10390. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10391. },
  10392. "funding": [
  10393. {
  10394. "url": "https://github.com/sebastianbergmann",
  10395. "type": "github"
  10396. }
  10397. ],
  10398. "time": "2020-09-28T05:30:19+00:00"
  10399. },
  10400. {
  10401. "name": "sebastian/comparator",
  10402. "version": "4.0.6",
  10403. "source": {
  10404. "type": "git",
  10405. "url": "https://github.com/sebastianbergmann/comparator.git",
  10406. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10407. },
  10408. "dist": {
  10409. "type": "zip",
  10410. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10411. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10412. "shasum": ""
  10413. },
  10414. "require": {
  10415. "php": ">=7.3",
  10416. "sebastian/diff": "^4.0",
  10417. "sebastian/exporter": "^4.0"
  10418. },
  10419. "require-dev": {
  10420. "phpunit/phpunit": "^9.3"
  10421. },
  10422. "type": "library",
  10423. "extra": {
  10424. "branch-alias": {
  10425. "dev-master": "4.0-dev"
  10426. }
  10427. },
  10428. "autoload": {
  10429. "classmap": [
  10430. "src/"
  10431. ]
  10432. },
  10433. "notification-url": "https://packagist.org/downloads/",
  10434. "license": [
  10435. "BSD-3-Clause"
  10436. ],
  10437. "authors": [
  10438. {
  10439. "name": "Sebastian Bergmann",
  10440. "email": "sebastian@phpunit.de"
  10441. },
  10442. {
  10443. "name": "Jeff Welch",
  10444. "email": "whatthejeff@gmail.com"
  10445. },
  10446. {
  10447. "name": "Volker Dusch",
  10448. "email": "github@wallbash.com"
  10449. },
  10450. {
  10451. "name": "Bernhard Schussek",
  10452. "email": "bschussek@2bepublished.at"
  10453. }
  10454. ],
  10455. "description": "Provides the functionality to compare PHP values for equality",
  10456. "homepage": "https://github.com/sebastianbergmann/comparator",
  10457. "keywords": [
  10458. "comparator",
  10459. "compare",
  10460. "equality"
  10461. ],
  10462. "support": {
  10463. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10464. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10465. },
  10466. "funding": [
  10467. {
  10468. "url": "https://github.com/sebastianbergmann",
  10469. "type": "github"
  10470. }
  10471. ],
  10472. "time": "2020-10-26T15:49:45+00:00"
  10473. },
  10474. {
  10475. "name": "sebastian/complexity",
  10476. "version": "2.0.2",
  10477. "source": {
  10478. "type": "git",
  10479. "url": "https://github.com/sebastianbergmann/complexity.git",
  10480. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10481. },
  10482. "dist": {
  10483. "type": "zip",
  10484. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10485. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10486. "shasum": ""
  10487. },
  10488. "require": {
  10489. "nikic/php-parser": "^4.7",
  10490. "php": ">=7.3"
  10491. },
  10492. "require-dev": {
  10493. "phpunit/phpunit": "^9.3"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "branch-alias": {
  10498. "dev-master": "2.0-dev"
  10499. }
  10500. },
  10501. "autoload": {
  10502. "classmap": [
  10503. "src/"
  10504. ]
  10505. },
  10506. "notification-url": "https://packagist.org/downloads/",
  10507. "license": [
  10508. "BSD-3-Clause"
  10509. ],
  10510. "authors": [
  10511. {
  10512. "name": "Sebastian Bergmann",
  10513. "email": "sebastian@phpunit.de",
  10514. "role": "lead"
  10515. }
  10516. ],
  10517. "description": "Library for calculating the complexity of PHP code units",
  10518. "homepage": "https://github.com/sebastianbergmann/complexity",
  10519. "support": {
  10520. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10521. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10522. },
  10523. "funding": [
  10524. {
  10525. "url": "https://github.com/sebastianbergmann",
  10526. "type": "github"
  10527. }
  10528. ],
  10529. "time": "2020-10-26T15:52:27+00:00"
  10530. },
  10531. {
  10532. "name": "sebastian/diff",
  10533. "version": "4.0.4",
  10534. "source": {
  10535. "type": "git",
  10536. "url": "https://github.com/sebastianbergmann/diff.git",
  10537. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10538. },
  10539. "dist": {
  10540. "type": "zip",
  10541. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10542. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10543. "shasum": ""
  10544. },
  10545. "require": {
  10546. "php": ">=7.3"
  10547. },
  10548. "require-dev": {
  10549. "phpunit/phpunit": "^9.3",
  10550. "symfony/process": "^4.2 || ^5"
  10551. },
  10552. "type": "library",
  10553. "extra": {
  10554. "branch-alias": {
  10555. "dev-master": "4.0-dev"
  10556. }
  10557. },
  10558. "autoload": {
  10559. "classmap": [
  10560. "src/"
  10561. ]
  10562. },
  10563. "notification-url": "https://packagist.org/downloads/",
  10564. "license": [
  10565. "BSD-3-Clause"
  10566. ],
  10567. "authors": [
  10568. {
  10569. "name": "Sebastian Bergmann",
  10570. "email": "sebastian@phpunit.de"
  10571. },
  10572. {
  10573. "name": "Kore Nordmann",
  10574. "email": "mail@kore-nordmann.de"
  10575. }
  10576. ],
  10577. "description": "Diff implementation",
  10578. "homepage": "https://github.com/sebastianbergmann/diff",
  10579. "keywords": [
  10580. "diff",
  10581. "udiff",
  10582. "unidiff",
  10583. "unified diff"
  10584. ],
  10585. "support": {
  10586. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10587. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10588. },
  10589. "funding": [
  10590. {
  10591. "url": "https://github.com/sebastianbergmann",
  10592. "type": "github"
  10593. }
  10594. ],
  10595. "time": "2020-10-26T13:10:38+00:00"
  10596. },
  10597. {
  10598. "name": "sebastian/environment",
  10599. "version": "5.1.3",
  10600. "source": {
  10601. "type": "git",
  10602. "url": "https://github.com/sebastianbergmann/environment.git",
  10603. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10604. },
  10605. "dist": {
  10606. "type": "zip",
  10607. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10608. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10609. "shasum": ""
  10610. },
  10611. "require": {
  10612. "php": ">=7.3"
  10613. },
  10614. "require-dev": {
  10615. "phpunit/phpunit": "^9.3"
  10616. },
  10617. "suggest": {
  10618. "ext-posix": "*"
  10619. },
  10620. "type": "library",
  10621. "extra": {
  10622. "branch-alias": {
  10623. "dev-master": "5.1-dev"
  10624. }
  10625. },
  10626. "autoload": {
  10627. "classmap": [
  10628. "src/"
  10629. ]
  10630. },
  10631. "notification-url": "https://packagist.org/downloads/",
  10632. "license": [
  10633. "BSD-3-Clause"
  10634. ],
  10635. "authors": [
  10636. {
  10637. "name": "Sebastian Bergmann",
  10638. "email": "sebastian@phpunit.de"
  10639. }
  10640. ],
  10641. "description": "Provides functionality to handle HHVM/PHP environments",
  10642. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10643. "keywords": [
  10644. "Xdebug",
  10645. "environment",
  10646. "hhvm"
  10647. ],
  10648. "support": {
  10649. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10650. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10651. },
  10652. "funding": [
  10653. {
  10654. "url": "https://github.com/sebastianbergmann",
  10655. "type": "github"
  10656. }
  10657. ],
  10658. "time": "2020-09-28T05:52:38+00:00"
  10659. },
  10660. {
  10661. "name": "sebastian/exporter",
  10662. "version": "4.0.3",
  10663. "source": {
  10664. "type": "git",
  10665. "url": "https://github.com/sebastianbergmann/exporter.git",
  10666. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10667. },
  10668. "dist": {
  10669. "type": "zip",
  10670. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10671. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10672. "shasum": ""
  10673. },
  10674. "require": {
  10675. "php": ">=7.3",
  10676. "sebastian/recursion-context": "^4.0"
  10677. },
  10678. "require-dev": {
  10679. "ext-mbstring": "*",
  10680. "phpunit/phpunit": "^9.3"
  10681. },
  10682. "type": "library",
  10683. "extra": {
  10684. "branch-alias": {
  10685. "dev-master": "4.0-dev"
  10686. }
  10687. },
  10688. "autoload": {
  10689. "classmap": [
  10690. "src/"
  10691. ]
  10692. },
  10693. "notification-url": "https://packagist.org/downloads/",
  10694. "license": [
  10695. "BSD-3-Clause"
  10696. ],
  10697. "authors": [
  10698. {
  10699. "name": "Sebastian Bergmann",
  10700. "email": "sebastian@phpunit.de"
  10701. },
  10702. {
  10703. "name": "Jeff Welch",
  10704. "email": "whatthejeff@gmail.com"
  10705. },
  10706. {
  10707. "name": "Volker Dusch",
  10708. "email": "github@wallbash.com"
  10709. },
  10710. {
  10711. "name": "Adam Harvey",
  10712. "email": "aharvey@php.net"
  10713. },
  10714. {
  10715. "name": "Bernhard Schussek",
  10716. "email": "bschussek@gmail.com"
  10717. }
  10718. ],
  10719. "description": "Provides the functionality to export PHP variables for visualization",
  10720. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10721. "keywords": [
  10722. "export",
  10723. "exporter"
  10724. ],
  10725. "support": {
  10726. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10727. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10728. },
  10729. "funding": [
  10730. {
  10731. "url": "https://github.com/sebastianbergmann",
  10732. "type": "github"
  10733. }
  10734. ],
  10735. "time": "2020-09-28T05:24:23+00:00"
  10736. },
  10737. {
  10738. "name": "sebastian/global-state",
  10739. "version": "5.0.2",
  10740. "source": {
  10741. "type": "git",
  10742. "url": "https://github.com/sebastianbergmann/global-state.git",
  10743. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10744. },
  10745. "dist": {
  10746. "type": "zip",
  10747. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10748. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10749. "shasum": ""
  10750. },
  10751. "require": {
  10752. "php": ">=7.3",
  10753. "sebastian/object-reflector": "^2.0",
  10754. "sebastian/recursion-context": "^4.0"
  10755. },
  10756. "require-dev": {
  10757. "ext-dom": "*",
  10758. "phpunit/phpunit": "^9.3"
  10759. },
  10760. "suggest": {
  10761. "ext-uopz": "*"
  10762. },
  10763. "type": "library",
  10764. "extra": {
  10765. "branch-alias": {
  10766. "dev-master": "5.0-dev"
  10767. }
  10768. },
  10769. "autoload": {
  10770. "classmap": [
  10771. "src/"
  10772. ]
  10773. },
  10774. "notification-url": "https://packagist.org/downloads/",
  10775. "license": [
  10776. "BSD-3-Clause"
  10777. ],
  10778. "authors": [
  10779. {
  10780. "name": "Sebastian Bergmann",
  10781. "email": "sebastian@phpunit.de"
  10782. }
  10783. ],
  10784. "description": "Snapshotting of global state",
  10785. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10786. "keywords": [
  10787. "global state"
  10788. ],
  10789. "support": {
  10790. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10791. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10792. },
  10793. "funding": [
  10794. {
  10795. "url": "https://github.com/sebastianbergmann",
  10796. "type": "github"
  10797. }
  10798. ],
  10799. "time": "2020-10-26T15:55:19+00:00"
  10800. },
  10801. {
  10802. "name": "sebastian/lines-of-code",
  10803. "version": "1.0.3",
  10804. "source": {
  10805. "type": "git",
  10806. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10807. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10808. },
  10809. "dist": {
  10810. "type": "zip",
  10811. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10812. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10813. "shasum": ""
  10814. },
  10815. "require": {
  10816. "nikic/php-parser": "^4.6",
  10817. "php": ">=7.3"
  10818. },
  10819. "require-dev": {
  10820. "phpunit/phpunit": "^9.3"
  10821. },
  10822. "type": "library",
  10823. "extra": {
  10824. "branch-alias": {
  10825. "dev-master": "1.0-dev"
  10826. }
  10827. },
  10828. "autoload": {
  10829. "classmap": [
  10830. "src/"
  10831. ]
  10832. },
  10833. "notification-url": "https://packagist.org/downloads/",
  10834. "license": [
  10835. "BSD-3-Clause"
  10836. ],
  10837. "authors": [
  10838. {
  10839. "name": "Sebastian Bergmann",
  10840. "email": "sebastian@phpunit.de",
  10841. "role": "lead"
  10842. }
  10843. ],
  10844. "description": "Library for counting the lines of code in PHP source code",
  10845. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10846. "support": {
  10847. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10848. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10849. },
  10850. "funding": [
  10851. {
  10852. "url": "https://github.com/sebastianbergmann",
  10853. "type": "github"
  10854. }
  10855. ],
  10856. "time": "2020-11-28T06:42:11+00:00"
  10857. },
  10858. {
  10859. "name": "sebastian/object-enumerator",
  10860. "version": "4.0.4",
  10861. "source": {
  10862. "type": "git",
  10863. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10864. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10865. },
  10866. "dist": {
  10867. "type": "zip",
  10868. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10869. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10870. "shasum": ""
  10871. },
  10872. "require": {
  10873. "php": ">=7.3",
  10874. "sebastian/object-reflector": "^2.0",
  10875. "sebastian/recursion-context": "^4.0"
  10876. },
  10877. "require-dev": {
  10878. "phpunit/phpunit": "^9.3"
  10879. },
  10880. "type": "library",
  10881. "extra": {
  10882. "branch-alias": {
  10883. "dev-master": "4.0-dev"
  10884. }
  10885. },
  10886. "autoload": {
  10887. "classmap": [
  10888. "src/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "BSD-3-Clause"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Sebastian Bergmann",
  10898. "email": "sebastian@phpunit.de"
  10899. }
  10900. ],
  10901. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10902. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10903. "support": {
  10904. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10905. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10906. },
  10907. "funding": [
  10908. {
  10909. "url": "https://github.com/sebastianbergmann",
  10910. "type": "github"
  10911. }
  10912. ],
  10913. "time": "2020-10-26T13:12:34+00:00"
  10914. },
  10915. {
  10916. "name": "sebastian/object-reflector",
  10917. "version": "2.0.4",
  10918. "source": {
  10919. "type": "git",
  10920. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10921. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10922. },
  10923. "dist": {
  10924. "type": "zip",
  10925. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10926. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10927. "shasum": ""
  10928. },
  10929. "require": {
  10930. "php": ">=7.3"
  10931. },
  10932. "require-dev": {
  10933. "phpunit/phpunit": "^9.3"
  10934. },
  10935. "type": "library",
  10936. "extra": {
  10937. "branch-alias": {
  10938. "dev-master": "2.0-dev"
  10939. }
  10940. },
  10941. "autoload": {
  10942. "classmap": [
  10943. "src/"
  10944. ]
  10945. },
  10946. "notification-url": "https://packagist.org/downloads/",
  10947. "license": [
  10948. "BSD-3-Clause"
  10949. ],
  10950. "authors": [
  10951. {
  10952. "name": "Sebastian Bergmann",
  10953. "email": "sebastian@phpunit.de"
  10954. }
  10955. ],
  10956. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10957. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10958. "support": {
  10959. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10960. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10961. },
  10962. "funding": [
  10963. {
  10964. "url": "https://github.com/sebastianbergmann",
  10965. "type": "github"
  10966. }
  10967. ],
  10968. "time": "2020-10-26T13:14:26+00:00"
  10969. },
  10970. {
  10971. "name": "sebastian/recursion-context",
  10972. "version": "4.0.4",
  10973. "source": {
  10974. "type": "git",
  10975. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10976. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10977. },
  10978. "dist": {
  10979. "type": "zip",
  10980. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10981. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10982. "shasum": ""
  10983. },
  10984. "require": {
  10985. "php": ">=7.3"
  10986. },
  10987. "require-dev": {
  10988. "phpunit/phpunit": "^9.3"
  10989. },
  10990. "type": "library",
  10991. "extra": {
  10992. "branch-alias": {
  10993. "dev-master": "4.0-dev"
  10994. }
  10995. },
  10996. "autoload": {
  10997. "classmap": [
  10998. "src/"
  10999. ]
  11000. },
  11001. "notification-url": "https://packagist.org/downloads/",
  11002. "license": [
  11003. "BSD-3-Clause"
  11004. ],
  11005. "authors": [
  11006. {
  11007. "name": "Sebastian Bergmann",
  11008. "email": "sebastian@phpunit.de"
  11009. },
  11010. {
  11011. "name": "Jeff Welch",
  11012. "email": "whatthejeff@gmail.com"
  11013. },
  11014. {
  11015. "name": "Adam Harvey",
  11016. "email": "aharvey@php.net"
  11017. }
  11018. ],
  11019. "description": "Provides functionality to recursively process PHP variables",
  11020. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11021. "support": {
  11022. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11023. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11024. },
  11025. "funding": [
  11026. {
  11027. "url": "https://github.com/sebastianbergmann",
  11028. "type": "github"
  11029. }
  11030. ],
  11031. "time": "2020-10-26T13:17:30+00:00"
  11032. },
  11033. {
  11034. "name": "sebastian/resource-operations",
  11035. "version": "3.0.3",
  11036. "source": {
  11037. "type": "git",
  11038. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11039. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11040. },
  11041. "dist": {
  11042. "type": "zip",
  11043. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11044. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11045. "shasum": ""
  11046. },
  11047. "require": {
  11048. "php": ">=7.3"
  11049. },
  11050. "require-dev": {
  11051. "phpunit/phpunit": "^9.0"
  11052. },
  11053. "type": "library",
  11054. "extra": {
  11055. "branch-alias": {
  11056. "dev-master": "3.0-dev"
  11057. }
  11058. },
  11059. "autoload": {
  11060. "classmap": [
  11061. "src/"
  11062. ]
  11063. },
  11064. "notification-url": "https://packagist.org/downloads/",
  11065. "license": [
  11066. "BSD-3-Clause"
  11067. ],
  11068. "authors": [
  11069. {
  11070. "name": "Sebastian Bergmann",
  11071. "email": "sebastian@phpunit.de"
  11072. }
  11073. ],
  11074. "description": "Provides a list of PHP built-in functions that operate on resources",
  11075. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11076. "support": {
  11077. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11078. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11079. },
  11080. "funding": [
  11081. {
  11082. "url": "https://github.com/sebastianbergmann",
  11083. "type": "github"
  11084. }
  11085. ],
  11086. "time": "2020-09-28T06:45:17+00:00"
  11087. },
  11088. {
  11089. "name": "sebastian/type",
  11090. "version": "2.3.1",
  11091. "source": {
  11092. "type": "git",
  11093. "url": "https://github.com/sebastianbergmann/type.git",
  11094. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11095. },
  11096. "dist": {
  11097. "type": "zip",
  11098. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11099. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11100. "shasum": ""
  11101. },
  11102. "require": {
  11103. "php": ">=7.3"
  11104. },
  11105. "require-dev": {
  11106. "phpunit/phpunit": "^9.3"
  11107. },
  11108. "type": "library",
  11109. "extra": {
  11110. "branch-alias": {
  11111. "dev-master": "2.3-dev"
  11112. }
  11113. },
  11114. "autoload": {
  11115. "classmap": [
  11116. "src/"
  11117. ]
  11118. },
  11119. "notification-url": "https://packagist.org/downloads/",
  11120. "license": [
  11121. "BSD-3-Clause"
  11122. ],
  11123. "authors": [
  11124. {
  11125. "name": "Sebastian Bergmann",
  11126. "email": "sebastian@phpunit.de",
  11127. "role": "lead"
  11128. }
  11129. ],
  11130. "description": "Collection of value objects that represent the types of the PHP type system",
  11131. "homepage": "https://github.com/sebastianbergmann/type",
  11132. "support": {
  11133. "issues": "https://github.com/sebastianbergmann/type/issues",
  11134. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11135. },
  11136. "funding": [
  11137. {
  11138. "url": "https://github.com/sebastianbergmann",
  11139. "type": "github"
  11140. }
  11141. ],
  11142. "time": "2020-10-26T13:18:59+00:00"
  11143. },
  11144. {
  11145. "name": "sebastian/version",
  11146. "version": "3.0.2",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/sebastianbergmann/version.git",
  11150. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11155. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "php": ">=7.3"
  11160. },
  11161. "type": "library",
  11162. "extra": {
  11163. "branch-alias": {
  11164. "dev-master": "3.0-dev"
  11165. }
  11166. },
  11167. "autoload": {
  11168. "classmap": [
  11169. "src/"
  11170. ]
  11171. },
  11172. "notification-url": "https://packagist.org/downloads/",
  11173. "license": [
  11174. "BSD-3-Clause"
  11175. ],
  11176. "authors": [
  11177. {
  11178. "name": "Sebastian Bergmann",
  11179. "email": "sebastian@phpunit.de",
  11180. "role": "lead"
  11181. }
  11182. ],
  11183. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11184. "homepage": "https://github.com/sebastianbergmann/version",
  11185. "support": {
  11186. "issues": "https://github.com/sebastianbergmann/version/issues",
  11187. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11188. },
  11189. "funding": [
  11190. {
  11191. "url": "https://github.com/sebastianbergmann",
  11192. "type": "github"
  11193. }
  11194. ],
  11195. "time": "2020-09-28T06:39:44+00:00"
  11196. },
  11197. {
  11198. "name": "seld/jsonlint",
  11199. "version": "1.8.3",
  11200. "source": {
  11201. "type": "git",
  11202. "url": "https://github.com/Seldaek/jsonlint.git",
  11203. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11204. },
  11205. "dist": {
  11206. "type": "zip",
  11207. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11208. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11209. "shasum": ""
  11210. },
  11211. "require": {
  11212. "php": "^5.3 || ^7.0 || ^8.0"
  11213. },
  11214. "require-dev": {
  11215. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11216. },
  11217. "bin": [
  11218. "bin/jsonlint"
  11219. ],
  11220. "type": "library",
  11221. "autoload": {
  11222. "psr-4": {
  11223. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11224. }
  11225. },
  11226. "notification-url": "https://packagist.org/downloads/",
  11227. "license": [
  11228. "MIT"
  11229. ],
  11230. "authors": [
  11231. {
  11232. "name": "Jordi Boggiano",
  11233. "email": "j.boggiano@seld.be",
  11234. "homepage": "http://seld.be"
  11235. }
  11236. ],
  11237. "description": "JSON Linter",
  11238. "keywords": [
  11239. "json",
  11240. "linter",
  11241. "parser",
  11242. "validator"
  11243. ],
  11244. "support": {
  11245. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11246. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11247. },
  11248. "funding": [
  11249. {
  11250. "url": "https://github.com/Seldaek",
  11251. "type": "github"
  11252. },
  11253. {
  11254. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11255. "type": "tidelift"
  11256. }
  11257. ],
  11258. "time": "2020-11-11T09:19:24+00:00"
  11259. },
  11260. {
  11261. "name": "seld/phar-utils",
  11262. "version": "1.1.1",
  11263. "source": {
  11264. "type": "git",
  11265. "url": "https://github.com/Seldaek/phar-utils.git",
  11266. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11267. },
  11268. "dist": {
  11269. "type": "zip",
  11270. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11271. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11272. "shasum": ""
  11273. },
  11274. "require": {
  11275. "php": ">=5.3"
  11276. },
  11277. "type": "library",
  11278. "extra": {
  11279. "branch-alias": {
  11280. "dev-master": "1.x-dev"
  11281. }
  11282. },
  11283. "autoload": {
  11284. "psr-4": {
  11285. "Seld\\PharUtils\\": "src/"
  11286. }
  11287. },
  11288. "notification-url": "https://packagist.org/downloads/",
  11289. "license": [
  11290. "MIT"
  11291. ],
  11292. "authors": [
  11293. {
  11294. "name": "Jordi Boggiano",
  11295. "email": "j.boggiano@seld.be"
  11296. }
  11297. ],
  11298. "description": "PHAR file format utilities, for when PHP phars you up",
  11299. "keywords": [
  11300. "phar"
  11301. ],
  11302. "support": {
  11303. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11304. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11305. },
  11306. "time": "2020-07-07T18:42:57+00:00"
  11307. },
  11308. {
  11309. "name": "symfony/debug",
  11310. "version": "v4.4.17",
  11311. "source": {
  11312. "type": "git",
  11313. "url": "https://github.com/symfony/debug.git",
  11314. "reference": "65fe7b49868378319b82da3035fb30801b931c47"
  11315. },
  11316. "dist": {
  11317. "type": "zip",
  11318. "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47",
  11319. "reference": "65fe7b49868378319b82da3035fb30801b931c47",
  11320. "shasum": ""
  11321. },
  11322. "require": {
  11323. "php": ">=7.1.3",
  11324. "psr/log": "~1.0",
  11325. "symfony/polyfill-php80": "^1.15"
  11326. },
  11327. "conflict": {
  11328. "symfony/http-kernel": "<3.4"
  11329. },
  11330. "require-dev": {
  11331. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11332. },
  11333. "type": "library",
  11334. "autoload": {
  11335. "psr-4": {
  11336. "Symfony\\Component\\Debug\\": ""
  11337. },
  11338. "exclude-from-classmap": [
  11339. "/Tests/"
  11340. ]
  11341. },
  11342. "notification-url": "https://packagist.org/downloads/",
  11343. "license": [
  11344. "MIT"
  11345. ],
  11346. "authors": [
  11347. {
  11348. "name": "Fabien Potencier",
  11349. "email": "fabien@symfony.com"
  11350. },
  11351. {
  11352. "name": "Symfony Community",
  11353. "homepage": "https://symfony.com/contributors"
  11354. }
  11355. ],
  11356. "description": "Symfony Debug Component",
  11357. "homepage": "https://symfony.com",
  11358. "support": {
  11359. "source": "https://github.com/symfony/debug/tree/v4.4.17"
  11360. },
  11361. "funding": [
  11362. {
  11363. "url": "https://symfony.com/sponsor",
  11364. "type": "custom"
  11365. },
  11366. {
  11367. "url": "https://github.com/fabpot",
  11368. "type": "github"
  11369. },
  11370. {
  11371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11372. "type": "tidelift"
  11373. }
  11374. ],
  11375. "time": "2020-10-28T20:42:29+00:00"
  11376. },
  11377. {
  11378. "name": "symfony/filesystem",
  11379. "version": "v5.2.0",
  11380. "source": {
  11381. "type": "git",
  11382. "url": "https://github.com/symfony/filesystem.git",
  11383. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238"
  11384. },
  11385. "dist": {
  11386. "type": "zip",
  11387. "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb92ba7f38b037e531908590a858a04d85c0e238",
  11388. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238",
  11389. "shasum": ""
  11390. },
  11391. "require": {
  11392. "php": ">=7.2.5",
  11393. "symfony/polyfill-ctype": "~1.8"
  11394. },
  11395. "type": "library",
  11396. "autoload": {
  11397. "psr-4": {
  11398. "Symfony\\Component\\Filesystem\\": ""
  11399. },
  11400. "exclude-from-classmap": [
  11401. "/Tests/"
  11402. ]
  11403. },
  11404. "notification-url": "https://packagist.org/downloads/",
  11405. "license": [
  11406. "MIT"
  11407. ],
  11408. "authors": [
  11409. {
  11410. "name": "Fabien Potencier",
  11411. "email": "fabien@symfony.com"
  11412. },
  11413. {
  11414. "name": "Symfony Community",
  11415. "homepage": "https://symfony.com/contributors"
  11416. }
  11417. ],
  11418. "description": "Symfony Filesystem Component",
  11419. "homepage": "https://symfony.com",
  11420. "support": {
  11421. "source": "https://github.com/symfony/filesystem/tree/v5.2.0"
  11422. },
  11423. "funding": [
  11424. {
  11425. "url": "https://symfony.com/sponsor",
  11426. "type": "custom"
  11427. },
  11428. {
  11429. "url": "https://github.com/fabpot",
  11430. "type": "github"
  11431. },
  11432. {
  11433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11434. "type": "tidelift"
  11435. }
  11436. ],
  11437. "time": "2020-11-12T09:58:18+00:00"
  11438. },
  11439. {
  11440. "name": "theseer/tokenizer",
  11441. "version": "1.2.0",
  11442. "source": {
  11443. "type": "git",
  11444. "url": "https://github.com/theseer/tokenizer.git",
  11445. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11446. },
  11447. "dist": {
  11448. "type": "zip",
  11449. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11450. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11451. "shasum": ""
  11452. },
  11453. "require": {
  11454. "ext-dom": "*",
  11455. "ext-tokenizer": "*",
  11456. "ext-xmlwriter": "*",
  11457. "php": "^7.2 || ^8.0"
  11458. },
  11459. "type": "library",
  11460. "autoload": {
  11461. "classmap": [
  11462. "src/"
  11463. ]
  11464. },
  11465. "notification-url": "https://packagist.org/downloads/",
  11466. "license": [
  11467. "BSD-3-Clause"
  11468. ],
  11469. "authors": [
  11470. {
  11471. "name": "Arne Blankerts",
  11472. "email": "arne@blankerts.de",
  11473. "role": "Developer"
  11474. }
  11475. ],
  11476. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11477. "support": {
  11478. "issues": "https://github.com/theseer/tokenizer/issues",
  11479. "source": "https://github.com/theseer/tokenizer/tree/master"
  11480. },
  11481. "funding": [
  11482. {
  11483. "url": "https://github.com/theseer",
  11484. "type": "github"
  11485. }
  11486. ],
  11487. "time": "2020-07-12T23:59:07+00:00"
  11488. },
  11489. {
  11490. "name": "webmozart/assert",
  11491. "version": "1.9.1",
  11492. "source": {
  11493. "type": "git",
  11494. "url": "https://github.com/webmozart/assert.git",
  11495. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11496. },
  11497. "dist": {
  11498. "type": "zip",
  11499. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11500. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11501. "shasum": ""
  11502. },
  11503. "require": {
  11504. "php": "^5.3.3 || ^7.0 || ^8.0",
  11505. "symfony/polyfill-ctype": "^1.8"
  11506. },
  11507. "conflict": {
  11508. "phpstan/phpstan": "<0.12.20",
  11509. "vimeo/psalm": "<3.9.1"
  11510. },
  11511. "require-dev": {
  11512. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11513. },
  11514. "type": "library",
  11515. "autoload": {
  11516. "psr-4": {
  11517. "Webmozart\\Assert\\": "src/"
  11518. }
  11519. },
  11520. "notification-url": "https://packagist.org/downloads/",
  11521. "license": [
  11522. "MIT"
  11523. ],
  11524. "authors": [
  11525. {
  11526. "name": "Bernhard Schussek",
  11527. "email": "bschussek@gmail.com"
  11528. }
  11529. ],
  11530. "description": "Assertions to validate method input/output with nice error messages.",
  11531. "keywords": [
  11532. "assert",
  11533. "check",
  11534. "validate"
  11535. ],
  11536. "support": {
  11537. "issues": "https://github.com/webmozart/assert/issues",
  11538. "source": "https://github.com/webmozart/assert/tree/master"
  11539. },
  11540. "time": "2020-07-08T17:02:28+00:00"
  11541. }
  11542. ],
  11543. "aliases": [],
  11544. "minimum-stability": "dev",
  11545. "stability-flags": [],
  11546. "prefer-stable": true,
  11547. "prefer-lowest": false,
  11548. "platform": {
  11549. "php": "^7.2.5|^8.0",
  11550. "ext-json": "*",
  11551. "ext-mbstring": "*",
  11552. "ext-openssl": "*",
  11553. "ext-simplexml": "*"
  11554. },
  11555. "platform-dev": [],
  11556. "plugin-api-version": "2.0.0"
  11557. }