composer.lock 399 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194
  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": "e238ecae1978980ec9886ddabeba916d",
  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": "league/commonmark",
  1920. "version": "1.5.7",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/thephpleague/commonmark.git",
  1924. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1929. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "ext-mbstring": "*",
  1934. "php": "^7.1 || ^8.0"
  1935. },
  1936. "conflict": {
  1937. "scrutinizer/ocular": "1.7.*"
  1938. },
  1939. "require-dev": {
  1940. "cebe/markdown": "~1.0",
  1941. "commonmark/commonmark.js": "0.29.2",
  1942. "erusev/parsedown": "~1.0",
  1943. "ext-json": "*",
  1944. "github/gfm": "0.29.0",
  1945. "michelf/php-markdown": "~1.4",
  1946. "mikehaertl/php-shellcommand": "^1.4",
  1947. "phpstan/phpstan": "^0.12",
  1948. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1949. "scrutinizer/ocular": "^1.5",
  1950. "symfony/finder": "^4.2"
  1951. },
  1952. "bin": [
  1953. "bin/commonmark"
  1954. ],
  1955. "type": "library",
  1956. "autoload": {
  1957. "psr-4": {
  1958. "League\\CommonMark\\": "src"
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "BSD-3-Clause"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Colin O'Dell",
  1968. "email": "colinodell@gmail.com",
  1969. "homepage": "https://www.colinodell.com",
  1970. "role": "Lead Developer"
  1971. }
  1972. ],
  1973. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1974. "homepage": "https://commonmark.thephpleague.com",
  1975. "keywords": [
  1976. "commonmark",
  1977. "flavored",
  1978. "gfm",
  1979. "github",
  1980. "github-flavored",
  1981. "markdown",
  1982. "md",
  1983. "parser"
  1984. ],
  1985. "support": {
  1986. "docs": "https://commonmark.thephpleague.com/",
  1987. "issues": "https://github.com/thephpleague/commonmark/issues",
  1988. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1989. "source": "https://github.com/thephpleague/commonmark"
  1990. },
  1991. "funding": [
  1992. {
  1993. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://www.colinodell.com/sponsor",
  1998. "type": "custom"
  1999. },
  2000. {
  2001. "url": "https://www.paypal.me/colinpodell/10.00",
  2002. "type": "custom"
  2003. },
  2004. {
  2005. "url": "https://github.com/colinodell",
  2006. "type": "github"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/colinodell",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-10-31T13:49:32+00:00"
  2018. },
  2019. {
  2020. "name": "league/flysystem",
  2021. "version": "1.1.3",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/thephpleague/flysystem.git",
  2025. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2030. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "ext-fileinfo": "*",
  2035. "league/mime-type-detection": "^1.3",
  2036. "php": "^7.2.5 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "league/flysystem-sftp": "<1.0.6"
  2040. },
  2041. "require-dev": {
  2042. "phpspec/prophecy": "^1.11.1",
  2043. "phpunit/phpunit": "^8.5.8"
  2044. },
  2045. "suggest": {
  2046. "ext-fileinfo": "Required for MimeType",
  2047. "ext-ftp": "Allows you to use FTP server storage",
  2048. "ext-openssl": "Allows you to use FTPS server storage",
  2049. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2050. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2051. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2052. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2053. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2054. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2055. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2056. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2057. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2058. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2059. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.1-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "League\\Flysystem\\": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Frank de Jonge",
  2079. "email": "info@frenky.net"
  2080. }
  2081. ],
  2082. "description": "Filesystem abstraction: Many filesystems, one API.",
  2083. "keywords": [
  2084. "Cloud Files",
  2085. "WebDAV",
  2086. "abstraction",
  2087. "aws",
  2088. "cloud",
  2089. "copy.com",
  2090. "dropbox",
  2091. "file systems",
  2092. "files",
  2093. "filesystem",
  2094. "filesystems",
  2095. "ftp",
  2096. "rackspace",
  2097. "remote",
  2098. "s3",
  2099. "sftp",
  2100. "storage"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/thephpleague/flysystem/issues",
  2104. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2105. },
  2106. "funding": [
  2107. {
  2108. "url": "https://offset.earth/frankdejonge",
  2109. "type": "other"
  2110. }
  2111. ],
  2112. "time": "2020-08-23T07:39:11+00:00"
  2113. },
  2114. {
  2115. "name": "league/mime-type-detection",
  2116. "version": "1.5.1",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2120. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2125. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "ext-fileinfo": "*",
  2130. "php": "^7.2 || ^8.0"
  2131. },
  2132. "require-dev": {
  2133. "phpstan/phpstan": "^0.12.36",
  2134. "phpunit/phpunit": "^8.5.8"
  2135. },
  2136. "type": "library",
  2137. "autoload": {
  2138. "psr-4": {
  2139. "League\\MimeTypeDetection\\": "src"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "MIT"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Frank de Jonge",
  2149. "email": "info@frankdejonge.nl"
  2150. }
  2151. ],
  2152. "description": "Mime-type detection for Flysystem",
  2153. "support": {
  2154. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2155. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2156. },
  2157. "funding": [
  2158. {
  2159. "url": "https://github.com/frankdejonge",
  2160. "type": "github"
  2161. },
  2162. {
  2163. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2164. "type": "tidelift"
  2165. }
  2166. ],
  2167. "time": "2020-10-18T11:50:25+00:00"
  2168. },
  2169. {
  2170. "name": "maennchen/zipstream-php",
  2171. "version": "2.1.0",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2175. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2180. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "myclabs/php-enum": "^1.5",
  2185. "php": ">= 7.1",
  2186. "psr/http-message": "^1.0",
  2187. "symfony/polyfill-mbstring": "^1.0"
  2188. },
  2189. "require-dev": {
  2190. "ext-zip": "*",
  2191. "guzzlehttp/guzzle": ">= 6.3",
  2192. "mikey179/vfsstream": "^1.6",
  2193. "phpunit/phpunit": ">= 7.5"
  2194. },
  2195. "type": "library",
  2196. "autoload": {
  2197. "psr-4": {
  2198. "ZipStream\\": "src/"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Paul Duncan",
  2208. "email": "pabs@pablotron.org"
  2209. },
  2210. {
  2211. "name": "Jonatan Männchen",
  2212. "email": "jonatan@maennchen.ch"
  2213. },
  2214. {
  2215. "name": "Jesse Donat",
  2216. "email": "donatj@gmail.com"
  2217. },
  2218. {
  2219. "name": "András Kolesár",
  2220. "email": "kolesar@kolesar.hu"
  2221. }
  2222. ],
  2223. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2224. "keywords": [
  2225. "stream",
  2226. "zip"
  2227. ],
  2228. "support": {
  2229. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2230. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://opencollective.com/zipstream",
  2235. "type": "open_collective"
  2236. }
  2237. ],
  2238. "time": "2020-05-30T13:11:16+00:00"
  2239. },
  2240. {
  2241. "name": "markbaker/complex",
  2242. "version": "2.0.0",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2246. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2251. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2252. "shasum": ""
  2253. },
  2254. "require": {
  2255. "php": "^7.2 || ^8.0"
  2256. },
  2257. "require-dev": {
  2258. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2259. "phpcompatibility/php-compatibility": "^9.0",
  2260. "phpdocumentor/phpdocumentor": "2.*",
  2261. "phploc/phploc": "^4.0",
  2262. "phpmd/phpmd": "2.*",
  2263. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2264. "sebastian/phpcpd": "^4.0",
  2265. "squizlabs/php_codesniffer": "^3.4"
  2266. },
  2267. "type": "library",
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Complex\\": "classes/src/"
  2271. },
  2272. "files": [
  2273. "classes/src/functions/abs.php",
  2274. "classes/src/functions/acos.php",
  2275. "classes/src/functions/acosh.php",
  2276. "classes/src/functions/acot.php",
  2277. "classes/src/functions/acoth.php",
  2278. "classes/src/functions/acsc.php",
  2279. "classes/src/functions/acsch.php",
  2280. "classes/src/functions/argument.php",
  2281. "classes/src/functions/asec.php",
  2282. "classes/src/functions/asech.php",
  2283. "classes/src/functions/asin.php",
  2284. "classes/src/functions/asinh.php",
  2285. "classes/src/functions/atan.php",
  2286. "classes/src/functions/atanh.php",
  2287. "classes/src/functions/conjugate.php",
  2288. "classes/src/functions/cos.php",
  2289. "classes/src/functions/cosh.php",
  2290. "classes/src/functions/cot.php",
  2291. "classes/src/functions/coth.php",
  2292. "classes/src/functions/csc.php",
  2293. "classes/src/functions/csch.php",
  2294. "classes/src/functions/exp.php",
  2295. "classes/src/functions/inverse.php",
  2296. "classes/src/functions/ln.php",
  2297. "classes/src/functions/log2.php",
  2298. "classes/src/functions/log10.php",
  2299. "classes/src/functions/negative.php",
  2300. "classes/src/functions/pow.php",
  2301. "classes/src/functions/rho.php",
  2302. "classes/src/functions/sec.php",
  2303. "classes/src/functions/sech.php",
  2304. "classes/src/functions/sin.php",
  2305. "classes/src/functions/sinh.php",
  2306. "classes/src/functions/sqrt.php",
  2307. "classes/src/functions/tan.php",
  2308. "classes/src/functions/tanh.php",
  2309. "classes/src/functions/theta.php",
  2310. "classes/src/operations/add.php",
  2311. "classes/src/operations/subtract.php",
  2312. "classes/src/operations/multiply.php",
  2313. "classes/src/operations/divideby.php",
  2314. "classes/src/operations/divideinto.php"
  2315. ]
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "MIT"
  2320. ],
  2321. "authors": [
  2322. {
  2323. "name": "Mark Baker",
  2324. "email": "mark@lange.demon.co.uk"
  2325. }
  2326. ],
  2327. "description": "PHP Class for working with complex numbers",
  2328. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2329. "keywords": [
  2330. "complex",
  2331. "mathematics"
  2332. ],
  2333. "support": {
  2334. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2335. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2336. },
  2337. "time": "2020-08-26T10:42:07+00:00"
  2338. },
  2339. {
  2340. "name": "markbaker/matrix",
  2341. "version": "2.0.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2345. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2350. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": "^7.2 || ^8.0"
  2355. },
  2356. "require-dev": {
  2357. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2358. "phpcompatibility/php-compatibility": "^9.0",
  2359. "phpdocumentor/phpdocumentor": "2.*",
  2360. "phploc/phploc": "^4.0",
  2361. "phpmd/phpmd": "2.*",
  2362. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2363. "sebastian/phpcpd": "^4.0",
  2364. "squizlabs/php_codesniffer": "^3.4"
  2365. },
  2366. "type": "library",
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Matrix\\": "classes/src/"
  2370. },
  2371. "files": [
  2372. "classes/src/functions/adjoint.php",
  2373. "classes/src/functions/antidiagonal.php",
  2374. "classes/src/functions/cofactors.php",
  2375. "classes/src/functions/determinant.php",
  2376. "classes/src/functions/diagonal.php",
  2377. "classes/src/functions/identity.php",
  2378. "classes/src/functions/inverse.php",
  2379. "classes/src/functions/minors.php",
  2380. "classes/src/functions/trace.php",
  2381. "classes/src/functions/transpose.php",
  2382. "classes/src/operations/add.php",
  2383. "classes/src/operations/directsum.php",
  2384. "classes/src/operations/subtract.php",
  2385. "classes/src/operations/multiply.php",
  2386. "classes/src/operations/divideby.php",
  2387. "classes/src/operations/divideinto.php"
  2388. ]
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "MIT"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "Mark Baker",
  2397. "email": "mark@demon-angel.eu"
  2398. }
  2399. ],
  2400. "description": "PHP Class for working with matrices",
  2401. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2402. "keywords": [
  2403. "mathematics",
  2404. "matrix",
  2405. "vector"
  2406. ],
  2407. "support": {
  2408. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2409. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2410. },
  2411. "time": "2020-08-28T17:11:00+00:00"
  2412. },
  2413. {
  2414. "name": "maxmind-db/reader",
  2415. "version": "v1.8.0",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2419. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2424. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "php": ">=7.2"
  2429. },
  2430. "conflict": {
  2431. "ext-maxminddb": "<1.8.0,>=2.0.0"
  2432. },
  2433. "require-dev": {
  2434. "friendsofphp/php-cs-fixer": "2.*",
  2435. "php-coveralls/php-coveralls": "^2.1",
  2436. "phpunit/phpcov": ">=6.0.0",
  2437. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2438. "squizlabs/php_codesniffer": "3.*"
  2439. },
  2440. "suggest": {
  2441. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2442. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2443. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2444. },
  2445. "type": "library",
  2446. "autoload": {
  2447. "psr-4": {
  2448. "MaxMind\\Db\\": "src/MaxMind/Db"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "Apache-2.0"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Gregory J. Oschwald",
  2458. "email": "goschwald@maxmind.com",
  2459. "homepage": "https://www.maxmind.com/"
  2460. }
  2461. ],
  2462. "description": "MaxMind DB Reader API",
  2463. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2464. "keywords": [
  2465. "database",
  2466. "geoip",
  2467. "geoip2",
  2468. "geolocation",
  2469. "maxmind"
  2470. ],
  2471. "support": {
  2472. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2473. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.8.0"
  2474. },
  2475. "time": "2020-10-01T17:30:21+00:00"
  2476. },
  2477. {
  2478. "name": "maxmind/web-service-common",
  2479. "version": "v0.8.1",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/maxmind/web-service-common-php.git",
  2483. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2488. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "composer/ca-bundle": "^1.0.3",
  2493. "ext-curl": "*",
  2494. "ext-json": "*",
  2495. "php": ">=7.2"
  2496. },
  2497. "require-dev": {
  2498. "friendsofphp/php-cs-fixer": "2.*",
  2499. "phpunit/phpunit": "^8.0 || ^9.0",
  2500. "squizlabs/php_codesniffer": "3.*"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "MaxMind\\Exception\\": "src/Exception",
  2506. "MaxMind\\WebService\\": "src/WebService"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "Apache-2.0"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Gregory Oschwald",
  2516. "email": "goschwald@maxmind.com"
  2517. }
  2518. ],
  2519. "description": "Internal MaxMind Web Service API",
  2520. "homepage": "https://github.com/maxmind/web-service-common-php",
  2521. "support": {
  2522. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2523. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2524. },
  2525. "time": "2020-11-02T17:00:53+00:00"
  2526. },
  2527. {
  2528. "name": "mews/captcha",
  2529. "version": "3.2.3",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/mewebstudio/captcha.git",
  2533. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2538. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2539. "shasum": ""
  2540. },
  2541. "require": {
  2542. "ext-gd": "*",
  2543. "illuminate/config": "~5|^6|^7|^8",
  2544. "illuminate/filesystem": "~5|^6|^7|^8",
  2545. "illuminate/hashing": "~5|^6|^7|^8",
  2546. "illuminate/session": "~5|^6|^7|^8",
  2547. "illuminate/support": "~5|^6|^7|^8",
  2548. "intervention/image": "~2.5",
  2549. "php": "^7.2"
  2550. },
  2551. "require-dev": {
  2552. "mockery/mockery": "^1.0",
  2553. "phpunit/phpunit": "^8.5"
  2554. },
  2555. "type": "package",
  2556. "extra": {
  2557. "laravel": {
  2558. "providers": [
  2559. "Mews\\Captcha\\CaptchaServiceProvider"
  2560. ],
  2561. "aliases": {
  2562. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2563. }
  2564. }
  2565. },
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Mews\\Captcha\\": "src/"
  2569. },
  2570. "files": [
  2571. "src/helpers.php"
  2572. ]
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Muharrem ERİN",
  2581. "email": "me@mewebstudio.com",
  2582. "homepage": "https://github.com/mewebstudio",
  2583. "role": "Developer"
  2584. }
  2585. ],
  2586. "description": "Laravel 5 & 6 Captcha Package",
  2587. "homepage": "https://github.com/mewebstudio/captcha",
  2588. "keywords": [
  2589. "captcha",
  2590. "laravel5 Security",
  2591. "laravel6 Captcha",
  2592. "laravel6 Security"
  2593. ],
  2594. "support": {
  2595. "issues": "https://github.com/mewebstudio/captcha/issues",
  2596. "source": "https://github.com/mewebstudio/captcha/tree/3.2.3"
  2597. },
  2598. "time": "2020-11-03T19:44:37+00:00"
  2599. },
  2600. {
  2601. "name": "mews/purifier",
  2602. "version": "3.3.3",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/mewebstudio/Purifier.git",
  2606. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2611. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "ezyang/htmlpurifier": "4.13.*",
  2616. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2617. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2618. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2619. "php": "^7.2|^8.0"
  2620. },
  2621. "require-dev": {
  2622. "graham-campbell/testbench": "^3.2|^5.5.1",
  2623. "mockery/mockery": "^1.3.3",
  2624. "phpunit/phpunit": "^8.0|^9.0"
  2625. },
  2626. "suggest": {
  2627. "laravel/framework": "To test the Laravel bindings",
  2628. "laravel/lumen-framework": "To test the Lumen bindings"
  2629. },
  2630. "type": "package",
  2631. "extra": {
  2632. "laravel": {
  2633. "providers": [
  2634. "Mews\\Purifier\\PurifierServiceProvider"
  2635. ],
  2636. "aliases": {
  2637. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2638. }
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Mews\\Purifier\\": "src/"
  2644. },
  2645. "files": [
  2646. "src/helpers.php"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Muharrem ERİN",
  2656. "email": "me@mewebstudio.com",
  2657. "homepage": "https://github.com/mewebstudio",
  2658. "role": "Developer"
  2659. }
  2660. ],
  2661. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2662. "homepage": "https://github.com/mewebstudio/purifier",
  2663. "keywords": [
  2664. "Purifier",
  2665. "htmlpurifier",
  2666. "laravel5 HtmlPurifier",
  2667. "laravel5 Purifier",
  2668. "laravel5 Security",
  2669. "laravel6 HtmlPurifier",
  2670. "laravel6 Purifier",
  2671. "laravel6 Security",
  2672. "security",
  2673. "xss"
  2674. ],
  2675. "support": {
  2676. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2677. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2678. },
  2679. "time": "2020-11-03T19:46:27+00:00"
  2680. },
  2681. {
  2682. "name": "mobiledetect/mobiledetectlib",
  2683. "version": "2.8.34",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2687. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2692. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "php": ">=5.0.0"
  2697. },
  2698. "require-dev": {
  2699. "phpunit/phpunit": "~4.8.35||~5.7"
  2700. },
  2701. "type": "library",
  2702. "autoload": {
  2703. "classmap": [
  2704. "Mobile_Detect.php"
  2705. ],
  2706. "psr-0": {
  2707. "Detection": "namespaced/"
  2708. }
  2709. },
  2710. "notification-url": "https://packagist.org/downloads/",
  2711. "license": [
  2712. "MIT"
  2713. ],
  2714. "authors": [
  2715. {
  2716. "name": "Serban Ghita",
  2717. "email": "serbanghita@gmail.com",
  2718. "homepage": "http://mobiledetect.net",
  2719. "role": "Developer"
  2720. }
  2721. ],
  2722. "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.",
  2723. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2724. "keywords": [
  2725. "detect mobile devices",
  2726. "mobile",
  2727. "mobile detect",
  2728. "mobile detector",
  2729. "php mobile detect"
  2730. ],
  2731. "support": {
  2732. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2733. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  2734. },
  2735. "time": "2019-09-18T18:44:20+00:00"
  2736. },
  2737. {
  2738. "name": "monolog/monolog",
  2739. "version": "2.1.1",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/Seldaek/monolog.git",
  2743. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2748. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=7.2",
  2753. "psr/log": "^1.0.1"
  2754. },
  2755. "provide": {
  2756. "psr/log-implementation": "1.0.0"
  2757. },
  2758. "require-dev": {
  2759. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2760. "doctrine/couchdb": "~1.0@dev",
  2761. "elasticsearch/elasticsearch": "^6.0",
  2762. "graylog2/gelf-php": "^1.4.2",
  2763. "php-amqplib/php-amqplib": "~2.4",
  2764. "php-console/php-console": "^3.1.3",
  2765. "php-parallel-lint/php-parallel-lint": "^1.0",
  2766. "phpspec/prophecy": "^1.6.1",
  2767. "phpunit/phpunit": "^8.5",
  2768. "predis/predis": "^1.1",
  2769. "rollbar/rollbar": "^1.3",
  2770. "ruflin/elastica": ">=0.90 <3.0",
  2771. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2772. },
  2773. "suggest": {
  2774. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2775. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2776. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2777. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2778. "ext-mbstring": "Allow to work properly with unicode symbols",
  2779. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2780. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2781. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2782. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2783. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2784. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2785. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2786. },
  2787. "type": "library",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-master": "2.x-dev"
  2791. }
  2792. },
  2793. "autoload": {
  2794. "psr-4": {
  2795. "Monolog\\": "src/Monolog"
  2796. }
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "MIT"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Jordi Boggiano",
  2805. "email": "j.boggiano@seld.be",
  2806. "homepage": "http://seld.be"
  2807. }
  2808. ],
  2809. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2810. "homepage": "http://github.com/Seldaek/monolog",
  2811. "keywords": [
  2812. "log",
  2813. "logging",
  2814. "psr-3"
  2815. ],
  2816. "support": {
  2817. "issues": "https://github.com/Seldaek/monolog/issues",
  2818. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://github.com/Seldaek",
  2823. "type": "github"
  2824. },
  2825. {
  2826. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2827. "type": "tidelift"
  2828. }
  2829. ],
  2830. "time": "2020-07-23T08:41:23+00:00"
  2831. },
  2832. {
  2833. "name": "myclabs/php-enum",
  2834. "version": "1.7.7",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/myclabs/php-enum.git",
  2838. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2843. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "ext-json": "*",
  2848. "php": ">=7.1"
  2849. },
  2850. "require-dev": {
  2851. "phpunit/phpunit": "^7",
  2852. "squizlabs/php_codesniffer": "1.*",
  2853. "vimeo/psalm": "^3.8"
  2854. },
  2855. "type": "library",
  2856. "autoload": {
  2857. "psr-4": {
  2858. "MyCLabs\\Enum\\": "src/"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "PHP Enum contributors",
  2868. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2869. }
  2870. ],
  2871. "description": "PHP Enum implementation",
  2872. "homepage": "http://github.com/myclabs/php-enum",
  2873. "keywords": [
  2874. "enum"
  2875. ],
  2876. "support": {
  2877. "issues": "https://github.com/myclabs/php-enum/issues",
  2878. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2879. },
  2880. "funding": [
  2881. {
  2882. "url": "https://github.com/mnapoli",
  2883. "type": "github"
  2884. },
  2885. {
  2886. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2887. "type": "tidelift"
  2888. }
  2889. ],
  2890. "time": "2020-11-14T18:14:52+00:00"
  2891. },
  2892. {
  2893. "name": "nesbot/carbon",
  2894. "version": "2.42.0",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/briannesbitt/Carbon.git",
  2898. "reference": "d0463779663437392fe42ff339ebc0213bd55498"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498",
  2903. "reference": "d0463779663437392fe42ff339ebc0213bd55498",
  2904. "shasum": ""
  2905. },
  2906. "require": {
  2907. "ext-json": "*",
  2908. "php": "^7.1.8 || ^8.0",
  2909. "symfony/polyfill-mbstring": "^1.0",
  2910. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2911. },
  2912. "require-dev": {
  2913. "doctrine/orm": "^2.7",
  2914. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2915. "kylekatarnls/multi-tester": "^2.0",
  2916. "phpmd/phpmd": "^2.9",
  2917. "phpstan/extension-installer": "^1.0",
  2918. "phpstan/phpstan": "^0.12.54",
  2919. "phpunit/phpunit": "^7.5 || ^8.0",
  2920. "squizlabs/php_codesniffer": "^3.4"
  2921. },
  2922. "bin": [
  2923. "bin/carbon"
  2924. ],
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "2.x-dev",
  2929. "dev-3.x": "3.x-dev"
  2930. },
  2931. "laravel": {
  2932. "providers": [
  2933. "Carbon\\Laravel\\ServiceProvider"
  2934. ]
  2935. },
  2936. "phpstan": {
  2937. "includes": [
  2938. "extension.neon"
  2939. ]
  2940. }
  2941. },
  2942. "autoload": {
  2943. "psr-4": {
  2944. "Carbon\\": "src/Carbon/"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Brian Nesbitt",
  2954. "email": "brian@nesbot.com",
  2955. "homepage": "http://nesbot.com"
  2956. },
  2957. {
  2958. "name": "kylekatarnls",
  2959. "homepage": "http://github.com/kylekatarnls"
  2960. }
  2961. ],
  2962. "description": "An API extension for DateTime that supports 281 different languages.",
  2963. "homepage": "http://carbon.nesbot.com",
  2964. "keywords": [
  2965. "date",
  2966. "datetime",
  2967. "time"
  2968. ],
  2969. "support": {
  2970. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2971. "source": "https://github.com/briannesbitt/Carbon"
  2972. },
  2973. "funding": [
  2974. {
  2975. "url": "https://opencollective.com/Carbon",
  2976. "type": "open_collective"
  2977. },
  2978. {
  2979. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2980. "type": "tidelift"
  2981. }
  2982. ],
  2983. "time": "2020-11-28T14:25:28+00:00"
  2984. },
  2985. {
  2986. "name": "nikic/php-parser",
  2987. "version": "v4.10.3",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/nikic/PHP-Parser.git",
  2991. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2996. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "ext-tokenizer": "*",
  3001. "php": ">=7.0"
  3002. },
  3003. "require-dev": {
  3004. "ircmaxell/php-yacc": "^0.0.7",
  3005. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3006. },
  3007. "bin": [
  3008. "bin/php-parse"
  3009. ],
  3010. "type": "library",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-master": "4.9-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "PhpParser\\": "lib/PhpParser"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "BSD-3-Clause"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Nikita Popov"
  3028. }
  3029. ],
  3030. "description": "A PHP parser written in PHP",
  3031. "keywords": [
  3032. "parser",
  3033. "php"
  3034. ],
  3035. "support": {
  3036. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3037. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.3"
  3038. },
  3039. "time": "2020-12-03T17:45:45+00:00"
  3040. },
  3041. {
  3042. "name": "opis/closure",
  3043. "version": "3.6.1",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://github.com/opis/closure.git",
  3047. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3052. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3053. "shasum": ""
  3054. },
  3055. "require": {
  3056. "php": "^5.4 || ^7.0 || ^8.0"
  3057. },
  3058. "require-dev": {
  3059. "jeremeamia/superclosure": "^2.0",
  3060. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3061. },
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "3.6.x-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Opis\\Closure\\": "src/"
  3071. },
  3072. "files": [
  3073. "functions.php"
  3074. ]
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Marius Sarca",
  3083. "email": "marius.sarca@gmail.com"
  3084. },
  3085. {
  3086. "name": "Sorin Sarca",
  3087. "email": "sarca_sorin@hotmail.com"
  3088. }
  3089. ],
  3090. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3091. "homepage": "https://opis.io/closure",
  3092. "keywords": [
  3093. "anonymous functions",
  3094. "closure",
  3095. "function",
  3096. "serializable",
  3097. "serialization",
  3098. "serialize"
  3099. ],
  3100. "support": {
  3101. "issues": "https://github.com/opis/closure/issues",
  3102. "source": "https://github.com/opis/closure/tree/3.6.1"
  3103. },
  3104. "time": "2020-11-07T02:01:34+00:00"
  3105. },
  3106. {
  3107. "name": "overtrue/laravel-lang",
  3108. "version": "4.2.1",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/overtrue/laravel-lang.git",
  3112. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3117. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3118. "shasum": ""
  3119. },
  3120. "require": {
  3121. "ext-json": "*",
  3122. "laravel-lang/lang": "^7.0",
  3123. "symfony/process": "^5.0.0"
  3124. },
  3125. "require-dev": {
  3126. "laravel/framework": "~8.1"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "laravel": {
  3131. "providers": [
  3132. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3133. ]
  3134. }
  3135. },
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Overtrue\\LaravelLang\\": "src/"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "overtrue",
  3148. "email": "anzhengchao@gmail.com"
  3149. }
  3150. ],
  3151. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3152. "keywords": [
  3153. "i18n",
  3154. "languages",
  3155. "laravel",
  3156. "locale",
  3157. "overtrue"
  3158. ],
  3159. "support": {
  3160. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3161. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3162. },
  3163. "funding": [
  3164. {
  3165. "url": "https://www.patreon.com/overtrue",
  3166. "type": "patreon"
  3167. }
  3168. ],
  3169. "time": "2020-11-12T01:44:31+00:00"
  3170. },
  3171. {
  3172. "name": "phpoffice/phpspreadsheet",
  3173. "version": "1.15.0",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3177. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3182. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "ext-ctype": "*",
  3187. "ext-dom": "*",
  3188. "ext-fileinfo": "*",
  3189. "ext-gd": "*",
  3190. "ext-iconv": "*",
  3191. "ext-libxml": "*",
  3192. "ext-mbstring": "*",
  3193. "ext-simplexml": "*",
  3194. "ext-xml": "*",
  3195. "ext-xmlreader": "*",
  3196. "ext-xmlwriter": "*",
  3197. "ext-zip": "*",
  3198. "ext-zlib": "*",
  3199. "maennchen/zipstream-php": "^2.1",
  3200. "markbaker/complex": "^1.5|^2.0",
  3201. "markbaker/matrix": "^1.2|^2.0",
  3202. "php": "^7.2|^8.0",
  3203. "psr/http-client": "^1.0",
  3204. "psr/http-factory": "^1.0",
  3205. "psr/simple-cache": "^1.0"
  3206. },
  3207. "require-dev": {
  3208. "dompdf/dompdf": "^0.8.5",
  3209. "friendsofphp/php-cs-fixer": "^2.16",
  3210. "jpgraph/jpgraph": "^4.0",
  3211. "mpdf/mpdf": "^8.0",
  3212. "phpcompatibility/php-compatibility": "^9.3",
  3213. "phpunit/phpunit": "^8.5|^9.3",
  3214. "squizlabs/php_codesniffer": "^3.5",
  3215. "tecnickcom/tcpdf": "^6.3"
  3216. },
  3217. "suggest": {
  3218. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3219. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3220. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3221. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3222. },
  3223. "type": "library",
  3224. "autoload": {
  3225. "psr-4": {
  3226. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "MIT"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Maarten Balliauw",
  3236. "homepage": "https://blog.maartenballiauw.be"
  3237. },
  3238. {
  3239. "name": "Mark Baker",
  3240. "homepage": "https://markbakeruk.net"
  3241. },
  3242. {
  3243. "name": "Franck Lefevre",
  3244. "homepage": "https://rootslabs.net"
  3245. },
  3246. {
  3247. "name": "Erik Tilt"
  3248. },
  3249. {
  3250. "name": "Adrien Crivelli"
  3251. }
  3252. ],
  3253. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3254. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3255. "keywords": [
  3256. "OpenXML",
  3257. "excel",
  3258. "gnumeric",
  3259. "ods",
  3260. "php",
  3261. "spreadsheet",
  3262. "xls",
  3263. "xlsx"
  3264. ],
  3265. "support": {
  3266. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3267. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0"
  3268. },
  3269. "time": "2020-10-11T13:20:59+00:00"
  3270. },
  3271. {
  3272. "name": "phpoption/phpoption",
  3273. "version": "1.7.5",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/schmittjoh/php-option.git",
  3277. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3282. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "php": "^5.5.9 || ^7.0 || ^8.0"
  3287. },
  3288. "require-dev": {
  3289. "bamarni/composer-bin-plugin": "^1.4.1",
  3290. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3291. },
  3292. "type": "library",
  3293. "extra": {
  3294. "branch-alias": {
  3295. "dev-master": "1.7-dev"
  3296. }
  3297. },
  3298. "autoload": {
  3299. "psr-4": {
  3300. "PhpOption\\": "src/PhpOption/"
  3301. }
  3302. },
  3303. "notification-url": "https://packagist.org/downloads/",
  3304. "license": [
  3305. "Apache-2.0"
  3306. ],
  3307. "authors": [
  3308. {
  3309. "name": "Johannes M. Schmitt",
  3310. "email": "schmittjoh@gmail.com"
  3311. },
  3312. {
  3313. "name": "Graham Campbell",
  3314. "email": "graham@alt-three.com"
  3315. }
  3316. ],
  3317. "description": "Option Type for PHP",
  3318. "keywords": [
  3319. "language",
  3320. "option",
  3321. "php",
  3322. "type"
  3323. ],
  3324. "support": {
  3325. "issues": "https://github.com/schmittjoh/php-option/issues",
  3326. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3327. },
  3328. "funding": [
  3329. {
  3330. "url": "https://github.com/GrahamCampbell",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2020-07-20T17:29:33+00:00"
  3339. },
  3340. {
  3341. "name": "psr/container",
  3342. "version": "1.0.0",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/php-fig/container.git",
  3346. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3351. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=5.3.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Psr\\Container\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "PHP-FIG",
  3375. "homepage": "http://www.php-fig.org/"
  3376. }
  3377. ],
  3378. "description": "Common Container Interface (PHP FIG PSR-11)",
  3379. "homepage": "https://github.com/php-fig/container",
  3380. "keywords": [
  3381. "PSR-11",
  3382. "container",
  3383. "container-interface",
  3384. "container-interop",
  3385. "psr"
  3386. ],
  3387. "support": {
  3388. "issues": "https://github.com/php-fig/container/issues",
  3389. "source": "https://github.com/php-fig/container/tree/master"
  3390. },
  3391. "time": "2017-02-14T16:28:37+00:00"
  3392. },
  3393. {
  3394. "name": "psr/event-dispatcher",
  3395. "version": "1.0.0",
  3396. "source": {
  3397. "type": "git",
  3398. "url": "https://github.com/php-fig/event-dispatcher.git",
  3399. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3400. },
  3401. "dist": {
  3402. "type": "zip",
  3403. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3404. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3405. "shasum": ""
  3406. },
  3407. "require": {
  3408. "php": ">=7.2.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "1.0.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "psr-4": {
  3418. "Psr\\EventDispatcher\\": "src/"
  3419. }
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "PHP-FIG",
  3428. "homepage": "http://www.php-fig.org/"
  3429. }
  3430. ],
  3431. "description": "Standard interfaces for event handling.",
  3432. "keywords": [
  3433. "events",
  3434. "psr",
  3435. "psr-14"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3439. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3440. },
  3441. "time": "2019-01-08T18:20:26+00:00"
  3442. },
  3443. {
  3444. "name": "psr/http-client",
  3445. "version": "1.0.1",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/php-fig/http-client.git",
  3449. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3454. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "php": "^7.0 || ^8.0",
  3459. "psr/http-message": "^1.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-master": "1.0.x-dev"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Psr\\Http\\Client\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "PHP-FIG",
  3479. "homepage": "http://www.php-fig.org/"
  3480. }
  3481. ],
  3482. "description": "Common interface for HTTP clients",
  3483. "homepage": "https://github.com/php-fig/http-client",
  3484. "keywords": [
  3485. "http",
  3486. "http-client",
  3487. "psr",
  3488. "psr-18"
  3489. ],
  3490. "support": {
  3491. "source": "https://github.com/php-fig/http-client/tree/master"
  3492. },
  3493. "time": "2020-06-29T06:28:15+00:00"
  3494. },
  3495. {
  3496. "name": "psr/http-factory",
  3497. "version": "1.0.1",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/php-fig/http-factory.git",
  3501. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3506. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=7.0.0",
  3511. "psr/http-message": "^1.0"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "1.0.x-dev"
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Psr\\Http\\Message\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "PHP-FIG",
  3531. "homepage": "http://www.php-fig.org/"
  3532. }
  3533. ],
  3534. "description": "Common interfaces for PSR-7 HTTP message factories",
  3535. "keywords": [
  3536. "factory",
  3537. "http",
  3538. "message",
  3539. "psr",
  3540. "psr-17",
  3541. "psr-7",
  3542. "request",
  3543. "response"
  3544. ],
  3545. "support": {
  3546. "source": "https://github.com/php-fig/http-factory/tree/master"
  3547. },
  3548. "time": "2019-04-30T12:38:16+00:00"
  3549. },
  3550. {
  3551. "name": "psr/http-message",
  3552. "version": "1.0.1",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/php-fig/http-message.git",
  3556. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3561. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": ">=5.3.0"
  3566. },
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "1.0.x-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "psr-4": {
  3575. "Psr\\Http\\Message\\": "src/"
  3576. }
  3577. },
  3578. "notification-url": "https://packagist.org/downloads/",
  3579. "license": [
  3580. "MIT"
  3581. ],
  3582. "authors": [
  3583. {
  3584. "name": "PHP-FIG",
  3585. "homepage": "http://www.php-fig.org/"
  3586. }
  3587. ],
  3588. "description": "Common interface for HTTP messages",
  3589. "homepage": "https://github.com/php-fig/http-message",
  3590. "keywords": [
  3591. "http",
  3592. "http-message",
  3593. "psr",
  3594. "psr-7",
  3595. "request",
  3596. "response"
  3597. ],
  3598. "support": {
  3599. "source": "https://github.com/php-fig/http-message/tree/master"
  3600. },
  3601. "time": "2016-08-06T14:39:51+00:00"
  3602. },
  3603. {
  3604. "name": "psr/log",
  3605. "version": "1.1.3",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/php-fig/log.git",
  3609. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3614. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "php": ">=5.3.0"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "1.1.x-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Psr\\Log\\": "Psr/Log/"
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "PHP-FIG",
  3638. "homepage": "http://www.php-fig.org/"
  3639. }
  3640. ],
  3641. "description": "Common interface for logging libraries",
  3642. "homepage": "https://github.com/php-fig/log",
  3643. "keywords": [
  3644. "log",
  3645. "psr",
  3646. "psr-3"
  3647. ],
  3648. "support": {
  3649. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3650. },
  3651. "time": "2020-03-23T09:12:05+00:00"
  3652. },
  3653. {
  3654. "name": "psr/simple-cache",
  3655. "version": "1.0.1",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/php-fig/simple-cache.git",
  3659. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3664. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3665. "shasum": ""
  3666. },
  3667. "require": {
  3668. "php": ">=5.3.0"
  3669. },
  3670. "type": "library",
  3671. "extra": {
  3672. "branch-alias": {
  3673. "dev-master": "1.0.x-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Psr\\SimpleCache\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "PHP-FIG",
  3688. "homepage": "http://www.php-fig.org/"
  3689. }
  3690. ],
  3691. "description": "Common interfaces for simple caching",
  3692. "keywords": [
  3693. "cache",
  3694. "caching",
  3695. "psr",
  3696. "psr-16",
  3697. "simple-cache"
  3698. ],
  3699. "support": {
  3700. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3701. },
  3702. "time": "2017-10-23T01:57:42+00:00"
  3703. },
  3704. {
  3705. "name": "psy/psysh",
  3706. "version": "v0.10.5",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/bobthecow/psysh.git",
  3710. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3715. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "dnoegel/php-xdg-base-dir": "0.1.*",
  3720. "ext-json": "*",
  3721. "ext-tokenizer": "*",
  3722. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3723. "php": "^8.0 || ^7.0 || ^5.5.9",
  3724. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3725. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3726. },
  3727. "require-dev": {
  3728. "bamarni/composer-bin-plugin": "^1.2",
  3729. "hoa/console": "3.17.*"
  3730. },
  3731. "suggest": {
  3732. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3733. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3734. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3735. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3736. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3737. },
  3738. "bin": [
  3739. "bin/psysh"
  3740. ],
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "0.10.x-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "files": [
  3749. "src/functions.php"
  3750. ],
  3751. "psr-4": {
  3752. "Psy\\": "src/"
  3753. }
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Justin Hileman",
  3762. "email": "justin@justinhileman.info",
  3763. "homepage": "http://justinhileman.com"
  3764. }
  3765. ],
  3766. "description": "An interactive shell for modern PHP.",
  3767. "homepage": "http://psysh.org",
  3768. "keywords": [
  3769. "REPL",
  3770. "console",
  3771. "interactive",
  3772. "shell"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/bobthecow/psysh/issues",
  3776. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3777. },
  3778. "time": "2020-12-04T02:51:30+00:00"
  3779. },
  3780. {
  3781. "name": "ralouphie/getallheaders",
  3782. "version": "3.0.3",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/ralouphie/getallheaders.git",
  3786. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3791. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=5.6"
  3796. },
  3797. "require-dev": {
  3798. "php-coveralls/php-coveralls": "^2.1",
  3799. "phpunit/phpunit": "^5 || ^6.5"
  3800. },
  3801. "type": "library",
  3802. "autoload": {
  3803. "files": [
  3804. "src/getallheaders.php"
  3805. ]
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Ralph Khattar",
  3814. "email": "ralph.khattar@gmail.com"
  3815. }
  3816. ],
  3817. "description": "A polyfill for getallheaders.",
  3818. "support": {
  3819. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3820. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3821. },
  3822. "time": "2019-03-08T08:55:37+00:00"
  3823. },
  3824. {
  3825. "name": "ramsey/collection",
  3826. "version": "1.1.1",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/ramsey/collection.git",
  3830. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3835. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "php": "^7.2 || ^8"
  3840. },
  3841. "require-dev": {
  3842. "captainhook/captainhook": "^5.3",
  3843. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3844. "ergebnis/composer-normalize": "^2.6",
  3845. "fzaninotto/faker": "^1.5",
  3846. "hamcrest/hamcrest-php": "^2",
  3847. "jangregor/phpstan-prophecy": "^0.6",
  3848. "mockery/mockery": "^1.3",
  3849. "phpstan/extension-installer": "^1",
  3850. "phpstan/phpstan": "^0.12.32",
  3851. "phpstan/phpstan-mockery": "^0.12.5",
  3852. "phpstan/phpstan-phpunit": "^0.12.11",
  3853. "phpunit/phpunit": "^8.5",
  3854. "psy/psysh": "^0.10.4",
  3855. "slevomat/coding-standard": "^6.3",
  3856. "squizlabs/php_codesniffer": "^3.5",
  3857. "vimeo/psalm": "^3.12.2"
  3858. },
  3859. "type": "library",
  3860. "autoload": {
  3861. "psr-4": {
  3862. "Ramsey\\Collection\\": "src/"
  3863. }
  3864. },
  3865. "notification-url": "https://packagist.org/downloads/",
  3866. "license": [
  3867. "MIT"
  3868. ],
  3869. "authors": [
  3870. {
  3871. "name": "Ben Ramsey",
  3872. "email": "ben@benramsey.com",
  3873. "homepage": "https://benramsey.com"
  3874. }
  3875. ],
  3876. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3877. "keywords": [
  3878. "array",
  3879. "collection",
  3880. "hash",
  3881. "map",
  3882. "queue",
  3883. "set"
  3884. ],
  3885. "support": {
  3886. "issues": "https://github.com/ramsey/collection/issues",
  3887. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  3888. },
  3889. "funding": [
  3890. {
  3891. "url": "https://github.com/ramsey",
  3892. "type": "github"
  3893. }
  3894. ],
  3895. "time": "2020-09-10T20:58:17+00:00"
  3896. },
  3897. {
  3898. "name": "ramsey/uuid",
  3899. "version": "4.1.1",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/ramsey/uuid.git",
  3903. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3908. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3909. "shasum": ""
  3910. },
  3911. "require": {
  3912. "brick/math": "^0.8 || ^0.9",
  3913. "ext-json": "*",
  3914. "php": "^7.2 || ^8",
  3915. "ramsey/collection": "^1.0",
  3916. "symfony/polyfill-ctype": "^1.8"
  3917. },
  3918. "replace": {
  3919. "rhumsaa/uuid": "self.version"
  3920. },
  3921. "require-dev": {
  3922. "codeception/aspect-mock": "^3",
  3923. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3924. "doctrine/annotations": "^1.8",
  3925. "goaop/framework": "^2",
  3926. "mockery/mockery": "^1.3",
  3927. "moontoast/math": "^1.1",
  3928. "paragonie/random-lib": "^2",
  3929. "php-mock/php-mock-mockery": "^1.3",
  3930. "php-mock/php-mock-phpunit": "^2.5",
  3931. "php-parallel-lint/php-parallel-lint": "^1.1",
  3932. "phpbench/phpbench": "^0.17.1",
  3933. "phpstan/extension-installer": "^1.0",
  3934. "phpstan/phpstan": "^0.12",
  3935. "phpstan/phpstan-mockery": "^0.12",
  3936. "phpstan/phpstan-phpunit": "^0.12",
  3937. "phpunit/phpunit": "^8.5",
  3938. "psy/psysh": "^0.10.0",
  3939. "slevomat/coding-standard": "^6.0",
  3940. "squizlabs/php_codesniffer": "^3.5",
  3941. "vimeo/psalm": "3.9.4"
  3942. },
  3943. "suggest": {
  3944. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3945. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3946. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3947. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3948. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3949. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "4.x-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Ramsey\\Uuid\\": "src/"
  3960. },
  3961. "files": [
  3962. "src/functions.php"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3970. "homepage": "https://github.com/ramsey/uuid",
  3971. "keywords": [
  3972. "guid",
  3973. "identifier",
  3974. "uuid"
  3975. ],
  3976. "support": {
  3977. "issues": "https://github.com/ramsey/uuid/issues",
  3978. "rss": "https://github.com/ramsey/uuid/releases.atom",
  3979. "source": "https://github.com/ramsey/uuid"
  3980. },
  3981. "funding": [
  3982. {
  3983. "url": "https://github.com/ramsey",
  3984. "type": "github"
  3985. }
  3986. ],
  3987. "time": "2020-08-18T17:17:46+00:00"
  3988. },
  3989. {
  3990. "name": "rap2hpoutre/laravel-log-viewer",
  3991. "version": "v1.7.0",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3995. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4000. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4005. "php": ">=5.4.0"
  4006. },
  4007. "require-dev": {
  4008. "orchestra/testbench": "3.7.*",
  4009. "phpunit/phpunit": "^7"
  4010. },
  4011. "type": "laravel-package",
  4012. "extra": {
  4013. "laravel": {
  4014. "providers": [
  4015. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4016. ]
  4017. }
  4018. },
  4019. "autoload": {
  4020. "classmap": [
  4021. "src/controllers"
  4022. ],
  4023. "psr-0": {
  4024. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "rap2hpoutre",
  4034. "email": "raphaelht@gmail.com"
  4035. }
  4036. ],
  4037. "description": "A Laravel log reader",
  4038. "keywords": [
  4039. "laravel",
  4040. "log",
  4041. "log-reader",
  4042. "log-viewer",
  4043. "logging",
  4044. "lumen"
  4045. ],
  4046. "support": {
  4047. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4048. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4049. },
  4050. "time": "2020-09-08T12:21:27+00:00"
  4051. },
  4052. {
  4053. "name": "riverslei/payment",
  4054. "version": "v5.1.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/helei112g/payment.git",
  4058. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4063. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "ext-bcmath": "*",
  4068. "ext-json": "*",
  4069. "ext-mbstring": "*",
  4070. "ext-openssl": "*",
  4071. "ext-simplexml": "*",
  4072. "ext-xml": "*",
  4073. "guzzlehttp/guzzle": "~6.0",
  4074. "php": ">=7.0"
  4075. },
  4076. "require-dev": {
  4077. "codeception/codeception": "*"
  4078. },
  4079. "type": "library",
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Payment\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "Leo",
  4092. "email": "dayugog@gmail.com",
  4093. "homepage": "https://dayutalk.cn"
  4094. }
  4095. ],
  4096. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4097. "homepage": "http://helei112g.github.io/payment",
  4098. "keywords": [
  4099. "alipay",
  4100. "weixin",
  4101. "一网通",
  4102. "微信支付",
  4103. "招商一网通",
  4104. "支付宝支付",
  4105. "集成支付接口SDK"
  4106. ],
  4107. "support": {
  4108. "issues": "https://github.com/helei112g/payment/issues",
  4109. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4110. },
  4111. "time": "2020-05-04T03:07:17+00:00"
  4112. },
  4113. {
  4114. "name": "spatie/laravel-permission",
  4115. "version": "3.18.0",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/spatie/laravel-permission.git",
  4119. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4124. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4129. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4130. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4131. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4132. "php": "^7.2.5|^8.0"
  4133. },
  4134. "require-dev": {
  4135. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4136. "phpunit/phpunit": "^8.0|^9.0",
  4137. "predis/predis": "^1.1"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "laravel": {
  4142. "providers": [
  4143. "Spatie\\Permission\\PermissionServiceProvider"
  4144. ]
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Spatie\\Permission\\": "src"
  4150. },
  4151. "files": [
  4152. "src/helpers.php"
  4153. ]
  4154. },
  4155. "notification-url": "https://packagist.org/downloads/",
  4156. "license": [
  4157. "MIT"
  4158. ],
  4159. "authors": [
  4160. {
  4161. "name": "Freek Van der Herten",
  4162. "email": "freek@spatie.be",
  4163. "homepage": "https://spatie.be",
  4164. "role": "Developer"
  4165. }
  4166. ],
  4167. "description": "Permission handling for Laravel 5.8 and up",
  4168. "homepage": "https://github.com/spatie/laravel-permission",
  4169. "keywords": [
  4170. "acl",
  4171. "laravel",
  4172. "permission",
  4173. "permissions",
  4174. "rbac",
  4175. "roles",
  4176. "security",
  4177. "spatie"
  4178. ],
  4179. "support": {
  4180. "issues": "https://github.com/spatie/laravel-permission/issues",
  4181. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4182. },
  4183. "funding": [
  4184. {
  4185. "url": "https://github.com/spatie",
  4186. "type": "github"
  4187. }
  4188. ],
  4189. "time": "2020-11-09T14:08:36+00:00"
  4190. },
  4191. {
  4192. "name": "srmklive/paypal",
  4193. "version": "1.8.0",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/srmklive/laravel-paypal.git",
  4197. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4202. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "guzzlehttp/guzzle": "~6.0|~7.0",
  4207. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4208. "nesbot/carbon": "~1.0|~2.0"
  4209. },
  4210. "type": "library",
  4211. "extra": {
  4212. "laravel": {
  4213. "providers": [
  4214. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4215. ],
  4216. "aliases": {
  4217. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4218. }
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Srmklive\\PayPal\\": "src/"
  4224. }
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Raza Mehdi",
  4233. "email": "srmk@outlook.com"
  4234. }
  4235. ],
  4236. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4237. "keywords": [
  4238. "http",
  4239. "laravel paypal",
  4240. "paypal",
  4241. "rest",
  4242. "web service"
  4243. ],
  4244. "support": {
  4245. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4246. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4247. },
  4248. "time": "2020-09-03T07:50:08+00:00"
  4249. },
  4250. {
  4251. "name": "stripe/stripe-php",
  4252. "version": "v7.67.0",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/stripe/stripe-php.git",
  4256. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4261. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "ext-curl": "*",
  4266. "ext-json": "*",
  4267. "ext-mbstring": "*",
  4268. "php": ">=5.6.0"
  4269. },
  4270. "require-dev": {
  4271. "friendsofphp/php-cs-fixer": "2.17.1",
  4272. "php-coveralls/php-coveralls": "^2.1",
  4273. "phpunit/phpunit": "^5.7",
  4274. "squizlabs/php_codesniffer": "^3.3",
  4275. "symfony/process": "~3.4"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "branch-alias": {
  4280. "dev-master": "2.0-dev"
  4281. }
  4282. },
  4283. "autoload": {
  4284. "psr-4": {
  4285. "Stripe\\": "lib/"
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Stripe and contributors",
  4295. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4296. }
  4297. ],
  4298. "description": "Stripe PHP Library",
  4299. "homepage": "https://stripe.com/",
  4300. "keywords": [
  4301. "api",
  4302. "payment processing",
  4303. "stripe"
  4304. ],
  4305. "support": {
  4306. "issues": "https://github.com/stripe/stripe-php/issues",
  4307. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4308. },
  4309. "time": "2020-12-09T19:00:34+00:00"
  4310. },
  4311. {
  4312. "name": "swiftmailer/swiftmailer",
  4313. "version": "v6.2.4",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4317. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4322. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "egulias/email-validator": "^2.0",
  4327. "php": ">=7.0.0",
  4328. "symfony/polyfill-iconv": "^1.0",
  4329. "symfony/polyfill-intl-idn": "^1.10",
  4330. "symfony/polyfill-mbstring": "^1.0"
  4331. },
  4332. "require-dev": {
  4333. "mockery/mockery": "^1.0",
  4334. "symfony/phpunit-bridge": "^4.4|^5.0"
  4335. },
  4336. "suggest": {
  4337. "ext-intl": "Needed to support internationalized email addresses"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "6.2-dev"
  4343. }
  4344. },
  4345. "autoload": {
  4346. "files": [
  4347. "lib/swift_required.php"
  4348. ]
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "Chris Corbyn"
  4357. },
  4358. {
  4359. "name": "Fabien Potencier",
  4360. "email": "fabien@symfony.com"
  4361. }
  4362. ],
  4363. "description": "Swiftmailer, free feature-rich PHP mailer",
  4364. "homepage": "https://swiftmailer.symfony.com",
  4365. "keywords": [
  4366. "email",
  4367. "mail",
  4368. "mailer"
  4369. ],
  4370. "support": {
  4371. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4372. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4373. },
  4374. "funding": [
  4375. {
  4376. "url": "https://github.com/fabpot",
  4377. "type": "github"
  4378. },
  4379. {
  4380. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4381. "type": "tidelift"
  4382. }
  4383. ],
  4384. "time": "2020-12-08T18:02:06+00:00"
  4385. },
  4386. {
  4387. "name": "symfony/console",
  4388. "version": "v5.2.0",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/symfony/console.git",
  4392. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/symfony/console/zipball/3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4397. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4398. "shasum": ""
  4399. },
  4400. "require": {
  4401. "php": ">=7.2.5",
  4402. "symfony/polyfill-mbstring": "~1.0",
  4403. "symfony/polyfill-php73": "^1.8",
  4404. "symfony/polyfill-php80": "^1.15",
  4405. "symfony/service-contracts": "^1.1|^2",
  4406. "symfony/string": "^5.1"
  4407. },
  4408. "conflict": {
  4409. "symfony/dependency-injection": "<4.4",
  4410. "symfony/dotenv": "<5.1",
  4411. "symfony/event-dispatcher": "<4.4",
  4412. "symfony/lock": "<4.4",
  4413. "symfony/process": "<4.4"
  4414. },
  4415. "provide": {
  4416. "psr/log-implementation": "1.0"
  4417. },
  4418. "require-dev": {
  4419. "psr/log": "~1.0",
  4420. "symfony/config": "^4.4|^5.0",
  4421. "symfony/dependency-injection": "^4.4|^5.0",
  4422. "symfony/event-dispatcher": "^4.4|^5.0",
  4423. "symfony/lock": "^4.4|^5.0",
  4424. "symfony/process": "^4.4|^5.0",
  4425. "symfony/var-dumper": "^4.4|^5.0"
  4426. },
  4427. "suggest": {
  4428. "psr/log": "For using the console logger",
  4429. "symfony/event-dispatcher": "",
  4430. "symfony/lock": "",
  4431. "symfony/process": ""
  4432. },
  4433. "type": "library",
  4434. "autoload": {
  4435. "psr-4": {
  4436. "Symfony\\Component\\Console\\": ""
  4437. },
  4438. "exclude-from-classmap": [
  4439. "/Tests/"
  4440. ]
  4441. },
  4442. "notification-url": "https://packagist.org/downloads/",
  4443. "license": [
  4444. "MIT"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "Fabien Potencier",
  4449. "email": "fabien@symfony.com"
  4450. },
  4451. {
  4452. "name": "Symfony Community",
  4453. "homepage": "https://symfony.com/contributors"
  4454. }
  4455. ],
  4456. "description": "Symfony Console Component",
  4457. "homepage": "https://symfony.com",
  4458. "keywords": [
  4459. "cli",
  4460. "command line",
  4461. "console",
  4462. "terminal"
  4463. ],
  4464. "support": {
  4465. "source": "https://github.com/symfony/console/tree/v5.2.0"
  4466. },
  4467. "funding": [
  4468. {
  4469. "url": "https://symfony.com/sponsor",
  4470. "type": "custom"
  4471. },
  4472. {
  4473. "url": "https://github.com/fabpot",
  4474. "type": "github"
  4475. },
  4476. {
  4477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4478. "type": "tidelift"
  4479. }
  4480. ],
  4481. "time": "2020-11-28T11:24:18+00:00"
  4482. },
  4483. {
  4484. "name": "symfony/css-selector",
  4485. "version": "v5.2.0",
  4486. "source": {
  4487. "type": "git",
  4488. "url": "https://github.com/symfony/css-selector.git",
  4489. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  4490. },
  4491. "dist": {
  4492. "type": "zip",
  4493. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4494. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4495. "shasum": ""
  4496. },
  4497. "require": {
  4498. "php": ">=7.2.5"
  4499. },
  4500. "type": "library",
  4501. "autoload": {
  4502. "psr-4": {
  4503. "Symfony\\Component\\CssSelector\\": ""
  4504. },
  4505. "exclude-from-classmap": [
  4506. "/Tests/"
  4507. ]
  4508. },
  4509. "notification-url": "https://packagist.org/downloads/",
  4510. "license": [
  4511. "MIT"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Fabien Potencier",
  4516. "email": "fabien@symfony.com"
  4517. },
  4518. {
  4519. "name": "Jean-François Simon",
  4520. "email": "jeanfrancois.simon@sensiolabs.com"
  4521. },
  4522. {
  4523. "name": "Symfony Community",
  4524. "homepage": "https://symfony.com/contributors"
  4525. }
  4526. ],
  4527. "description": "Symfony CssSelector Component",
  4528. "homepage": "https://symfony.com",
  4529. "support": {
  4530. "source": "https://github.com/symfony/css-selector/tree/v5.2.0"
  4531. },
  4532. "funding": [
  4533. {
  4534. "url": "https://symfony.com/sponsor",
  4535. "type": "custom"
  4536. },
  4537. {
  4538. "url": "https://github.com/fabpot",
  4539. "type": "github"
  4540. },
  4541. {
  4542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4543. "type": "tidelift"
  4544. }
  4545. ],
  4546. "time": "2020-10-28T21:31:18+00:00"
  4547. },
  4548. {
  4549. "name": "symfony/deprecation-contracts",
  4550. "version": "v2.2.0",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://github.com/symfony/deprecation-contracts.git",
  4554. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4559. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4560. "shasum": ""
  4561. },
  4562. "require": {
  4563. "php": ">=7.1"
  4564. },
  4565. "type": "library",
  4566. "extra": {
  4567. "branch-alias": {
  4568. "dev-master": "2.2-dev"
  4569. },
  4570. "thanks": {
  4571. "name": "symfony/contracts",
  4572. "url": "https://github.com/symfony/contracts"
  4573. }
  4574. },
  4575. "autoload": {
  4576. "files": [
  4577. "function.php"
  4578. ]
  4579. },
  4580. "notification-url": "https://packagist.org/downloads/",
  4581. "license": [
  4582. "MIT"
  4583. ],
  4584. "authors": [
  4585. {
  4586. "name": "Nicolas Grekas",
  4587. "email": "p@tchwork.com"
  4588. },
  4589. {
  4590. "name": "Symfony Community",
  4591. "homepage": "https://symfony.com/contributors"
  4592. }
  4593. ],
  4594. "description": "A generic function and convention to trigger deprecation notices",
  4595. "homepage": "https://symfony.com",
  4596. "support": {
  4597. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4598. },
  4599. "funding": [
  4600. {
  4601. "url": "https://symfony.com/sponsor",
  4602. "type": "custom"
  4603. },
  4604. {
  4605. "url": "https://github.com/fabpot",
  4606. "type": "github"
  4607. },
  4608. {
  4609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4610. "type": "tidelift"
  4611. }
  4612. ],
  4613. "time": "2020-09-07T11:33:47+00:00"
  4614. },
  4615. {
  4616. "name": "symfony/error-handler",
  4617. "version": "v5.2.0",
  4618. "source": {
  4619. "type": "git",
  4620. "url": "https://github.com/symfony/error-handler.git",
  4621. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba"
  4622. },
  4623. "dist": {
  4624. "type": "zip",
  4625. "url": "https://api.github.com/repos/symfony/error-handler/zipball/289008c5be039e39908d33ae0a8ac99be1210bba",
  4626. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba",
  4627. "shasum": ""
  4628. },
  4629. "require": {
  4630. "php": ">=7.2.5",
  4631. "psr/log": "^1.0",
  4632. "symfony/polyfill-php80": "^1.15",
  4633. "symfony/var-dumper": "^4.4|^5.0"
  4634. },
  4635. "require-dev": {
  4636. "symfony/deprecation-contracts": "^2.1",
  4637. "symfony/http-kernel": "^4.4|^5.0",
  4638. "symfony/serializer": "^4.4|^5.0"
  4639. },
  4640. "type": "library",
  4641. "autoload": {
  4642. "psr-4": {
  4643. "Symfony\\Component\\ErrorHandler\\": ""
  4644. },
  4645. "exclude-from-classmap": [
  4646. "/Tests/"
  4647. ]
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "Fabien Potencier",
  4656. "email": "fabien@symfony.com"
  4657. },
  4658. {
  4659. "name": "Symfony Community",
  4660. "homepage": "https://symfony.com/contributors"
  4661. }
  4662. ],
  4663. "description": "Symfony ErrorHandler Component",
  4664. "homepage": "https://symfony.com",
  4665. "support": {
  4666. "source": "https://github.com/symfony/error-handler/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:46:03+00:00"
  4683. },
  4684. {
  4685. "name": "symfony/event-dispatcher",
  4686. "version": "v5.2.0",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/symfony/event-dispatcher.git",
  4690. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4695. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4696. "shasum": ""
  4697. },
  4698. "require": {
  4699. "php": ">=7.2.5",
  4700. "symfony/deprecation-contracts": "^2.1",
  4701. "symfony/event-dispatcher-contracts": "^2",
  4702. "symfony/polyfill-php80": "^1.15"
  4703. },
  4704. "conflict": {
  4705. "symfony/dependency-injection": "<4.4"
  4706. },
  4707. "provide": {
  4708. "psr/event-dispatcher-implementation": "1.0",
  4709. "symfony/event-dispatcher-implementation": "2.0"
  4710. },
  4711. "require-dev": {
  4712. "psr/log": "~1.0",
  4713. "symfony/config": "^4.4|^5.0",
  4714. "symfony/dependency-injection": "^4.4|^5.0",
  4715. "symfony/error-handler": "^4.4|^5.0",
  4716. "symfony/expression-language": "^4.4|^5.0",
  4717. "symfony/http-foundation": "^4.4|^5.0",
  4718. "symfony/service-contracts": "^1.1|^2",
  4719. "symfony/stopwatch": "^4.4|^5.0"
  4720. },
  4721. "suggest": {
  4722. "symfony/dependency-injection": "",
  4723. "symfony/http-kernel": ""
  4724. },
  4725. "type": "library",
  4726. "autoload": {
  4727. "psr-4": {
  4728. "Symfony\\Component\\EventDispatcher\\": ""
  4729. },
  4730. "exclude-from-classmap": [
  4731. "/Tests/"
  4732. ]
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Fabien Potencier",
  4741. "email": "fabien@symfony.com"
  4742. },
  4743. {
  4744. "name": "Symfony Community",
  4745. "homepage": "https://symfony.com/contributors"
  4746. }
  4747. ],
  4748. "description": "Symfony EventDispatcher Component",
  4749. "homepage": "https://symfony.com",
  4750. "support": {
  4751. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.0"
  4752. },
  4753. "funding": [
  4754. {
  4755. "url": "https://symfony.com/sponsor",
  4756. "type": "custom"
  4757. },
  4758. {
  4759. "url": "https://github.com/fabpot",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4764. "type": "tidelift"
  4765. }
  4766. ],
  4767. "time": "2020-11-01T16:14:45+00:00"
  4768. },
  4769. {
  4770. "name": "symfony/event-dispatcher-contracts",
  4771. "version": "v2.2.0",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4775. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4780. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4781. "shasum": ""
  4782. },
  4783. "require": {
  4784. "php": ">=7.2.5",
  4785. "psr/event-dispatcher": "^1"
  4786. },
  4787. "suggest": {
  4788. "symfony/event-dispatcher-implementation": ""
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "2.2-dev"
  4794. },
  4795. "thanks": {
  4796. "name": "symfony/contracts",
  4797. "url": "https://github.com/symfony/contracts"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Contracts\\EventDispatcher\\": ""
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Nicolas Grekas",
  4812. "email": "p@tchwork.com"
  4813. },
  4814. {
  4815. "name": "Symfony Community",
  4816. "homepage": "https://symfony.com/contributors"
  4817. }
  4818. ],
  4819. "description": "Generic abstractions related to dispatching event",
  4820. "homepage": "https://symfony.com",
  4821. "keywords": [
  4822. "abstractions",
  4823. "contracts",
  4824. "decoupling",
  4825. "interfaces",
  4826. "interoperability",
  4827. "standards"
  4828. ],
  4829. "support": {
  4830. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4831. },
  4832. "funding": [
  4833. {
  4834. "url": "https://symfony.com/sponsor",
  4835. "type": "custom"
  4836. },
  4837. {
  4838. "url": "https://github.com/fabpot",
  4839. "type": "github"
  4840. },
  4841. {
  4842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4843. "type": "tidelift"
  4844. }
  4845. ],
  4846. "time": "2020-09-07T11:33:47+00:00"
  4847. },
  4848. {
  4849. "name": "symfony/finder",
  4850. "version": "v5.2.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://github.com/symfony/finder.git",
  4854. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d",
  4859. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d",
  4860. "shasum": ""
  4861. },
  4862. "require": {
  4863. "php": ">=7.2.5"
  4864. },
  4865. "type": "library",
  4866. "autoload": {
  4867. "psr-4": {
  4868. "Symfony\\Component\\Finder\\": ""
  4869. },
  4870. "exclude-from-classmap": [
  4871. "/Tests/"
  4872. ]
  4873. },
  4874. "notification-url": "https://packagist.org/downloads/",
  4875. "license": [
  4876. "MIT"
  4877. ],
  4878. "authors": [
  4879. {
  4880. "name": "Fabien Potencier",
  4881. "email": "fabien@symfony.com"
  4882. },
  4883. {
  4884. "name": "Symfony Community",
  4885. "homepage": "https://symfony.com/contributors"
  4886. }
  4887. ],
  4888. "description": "Symfony Finder Component",
  4889. "homepage": "https://symfony.com",
  4890. "support": {
  4891. "source": "https://github.com/symfony/finder/tree/v5.2.0"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://symfony.com/sponsor",
  4896. "type": "custom"
  4897. },
  4898. {
  4899. "url": "https://github.com/fabpot",
  4900. "type": "github"
  4901. },
  4902. {
  4903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4904. "type": "tidelift"
  4905. }
  4906. ],
  4907. "time": "2020-11-18T09:42:36+00:00"
  4908. },
  4909. {
  4910. "name": "symfony/http-client-contracts",
  4911. "version": "v2.3.1",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/symfony/http-client-contracts.git",
  4915. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4920. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=7.2.5"
  4925. },
  4926. "suggest": {
  4927. "symfony/http-client-implementation": ""
  4928. },
  4929. "type": "library",
  4930. "extra": {
  4931. "branch-version": "2.3",
  4932. "branch-alias": {
  4933. "dev-main": "2.3-dev"
  4934. },
  4935. "thanks": {
  4936. "name": "symfony/contracts",
  4937. "url": "https://github.com/symfony/contracts"
  4938. }
  4939. },
  4940. "autoload": {
  4941. "psr-4": {
  4942. "Symfony\\Contracts\\HttpClient\\": ""
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Nicolas Grekas",
  4952. "email": "p@tchwork.com"
  4953. },
  4954. {
  4955. "name": "Symfony Community",
  4956. "homepage": "https://symfony.com/contributors"
  4957. }
  4958. ],
  4959. "description": "Generic abstractions related to HTTP clients",
  4960. "homepage": "https://symfony.com",
  4961. "keywords": [
  4962. "abstractions",
  4963. "contracts",
  4964. "decoupling",
  4965. "interfaces",
  4966. "interoperability",
  4967. "standards"
  4968. ],
  4969. "support": {
  4970. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4971. },
  4972. "funding": [
  4973. {
  4974. "url": "https://symfony.com/sponsor",
  4975. "type": "custom"
  4976. },
  4977. {
  4978. "url": "https://github.com/fabpot",
  4979. "type": "github"
  4980. },
  4981. {
  4982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4983. "type": "tidelift"
  4984. }
  4985. ],
  4986. "time": "2020-10-14T17:08:19+00:00"
  4987. },
  4988. {
  4989. "name": "symfony/http-foundation",
  4990. "version": "v5.2.0",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://github.com/symfony/http-foundation.git",
  4994. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  4999. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  5000. "shasum": ""
  5001. },
  5002. "require": {
  5003. "php": ">=7.2.5",
  5004. "symfony/deprecation-contracts": "^2.1",
  5005. "symfony/polyfill-mbstring": "~1.1",
  5006. "symfony/polyfill-php80": "^1.15"
  5007. },
  5008. "require-dev": {
  5009. "predis/predis": "~1.0",
  5010. "symfony/cache": "^4.4|^5.0",
  5011. "symfony/expression-language": "^4.4|^5.0",
  5012. "symfony/mime": "^4.4|^5.0"
  5013. },
  5014. "suggest": {
  5015. "symfony/mime": "To use the file extension guesser"
  5016. },
  5017. "type": "library",
  5018. "autoload": {
  5019. "psr-4": {
  5020. "Symfony\\Component\\HttpFoundation\\": ""
  5021. },
  5022. "exclude-from-classmap": [
  5023. "/Tests/"
  5024. ]
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Fabien Potencier",
  5033. "email": "fabien@symfony.com"
  5034. },
  5035. {
  5036. "name": "Symfony Community",
  5037. "homepage": "https://symfony.com/contributors"
  5038. }
  5039. ],
  5040. "description": "Symfony HttpFoundation Component",
  5041. "homepage": "https://symfony.com",
  5042. "support": {
  5043. "source": "https://github.com/symfony/http-foundation/tree/v5.2.0"
  5044. },
  5045. "funding": [
  5046. {
  5047. "url": "https://symfony.com/sponsor",
  5048. "type": "custom"
  5049. },
  5050. {
  5051. "url": "https://github.com/fabpot",
  5052. "type": "github"
  5053. },
  5054. {
  5055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5056. "type": "tidelift"
  5057. }
  5058. ],
  5059. "time": "2020-11-27T06:13:25+00:00"
  5060. },
  5061. {
  5062. "name": "symfony/http-kernel",
  5063. "version": "v5.2.0",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/symfony/http-kernel.git",
  5067. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/38907e5ccb2d9d371191a946734afc83c7a03160",
  5072. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "php": ">=7.2.5",
  5077. "psr/log": "~1.0",
  5078. "symfony/deprecation-contracts": "^2.1",
  5079. "symfony/error-handler": "^4.4|^5.0",
  5080. "symfony/event-dispatcher": "^5.0",
  5081. "symfony/http-client-contracts": "^1.1|^2",
  5082. "symfony/http-foundation": "^4.4|^5.0",
  5083. "symfony/polyfill-ctype": "^1.8",
  5084. "symfony/polyfill-php73": "^1.9",
  5085. "symfony/polyfill-php80": "^1.15"
  5086. },
  5087. "conflict": {
  5088. "symfony/browser-kit": "<4.4",
  5089. "symfony/cache": "<5.0",
  5090. "symfony/config": "<5.0",
  5091. "symfony/console": "<4.4",
  5092. "symfony/dependency-injection": "<5.1.8",
  5093. "symfony/doctrine-bridge": "<5.0",
  5094. "symfony/form": "<5.0",
  5095. "symfony/http-client": "<5.0",
  5096. "symfony/mailer": "<5.0",
  5097. "symfony/messenger": "<5.0",
  5098. "symfony/translation": "<5.0",
  5099. "symfony/twig-bridge": "<5.0",
  5100. "symfony/validator": "<5.0",
  5101. "twig/twig": "<2.4"
  5102. },
  5103. "provide": {
  5104. "psr/log-implementation": "1.0"
  5105. },
  5106. "require-dev": {
  5107. "psr/cache": "~1.0",
  5108. "symfony/browser-kit": "^4.4|^5.0",
  5109. "symfony/config": "^5.0",
  5110. "symfony/console": "^4.4|^5.0",
  5111. "symfony/css-selector": "^4.4|^5.0",
  5112. "symfony/dependency-injection": "^5.1.8",
  5113. "symfony/dom-crawler": "^4.4|^5.0",
  5114. "symfony/expression-language": "^4.4|^5.0",
  5115. "symfony/finder": "^4.4|^5.0",
  5116. "symfony/process": "^4.4|^5.0",
  5117. "symfony/routing": "^4.4|^5.0",
  5118. "symfony/stopwatch": "^4.4|^5.0",
  5119. "symfony/translation": "^4.4|^5.0",
  5120. "symfony/translation-contracts": "^1.1|^2",
  5121. "twig/twig": "^2.4|^3.0"
  5122. },
  5123. "suggest": {
  5124. "symfony/browser-kit": "",
  5125. "symfony/config": "",
  5126. "symfony/console": "",
  5127. "symfony/dependency-injection": ""
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Symfony\\Component\\HttpKernel\\": ""
  5133. },
  5134. "exclude-from-classmap": [
  5135. "/Tests/"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Fabien Potencier",
  5145. "email": "fabien@symfony.com"
  5146. },
  5147. {
  5148. "name": "Symfony Community",
  5149. "homepage": "https://symfony.com/contributors"
  5150. }
  5151. ],
  5152. "description": "Symfony HttpKernel Component",
  5153. "homepage": "https://symfony.com",
  5154. "support": {
  5155. "source": "https://github.com/symfony/http-kernel/tree/v5.2.0"
  5156. },
  5157. "funding": [
  5158. {
  5159. "url": "https://symfony.com/sponsor",
  5160. "type": "custom"
  5161. },
  5162. {
  5163. "url": "https://github.com/fabpot",
  5164. "type": "github"
  5165. },
  5166. {
  5167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5168. "type": "tidelift"
  5169. }
  5170. ],
  5171. "time": "2020-11-30T05:54:18+00:00"
  5172. },
  5173. {
  5174. "name": "symfony/mime",
  5175. "version": "v5.2.0",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/symfony/mime.git",
  5179. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/symfony/mime/zipball/05f667e8fa029568964fd3bec6bc17765b853cc5",
  5184. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": ">=7.2.5",
  5189. "symfony/deprecation-contracts": "^2.1",
  5190. "symfony/polyfill-intl-idn": "^1.10",
  5191. "symfony/polyfill-mbstring": "^1.0",
  5192. "symfony/polyfill-php80": "^1.15"
  5193. },
  5194. "conflict": {
  5195. "symfony/mailer": "<4.4"
  5196. },
  5197. "require-dev": {
  5198. "egulias/email-validator": "^2.1.10",
  5199. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5200. "symfony/dependency-injection": "^4.4|^5.0",
  5201. "symfony/property-access": "^4.4|^5.1",
  5202. "symfony/property-info": "^4.4|^5.1",
  5203. "symfony/serializer": "^5.2"
  5204. },
  5205. "type": "library",
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Symfony\\Component\\Mime\\": ""
  5209. },
  5210. "exclude-from-classmap": [
  5211. "/Tests/"
  5212. ]
  5213. },
  5214. "notification-url": "https://packagist.org/downloads/",
  5215. "license": [
  5216. "MIT"
  5217. ],
  5218. "authors": [
  5219. {
  5220. "name": "Fabien Potencier",
  5221. "email": "fabien@symfony.com"
  5222. },
  5223. {
  5224. "name": "Symfony Community",
  5225. "homepage": "https://symfony.com/contributors"
  5226. }
  5227. ],
  5228. "description": "A library to manipulate MIME messages",
  5229. "homepage": "https://symfony.com",
  5230. "keywords": [
  5231. "mime",
  5232. "mime-type"
  5233. ],
  5234. "support": {
  5235. "source": "https://github.com/symfony/mime/tree/v5.2.0"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://symfony.com/sponsor",
  5240. "type": "custom"
  5241. },
  5242. {
  5243. "url": "https://github.com/fabpot",
  5244. "type": "github"
  5245. },
  5246. {
  5247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5248. "type": "tidelift"
  5249. }
  5250. ],
  5251. "time": "2020-10-30T14:55:39+00:00"
  5252. },
  5253. {
  5254. "name": "symfony/polyfill-ctype",
  5255. "version": "v1.20.0",
  5256. "source": {
  5257. "type": "git",
  5258. "url": "https://github.com/symfony/polyfill-ctype.git",
  5259. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5260. },
  5261. "dist": {
  5262. "type": "zip",
  5263. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5264. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5265. "shasum": ""
  5266. },
  5267. "require": {
  5268. "php": ">=7.1"
  5269. },
  5270. "suggest": {
  5271. "ext-ctype": "For best performance"
  5272. },
  5273. "type": "library",
  5274. "extra": {
  5275. "branch-alias": {
  5276. "dev-main": "1.20-dev"
  5277. },
  5278. "thanks": {
  5279. "name": "symfony/polyfill",
  5280. "url": "https://github.com/symfony/polyfill"
  5281. }
  5282. },
  5283. "autoload": {
  5284. "psr-4": {
  5285. "Symfony\\Polyfill\\Ctype\\": ""
  5286. },
  5287. "files": [
  5288. "bootstrap.php"
  5289. ]
  5290. },
  5291. "notification-url": "https://packagist.org/downloads/",
  5292. "license": [
  5293. "MIT"
  5294. ],
  5295. "authors": [
  5296. {
  5297. "name": "Gert de Pagter",
  5298. "email": "BackEndTea@gmail.com"
  5299. },
  5300. {
  5301. "name": "Symfony Community",
  5302. "homepage": "https://symfony.com/contributors"
  5303. }
  5304. ],
  5305. "description": "Symfony polyfill for ctype functions",
  5306. "homepage": "https://symfony.com",
  5307. "keywords": [
  5308. "compatibility",
  5309. "ctype",
  5310. "polyfill",
  5311. "portable"
  5312. ],
  5313. "support": {
  5314. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5315. },
  5316. "funding": [
  5317. {
  5318. "url": "https://symfony.com/sponsor",
  5319. "type": "custom"
  5320. },
  5321. {
  5322. "url": "https://github.com/fabpot",
  5323. "type": "github"
  5324. },
  5325. {
  5326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5327. "type": "tidelift"
  5328. }
  5329. ],
  5330. "time": "2020-10-23T14:02:19+00:00"
  5331. },
  5332. {
  5333. "name": "symfony/polyfill-iconv",
  5334. "version": "v1.20.0",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/symfony/polyfill-iconv.git",
  5338. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5343. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5344. "shasum": ""
  5345. },
  5346. "require": {
  5347. "php": ">=7.1"
  5348. },
  5349. "suggest": {
  5350. "ext-iconv": "For best performance"
  5351. },
  5352. "type": "library",
  5353. "extra": {
  5354. "branch-alias": {
  5355. "dev-main": "1.20-dev"
  5356. },
  5357. "thanks": {
  5358. "name": "symfony/polyfill",
  5359. "url": "https://github.com/symfony/polyfill"
  5360. }
  5361. },
  5362. "autoload": {
  5363. "psr-4": {
  5364. "Symfony\\Polyfill\\Iconv\\": ""
  5365. },
  5366. "files": [
  5367. "bootstrap.php"
  5368. ]
  5369. },
  5370. "notification-url": "https://packagist.org/downloads/",
  5371. "license": [
  5372. "MIT"
  5373. ],
  5374. "authors": [
  5375. {
  5376. "name": "Nicolas Grekas",
  5377. "email": "p@tchwork.com"
  5378. },
  5379. {
  5380. "name": "Symfony Community",
  5381. "homepage": "https://symfony.com/contributors"
  5382. }
  5383. ],
  5384. "description": "Symfony polyfill for the Iconv extension",
  5385. "homepage": "https://symfony.com",
  5386. "keywords": [
  5387. "compatibility",
  5388. "iconv",
  5389. "polyfill",
  5390. "portable",
  5391. "shim"
  5392. ],
  5393. "support": {
  5394. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5395. },
  5396. "funding": [
  5397. {
  5398. "url": "https://symfony.com/sponsor",
  5399. "type": "custom"
  5400. },
  5401. {
  5402. "url": "https://github.com/fabpot",
  5403. "type": "github"
  5404. },
  5405. {
  5406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5407. "type": "tidelift"
  5408. }
  5409. ],
  5410. "time": "2020-10-23T14:02:19+00:00"
  5411. },
  5412. {
  5413. "name": "symfony/polyfill-intl-grapheme",
  5414. "version": "v1.20.0",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5418. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5423. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "php": ">=7.1"
  5428. },
  5429. "suggest": {
  5430. "ext-intl": "For best performance"
  5431. },
  5432. "type": "library",
  5433. "extra": {
  5434. "branch-alias": {
  5435. "dev-main": "1.20-dev"
  5436. },
  5437. "thanks": {
  5438. "name": "symfony/polyfill",
  5439. "url": "https://github.com/symfony/polyfill"
  5440. }
  5441. },
  5442. "autoload": {
  5443. "psr-4": {
  5444. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5445. },
  5446. "files": [
  5447. "bootstrap.php"
  5448. ]
  5449. },
  5450. "notification-url": "https://packagist.org/downloads/",
  5451. "license": [
  5452. "MIT"
  5453. ],
  5454. "authors": [
  5455. {
  5456. "name": "Nicolas Grekas",
  5457. "email": "p@tchwork.com"
  5458. },
  5459. {
  5460. "name": "Symfony Community",
  5461. "homepage": "https://symfony.com/contributors"
  5462. }
  5463. ],
  5464. "description": "Symfony polyfill for intl's grapheme_* functions",
  5465. "homepage": "https://symfony.com",
  5466. "keywords": [
  5467. "compatibility",
  5468. "grapheme",
  5469. "intl",
  5470. "polyfill",
  5471. "portable",
  5472. "shim"
  5473. ],
  5474. "support": {
  5475. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5476. },
  5477. "funding": [
  5478. {
  5479. "url": "https://symfony.com/sponsor",
  5480. "type": "custom"
  5481. },
  5482. {
  5483. "url": "https://github.com/fabpot",
  5484. "type": "github"
  5485. },
  5486. {
  5487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5488. "type": "tidelift"
  5489. }
  5490. ],
  5491. "time": "2020-10-23T14:02:19+00:00"
  5492. },
  5493. {
  5494. "name": "symfony/polyfill-intl-idn",
  5495. "version": "v1.20.0",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5499. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5504. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5505. "shasum": ""
  5506. },
  5507. "require": {
  5508. "php": ">=7.1",
  5509. "symfony/polyfill-intl-normalizer": "^1.10",
  5510. "symfony/polyfill-php72": "^1.10"
  5511. },
  5512. "suggest": {
  5513. "ext-intl": "For best performance"
  5514. },
  5515. "type": "library",
  5516. "extra": {
  5517. "branch-alias": {
  5518. "dev-main": "1.20-dev"
  5519. },
  5520. "thanks": {
  5521. "name": "symfony/polyfill",
  5522. "url": "https://github.com/symfony/polyfill"
  5523. }
  5524. },
  5525. "autoload": {
  5526. "psr-4": {
  5527. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5528. },
  5529. "files": [
  5530. "bootstrap.php"
  5531. ]
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Laurent Bassin",
  5540. "email": "laurent@bassin.info"
  5541. },
  5542. {
  5543. "name": "Trevor Rowbotham",
  5544. "email": "trevor.rowbotham@pm.me"
  5545. },
  5546. {
  5547. "name": "Symfony Community",
  5548. "homepage": "https://symfony.com/contributors"
  5549. }
  5550. ],
  5551. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5552. "homepage": "https://symfony.com",
  5553. "keywords": [
  5554. "compatibility",
  5555. "idn",
  5556. "intl",
  5557. "polyfill",
  5558. "portable",
  5559. "shim"
  5560. ],
  5561. "support": {
  5562. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5563. },
  5564. "funding": [
  5565. {
  5566. "url": "https://symfony.com/sponsor",
  5567. "type": "custom"
  5568. },
  5569. {
  5570. "url": "https://github.com/fabpot",
  5571. "type": "github"
  5572. },
  5573. {
  5574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5575. "type": "tidelift"
  5576. }
  5577. ],
  5578. "time": "2020-10-23T14:02:19+00:00"
  5579. },
  5580. {
  5581. "name": "symfony/polyfill-intl-normalizer",
  5582. "version": "v1.20.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5586. "reference": "727d1096295d807c309fb01a851577302394c897"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5591. "reference": "727d1096295d807c309fb01a851577302394c897",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": ">=7.1"
  5596. },
  5597. "suggest": {
  5598. "ext-intl": "For best performance"
  5599. },
  5600. "type": "library",
  5601. "extra": {
  5602. "branch-alias": {
  5603. "dev-main": "1.20-dev"
  5604. },
  5605. "thanks": {
  5606. "name": "symfony/polyfill",
  5607. "url": "https://github.com/symfony/polyfill"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5613. },
  5614. "files": [
  5615. "bootstrap.php"
  5616. ],
  5617. "classmap": [
  5618. "Resources/stubs"
  5619. ]
  5620. },
  5621. "notification-url": "https://packagist.org/downloads/",
  5622. "license": [
  5623. "MIT"
  5624. ],
  5625. "authors": [
  5626. {
  5627. "name": "Nicolas Grekas",
  5628. "email": "p@tchwork.com"
  5629. },
  5630. {
  5631. "name": "Symfony Community",
  5632. "homepage": "https://symfony.com/contributors"
  5633. }
  5634. ],
  5635. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5636. "homepage": "https://symfony.com",
  5637. "keywords": [
  5638. "compatibility",
  5639. "intl",
  5640. "normalizer",
  5641. "polyfill",
  5642. "portable",
  5643. "shim"
  5644. ],
  5645. "support": {
  5646. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5647. },
  5648. "funding": [
  5649. {
  5650. "url": "https://symfony.com/sponsor",
  5651. "type": "custom"
  5652. },
  5653. {
  5654. "url": "https://github.com/fabpot",
  5655. "type": "github"
  5656. },
  5657. {
  5658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5659. "type": "tidelift"
  5660. }
  5661. ],
  5662. "time": "2020-10-23T14:02:19+00:00"
  5663. },
  5664. {
  5665. "name": "symfony/polyfill-mbstring",
  5666. "version": "v1.20.0",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5670. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5675. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5676. "shasum": ""
  5677. },
  5678. "require": {
  5679. "php": ">=7.1"
  5680. },
  5681. "suggest": {
  5682. "ext-mbstring": "For best performance"
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-main": "1.20-dev"
  5688. },
  5689. "thanks": {
  5690. "name": "symfony/polyfill",
  5691. "url": "https://github.com/symfony/polyfill"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Polyfill\\Mbstring\\": ""
  5697. },
  5698. "files": [
  5699. "bootstrap.php"
  5700. ]
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Nicolas Grekas",
  5709. "email": "p@tchwork.com"
  5710. },
  5711. {
  5712. "name": "Symfony Community",
  5713. "homepage": "https://symfony.com/contributors"
  5714. }
  5715. ],
  5716. "description": "Symfony polyfill for the Mbstring extension",
  5717. "homepage": "https://symfony.com",
  5718. "keywords": [
  5719. "compatibility",
  5720. "mbstring",
  5721. "polyfill",
  5722. "portable",
  5723. "shim"
  5724. ],
  5725. "support": {
  5726. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5727. },
  5728. "funding": [
  5729. {
  5730. "url": "https://symfony.com/sponsor",
  5731. "type": "custom"
  5732. },
  5733. {
  5734. "url": "https://github.com/fabpot",
  5735. "type": "github"
  5736. },
  5737. {
  5738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5739. "type": "tidelift"
  5740. }
  5741. ],
  5742. "time": "2020-10-23T14:02:19+00:00"
  5743. },
  5744. {
  5745. "name": "symfony/polyfill-php72",
  5746. "version": "v1.20.0",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/symfony/polyfill-php72.git",
  5750. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5755. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5756. "shasum": ""
  5757. },
  5758. "require": {
  5759. "php": ">=7.1"
  5760. },
  5761. "type": "library",
  5762. "extra": {
  5763. "branch-alias": {
  5764. "dev-main": "1.20-dev"
  5765. },
  5766. "thanks": {
  5767. "name": "symfony/polyfill",
  5768. "url": "https://github.com/symfony/polyfill"
  5769. }
  5770. },
  5771. "autoload": {
  5772. "psr-4": {
  5773. "Symfony\\Polyfill\\Php72\\": ""
  5774. },
  5775. "files": [
  5776. "bootstrap.php"
  5777. ]
  5778. },
  5779. "notification-url": "https://packagist.org/downloads/",
  5780. "license": [
  5781. "MIT"
  5782. ],
  5783. "authors": [
  5784. {
  5785. "name": "Nicolas Grekas",
  5786. "email": "p@tchwork.com"
  5787. },
  5788. {
  5789. "name": "Symfony Community",
  5790. "homepage": "https://symfony.com/contributors"
  5791. }
  5792. ],
  5793. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5794. "homepage": "https://symfony.com",
  5795. "keywords": [
  5796. "compatibility",
  5797. "polyfill",
  5798. "portable",
  5799. "shim"
  5800. ],
  5801. "support": {
  5802. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5803. },
  5804. "funding": [
  5805. {
  5806. "url": "https://symfony.com/sponsor",
  5807. "type": "custom"
  5808. },
  5809. {
  5810. "url": "https://github.com/fabpot",
  5811. "type": "github"
  5812. },
  5813. {
  5814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5815. "type": "tidelift"
  5816. }
  5817. ],
  5818. "time": "2020-10-23T14:02:19+00:00"
  5819. },
  5820. {
  5821. "name": "symfony/polyfill-php73",
  5822. "version": "v1.20.0",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/symfony/polyfill-php73.git",
  5826. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5831. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5832. "shasum": ""
  5833. },
  5834. "require": {
  5835. "php": ">=7.1"
  5836. },
  5837. "type": "library",
  5838. "extra": {
  5839. "branch-alias": {
  5840. "dev-main": "1.20-dev"
  5841. },
  5842. "thanks": {
  5843. "name": "symfony/polyfill",
  5844. "url": "https://github.com/symfony/polyfill"
  5845. }
  5846. },
  5847. "autoload": {
  5848. "psr-4": {
  5849. "Symfony\\Polyfill\\Php73\\": ""
  5850. },
  5851. "files": [
  5852. "bootstrap.php"
  5853. ],
  5854. "classmap": [
  5855. "Resources/stubs"
  5856. ]
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "MIT"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "Nicolas Grekas",
  5865. "email": "p@tchwork.com"
  5866. },
  5867. {
  5868. "name": "Symfony Community",
  5869. "homepage": "https://symfony.com/contributors"
  5870. }
  5871. ],
  5872. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5873. "homepage": "https://symfony.com",
  5874. "keywords": [
  5875. "compatibility",
  5876. "polyfill",
  5877. "portable",
  5878. "shim"
  5879. ],
  5880. "support": {
  5881. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5882. },
  5883. "funding": [
  5884. {
  5885. "url": "https://symfony.com/sponsor",
  5886. "type": "custom"
  5887. },
  5888. {
  5889. "url": "https://github.com/fabpot",
  5890. "type": "github"
  5891. },
  5892. {
  5893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5894. "type": "tidelift"
  5895. }
  5896. ],
  5897. "time": "2020-10-23T14:02:19+00:00"
  5898. },
  5899. {
  5900. "name": "symfony/polyfill-php80",
  5901. "version": "v1.20.0",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/symfony/polyfill-php80.git",
  5905. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5910. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5911. "shasum": ""
  5912. },
  5913. "require": {
  5914. "php": ">=7.1"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "branch-alias": {
  5919. "dev-main": "1.20-dev"
  5920. },
  5921. "thanks": {
  5922. "name": "symfony/polyfill",
  5923. "url": "https://github.com/symfony/polyfill"
  5924. }
  5925. },
  5926. "autoload": {
  5927. "psr-4": {
  5928. "Symfony\\Polyfill\\Php80\\": ""
  5929. },
  5930. "files": [
  5931. "bootstrap.php"
  5932. ],
  5933. "classmap": [
  5934. "Resources/stubs"
  5935. ]
  5936. },
  5937. "notification-url": "https://packagist.org/downloads/",
  5938. "license": [
  5939. "MIT"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "Ion Bazan",
  5944. "email": "ion.bazan@gmail.com"
  5945. },
  5946. {
  5947. "name": "Nicolas Grekas",
  5948. "email": "p@tchwork.com"
  5949. },
  5950. {
  5951. "name": "Symfony Community",
  5952. "homepage": "https://symfony.com/contributors"
  5953. }
  5954. ],
  5955. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5956. "homepage": "https://symfony.com",
  5957. "keywords": [
  5958. "compatibility",
  5959. "polyfill",
  5960. "portable",
  5961. "shim"
  5962. ],
  5963. "support": {
  5964. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5965. },
  5966. "funding": [
  5967. {
  5968. "url": "https://symfony.com/sponsor",
  5969. "type": "custom"
  5970. },
  5971. {
  5972. "url": "https://github.com/fabpot",
  5973. "type": "github"
  5974. },
  5975. {
  5976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5977. "type": "tidelift"
  5978. }
  5979. ],
  5980. "time": "2020-10-23T14:02:19+00:00"
  5981. },
  5982. {
  5983. "name": "symfony/process",
  5984. "version": "v5.2.0",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://github.com/symfony/process.git",
  5988. "reference": "240e74140d4d956265048f3025c0aecbbc302d54"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54",
  5993. "reference": "240e74140d4d956265048f3025c0aecbbc302d54",
  5994. "shasum": ""
  5995. },
  5996. "require": {
  5997. "php": ">=7.2.5",
  5998. "symfony/polyfill-php80": "^1.15"
  5999. },
  6000. "type": "library",
  6001. "autoload": {
  6002. "psr-4": {
  6003. "Symfony\\Component\\Process\\": ""
  6004. },
  6005. "exclude-from-classmap": [
  6006. "/Tests/"
  6007. ]
  6008. },
  6009. "notification-url": "https://packagist.org/downloads/",
  6010. "license": [
  6011. "MIT"
  6012. ],
  6013. "authors": [
  6014. {
  6015. "name": "Fabien Potencier",
  6016. "email": "fabien@symfony.com"
  6017. },
  6018. {
  6019. "name": "Symfony Community",
  6020. "homepage": "https://symfony.com/contributors"
  6021. }
  6022. ],
  6023. "description": "Symfony Process Component",
  6024. "homepage": "https://symfony.com",
  6025. "support": {
  6026. "source": "https://github.com/symfony/process/tree/v5.2.0"
  6027. },
  6028. "funding": [
  6029. {
  6030. "url": "https://symfony.com/sponsor",
  6031. "type": "custom"
  6032. },
  6033. {
  6034. "url": "https://github.com/fabpot",
  6035. "type": "github"
  6036. },
  6037. {
  6038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6039. "type": "tidelift"
  6040. }
  6041. ],
  6042. "time": "2020-11-02T15:47:15+00:00"
  6043. },
  6044. {
  6045. "name": "symfony/routing",
  6046. "version": "v5.2.0",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/symfony/routing.git",
  6050. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/symfony/routing/zipball/130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6055. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": ">=7.2.5",
  6060. "symfony/deprecation-contracts": "^2.1",
  6061. "symfony/polyfill-php80": "^1.15"
  6062. },
  6063. "conflict": {
  6064. "symfony/config": "<5.0",
  6065. "symfony/dependency-injection": "<4.4",
  6066. "symfony/yaml": "<4.4"
  6067. },
  6068. "require-dev": {
  6069. "doctrine/annotations": "^1.7",
  6070. "psr/log": "~1.0",
  6071. "symfony/config": "^5.0",
  6072. "symfony/dependency-injection": "^4.4|^5.0",
  6073. "symfony/expression-language": "^4.4|^5.0",
  6074. "symfony/http-foundation": "^4.4|^5.0",
  6075. "symfony/yaml": "^4.4|^5.0"
  6076. },
  6077. "suggest": {
  6078. "doctrine/annotations": "For using the annotation loader",
  6079. "symfony/config": "For using the all-in-one router or any loader",
  6080. "symfony/expression-language": "For using expression matching",
  6081. "symfony/http-foundation": "For using a Symfony Request object",
  6082. "symfony/yaml": "For using the YAML loader"
  6083. },
  6084. "type": "library",
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Symfony\\Component\\Routing\\": ""
  6088. },
  6089. "exclude-from-classmap": [
  6090. "/Tests/"
  6091. ]
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "Fabien Potencier",
  6100. "email": "fabien@symfony.com"
  6101. },
  6102. {
  6103. "name": "Symfony Community",
  6104. "homepage": "https://symfony.com/contributors"
  6105. }
  6106. ],
  6107. "description": "Symfony Routing Component",
  6108. "homepage": "https://symfony.com",
  6109. "keywords": [
  6110. "router",
  6111. "routing",
  6112. "uri",
  6113. "url"
  6114. ],
  6115. "support": {
  6116. "source": "https://github.com/symfony/routing/tree/v5.2.0"
  6117. },
  6118. "funding": [
  6119. {
  6120. "url": "https://symfony.com/sponsor",
  6121. "type": "custom"
  6122. },
  6123. {
  6124. "url": "https://github.com/fabpot",
  6125. "type": "github"
  6126. },
  6127. {
  6128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6129. "type": "tidelift"
  6130. }
  6131. ],
  6132. "time": "2020-11-27T00:39:34+00:00"
  6133. },
  6134. {
  6135. "name": "symfony/service-contracts",
  6136. "version": "v2.2.0",
  6137. "source": {
  6138. "type": "git",
  6139. "url": "https://github.com/symfony/service-contracts.git",
  6140. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6141. },
  6142. "dist": {
  6143. "type": "zip",
  6144. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6145. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6146. "shasum": ""
  6147. },
  6148. "require": {
  6149. "php": ">=7.2.5",
  6150. "psr/container": "^1.0"
  6151. },
  6152. "suggest": {
  6153. "symfony/service-implementation": ""
  6154. },
  6155. "type": "library",
  6156. "extra": {
  6157. "branch-alias": {
  6158. "dev-master": "2.2-dev"
  6159. },
  6160. "thanks": {
  6161. "name": "symfony/contracts",
  6162. "url": "https://github.com/symfony/contracts"
  6163. }
  6164. },
  6165. "autoload": {
  6166. "psr-4": {
  6167. "Symfony\\Contracts\\Service\\": ""
  6168. }
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "MIT"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Nicolas Grekas",
  6177. "email": "p@tchwork.com"
  6178. },
  6179. {
  6180. "name": "Symfony Community",
  6181. "homepage": "https://symfony.com/contributors"
  6182. }
  6183. ],
  6184. "description": "Generic abstractions related to writing services",
  6185. "homepage": "https://symfony.com",
  6186. "keywords": [
  6187. "abstractions",
  6188. "contracts",
  6189. "decoupling",
  6190. "interfaces",
  6191. "interoperability",
  6192. "standards"
  6193. ],
  6194. "support": {
  6195. "source": "https://github.com/symfony/service-contracts/tree/master"
  6196. },
  6197. "funding": [
  6198. {
  6199. "url": "https://symfony.com/sponsor",
  6200. "type": "custom"
  6201. },
  6202. {
  6203. "url": "https://github.com/fabpot",
  6204. "type": "github"
  6205. },
  6206. {
  6207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6208. "type": "tidelift"
  6209. }
  6210. ],
  6211. "time": "2020-09-07T11:33:47+00:00"
  6212. },
  6213. {
  6214. "name": "symfony/string",
  6215. "version": "v5.2.0",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://github.com/symfony/string.git",
  6219. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://api.github.com/repos/symfony/string/zipball/40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6224. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6225. "shasum": ""
  6226. },
  6227. "require": {
  6228. "php": ">=7.2.5",
  6229. "symfony/polyfill-ctype": "~1.8",
  6230. "symfony/polyfill-intl-grapheme": "~1.0",
  6231. "symfony/polyfill-intl-normalizer": "~1.0",
  6232. "symfony/polyfill-mbstring": "~1.0",
  6233. "symfony/polyfill-php80": "~1.15"
  6234. },
  6235. "require-dev": {
  6236. "symfony/error-handler": "^4.4|^5.0",
  6237. "symfony/http-client": "^4.4|^5.0",
  6238. "symfony/translation-contracts": "^1.1|^2",
  6239. "symfony/var-exporter": "^4.4|^5.0"
  6240. },
  6241. "type": "library",
  6242. "autoload": {
  6243. "psr-4": {
  6244. "Symfony\\Component\\String\\": ""
  6245. },
  6246. "files": [
  6247. "Resources/functions.php"
  6248. ],
  6249. "exclude-from-classmap": [
  6250. "/Tests/"
  6251. ]
  6252. },
  6253. "notification-url": "https://packagist.org/downloads/",
  6254. "license": [
  6255. "MIT"
  6256. ],
  6257. "authors": [
  6258. {
  6259. "name": "Nicolas Grekas",
  6260. "email": "p@tchwork.com"
  6261. },
  6262. {
  6263. "name": "Symfony Community",
  6264. "homepage": "https://symfony.com/contributors"
  6265. }
  6266. ],
  6267. "description": "Symfony String component",
  6268. "homepage": "https://symfony.com",
  6269. "keywords": [
  6270. "grapheme",
  6271. "i18n",
  6272. "string",
  6273. "unicode",
  6274. "utf-8",
  6275. "utf8"
  6276. ],
  6277. "support": {
  6278. "source": "https://github.com/symfony/string/tree/v5.2.0"
  6279. },
  6280. "funding": [
  6281. {
  6282. "url": "https://symfony.com/sponsor",
  6283. "type": "custom"
  6284. },
  6285. {
  6286. "url": "https://github.com/fabpot",
  6287. "type": "github"
  6288. },
  6289. {
  6290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6291. "type": "tidelift"
  6292. }
  6293. ],
  6294. "time": "2020-10-24T12:08:07+00:00"
  6295. },
  6296. {
  6297. "name": "symfony/translation",
  6298. "version": "v5.2.0",
  6299. "source": {
  6300. "type": "git",
  6301. "url": "https://github.com/symfony/translation.git",
  6302. "reference": "52f486a707510884450df461b5a6429dd7a67379"
  6303. },
  6304. "dist": {
  6305. "type": "zip",
  6306. "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379",
  6307. "reference": "52f486a707510884450df461b5a6429dd7a67379",
  6308. "shasum": ""
  6309. },
  6310. "require": {
  6311. "php": ">=7.2.5",
  6312. "symfony/polyfill-mbstring": "~1.0",
  6313. "symfony/polyfill-php80": "^1.15",
  6314. "symfony/translation-contracts": "^2.3"
  6315. },
  6316. "conflict": {
  6317. "symfony/config": "<4.4",
  6318. "symfony/dependency-injection": "<5.0",
  6319. "symfony/http-kernel": "<5.0",
  6320. "symfony/twig-bundle": "<5.0",
  6321. "symfony/yaml": "<4.4"
  6322. },
  6323. "provide": {
  6324. "symfony/translation-implementation": "2.0"
  6325. },
  6326. "require-dev": {
  6327. "psr/log": "~1.0",
  6328. "symfony/config": "^4.4|^5.0",
  6329. "symfony/console": "^4.4|^5.0",
  6330. "symfony/dependency-injection": "^5.0",
  6331. "symfony/finder": "^4.4|^5.0",
  6332. "symfony/http-kernel": "^5.0",
  6333. "symfony/intl": "^4.4|^5.0",
  6334. "symfony/service-contracts": "^1.1.2|^2",
  6335. "symfony/yaml": "^4.4|^5.0"
  6336. },
  6337. "suggest": {
  6338. "psr/log-implementation": "To use logging capability in translator",
  6339. "symfony/config": "",
  6340. "symfony/yaml": ""
  6341. },
  6342. "type": "library",
  6343. "autoload": {
  6344. "files": [
  6345. "Resources/functions.php"
  6346. ],
  6347. "psr-4": {
  6348. "Symfony\\Component\\Translation\\": ""
  6349. },
  6350. "exclude-from-classmap": [
  6351. "/Tests/"
  6352. ]
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Fabien Potencier",
  6361. "email": "fabien@symfony.com"
  6362. },
  6363. {
  6364. "name": "Symfony Community",
  6365. "homepage": "https://symfony.com/contributors"
  6366. }
  6367. ],
  6368. "description": "Symfony Translation Component",
  6369. "homepage": "https://symfony.com",
  6370. "support": {
  6371. "source": "https://github.com/symfony/translation/tree/v5.2.0"
  6372. },
  6373. "funding": [
  6374. {
  6375. "url": "https://symfony.com/sponsor",
  6376. "type": "custom"
  6377. },
  6378. {
  6379. "url": "https://github.com/fabpot",
  6380. "type": "github"
  6381. },
  6382. {
  6383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6384. "type": "tidelift"
  6385. }
  6386. ],
  6387. "time": "2020-11-28T11:24:18+00:00"
  6388. },
  6389. {
  6390. "name": "symfony/translation-contracts",
  6391. "version": "v2.3.0",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/symfony/translation-contracts.git",
  6395. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6400. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": ">=7.2.5"
  6405. },
  6406. "suggest": {
  6407. "symfony/translation-implementation": ""
  6408. },
  6409. "type": "library",
  6410. "extra": {
  6411. "branch-alias": {
  6412. "dev-master": "2.3-dev"
  6413. },
  6414. "thanks": {
  6415. "name": "symfony/contracts",
  6416. "url": "https://github.com/symfony/contracts"
  6417. }
  6418. },
  6419. "autoload": {
  6420. "psr-4": {
  6421. "Symfony\\Contracts\\Translation\\": ""
  6422. }
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Nicolas Grekas",
  6431. "email": "p@tchwork.com"
  6432. },
  6433. {
  6434. "name": "Symfony Community",
  6435. "homepage": "https://symfony.com/contributors"
  6436. }
  6437. ],
  6438. "description": "Generic abstractions related to translation",
  6439. "homepage": "https://symfony.com",
  6440. "keywords": [
  6441. "abstractions",
  6442. "contracts",
  6443. "decoupling",
  6444. "interfaces",
  6445. "interoperability",
  6446. "standards"
  6447. ],
  6448. "support": {
  6449. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://symfony.com/sponsor",
  6454. "type": "custom"
  6455. },
  6456. {
  6457. "url": "https://github.com/fabpot",
  6458. "type": "github"
  6459. },
  6460. {
  6461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6462. "type": "tidelift"
  6463. }
  6464. ],
  6465. "time": "2020-09-28T13:05:58+00:00"
  6466. },
  6467. {
  6468. "name": "symfony/var-dumper",
  6469. "version": "v5.2.0",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/var-dumper.git",
  6473. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26",
  6478. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26",
  6479. "shasum": ""
  6480. },
  6481. "require": {
  6482. "php": ">=7.2.5",
  6483. "symfony/polyfill-mbstring": "~1.0",
  6484. "symfony/polyfill-php80": "^1.15"
  6485. },
  6486. "conflict": {
  6487. "phpunit/phpunit": "<5.4.3",
  6488. "symfony/console": "<4.4"
  6489. },
  6490. "require-dev": {
  6491. "ext-iconv": "*",
  6492. "symfony/console": "^4.4|^5.0",
  6493. "symfony/process": "^4.4|^5.0",
  6494. "twig/twig": "^2.4|^3.0"
  6495. },
  6496. "suggest": {
  6497. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6498. "ext-intl": "To show region name in time zone dump",
  6499. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6500. },
  6501. "bin": [
  6502. "Resources/bin/var-dump-server"
  6503. ],
  6504. "type": "library",
  6505. "autoload": {
  6506. "files": [
  6507. "Resources/functions/dump.php"
  6508. ],
  6509. "psr-4": {
  6510. "Symfony\\Component\\VarDumper\\": ""
  6511. },
  6512. "exclude-from-classmap": [
  6513. "/Tests/"
  6514. ]
  6515. },
  6516. "notification-url": "https://packagist.org/downloads/",
  6517. "license": [
  6518. "MIT"
  6519. ],
  6520. "authors": [
  6521. {
  6522. "name": "Nicolas Grekas",
  6523. "email": "p@tchwork.com"
  6524. },
  6525. {
  6526. "name": "Symfony Community",
  6527. "homepage": "https://symfony.com/contributors"
  6528. }
  6529. ],
  6530. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6531. "homepage": "https://symfony.com",
  6532. "keywords": [
  6533. "debug",
  6534. "dump"
  6535. ],
  6536. "support": {
  6537. "source": "https://github.com/symfony/var-dumper/tree/v5.2.0"
  6538. },
  6539. "funding": [
  6540. {
  6541. "url": "https://symfony.com/sponsor",
  6542. "type": "custom"
  6543. },
  6544. {
  6545. "url": "https://github.com/fabpot",
  6546. "type": "github"
  6547. },
  6548. {
  6549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6550. "type": "tidelift"
  6551. }
  6552. ],
  6553. "time": "2020-11-27T00:39:34+00:00"
  6554. },
  6555. {
  6556. "name": "tijsverkoyen/css-to-inline-styles",
  6557. "version": "2.2.3",
  6558. "source": {
  6559. "type": "git",
  6560. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6561. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6562. },
  6563. "dist": {
  6564. "type": "zip",
  6565. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6566. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6567. "shasum": ""
  6568. },
  6569. "require": {
  6570. "ext-dom": "*",
  6571. "ext-libxml": "*",
  6572. "php": "^5.5 || ^7.0 || ^8.0",
  6573. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6574. },
  6575. "require-dev": {
  6576. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6577. },
  6578. "type": "library",
  6579. "extra": {
  6580. "branch-alias": {
  6581. "dev-master": "2.2.x-dev"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "psr-4": {
  6586. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6587. }
  6588. },
  6589. "notification-url": "https://packagist.org/downloads/",
  6590. "license": [
  6591. "BSD-3-Clause"
  6592. ],
  6593. "authors": [
  6594. {
  6595. "name": "Tijs Verkoyen",
  6596. "email": "css_to_inline_styles@verkoyen.eu",
  6597. "role": "Developer"
  6598. }
  6599. ],
  6600. "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.",
  6601. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6602. "support": {
  6603. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6604. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6605. },
  6606. "time": "2020-07-13T06:12:54+00:00"
  6607. },
  6608. {
  6609. "name": "vlucas/phpdotenv",
  6610. "version": "v4.1.8",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/vlucas/phpdotenv.git",
  6614. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6619. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "php": "^5.5.9 || ^7.0 || ^8.0",
  6624. "phpoption/phpoption": "^1.7.3",
  6625. "symfony/polyfill-ctype": "^1.17"
  6626. },
  6627. "require-dev": {
  6628. "bamarni/composer-bin-plugin": "^1.4.1",
  6629. "ext-filter": "*",
  6630. "ext-pcre": "*",
  6631. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6632. },
  6633. "suggest": {
  6634. "ext-filter": "Required to use the boolean validator.",
  6635. "ext-pcre": "Required to use most of the library."
  6636. },
  6637. "type": "library",
  6638. "extra": {
  6639. "branch-alias": {
  6640. "dev-master": "4.1-dev"
  6641. }
  6642. },
  6643. "autoload": {
  6644. "psr-4": {
  6645. "Dotenv\\": "src/"
  6646. }
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "BSD-3-Clause"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Graham Campbell",
  6655. "email": "graham@alt-three.com",
  6656. "homepage": "https://gjcampbell.co.uk/"
  6657. },
  6658. {
  6659. "name": "Vance Lucas",
  6660. "email": "vance@vancelucas.com",
  6661. "homepage": "https://vancelucas.com/"
  6662. }
  6663. ],
  6664. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6665. "keywords": [
  6666. "dotenv",
  6667. "env",
  6668. "environment"
  6669. ],
  6670. "support": {
  6671. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6672. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  6673. },
  6674. "funding": [
  6675. {
  6676. "url": "https://github.com/GrahamCampbell",
  6677. "type": "github"
  6678. },
  6679. {
  6680. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6681. "type": "tidelift"
  6682. }
  6683. ],
  6684. "time": "2020-07-14T19:22:52+00:00"
  6685. },
  6686. {
  6687. "name": "voku/portable-ascii",
  6688. "version": "1.5.6",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/voku/portable-ascii.git",
  6692. "reference": "80953678b19901e5165c56752d087fc11526017c"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  6697. "reference": "80953678b19901e5165c56752d087fc11526017c",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": ">=7.0.0"
  6702. },
  6703. "require-dev": {
  6704. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6705. },
  6706. "suggest": {
  6707. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6708. },
  6709. "type": "library",
  6710. "autoload": {
  6711. "psr-4": {
  6712. "voku\\": "src/voku/"
  6713. }
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Lars Moelleken",
  6722. "homepage": "http://www.moelleken.org/"
  6723. }
  6724. ],
  6725. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6726. "homepage": "https://github.com/voku/portable-ascii",
  6727. "keywords": [
  6728. "ascii",
  6729. "clean",
  6730. "php"
  6731. ],
  6732. "support": {
  6733. "issues": "https://github.com/voku/portable-ascii/issues",
  6734. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  6735. },
  6736. "funding": [
  6737. {
  6738. "url": "https://www.paypal.me/moelleken",
  6739. "type": "custom"
  6740. },
  6741. {
  6742. "url": "https://github.com/voku",
  6743. "type": "github"
  6744. },
  6745. {
  6746. "url": "https://opencollective.com/portable-ascii",
  6747. "type": "open_collective"
  6748. },
  6749. {
  6750. "url": "https://www.patreon.com/voku",
  6751. "type": "patreon"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2020-11-12T00:07:28+00:00"
  6759. },
  6760. {
  6761. "name": "xhat/payjs",
  6762. "version": "1.5.0",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/xhat/payjs.git",
  6766. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6771. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6772. "shasum": ""
  6773. },
  6774. "type": "library",
  6775. "autoload": {
  6776. "psr-4": {
  6777. "Xhat\\Payjs\\": "src/"
  6778. }
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "MIT"
  6783. ],
  6784. "authors": [
  6785. {
  6786. "name": "andy",
  6787. "email": "andy@popfeng.com"
  6788. }
  6789. ],
  6790. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6791. "support": {
  6792. "issues": "https://github.com/xhat/payjs/issues",
  6793. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6794. },
  6795. "funding": [
  6796. {
  6797. "url": "https://payjs.cn/sponsor/dajjxz",
  6798. "type": "custom"
  6799. }
  6800. ],
  6801. "time": "2020-09-11T06:02:42+00:00"
  6802. },
  6803. {
  6804. "name": "zbrettonye/geetest",
  6805. "version": "v1.2.0",
  6806. "source": {
  6807. "type": "git",
  6808. "url": "https://github.com/ZBrettonYe/geetest.git",
  6809. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  6810. },
  6811. "dist": {
  6812. "type": "zip",
  6813. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6814. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6815. "shasum": ""
  6816. },
  6817. "require": {
  6818. "ext-json": "*",
  6819. "guzzlehttp/guzzle": "^6.3|^7.0",
  6820. "illuminate/routing": "^6|^7|^8",
  6821. "illuminate/support": "^6|^7|^8",
  6822. "php": "^7.2"
  6823. },
  6824. "require-dev": {
  6825. "mockery/mockery": "^1.3.1",
  6826. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  6827. },
  6828. "type": "library",
  6829. "extra": {
  6830. "laravel": {
  6831. "providers": [
  6832. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6833. ],
  6834. "aliases": {
  6835. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6836. }
  6837. }
  6838. },
  6839. "autoload": {
  6840. "psr-4": {
  6841. "ZBrettonYe\\Geetest\\": "src/"
  6842. }
  6843. },
  6844. "notification-url": "https://packagist.org/downloads/",
  6845. "license": [
  6846. "MIT"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "zbrettonye",
  6851. "email": "monkeyblacktech97@gmail.com"
  6852. }
  6853. ],
  6854. "description": "Geetest Package for Laravel6-8",
  6855. "keywords": [
  6856. "geetest",
  6857. "laravel"
  6858. ],
  6859. "support": {
  6860. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  6861. },
  6862. "time": "2020-10-13T20:15:36+00:00"
  6863. },
  6864. {
  6865. "name": "zbrettonye/hcaptcha",
  6866. "version": "V1.1.0",
  6867. "source": {
  6868. "type": "git",
  6869. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6870. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  6871. },
  6872. "dist": {
  6873. "type": "zip",
  6874. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6875. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6876. "shasum": ""
  6877. },
  6878. "require": {
  6879. "guzzlehttp/guzzle": "^6.2|^7.0",
  6880. "illuminate/support": "^6|^7|^8",
  6881. "php": "^7.2"
  6882. },
  6883. "require-dev": {
  6884. "phpunit/phpunit": "~4.8"
  6885. },
  6886. "type": "library",
  6887. "extra": {
  6888. "laravel": {
  6889. "providers": [
  6890. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6891. ],
  6892. "aliases": {
  6893. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6894. }
  6895. }
  6896. },
  6897. "autoload": {
  6898. "psr-4": {
  6899. "ZBrettonYe\\HCaptcha\\": "src/"
  6900. }
  6901. },
  6902. "notification-url": "https://packagist.org/downloads/",
  6903. "license": [
  6904. "MIT"
  6905. ],
  6906. "authors": [
  6907. {
  6908. "name": "zbrettonye",
  6909. "email": "monkeyblacktech97@gmail.com"
  6910. }
  6911. ],
  6912. "description": "hCaptcha For Laravel6~8",
  6913. "keywords": [
  6914. "captcha",
  6915. "hcaptcha",
  6916. "laravel"
  6917. ],
  6918. "support": {
  6919. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  6920. },
  6921. "time": "2020-10-13T21:22:51+00:00"
  6922. },
  6923. {
  6924. "name": "zbrettonye/no-captcha",
  6925. "version": "v1.1.0",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6929. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6934. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "ext-json": "*",
  6939. "guzzlehttp/guzzle": "^6.2|^7.0",
  6940. "illuminate/support": "^6|^7|^8",
  6941. "php": "^7.2"
  6942. },
  6943. "require-dev": {
  6944. "phpunit/phpunit": "~4.8"
  6945. },
  6946. "type": "library",
  6947. "extra": {
  6948. "laravel": {
  6949. "providers": [
  6950. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6951. ],
  6952. "aliases": {
  6953. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6954. }
  6955. }
  6956. },
  6957. "autoload": {
  6958. "psr-4": {
  6959. "ZBrettonYe\\NoCaptcha\\": "src/"
  6960. }
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "MIT"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "zbrettonye",
  6969. "email": "monkeyblacktech97@gmail.com"
  6970. }
  6971. ],
  6972. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  6973. "keywords": [
  6974. "captcha",
  6975. "laravel",
  6976. "no-captcha",
  6977. "recaptcha"
  6978. ],
  6979. "support": {
  6980. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  6981. },
  6982. "time": "2020-10-13T21:35:30+00:00"
  6983. },
  6984. {
  6985. "name": "zoujingli/ip2region",
  6986. "version": "v1.0.9",
  6987. "source": {
  6988. "type": "git",
  6989. "url": "https://github.com/zoujingli/ip2region.git",
  6990. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  6991. },
  6992. "dist": {
  6993. "type": "zip",
  6994. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6995. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6996. "shasum": ""
  6997. },
  6998. "require": {
  6999. "php": ">=5.3"
  7000. },
  7001. "type": "library",
  7002. "autoload": {
  7003. "classmap": [
  7004. "Ip2Region.php"
  7005. ]
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "Apache-2.0"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Anyon",
  7014. "email": "zoujingli@qq.com",
  7015. "homepage": "http://ctolog.com"
  7016. }
  7017. ],
  7018. "description": "Ip2Region for PHP",
  7019. "homepage": "https://github.com/zoujingli/Ip2Region",
  7020. "keywords": [
  7021. "Ip2Region"
  7022. ],
  7023. "support": {
  7024. "issues": "https://github.com/zoujingli/ip2region/issues",
  7025. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7026. },
  7027. "time": "2020-11-06T07:21:55+00:00"
  7028. }
  7029. ],
  7030. "packages-dev": [
  7031. {
  7032. "name": "andrey-helldar/laravel-lang-publisher",
  7033. "version": "v6.2.0",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7037. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7042. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "andrey-helldar/pretty-array": "^1.4.2",
  7047. "andrey-helldar/support": "^1.4.1",
  7048. "ext-json": "*",
  7049. "illuminate/console": "^7.0|^8.0",
  7050. "illuminate/support": "^7.0|^8.0",
  7051. "laravel-lang/lang": "^7.0",
  7052. "php": "^7.2.5|^8.0"
  7053. },
  7054. "require-dev": {
  7055. "mockery/mockery": "^1.3.1",
  7056. "orchestra/testbench": "^5.0|^6.0",
  7057. "phpunit/phpunit": "^8.4|^9.0"
  7058. },
  7059. "suggest": {
  7060. "andrey-helldar/lang-translations": "Translation of main messages",
  7061. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7062. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7063. },
  7064. "type": "library",
  7065. "extra": {
  7066. "laravel": {
  7067. "providers": [
  7068. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7069. ]
  7070. }
  7071. },
  7072. "autoload": {
  7073. "psr-4": {
  7074. "Helldar\\LaravelLangPublisher\\": "src"
  7075. }
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "MIT"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Andrey Helldar",
  7084. "email": "helldar@ai-rus.com"
  7085. }
  7086. ],
  7087. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7088. "keywords": [
  7089. "fortify",
  7090. "i18n",
  7091. "jetstream",
  7092. "lang",
  7093. "languages",
  7094. "laravel",
  7095. "locale",
  7096. "localization",
  7097. "lpm",
  7098. "lumen",
  7099. "publisher",
  7100. "trans",
  7101. "translations",
  7102. "validations"
  7103. ],
  7104. "support": {
  7105. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7106. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://money.yandex.ru/to/410012115955701",
  7111. "type": "custom"
  7112. },
  7113. {
  7114. "url": "https://paypal.me/helldar",
  7115. "type": "custom"
  7116. }
  7117. ],
  7118. "time": "2020-11-30T10:15:29+00:00"
  7119. },
  7120. {
  7121. "name": "andrey-helldar/pretty-array",
  7122. "version": "v1.5.0",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7126. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7131. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "andrey-helldar/support": "^1.16.0",
  7136. "ext-dom": "*",
  7137. "ext-mbstring": "*",
  7138. "php": "^7.1.3|^8.0"
  7139. },
  7140. "require-dev": {
  7141. "phpstan/phpstan": "^0.12.7",
  7142. "phpunit/phpunit": "^7.0|^8.0"
  7143. },
  7144. "suggest": {
  7145. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7146. },
  7147. "type": "library",
  7148. "autoload": {
  7149. "psr-4": {
  7150. "Helldar\\PrettyArray\\": "src/"
  7151. }
  7152. },
  7153. "notification-url": "https://packagist.org/downloads/",
  7154. "license": [
  7155. "MIT"
  7156. ],
  7157. "authors": [
  7158. {
  7159. "name": "Andrey Helldar",
  7160. "email": "helldar@ai-rus.com"
  7161. }
  7162. ],
  7163. "description": "Simple conversion of an array to a pretty view.",
  7164. "keywords": [
  7165. "array",
  7166. "pretty",
  7167. "pretty array"
  7168. ],
  7169. "support": {
  7170. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7171. "source": "https://github.com/andrey-helldar/pretty-array"
  7172. },
  7173. "funding": [
  7174. {
  7175. "url": "https://money.yandex.ru/to/410012115955701",
  7176. "type": "custom"
  7177. },
  7178. {
  7179. "url": "https://paypal.me/helldar",
  7180. "type": "custom"
  7181. }
  7182. ],
  7183. "time": "2020-11-30T10:28:20+00:00"
  7184. },
  7185. {
  7186. "name": "andrey-helldar/support",
  7187. "version": "v1.26.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/andrey-helldar/support.git",
  7191. "reference": "608895d7324d44167a97a88ebec766e99dee92c7"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/608895d7324d44167a97a88ebec766e99dee92c7",
  7196. "reference": "608895d7324d44167a97a88ebec766e99dee92c7",
  7197. "shasum": ""
  7198. },
  7199. "require": {
  7200. "ext-ctype": "*",
  7201. "ext-dom": "*",
  7202. "ext-json": "*",
  7203. "ext-mbstring": "*",
  7204. "php": "^7.1.3|^8.0"
  7205. },
  7206. "require-dev": {
  7207. "ext-bcmath": "*",
  7208. "phpunit/phpunit": "^9.0"
  7209. },
  7210. "suggest": {
  7211. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7212. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7213. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7214. },
  7215. "type": "library",
  7216. "extra": {
  7217. "laravel": {
  7218. "providers": [
  7219. "Helldar\\Support\\ServiceProvider"
  7220. ]
  7221. }
  7222. },
  7223. "autoload": {
  7224. "psr-4": {
  7225. "Helldar\\Support\\": "src/"
  7226. },
  7227. "files": [
  7228. "src/helpers/digit.php",
  7229. "src/helpers/dumper.php",
  7230. "src/helpers/http.php",
  7231. "src/helpers/strings.php"
  7232. ]
  7233. },
  7234. "notification-url": "https://packagist.org/downloads/",
  7235. "license": [
  7236. "MIT"
  7237. ],
  7238. "authors": [
  7239. {
  7240. "name": "Andrey Helldar",
  7241. "email": "helldar@ai-rus.com"
  7242. }
  7243. ],
  7244. "description": "Support package is a collection of helpers and tools for projects.",
  7245. "keywords": [
  7246. "framework",
  7247. "laravel",
  7248. "support",
  7249. "symfony",
  7250. "yii",
  7251. "yii2"
  7252. ],
  7253. "support": {
  7254. "issues": "https://github.com/andrey-helldar/support/issues",
  7255. "source": "https://github.com/andrey-helldar/support"
  7256. },
  7257. "funding": [
  7258. {
  7259. "url": "https://money.yandex.ru/to/410012115955701",
  7260. "type": "custom"
  7261. },
  7262. {
  7263. "url": "https://paypal.me/helldar",
  7264. "type": "custom"
  7265. }
  7266. ],
  7267. "time": "2020-11-30T12:10:47+00:00"
  7268. },
  7269. {
  7270. "name": "arcanedev/laravel-lang",
  7271. "version": "8.0.0",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7275. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7280. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "arcanedev/support": "^7.1.2",
  7285. "caouecs/laravel-lang": "^6.0",
  7286. "php": "^7.2.5"
  7287. },
  7288. "require-dev": {
  7289. "mockery/mockery": "^1.3.1",
  7290. "orchestra/testbench": "^5.0",
  7291. "phpunit/phpunit": "^8.5|^9.0"
  7292. },
  7293. "type": "library",
  7294. "extra": {
  7295. "laravel": {
  7296. "providers": [
  7297. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7298. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7299. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7300. ]
  7301. }
  7302. },
  7303. "autoload": {
  7304. "psr-4": {
  7305. "Arcanedev\\LaravelLang\\": "src/"
  7306. }
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "ARCANEDEV",
  7315. "email": "arcanedev.maroc@gmail.com",
  7316. "homepage": "https://github.com/arcanedev-maroc",
  7317. "role": "Developer"
  7318. }
  7319. ],
  7320. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7321. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7322. "keywords": [
  7323. "arcanedev",
  7324. "lang",
  7325. "languages",
  7326. "laravel",
  7327. "localisation",
  7328. "localization",
  7329. "trans",
  7330. "translations",
  7331. "validations"
  7332. ],
  7333. "support": {
  7334. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7335. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7336. },
  7337. "time": "2020-03-21T21:29:29+00:00"
  7338. },
  7339. {
  7340. "name": "arcanedev/support",
  7341. "version": "7.1.2",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/ARCANEDEV/Support.git",
  7345. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7350. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "illuminate/filesystem": "^7.0",
  7355. "illuminate/support": "^7.0",
  7356. "php": "^7.2.5"
  7357. },
  7358. "require-dev": {
  7359. "orchestra/testbench": "^5.0",
  7360. "phpunit/phpunit": "^8.0|^9.0"
  7361. },
  7362. "type": "library",
  7363. "extra": {
  7364. "branch-alias": {
  7365. "dev-master": "7.x-dev"
  7366. }
  7367. },
  7368. "autoload": {
  7369. "psr-4": {
  7370. "Arcanedev\\Support\\": "src/"
  7371. },
  7372. "files": [
  7373. "helpers.php"
  7374. ]
  7375. },
  7376. "notification-url": "https://packagist.org/downloads/",
  7377. "license": [
  7378. "MIT"
  7379. ],
  7380. "authors": [
  7381. {
  7382. "name": "ARCANEDEV",
  7383. "email": "arcanedev.maroc@gmail.com",
  7384. "homepage": "https://github.com/arcanedev-maroc"
  7385. }
  7386. ],
  7387. "description": "ARCANEDEV Support Helpers",
  7388. "homepage": "https://github.com/ARCANEDEV/Support",
  7389. "keywords": [
  7390. "arcanedev",
  7391. "arcanesoft",
  7392. "laravel",
  7393. "support"
  7394. ],
  7395. "support": {
  7396. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7397. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7398. },
  7399. "time": "2020-03-12T09:28:19+00:00"
  7400. },
  7401. {
  7402. "name": "barryvdh/laravel-debugbar",
  7403. "version": "v3.5.1",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7407. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7412. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7413. "shasum": ""
  7414. },
  7415. "require": {
  7416. "illuminate/routing": "^6|^7|^8",
  7417. "illuminate/session": "^6|^7|^8",
  7418. "illuminate/support": "^6|^7|^8",
  7419. "maximebf/debugbar": "^1.16.3",
  7420. "php": ">=7.2",
  7421. "symfony/debug": "^4.3|^5",
  7422. "symfony/finder": "^4.3|^5"
  7423. },
  7424. "require-dev": {
  7425. "orchestra/testbench-dusk": "^4|^5|^6",
  7426. "phpunit/phpunit": "^8.5|^9.0",
  7427. "squizlabs/php_codesniffer": "^3.5"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "branch-alias": {
  7432. "dev-master": "3.5-dev"
  7433. },
  7434. "laravel": {
  7435. "providers": [
  7436. "Barryvdh\\Debugbar\\ServiceProvider"
  7437. ],
  7438. "aliases": {
  7439. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7440. }
  7441. }
  7442. },
  7443. "autoload": {
  7444. "psr-4": {
  7445. "Barryvdh\\Debugbar\\": "src/"
  7446. },
  7447. "files": [
  7448. "src/helpers.php"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Barry vd. Heuvel",
  7458. "email": "barryvdh@gmail.com"
  7459. }
  7460. ],
  7461. "description": "PHP Debugbar integration for Laravel",
  7462. "keywords": [
  7463. "debug",
  7464. "debugbar",
  7465. "laravel",
  7466. "profiler",
  7467. "webprofiler"
  7468. ],
  7469. "support": {
  7470. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7471. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7472. },
  7473. "funding": [
  7474. {
  7475. "url": "https://github.com/barryvdh",
  7476. "type": "github"
  7477. }
  7478. ],
  7479. "time": "2020-09-07T19:32:39+00:00"
  7480. },
  7481. {
  7482. "name": "barryvdh/laravel-ide-helper",
  7483. "version": "v2.8.2",
  7484. "source": {
  7485. "type": "git",
  7486. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7487. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7488. },
  7489. "dist": {
  7490. "type": "zip",
  7491. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7492. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7493. "shasum": ""
  7494. },
  7495. "require": {
  7496. "barryvdh/reflection-docblock": "^2.0.6",
  7497. "composer/composer": "^1.6 || ^2",
  7498. "doctrine/dbal": "~2.3",
  7499. "ext-json": "*",
  7500. "illuminate/console": "^6 || ^7 || ^8",
  7501. "illuminate/filesystem": "^6 || ^7 || ^8",
  7502. "illuminate/support": "^6 || ^7 || ^8",
  7503. "php": ">=7.2",
  7504. "phpdocumentor/type-resolver": "^1.1.0"
  7505. },
  7506. "require-dev": {
  7507. "ext-pdo_sqlite": "*",
  7508. "friendsofphp/php-cs-fixer": "^2",
  7509. "illuminate/config": "^6 || ^7 || ^8",
  7510. "illuminate/view": "^6 || ^7 || ^8",
  7511. "mockery/mockery": "^1.3.3",
  7512. "orchestra/testbench": "^4 || ^5 || ^6",
  7513. "phpunit/phpunit": "^8.5 || ^9",
  7514. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7515. "vimeo/psalm": "^3.12"
  7516. },
  7517. "type": "library",
  7518. "extra": {
  7519. "branch-alias": {
  7520. "dev-master": "2.8-dev"
  7521. },
  7522. "laravel": {
  7523. "providers": [
  7524. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7525. ]
  7526. }
  7527. },
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Barryvdh\\LaravelIdeHelper\\": "src"
  7531. }
  7532. },
  7533. "notification-url": "https://packagist.org/downloads/",
  7534. "license": [
  7535. "MIT"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Barry vd. Heuvel",
  7540. "email": "barryvdh@gmail.com"
  7541. }
  7542. ],
  7543. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7544. "keywords": [
  7545. "autocomplete",
  7546. "codeintel",
  7547. "helper",
  7548. "ide",
  7549. "laravel",
  7550. "netbeans",
  7551. "phpdoc",
  7552. "phpstorm",
  7553. "sublime"
  7554. ],
  7555. "support": {
  7556. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7557. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  7558. },
  7559. "funding": [
  7560. {
  7561. "url": "https://github.com/barryvdh",
  7562. "type": "github"
  7563. }
  7564. ],
  7565. "time": "2020-12-06T08:55:05+00:00"
  7566. },
  7567. {
  7568. "name": "barryvdh/reflection-docblock",
  7569. "version": "v2.0.6",
  7570. "source": {
  7571. "type": "git",
  7572. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7573. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7574. },
  7575. "dist": {
  7576. "type": "zip",
  7577. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7578. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7579. "shasum": ""
  7580. },
  7581. "require": {
  7582. "php": ">=5.3.3"
  7583. },
  7584. "require-dev": {
  7585. "phpunit/phpunit": "~4.0,<4.5"
  7586. },
  7587. "suggest": {
  7588. "dflydev/markdown": "~1.0",
  7589. "erusev/parsedown": "~1.0"
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-master": "2.0.x-dev"
  7595. }
  7596. },
  7597. "autoload": {
  7598. "psr-0": {
  7599. "Barryvdh": [
  7600. "src/"
  7601. ]
  7602. }
  7603. },
  7604. "notification-url": "https://packagist.org/downloads/",
  7605. "license": [
  7606. "MIT"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Mike van Riel",
  7611. "email": "mike.vanriel@naenius.com"
  7612. }
  7613. ],
  7614. "support": {
  7615. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7616. },
  7617. "time": "2018-12-13T10:34:14+00:00"
  7618. },
  7619. {
  7620. "name": "caouecs/laravel-lang",
  7621. "version": "6.1.4",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/caouecs/lang.git",
  7625. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7630. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7631. "shasum": ""
  7632. },
  7633. "require": {
  7634. "ext-json": "*"
  7635. },
  7636. "suggest": {
  7637. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7638. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7639. "overtrue/laravel-lang": "Command to add languages in your project"
  7640. },
  7641. "type": "library",
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "caouecs",
  7649. "email": "caouecs@caouecs.net"
  7650. }
  7651. ],
  7652. "description": "Languages for Laravel",
  7653. "keywords": [
  7654. "lang",
  7655. "languages",
  7656. "laravel",
  7657. "lpm"
  7658. ],
  7659. "support": {
  7660. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  7661. },
  7662. "abandoned": "https://github.com/Laravel-Lang/lang",
  7663. "time": "2020-07-13T14:35:32+00:00"
  7664. },
  7665. {
  7666. "name": "composer/composer",
  7667. "version": "2.0.8",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://github.com/composer/composer.git",
  7671. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  7676. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  7677. "shasum": ""
  7678. },
  7679. "require": {
  7680. "composer/ca-bundle": "^1.0",
  7681. "composer/semver": "^3.0",
  7682. "composer/spdx-licenses": "^1.2",
  7683. "composer/xdebug-handler": "^1.1",
  7684. "justinrainbow/json-schema": "^5.2.10",
  7685. "php": "^5.3.2 || ^7.0 || ^8.0",
  7686. "psr/log": "^1.0",
  7687. "react/promise": "^1.2 || ^2.7",
  7688. "seld/jsonlint": "^1.4",
  7689. "seld/phar-utils": "^1.0",
  7690. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7691. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7692. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7693. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  7694. },
  7695. "require-dev": {
  7696. "phpspec/prophecy": "^1.10",
  7697. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  7698. },
  7699. "suggest": {
  7700. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7701. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7702. "ext-zlib": "Allow gzip compression of HTTP requests"
  7703. },
  7704. "bin": [
  7705. "bin/composer"
  7706. ],
  7707. "type": "library",
  7708. "extra": {
  7709. "branch-alias": {
  7710. "dev-master": "2.0-dev"
  7711. }
  7712. },
  7713. "autoload": {
  7714. "psr-4": {
  7715. "Composer\\": "src/Composer"
  7716. }
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Nils Adermann",
  7725. "email": "naderman@naderman.de",
  7726. "homepage": "https://www.naderman.de"
  7727. },
  7728. {
  7729. "name": "Jordi Boggiano",
  7730. "email": "j.boggiano@seld.be",
  7731. "homepage": "https://seld.be"
  7732. }
  7733. ],
  7734. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7735. "homepage": "https://getcomposer.org/",
  7736. "keywords": [
  7737. "autoload",
  7738. "dependency",
  7739. "package"
  7740. ],
  7741. "support": {
  7742. "irc": "irc://irc.freenode.org/composer",
  7743. "issues": "https://github.com/composer/composer/issues",
  7744. "source": "https://github.com/composer/composer/tree/2.0.8"
  7745. },
  7746. "funding": [
  7747. {
  7748. "url": "https://packagist.com",
  7749. "type": "custom"
  7750. },
  7751. {
  7752. "url": "https://github.com/composer",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2020-12-03T16:20:39+00:00"
  7761. },
  7762. {
  7763. "name": "composer/semver",
  7764. "version": "3.2.4",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/composer/semver.git",
  7768. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7773. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": "^5.3.2 || ^7.0 || ^8.0"
  7778. },
  7779. "require-dev": {
  7780. "phpstan/phpstan": "^0.12.54",
  7781. "symfony/phpunit-bridge": "^4.2 || ^5"
  7782. },
  7783. "type": "library",
  7784. "extra": {
  7785. "branch-alias": {
  7786. "dev-main": "3.x-dev"
  7787. }
  7788. },
  7789. "autoload": {
  7790. "psr-4": {
  7791. "Composer\\Semver\\": "src"
  7792. }
  7793. },
  7794. "notification-url": "https://packagist.org/downloads/",
  7795. "license": [
  7796. "MIT"
  7797. ],
  7798. "authors": [
  7799. {
  7800. "name": "Nils Adermann",
  7801. "email": "naderman@naderman.de",
  7802. "homepage": "http://www.naderman.de"
  7803. },
  7804. {
  7805. "name": "Jordi Boggiano",
  7806. "email": "j.boggiano@seld.be",
  7807. "homepage": "http://seld.be"
  7808. },
  7809. {
  7810. "name": "Rob Bast",
  7811. "email": "rob.bast@gmail.com",
  7812. "homepage": "http://robbast.nl"
  7813. }
  7814. ],
  7815. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7816. "keywords": [
  7817. "semantic",
  7818. "semver",
  7819. "validation",
  7820. "versioning"
  7821. ],
  7822. "support": {
  7823. "irc": "irc://irc.freenode.org/composer",
  7824. "issues": "https://github.com/composer/semver/issues",
  7825. "source": "https://github.com/composer/semver/tree/3.2.4"
  7826. },
  7827. "funding": [
  7828. {
  7829. "url": "https://packagist.com",
  7830. "type": "custom"
  7831. },
  7832. {
  7833. "url": "https://github.com/composer",
  7834. "type": "github"
  7835. },
  7836. {
  7837. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7838. "type": "tidelift"
  7839. }
  7840. ],
  7841. "time": "2020-11-13T08:59:24+00:00"
  7842. },
  7843. {
  7844. "name": "composer/spdx-licenses",
  7845. "version": "1.5.5",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/composer/spdx-licenses.git",
  7849. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  7854. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  7855. "shasum": ""
  7856. },
  7857. "require": {
  7858. "php": "^5.3.2 || ^7.0 || ^8.0"
  7859. },
  7860. "require-dev": {
  7861. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-main": "1.x-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Composer\\Spdx\\": "src"
  7872. }
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Nils Adermann",
  7881. "email": "naderman@naderman.de",
  7882. "homepage": "http://www.naderman.de"
  7883. },
  7884. {
  7885. "name": "Jordi Boggiano",
  7886. "email": "j.boggiano@seld.be",
  7887. "homepage": "http://seld.be"
  7888. },
  7889. {
  7890. "name": "Rob Bast",
  7891. "email": "rob.bast@gmail.com",
  7892. "homepage": "http://robbast.nl"
  7893. }
  7894. ],
  7895. "description": "SPDX licenses list and validation library.",
  7896. "keywords": [
  7897. "license",
  7898. "spdx",
  7899. "validator"
  7900. ],
  7901. "support": {
  7902. "irc": "irc://irc.freenode.org/composer",
  7903. "issues": "https://github.com/composer/spdx-licenses/issues",
  7904. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  7905. },
  7906. "funding": [
  7907. {
  7908. "url": "https://packagist.com",
  7909. "type": "custom"
  7910. },
  7911. {
  7912. "url": "https://github.com/composer",
  7913. "type": "github"
  7914. },
  7915. {
  7916. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7917. "type": "tidelift"
  7918. }
  7919. ],
  7920. "time": "2020-12-03T16:04:16+00:00"
  7921. },
  7922. {
  7923. "name": "composer/xdebug-handler",
  7924. "version": "1.4.5",
  7925. "source": {
  7926. "type": "git",
  7927. "url": "https://github.com/composer/xdebug-handler.git",
  7928. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  7929. },
  7930. "dist": {
  7931. "type": "zip",
  7932. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  7933. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  7934. "shasum": ""
  7935. },
  7936. "require": {
  7937. "php": "^5.3.2 || ^7.0 || ^8.0",
  7938. "psr/log": "^1.0"
  7939. },
  7940. "require-dev": {
  7941. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7942. },
  7943. "type": "library",
  7944. "autoload": {
  7945. "psr-4": {
  7946. "Composer\\XdebugHandler\\": "src"
  7947. }
  7948. },
  7949. "notification-url": "https://packagist.org/downloads/",
  7950. "license": [
  7951. "MIT"
  7952. ],
  7953. "authors": [
  7954. {
  7955. "name": "John Stevenson",
  7956. "email": "john-stevenson@blueyonder.co.uk"
  7957. }
  7958. ],
  7959. "description": "Restarts a process without Xdebug.",
  7960. "keywords": [
  7961. "Xdebug",
  7962. "performance"
  7963. ],
  7964. "support": {
  7965. "irc": "irc://irc.freenode.org/composer",
  7966. "issues": "https://github.com/composer/xdebug-handler/issues",
  7967. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  7968. },
  7969. "funding": [
  7970. {
  7971. "url": "https://packagist.com",
  7972. "type": "custom"
  7973. },
  7974. {
  7975. "url": "https://github.com/composer",
  7976. "type": "github"
  7977. },
  7978. {
  7979. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7980. "type": "tidelift"
  7981. }
  7982. ],
  7983. "time": "2020-11-13T08:04:11+00:00"
  7984. },
  7985. {
  7986. "name": "doctrine/instantiator",
  7987. "version": "1.4.0",
  7988. "source": {
  7989. "type": "git",
  7990. "url": "https://github.com/doctrine/instantiator.git",
  7991. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7992. },
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7996. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7997. "shasum": ""
  7998. },
  7999. "require": {
  8000. "php": "^7.1 || ^8.0"
  8001. },
  8002. "require-dev": {
  8003. "doctrine/coding-standard": "^8.0",
  8004. "ext-pdo": "*",
  8005. "ext-phar": "*",
  8006. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8007. "phpstan/phpstan": "^0.12",
  8008. "phpstan/phpstan-phpunit": "^0.12",
  8009. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8010. },
  8011. "type": "library",
  8012. "autoload": {
  8013. "psr-4": {
  8014. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8015. }
  8016. },
  8017. "notification-url": "https://packagist.org/downloads/",
  8018. "license": [
  8019. "MIT"
  8020. ],
  8021. "authors": [
  8022. {
  8023. "name": "Marco Pivetta",
  8024. "email": "ocramius@gmail.com",
  8025. "homepage": "https://ocramius.github.io/"
  8026. }
  8027. ],
  8028. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8029. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8030. "keywords": [
  8031. "constructor",
  8032. "instantiate"
  8033. ],
  8034. "support": {
  8035. "issues": "https://github.com/doctrine/instantiator/issues",
  8036. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://www.doctrine-project.org/sponsorship.html",
  8041. "type": "custom"
  8042. },
  8043. {
  8044. "url": "https://www.patreon.com/phpdoctrine",
  8045. "type": "patreon"
  8046. },
  8047. {
  8048. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8049. "type": "tidelift"
  8050. }
  8051. ],
  8052. "time": "2020-11-10T18:47:58+00:00"
  8053. },
  8054. {
  8055. "name": "facade/flare-client-php",
  8056. "version": "1.3.7",
  8057. "source": {
  8058. "type": "git",
  8059. "url": "https://github.com/facade/flare-client-php.git",
  8060. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8061. },
  8062. "dist": {
  8063. "type": "zip",
  8064. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8065. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8066. "shasum": ""
  8067. },
  8068. "require": {
  8069. "facade/ignition-contracts": "~1.0",
  8070. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8071. "php": "^7.1|^8.0",
  8072. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8073. "symfony/mime": "^3.4|^4.0|^5.1",
  8074. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8075. },
  8076. "require-dev": {
  8077. "friendsofphp/php-cs-fixer": "^2.14",
  8078. "phpunit/phpunit": "^7.5.16",
  8079. "spatie/phpunit-snapshot-assertions": "^2.0"
  8080. },
  8081. "type": "library",
  8082. "extra": {
  8083. "branch-alias": {
  8084. "dev-master": "1.0-dev"
  8085. }
  8086. },
  8087. "autoload": {
  8088. "psr-4": {
  8089. "Facade\\FlareClient\\": "src"
  8090. },
  8091. "files": [
  8092. "src/helpers.php"
  8093. ]
  8094. },
  8095. "notification-url": "https://packagist.org/downloads/",
  8096. "license": [
  8097. "MIT"
  8098. ],
  8099. "description": "Send PHP errors to Flare",
  8100. "homepage": "https://github.com/facade/flare-client-php",
  8101. "keywords": [
  8102. "exception",
  8103. "facade",
  8104. "flare",
  8105. "reporting"
  8106. ],
  8107. "support": {
  8108. "issues": "https://github.com/facade/flare-client-php/issues",
  8109. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8110. },
  8111. "funding": [
  8112. {
  8113. "url": "https://github.com/spatie",
  8114. "type": "github"
  8115. }
  8116. ],
  8117. "time": "2020-10-21T16:02:39+00:00"
  8118. },
  8119. {
  8120. "name": "facade/ignition",
  8121. "version": "2.5.3",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/facade/ignition.git",
  8125. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/facade/ignition/zipball/d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8130. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8131. "shasum": ""
  8132. },
  8133. "require": {
  8134. "ext-json": "*",
  8135. "ext-mbstring": "*",
  8136. "facade/flare-client-php": "^1.3.7",
  8137. "facade/ignition-contracts": "^1.0.2",
  8138. "filp/whoops": "^2.4",
  8139. "illuminate/support": "^7.0|^8.0",
  8140. "monolog/monolog": "^2.0",
  8141. "php": "^7.2.5|^8.0",
  8142. "symfony/console": "^5.0",
  8143. "symfony/var-dumper": "^5.0"
  8144. },
  8145. "require-dev": {
  8146. "friendsofphp/php-cs-fixer": "^2.14",
  8147. "mockery/mockery": "^1.3",
  8148. "orchestra/testbench": "^5.0|^6.0",
  8149. "psalm/plugin-laravel": "^1.2"
  8150. },
  8151. "suggest": {
  8152. "laravel/telescope": "^3.1"
  8153. },
  8154. "type": "library",
  8155. "extra": {
  8156. "branch-alias": {
  8157. "dev-master": "2.x-dev"
  8158. },
  8159. "laravel": {
  8160. "providers": [
  8161. "Facade\\Ignition\\IgnitionServiceProvider"
  8162. ],
  8163. "aliases": {
  8164. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8165. }
  8166. }
  8167. },
  8168. "autoload": {
  8169. "psr-4": {
  8170. "Facade\\Ignition\\": "src"
  8171. },
  8172. "files": [
  8173. "src/helpers.php"
  8174. ]
  8175. },
  8176. "notification-url": "https://packagist.org/downloads/",
  8177. "license": [
  8178. "MIT"
  8179. ],
  8180. "description": "A beautiful error page for Laravel applications.",
  8181. "homepage": "https://github.com/facade/ignition",
  8182. "keywords": [
  8183. "error",
  8184. "flare",
  8185. "laravel",
  8186. "page"
  8187. ],
  8188. "support": {
  8189. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8190. "forum": "https://twitter.com/flareappio",
  8191. "issues": "https://github.com/facade/ignition/issues",
  8192. "source": "https://github.com/facade/ignition"
  8193. },
  8194. "time": "2020-12-09T20:25:45+00:00"
  8195. },
  8196. {
  8197. "name": "facade/ignition-contracts",
  8198. "version": "1.0.2",
  8199. "source": {
  8200. "type": "git",
  8201. "url": "https://github.com/facade/ignition-contracts.git",
  8202. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8203. },
  8204. "dist": {
  8205. "type": "zip",
  8206. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8207. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8208. "shasum": ""
  8209. },
  8210. "require": {
  8211. "php": "^7.3|^8.0"
  8212. },
  8213. "require-dev": {
  8214. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8215. "phpunit/phpunit": "^9.3.11",
  8216. "vimeo/psalm": "^3.17.1"
  8217. },
  8218. "type": "library",
  8219. "autoload": {
  8220. "psr-4": {
  8221. "Facade\\IgnitionContracts\\": "src"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "MIT"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Freek Van der Herten",
  8231. "email": "freek@spatie.be",
  8232. "homepage": "https://flareapp.io",
  8233. "role": "Developer"
  8234. }
  8235. ],
  8236. "description": "Solution contracts for Ignition",
  8237. "homepage": "https://github.com/facade/ignition-contracts",
  8238. "keywords": [
  8239. "contracts",
  8240. "flare",
  8241. "ignition"
  8242. ],
  8243. "support": {
  8244. "issues": "https://github.com/facade/ignition-contracts/issues",
  8245. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8246. },
  8247. "time": "2020-10-16T08:27:54+00:00"
  8248. },
  8249. {
  8250. "name": "fakerphp/faker",
  8251. "version": "v1.12.0",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/FakerPHP/Faker.git",
  8255. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8260. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8261. "shasum": ""
  8262. },
  8263. "require": {
  8264. "php": "^7.1 || ^8.0"
  8265. },
  8266. "conflict": {
  8267. "fzaninotto/faker": "*"
  8268. },
  8269. "require-dev": {
  8270. "bamarni/composer-bin-plugin": "^1.4.1",
  8271. "ext-intl": "*",
  8272. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8273. },
  8274. "type": "library",
  8275. "autoload": {
  8276. "psr-4": {
  8277. "Faker\\": "src/Faker/"
  8278. }
  8279. },
  8280. "notification-url": "https://packagist.org/downloads/",
  8281. "license": [
  8282. "MIT"
  8283. ],
  8284. "authors": [
  8285. {
  8286. "name": "François Zaninotto"
  8287. }
  8288. ],
  8289. "description": "Faker is a PHP library that generates fake data for you.",
  8290. "keywords": [
  8291. "data",
  8292. "faker",
  8293. "fixtures"
  8294. ],
  8295. "support": {
  8296. "issues": "https://github.com/FakerPHP/Faker/issues",
  8297. "source": "https://github.com/FakerPHP/Faker/tree/v1.12.0"
  8298. },
  8299. "time": "2020-11-23T09:33:08+00:00"
  8300. },
  8301. {
  8302. "name": "filp/whoops",
  8303. "version": "2.9.1",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/filp/whoops.git",
  8307. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8312. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8313. "shasum": ""
  8314. },
  8315. "require": {
  8316. "php": "^5.5.9 || ^7.0 || ^8.0",
  8317. "psr/log": "^1.0.1"
  8318. },
  8319. "require-dev": {
  8320. "mockery/mockery": "^0.9 || ^1.0",
  8321. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8322. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8323. },
  8324. "suggest": {
  8325. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8326. "whoops/soap": "Formats errors as SOAP responses"
  8327. },
  8328. "type": "library",
  8329. "extra": {
  8330. "branch-alias": {
  8331. "dev-master": "2.7-dev"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "psr-4": {
  8336. "Whoops\\": "src/Whoops/"
  8337. }
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Filipe Dobreira",
  8346. "homepage": "https://github.com/filp",
  8347. "role": "Developer"
  8348. }
  8349. ],
  8350. "description": "php error handling for cool kids",
  8351. "homepage": "https://filp.github.io/whoops/",
  8352. "keywords": [
  8353. "error",
  8354. "exception",
  8355. "handling",
  8356. "library",
  8357. "throwable",
  8358. "whoops"
  8359. ],
  8360. "support": {
  8361. "issues": "https://github.com/filp/whoops/issues",
  8362. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8363. },
  8364. "time": "2020-11-01T12:00:00+00:00"
  8365. },
  8366. {
  8367. "name": "hamcrest/hamcrest-php",
  8368. "version": "v2.0.1",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8372. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8377. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8378. "shasum": ""
  8379. },
  8380. "require": {
  8381. "php": "^5.3|^7.0|^8.0"
  8382. },
  8383. "replace": {
  8384. "cordoval/hamcrest-php": "*",
  8385. "davedevelopment/hamcrest-php": "*",
  8386. "kodova/hamcrest-php": "*"
  8387. },
  8388. "require-dev": {
  8389. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8390. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8391. },
  8392. "type": "library",
  8393. "extra": {
  8394. "branch-alias": {
  8395. "dev-master": "2.1-dev"
  8396. }
  8397. },
  8398. "autoload": {
  8399. "classmap": [
  8400. "hamcrest"
  8401. ]
  8402. },
  8403. "notification-url": "https://packagist.org/downloads/",
  8404. "license": [
  8405. "BSD-3-Clause"
  8406. ],
  8407. "description": "This is the PHP port of Hamcrest Matchers",
  8408. "keywords": [
  8409. "test"
  8410. ],
  8411. "support": {
  8412. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8413. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8414. },
  8415. "time": "2020-07-09T08:09:16+00:00"
  8416. },
  8417. {
  8418. "name": "justinrainbow/json-schema",
  8419. "version": "5.2.10",
  8420. "source": {
  8421. "type": "git",
  8422. "url": "https://github.com/justinrainbow/json-schema.git",
  8423. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8424. },
  8425. "dist": {
  8426. "type": "zip",
  8427. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8428. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8429. "shasum": ""
  8430. },
  8431. "require": {
  8432. "php": ">=5.3.3"
  8433. },
  8434. "require-dev": {
  8435. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8436. "json-schema/json-schema-test-suite": "1.2.0",
  8437. "phpunit/phpunit": "^4.8.35"
  8438. },
  8439. "bin": [
  8440. "bin/validate-json"
  8441. ],
  8442. "type": "library",
  8443. "extra": {
  8444. "branch-alias": {
  8445. "dev-master": "5.0.x-dev"
  8446. }
  8447. },
  8448. "autoload": {
  8449. "psr-4": {
  8450. "JsonSchema\\": "src/JsonSchema/"
  8451. }
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "MIT"
  8456. ],
  8457. "authors": [
  8458. {
  8459. "name": "Bruno Prieto Reis",
  8460. "email": "bruno.p.reis@gmail.com"
  8461. },
  8462. {
  8463. "name": "Justin Rainbow",
  8464. "email": "justin.rainbow@gmail.com"
  8465. },
  8466. {
  8467. "name": "Igor Wiedler",
  8468. "email": "igor@wiedler.ch"
  8469. },
  8470. {
  8471. "name": "Robert Schönthal",
  8472. "email": "seroscho@googlemail.com"
  8473. }
  8474. ],
  8475. "description": "A library to validate a json schema.",
  8476. "homepage": "https://github.com/justinrainbow/json-schema",
  8477. "keywords": [
  8478. "json",
  8479. "schema"
  8480. ],
  8481. "support": {
  8482. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8483. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8484. },
  8485. "time": "2020-05-27T16:41:55+00:00"
  8486. },
  8487. {
  8488. "name": "laravel/telescope",
  8489. "version": "v3.5.1",
  8490. "source": {
  8491. "type": "git",
  8492. "url": "https://github.com/laravel/telescope.git",
  8493. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8494. },
  8495. "dist": {
  8496. "type": "zip",
  8497. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8498. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8499. "shasum": ""
  8500. },
  8501. "require": {
  8502. "ext-json": "*",
  8503. "laravel/framework": "^6.0|^7.0",
  8504. "moontoast/math": "^1.1",
  8505. "php": "^7.2",
  8506. "symfony/var-dumper": "^4.4|^5.0"
  8507. },
  8508. "require-dev": {
  8509. "ext-gd": "*",
  8510. "orchestra/testbench": "^4.0|^5.0"
  8511. },
  8512. "type": "library",
  8513. "extra": {
  8514. "branch-alias": {
  8515. "dev-master": "3.x-dev"
  8516. },
  8517. "laravel": {
  8518. "providers": [
  8519. "Laravel\\Telescope\\TelescopeServiceProvider"
  8520. ]
  8521. }
  8522. },
  8523. "autoload": {
  8524. "psr-4": {
  8525. "Laravel\\Telescope\\": "src/"
  8526. }
  8527. },
  8528. "notification-url": "https://packagist.org/downloads/",
  8529. "license": [
  8530. "MIT"
  8531. ],
  8532. "authors": [
  8533. {
  8534. "name": "Taylor Otwell",
  8535. "email": "taylor@laravel.com"
  8536. },
  8537. {
  8538. "name": "Mohamed Said",
  8539. "email": "mohamed@laravel.com"
  8540. }
  8541. ],
  8542. "description": "An elegant debug assistant for the Laravel framework.",
  8543. "keywords": [
  8544. "debugging",
  8545. "laravel",
  8546. "monitoring"
  8547. ],
  8548. "support": {
  8549. "issues": "https://github.com/laravel/telescope/issues",
  8550. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8551. },
  8552. "time": "2020-07-28T19:12:33+00:00"
  8553. },
  8554. {
  8555. "name": "maximebf/debugbar",
  8556. "version": "v1.16.4",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/maximebf/php-debugbar.git",
  8560. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8565. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "php": "^7.1|^8",
  8570. "psr/log": "^1.0",
  8571. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8572. },
  8573. "require-dev": {
  8574. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8575. },
  8576. "suggest": {
  8577. "kriswallsmith/assetic": "The best way to manage assets",
  8578. "monolog/monolog": "Log using Monolog",
  8579. "predis/predis": "Redis storage"
  8580. },
  8581. "type": "library",
  8582. "extra": {
  8583. "branch-alias": {
  8584. "dev-master": "1.16-dev"
  8585. }
  8586. },
  8587. "autoload": {
  8588. "psr-4": {
  8589. "DebugBar\\": "src/DebugBar/"
  8590. }
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "MIT"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Maxime Bouroumeau-Fuseau",
  8599. "email": "maxime.bouroumeau@gmail.com",
  8600. "homepage": "http://maximebf.com"
  8601. },
  8602. {
  8603. "name": "Barry vd. Heuvel",
  8604. "email": "barryvdh@gmail.com"
  8605. }
  8606. ],
  8607. "description": "Debug bar in the browser for php application",
  8608. "homepage": "https://github.com/maximebf/php-debugbar",
  8609. "keywords": [
  8610. "debug",
  8611. "debugbar"
  8612. ],
  8613. "support": {
  8614. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8615. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8616. },
  8617. "time": "2020-12-07T10:48:48+00:00"
  8618. },
  8619. {
  8620. "name": "mockery/mockery",
  8621. "version": "1.4.2",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/mockery/mockery.git",
  8625. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8630. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8631. "shasum": ""
  8632. },
  8633. "require": {
  8634. "hamcrest/hamcrest-php": "^2.0.1",
  8635. "lib-pcre": ">=7.0",
  8636. "php": "^7.3 || ^8.0"
  8637. },
  8638. "conflict": {
  8639. "phpunit/phpunit": "<8.0"
  8640. },
  8641. "require-dev": {
  8642. "phpunit/phpunit": "^8.5 || ^9.3"
  8643. },
  8644. "type": "library",
  8645. "extra": {
  8646. "branch-alias": {
  8647. "dev-master": "1.4.x-dev"
  8648. }
  8649. },
  8650. "autoload": {
  8651. "psr-0": {
  8652. "Mockery": "library/"
  8653. }
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "BSD-3-Clause"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Pádraic Brady",
  8662. "email": "padraic.brady@gmail.com",
  8663. "homepage": "http://blog.astrumfutura.com"
  8664. },
  8665. {
  8666. "name": "Dave Marshall",
  8667. "email": "dave.marshall@atstsolutions.co.uk",
  8668. "homepage": "http://davedevelopment.co.uk"
  8669. }
  8670. ],
  8671. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8672. "homepage": "https://github.com/mockery/mockery",
  8673. "keywords": [
  8674. "BDD",
  8675. "TDD",
  8676. "library",
  8677. "mock",
  8678. "mock objects",
  8679. "mockery",
  8680. "stub",
  8681. "test",
  8682. "test double",
  8683. "testing"
  8684. ],
  8685. "support": {
  8686. "issues": "https://github.com/mockery/mockery/issues",
  8687. "source": "https://github.com/mockery/mockery/tree/master"
  8688. },
  8689. "time": "2020-08-11T18:10:13+00:00"
  8690. },
  8691. {
  8692. "name": "moontoast/math",
  8693. "version": "1.2.1",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/ramsey/moontoast-math.git",
  8697. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8702. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "php": ">=5.3.3",
  8707. "phpseclib/bcmath_compat": ">=1.0.3"
  8708. },
  8709. "require-dev": {
  8710. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8711. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8712. "satooshi/php-coveralls": "^0.6.1",
  8713. "squizlabs/php_codesniffer": "^2.3"
  8714. },
  8715. "type": "library",
  8716. "autoload": {
  8717. "psr-4": {
  8718. "Moontoast\\Math\\": "src/Moontoast/Math",
  8719. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8720. }
  8721. },
  8722. "notification-url": "https://packagist.org/downloads/",
  8723. "license": [
  8724. "Apache-2.0"
  8725. ],
  8726. "authors": [
  8727. {
  8728. "name": "Ben Ramsey",
  8729. "email": "ben@benramsey.com",
  8730. "homepage": "https://benramsey.com"
  8731. }
  8732. ],
  8733. "description": "A mathematics library, providing functionality for large numbers",
  8734. "homepage": "https://github.com/ramsey/moontoast-math",
  8735. "keywords": [
  8736. "bcmath",
  8737. "math"
  8738. ],
  8739. "support": {
  8740. "issues": "https://github.com/ramsey/moontoast-math/issues",
  8741. "source": "https://github.com/ramsey/moontoast-math"
  8742. },
  8743. "abandoned": "brick/math",
  8744. "time": "2020-01-05T04:49:34+00:00"
  8745. },
  8746. {
  8747. "name": "myclabs/deep-copy",
  8748. "version": "1.10.2",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/myclabs/DeepCopy.git",
  8752. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8757. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "php": "^7.1 || ^8.0"
  8762. },
  8763. "replace": {
  8764. "myclabs/deep-copy": "self.version"
  8765. },
  8766. "require-dev": {
  8767. "doctrine/collections": "^1.0",
  8768. "doctrine/common": "^2.6",
  8769. "phpunit/phpunit": "^7.1"
  8770. },
  8771. "type": "library",
  8772. "autoload": {
  8773. "psr-4": {
  8774. "DeepCopy\\": "src/DeepCopy/"
  8775. },
  8776. "files": [
  8777. "src/DeepCopy/deep_copy.php"
  8778. ]
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "MIT"
  8783. ],
  8784. "description": "Create deep copies (clones) of your objects",
  8785. "keywords": [
  8786. "clone",
  8787. "copy",
  8788. "duplicate",
  8789. "object",
  8790. "object graph"
  8791. ],
  8792. "support": {
  8793. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8794. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8799. "type": "tidelift"
  8800. }
  8801. ],
  8802. "time": "2020-11-13T09:40:50+00:00"
  8803. },
  8804. {
  8805. "name": "nunomaduro/collision",
  8806. "version": "v4.3.0",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/nunomaduro/collision.git",
  8810. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8815. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "facade/ignition-contracts": "^1.0",
  8820. "filp/whoops": "^2.4",
  8821. "php": "^7.2.5 || ^8.0",
  8822. "symfony/console": "^5.0"
  8823. },
  8824. "require-dev": {
  8825. "facade/ignition": "^2.0",
  8826. "fideloper/proxy": "^4.2",
  8827. "friendsofphp/php-cs-fixer": "^2.16",
  8828. "fruitcake/laravel-cors": "^1.0",
  8829. "laravel/framework": "^7.0",
  8830. "laravel/tinker": "^2.0",
  8831. "nunomaduro/larastan": "^0.6",
  8832. "orchestra/testbench": "^5.0",
  8833. "phpstan/phpstan": "^0.12.3",
  8834. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8835. },
  8836. "type": "library",
  8837. "extra": {
  8838. "laravel": {
  8839. "providers": [
  8840. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8841. ]
  8842. }
  8843. },
  8844. "autoload": {
  8845. "psr-4": {
  8846. "NunoMaduro\\Collision\\": "src/"
  8847. }
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Nuno Maduro",
  8856. "email": "enunomaduro@gmail.com"
  8857. }
  8858. ],
  8859. "description": "Cli error handling for console/command-line PHP applications.",
  8860. "keywords": [
  8861. "artisan",
  8862. "cli",
  8863. "command-line",
  8864. "console",
  8865. "error",
  8866. "handling",
  8867. "laravel",
  8868. "laravel-zero",
  8869. "php",
  8870. "symfony"
  8871. ],
  8872. "support": {
  8873. "issues": "https://github.com/nunomaduro/collision/issues",
  8874. "source": "https://github.com/nunomaduro/collision"
  8875. },
  8876. "funding": [
  8877. {
  8878. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8879. "type": "custom"
  8880. },
  8881. {
  8882. "url": "https://github.com/nunomaduro",
  8883. "type": "github"
  8884. },
  8885. {
  8886. "url": "https://www.patreon.com/nunomaduro",
  8887. "type": "patreon"
  8888. }
  8889. ],
  8890. "time": "2020-10-29T15:12:23+00:00"
  8891. },
  8892. {
  8893. "name": "phar-io/manifest",
  8894. "version": "2.0.1",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/phar-io/manifest.git",
  8898. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8903. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "ext-dom": "*",
  8908. "ext-phar": "*",
  8909. "ext-xmlwriter": "*",
  8910. "phar-io/version": "^3.0.1",
  8911. "php": "^7.2 || ^8.0"
  8912. },
  8913. "type": "library",
  8914. "extra": {
  8915. "branch-alias": {
  8916. "dev-master": "2.0.x-dev"
  8917. }
  8918. },
  8919. "autoload": {
  8920. "classmap": [
  8921. "src/"
  8922. ]
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "BSD-3-Clause"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Arne Blankerts",
  8931. "email": "arne@blankerts.de",
  8932. "role": "Developer"
  8933. },
  8934. {
  8935. "name": "Sebastian Heuer",
  8936. "email": "sebastian@phpeople.de",
  8937. "role": "Developer"
  8938. },
  8939. {
  8940. "name": "Sebastian Bergmann",
  8941. "email": "sebastian@phpunit.de",
  8942. "role": "Developer"
  8943. }
  8944. ],
  8945. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8946. "support": {
  8947. "issues": "https://github.com/phar-io/manifest/issues",
  8948. "source": "https://github.com/phar-io/manifest/tree/master"
  8949. },
  8950. "time": "2020-06-27T14:33:11+00:00"
  8951. },
  8952. {
  8953. "name": "phar-io/version",
  8954. "version": "3.0.3",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/phar-io/version.git",
  8958. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/phar-io/version/zipball/726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8963. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "php": "^7.2 || ^8.0"
  8968. },
  8969. "type": "library",
  8970. "autoload": {
  8971. "classmap": [
  8972. "src/"
  8973. ]
  8974. },
  8975. "notification-url": "https://packagist.org/downloads/",
  8976. "license": [
  8977. "BSD-3-Clause"
  8978. ],
  8979. "authors": [
  8980. {
  8981. "name": "Arne Blankerts",
  8982. "email": "arne@blankerts.de",
  8983. "role": "Developer"
  8984. },
  8985. {
  8986. "name": "Sebastian Heuer",
  8987. "email": "sebastian@phpeople.de",
  8988. "role": "Developer"
  8989. },
  8990. {
  8991. "name": "Sebastian Bergmann",
  8992. "email": "sebastian@phpunit.de",
  8993. "role": "Developer"
  8994. }
  8995. ],
  8996. "description": "Library for handling version information and constraints",
  8997. "support": {
  8998. "issues": "https://github.com/phar-io/version/issues",
  8999. "source": "https://github.com/phar-io/version/tree/3.0.3"
  9000. },
  9001. "time": "2020-11-30T09:21:21+00:00"
  9002. },
  9003. {
  9004. "name": "phpdocumentor/reflection-common",
  9005. "version": "2.2.0",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9009. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9014. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": "^7.2 || ^8.0"
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-2.x": "2.x-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "psr-4": {
  9028. "phpDocumentor\\Reflection\\": "src/"
  9029. }
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "MIT"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "Jaap van Otterdijk",
  9038. "email": "opensource@ijaap.nl"
  9039. }
  9040. ],
  9041. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9042. "homepage": "http://www.phpdoc.org",
  9043. "keywords": [
  9044. "FQSEN",
  9045. "phpDocumentor",
  9046. "phpdoc",
  9047. "reflection",
  9048. "static analysis"
  9049. ],
  9050. "support": {
  9051. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9052. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9053. },
  9054. "time": "2020-06-27T09:03:43+00:00"
  9055. },
  9056. {
  9057. "name": "phpdocumentor/reflection-docblock",
  9058. "version": "5.2.2",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9062. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9067. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9068. "shasum": ""
  9069. },
  9070. "require": {
  9071. "ext-filter": "*",
  9072. "php": "^7.2 || ^8.0",
  9073. "phpdocumentor/reflection-common": "^2.2",
  9074. "phpdocumentor/type-resolver": "^1.3",
  9075. "webmozart/assert": "^1.9.1"
  9076. },
  9077. "require-dev": {
  9078. "mockery/mockery": "~1.3.2"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "5.x-dev"
  9084. }
  9085. },
  9086. "autoload": {
  9087. "psr-4": {
  9088. "phpDocumentor\\Reflection\\": "src"
  9089. }
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "MIT"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Mike van Riel",
  9098. "email": "me@mikevanriel.com"
  9099. },
  9100. {
  9101. "name": "Jaap van Otterdijk",
  9102. "email": "account@ijaap.nl"
  9103. }
  9104. ],
  9105. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9106. "support": {
  9107. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9108. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9109. },
  9110. "time": "2020-09-03T19:13:55+00:00"
  9111. },
  9112. {
  9113. "name": "phpdocumentor/type-resolver",
  9114. "version": "1.4.0",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9118. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9123. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9124. "shasum": ""
  9125. },
  9126. "require": {
  9127. "php": "^7.2 || ^8.0",
  9128. "phpdocumentor/reflection-common": "^2.0"
  9129. },
  9130. "require-dev": {
  9131. "ext-tokenizer": "*"
  9132. },
  9133. "type": "library",
  9134. "extra": {
  9135. "branch-alias": {
  9136. "dev-1.x": "1.x-dev"
  9137. }
  9138. },
  9139. "autoload": {
  9140. "psr-4": {
  9141. "phpDocumentor\\Reflection\\": "src"
  9142. }
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "MIT"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Mike van Riel",
  9151. "email": "me@mikevanriel.com"
  9152. }
  9153. ],
  9154. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9155. "support": {
  9156. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9157. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9158. },
  9159. "time": "2020-09-17T18:55:26+00:00"
  9160. },
  9161. {
  9162. "name": "phpseclib/bcmath_compat",
  9163. "version": "1.0.5",
  9164. "source": {
  9165. "type": "git",
  9166. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9167. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  9168. },
  9169. "dist": {
  9170. "type": "zip",
  9171. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  9172. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  9173. "shasum": ""
  9174. },
  9175. "require": {
  9176. "phpseclib/phpseclib": ">=2.0.19"
  9177. },
  9178. "provide": {
  9179. "ext-bcmath": "7.3.5"
  9180. },
  9181. "require-dev": {
  9182. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9183. "squizlabs/php_codesniffer": "^3.0"
  9184. },
  9185. "suggest": {
  9186. "ext-gmp": "Will enable faster math operations"
  9187. },
  9188. "type": "library",
  9189. "autoload": {
  9190. "files": [
  9191. "lib/bcmath.php"
  9192. ],
  9193. "psr-4": {
  9194. "bcmath_compat\\": "src"
  9195. }
  9196. },
  9197. "notification-url": "https://packagist.org/downloads/",
  9198. "license": [
  9199. "MIT"
  9200. ],
  9201. "authors": [
  9202. {
  9203. "name": "Jim Wigginton",
  9204. "email": "terrafrost@php.net",
  9205. "homepage": "http://phpseclib.sourceforge.net"
  9206. }
  9207. ],
  9208. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9209. "keywords": [
  9210. "BigInteger",
  9211. "bcmath",
  9212. "bigdecimal",
  9213. "math",
  9214. "polyfill"
  9215. ],
  9216. "support": {
  9217. "email": "terrafrost@php.net",
  9218. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9219. "source": "https://github.com/phpseclib/bcmath_compat"
  9220. },
  9221. "time": "2020-04-26T16:34:33+00:00"
  9222. },
  9223. {
  9224. "name": "phpseclib/phpseclib",
  9225. "version": "2.0.29",
  9226. "source": {
  9227. "type": "git",
  9228. "url": "https://github.com/phpseclib/phpseclib.git",
  9229. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  9230. },
  9231. "dist": {
  9232. "type": "zip",
  9233. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  9234. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  9235. "shasum": ""
  9236. },
  9237. "require": {
  9238. "php": ">=5.3.3"
  9239. },
  9240. "require-dev": {
  9241. "phing/phing": "~2.7",
  9242. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9243. "squizlabs/php_codesniffer": "~2.0"
  9244. },
  9245. "suggest": {
  9246. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9247. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9248. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9249. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9250. },
  9251. "type": "library",
  9252. "autoload": {
  9253. "files": [
  9254. "phpseclib/bootstrap.php"
  9255. ],
  9256. "psr-4": {
  9257. "phpseclib\\": "phpseclib/"
  9258. }
  9259. },
  9260. "notification-url": "https://packagist.org/downloads/",
  9261. "license": [
  9262. "MIT"
  9263. ],
  9264. "authors": [
  9265. {
  9266. "name": "Jim Wigginton",
  9267. "email": "terrafrost@php.net",
  9268. "role": "Lead Developer"
  9269. },
  9270. {
  9271. "name": "Patrick Monnerat",
  9272. "email": "pm@datasphere.ch",
  9273. "role": "Developer"
  9274. },
  9275. {
  9276. "name": "Andreas Fischer",
  9277. "email": "bantu@phpbb.com",
  9278. "role": "Developer"
  9279. },
  9280. {
  9281. "name": "Hans-Jürgen Petrich",
  9282. "email": "petrich@tronic-media.com",
  9283. "role": "Developer"
  9284. },
  9285. {
  9286. "name": "Graham Campbell",
  9287. "email": "graham@alt-three.com",
  9288. "role": "Developer"
  9289. }
  9290. ],
  9291. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9292. "homepage": "http://phpseclib.sourceforge.net",
  9293. "keywords": [
  9294. "BigInteger",
  9295. "aes",
  9296. "asn.1",
  9297. "asn1",
  9298. "blowfish",
  9299. "crypto",
  9300. "cryptography",
  9301. "encryption",
  9302. "rsa",
  9303. "security",
  9304. "sftp",
  9305. "signature",
  9306. "signing",
  9307. "ssh",
  9308. "twofish",
  9309. "x.509",
  9310. "x509"
  9311. ],
  9312. "support": {
  9313. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9314. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  9315. },
  9316. "funding": [
  9317. {
  9318. "url": "https://github.com/terrafrost",
  9319. "type": "github"
  9320. },
  9321. {
  9322. "url": "https://www.patreon.com/phpseclib",
  9323. "type": "patreon"
  9324. },
  9325. {
  9326. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9327. "type": "tidelift"
  9328. }
  9329. ],
  9330. "time": "2020-09-08T04:24:43+00:00"
  9331. },
  9332. {
  9333. "name": "phpspec/prophecy",
  9334. "version": "1.12.1",
  9335. "source": {
  9336. "type": "git",
  9337. "url": "https://github.com/phpspec/prophecy.git",
  9338. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9339. },
  9340. "dist": {
  9341. "type": "zip",
  9342. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9343. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9344. "shasum": ""
  9345. },
  9346. "require": {
  9347. "doctrine/instantiator": "^1.2",
  9348. "php": "^7.2 || ~8.0, <8.1",
  9349. "phpdocumentor/reflection-docblock": "^5.2",
  9350. "sebastian/comparator": "^3.0 || ^4.0",
  9351. "sebastian/recursion-context": "^3.0 || ^4.0"
  9352. },
  9353. "require-dev": {
  9354. "phpspec/phpspec": "^6.0",
  9355. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9356. },
  9357. "type": "library",
  9358. "extra": {
  9359. "branch-alias": {
  9360. "dev-master": "1.11.x-dev"
  9361. }
  9362. },
  9363. "autoload": {
  9364. "psr-4": {
  9365. "Prophecy\\": "src/Prophecy"
  9366. }
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Konstantin Kudryashov",
  9375. "email": "ever.zet@gmail.com",
  9376. "homepage": "http://everzet.com"
  9377. },
  9378. {
  9379. "name": "Marcello Duarte",
  9380. "email": "marcello.duarte@gmail.com"
  9381. }
  9382. ],
  9383. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9384. "homepage": "https://github.com/phpspec/prophecy",
  9385. "keywords": [
  9386. "Double",
  9387. "Dummy",
  9388. "fake",
  9389. "mock",
  9390. "spy",
  9391. "stub"
  9392. ],
  9393. "support": {
  9394. "issues": "https://github.com/phpspec/prophecy/issues",
  9395. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  9396. },
  9397. "time": "2020-09-29T09:10:42+00:00"
  9398. },
  9399. {
  9400. "name": "phpunit/php-code-coverage",
  9401. "version": "9.2.5",
  9402. "source": {
  9403. "type": "git",
  9404. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9405. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9406. },
  9407. "dist": {
  9408. "type": "zip",
  9409. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9410. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9411. "shasum": ""
  9412. },
  9413. "require": {
  9414. "ext-dom": "*",
  9415. "ext-libxml": "*",
  9416. "ext-xmlwriter": "*",
  9417. "nikic/php-parser": "^4.10.2",
  9418. "php": ">=7.3",
  9419. "phpunit/php-file-iterator": "^3.0.3",
  9420. "phpunit/php-text-template": "^2.0.2",
  9421. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9422. "sebastian/complexity": "^2.0",
  9423. "sebastian/environment": "^5.1.2",
  9424. "sebastian/lines-of-code": "^1.0.3",
  9425. "sebastian/version": "^3.0.1",
  9426. "theseer/tokenizer": "^1.2.0"
  9427. },
  9428. "require-dev": {
  9429. "phpunit/phpunit": "^9.3"
  9430. },
  9431. "suggest": {
  9432. "ext-pcov": "*",
  9433. "ext-xdebug": "*"
  9434. },
  9435. "type": "library",
  9436. "extra": {
  9437. "branch-alias": {
  9438. "dev-master": "9.2-dev"
  9439. }
  9440. },
  9441. "autoload": {
  9442. "classmap": [
  9443. "src/"
  9444. ]
  9445. },
  9446. "notification-url": "https://packagist.org/downloads/",
  9447. "license": [
  9448. "BSD-3-Clause"
  9449. ],
  9450. "authors": [
  9451. {
  9452. "name": "Sebastian Bergmann",
  9453. "email": "sebastian@phpunit.de",
  9454. "role": "lead"
  9455. }
  9456. ],
  9457. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9458. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9459. "keywords": [
  9460. "coverage",
  9461. "testing",
  9462. "xunit"
  9463. ],
  9464. "support": {
  9465. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9466. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9467. },
  9468. "funding": [
  9469. {
  9470. "url": "https://github.com/sebastianbergmann",
  9471. "type": "github"
  9472. }
  9473. ],
  9474. "time": "2020-11-28T06:44:49+00:00"
  9475. },
  9476. {
  9477. "name": "phpunit/php-file-iterator",
  9478. "version": "3.0.5",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9482. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9487. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": ">=7.3"
  9492. },
  9493. "require-dev": {
  9494. "phpunit/phpunit": "^9.3"
  9495. },
  9496. "type": "library",
  9497. "extra": {
  9498. "branch-alias": {
  9499. "dev-master": "3.0-dev"
  9500. }
  9501. },
  9502. "autoload": {
  9503. "classmap": [
  9504. "src/"
  9505. ]
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "BSD-3-Clause"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Sebastian Bergmann",
  9514. "email": "sebastian@phpunit.de",
  9515. "role": "lead"
  9516. }
  9517. ],
  9518. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9519. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9520. "keywords": [
  9521. "filesystem",
  9522. "iterator"
  9523. ],
  9524. "support": {
  9525. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9526. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9527. },
  9528. "funding": [
  9529. {
  9530. "url": "https://github.com/sebastianbergmann",
  9531. "type": "github"
  9532. }
  9533. ],
  9534. "time": "2020-09-28T05:57:25+00:00"
  9535. },
  9536. {
  9537. "name": "phpunit/php-invoker",
  9538. "version": "3.1.1",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9542. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9547. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "php": ">=7.3"
  9552. },
  9553. "require-dev": {
  9554. "ext-pcntl": "*",
  9555. "phpunit/phpunit": "^9.3"
  9556. },
  9557. "suggest": {
  9558. "ext-pcntl": "*"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "3.1-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Sebastian Bergmann",
  9578. "email": "sebastian@phpunit.de",
  9579. "role": "lead"
  9580. }
  9581. ],
  9582. "description": "Invoke callables with a timeout",
  9583. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9584. "keywords": [
  9585. "process"
  9586. ],
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9589. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://github.com/sebastianbergmann",
  9594. "type": "github"
  9595. }
  9596. ],
  9597. "time": "2020-09-28T05:58:55+00:00"
  9598. },
  9599. {
  9600. "name": "phpunit/php-text-template",
  9601. "version": "2.0.4",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9605. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9610. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9611. "shasum": ""
  9612. },
  9613. "require": {
  9614. "php": ">=7.3"
  9615. },
  9616. "require-dev": {
  9617. "phpunit/phpunit": "^9.3"
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "branch-alias": {
  9622. "dev-master": "2.0-dev"
  9623. }
  9624. },
  9625. "autoload": {
  9626. "classmap": [
  9627. "src/"
  9628. ]
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "BSD-3-Clause"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Sebastian Bergmann",
  9637. "email": "sebastian@phpunit.de",
  9638. "role": "lead"
  9639. }
  9640. ],
  9641. "description": "Simple template engine.",
  9642. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9643. "keywords": [
  9644. "template"
  9645. ],
  9646. "support": {
  9647. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9648. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9649. },
  9650. "funding": [
  9651. {
  9652. "url": "https://github.com/sebastianbergmann",
  9653. "type": "github"
  9654. }
  9655. ],
  9656. "time": "2020-10-26T05:33:50+00:00"
  9657. },
  9658. {
  9659. "name": "phpunit/php-timer",
  9660. "version": "5.0.3",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9664. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9669. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9670. "shasum": ""
  9671. },
  9672. "require": {
  9673. "php": ">=7.3"
  9674. },
  9675. "require-dev": {
  9676. "phpunit/phpunit": "^9.3"
  9677. },
  9678. "type": "library",
  9679. "extra": {
  9680. "branch-alias": {
  9681. "dev-master": "5.0-dev"
  9682. }
  9683. },
  9684. "autoload": {
  9685. "classmap": [
  9686. "src/"
  9687. ]
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "BSD-3-Clause"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Sebastian Bergmann",
  9696. "email": "sebastian@phpunit.de",
  9697. "role": "lead"
  9698. }
  9699. ],
  9700. "description": "Utility class for timing",
  9701. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9702. "keywords": [
  9703. "timer"
  9704. ],
  9705. "support": {
  9706. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9707. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9708. },
  9709. "funding": [
  9710. {
  9711. "url": "https://github.com/sebastianbergmann",
  9712. "type": "github"
  9713. }
  9714. ],
  9715. "time": "2020-10-26T13:16:10+00:00"
  9716. },
  9717. {
  9718. "name": "phpunit/phpunit",
  9719. "version": "9.5.0",
  9720. "source": {
  9721. "type": "git",
  9722. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9723. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  9724. },
  9725. "dist": {
  9726. "type": "zip",
  9727. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  9728. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  9729. "shasum": ""
  9730. },
  9731. "require": {
  9732. "doctrine/instantiator": "^1.3.1",
  9733. "ext-dom": "*",
  9734. "ext-json": "*",
  9735. "ext-libxml": "*",
  9736. "ext-mbstring": "*",
  9737. "ext-xml": "*",
  9738. "ext-xmlwriter": "*",
  9739. "myclabs/deep-copy": "^1.10.1",
  9740. "phar-io/manifest": "^2.0.1",
  9741. "phar-io/version": "^3.0.2",
  9742. "php": ">=7.3",
  9743. "phpspec/prophecy": "^1.12.1",
  9744. "phpunit/php-code-coverage": "^9.2.3",
  9745. "phpunit/php-file-iterator": "^3.0.5",
  9746. "phpunit/php-invoker": "^3.1.1",
  9747. "phpunit/php-text-template": "^2.0.3",
  9748. "phpunit/php-timer": "^5.0.2",
  9749. "sebastian/cli-parser": "^1.0.1",
  9750. "sebastian/code-unit": "^1.0.6",
  9751. "sebastian/comparator": "^4.0.5",
  9752. "sebastian/diff": "^4.0.3",
  9753. "sebastian/environment": "^5.1.3",
  9754. "sebastian/exporter": "^4.0.3",
  9755. "sebastian/global-state": "^5.0.1",
  9756. "sebastian/object-enumerator": "^4.0.3",
  9757. "sebastian/resource-operations": "^3.0.3",
  9758. "sebastian/type": "^2.3",
  9759. "sebastian/version": "^3.0.2"
  9760. },
  9761. "require-dev": {
  9762. "ext-pdo": "*",
  9763. "phpspec/prophecy-phpunit": "^2.0.1"
  9764. },
  9765. "suggest": {
  9766. "ext-soap": "*",
  9767. "ext-xdebug": "*"
  9768. },
  9769. "bin": [
  9770. "phpunit"
  9771. ],
  9772. "type": "library",
  9773. "extra": {
  9774. "branch-alias": {
  9775. "dev-master": "9.5-dev"
  9776. }
  9777. },
  9778. "autoload": {
  9779. "classmap": [
  9780. "src/"
  9781. ],
  9782. "files": [
  9783. "src/Framework/Assert/Functions.php"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "BSD-3-Clause"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Sebastian Bergmann",
  9793. "email": "sebastian@phpunit.de",
  9794. "role": "lead"
  9795. }
  9796. ],
  9797. "description": "The PHP Unit Testing framework.",
  9798. "homepage": "https://phpunit.de/",
  9799. "keywords": [
  9800. "phpunit",
  9801. "testing",
  9802. "xunit"
  9803. ],
  9804. "support": {
  9805. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9806. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  9807. },
  9808. "funding": [
  9809. {
  9810. "url": "https://phpunit.de/donate.html",
  9811. "type": "custom"
  9812. },
  9813. {
  9814. "url": "https://github.com/sebastianbergmann",
  9815. "type": "github"
  9816. }
  9817. ],
  9818. "time": "2020-12-04T05:05:53+00:00"
  9819. },
  9820. {
  9821. "name": "react/promise",
  9822. "version": "v2.8.0",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/reactphp/promise.git",
  9826. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9831. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9832. "shasum": ""
  9833. },
  9834. "require": {
  9835. "php": ">=5.4.0"
  9836. },
  9837. "require-dev": {
  9838. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  9839. },
  9840. "type": "library",
  9841. "autoload": {
  9842. "psr-4": {
  9843. "React\\Promise\\": "src/"
  9844. },
  9845. "files": [
  9846. "src/functions_include.php"
  9847. ]
  9848. },
  9849. "notification-url": "https://packagist.org/downloads/",
  9850. "license": [
  9851. "MIT"
  9852. ],
  9853. "authors": [
  9854. {
  9855. "name": "Jan Sorgalla",
  9856. "email": "jsorgalla@gmail.com"
  9857. }
  9858. ],
  9859. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9860. "keywords": [
  9861. "promise",
  9862. "promises"
  9863. ],
  9864. "support": {
  9865. "issues": "https://github.com/reactphp/promise/issues",
  9866. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  9867. },
  9868. "time": "2020-05-12T15:16:56+00:00"
  9869. },
  9870. {
  9871. "name": "sebastian/cli-parser",
  9872. "version": "1.0.1",
  9873. "source": {
  9874. "type": "git",
  9875. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9876. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9877. },
  9878. "dist": {
  9879. "type": "zip",
  9880. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9881. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9882. "shasum": ""
  9883. },
  9884. "require": {
  9885. "php": ">=7.3"
  9886. },
  9887. "require-dev": {
  9888. "phpunit/phpunit": "^9.3"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "1.0-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "classmap": [
  9898. "src/"
  9899. ]
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "BSD-3-Clause"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Sebastian Bergmann",
  9908. "email": "sebastian@phpunit.de",
  9909. "role": "lead"
  9910. }
  9911. ],
  9912. "description": "Library for parsing CLI options",
  9913. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9914. "support": {
  9915. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9916. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9917. },
  9918. "funding": [
  9919. {
  9920. "url": "https://github.com/sebastianbergmann",
  9921. "type": "github"
  9922. }
  9923. ],
  9924. "time": "2020-09-28T06:08:49+00:00"
  9925. },
  9926. {
  9927. "name": "sebastian/code-unit",
  9928. "version": "1.0.8",
  9929. "source": {
  9930. "type": "git",
  9931. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9932. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9933. },
  9934. "dist": {
  9935. "type": "zip",
  9936. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9937. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9938. "shasum": ""
  9939. },
  9940. "require": {
  9941. "php": ">=7.3"
  9942. },
  9943. "require-dev": {
  9944. "phpunit/phpunit": "^9.3"
  9945. },
  9946. "type": "library",
  9947. "extra": {
  9948. "branch-alias": {
  9949. "dev-master": "1.0-dev"
  9950. }
  9951. },
  9952. "autoload": {
  9953. "classmap": [
  9954. "src/"
  9955. ]
  9956. },
  9957. "notification-url": "https://packagist.org/downloads/",
  9958. "license": [
  9959. "BSD-3-Clause"
  9960. ],
  9961. "authors": [
  9962. {
  9963. "name": "Sebastian Bergmann",
  9964. "email": "sebastian@phpunit.de",
  9965. "role": "lead"
  9966. }
  9967. ],
  9968. "description": "Collection of value objects that represent the PHP code units",
  9969. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9970. "support": {
  9971. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9972. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9973. },
  9974. "funding": [
  9975. {
  9976. "url": "https://github.com/sebastianbergmann",
  9977. "type": "github"
  9978. }
  9979. ],
  9980. "time": "2020-10-26T13:08:54+00:00"
  9981. },
  9982. {
  9983. "name": "sebastian/code-unit-reverse-lookup",
  9984. "version": "2.0.3",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9988. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9993. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": ">=7.3"
  9998. },
  9999. "require-dev": {
  10000. "phpunit/phpunit": "^9.3"
  10001. },
  10002. "type": "library",
  10003. "extra": {
  10004. "branch-alias": {
  10005. "dev-master": "2.0-dev"
  10006. }
  10007. },
  10008. "autoload": {
  10009. "classmap": [
  10010. "src/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "BSD-3-Clause"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Sebastian Bergmann",
  10020. "email": "sebastian@phpunit.de"
  10021. }
  10022. ],
  10023. "description": "Looks up which function or method a line of code belongs to",
  10024. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10025. "support": {
  10026. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10027. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/sebastianbergmann",
  10032. "type": "github"
  10033. }
  10034. ],
  10035. "time": "2020-09-28T05:30:19+00:00"
  10036. },
  10037. {
  10038. "name": "sebastian/comparator",
  10039. "version": "4.0.6",
  10040. "source": {
  10041. "type": "git",
  10042. "url": "https://github.com/sebastianbergmann/comparator.git",
  10043. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10044. },
  10045. "dist": {
  10046. "type": "zip",
  10047. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10048. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10049. "shasum": ""
  10050. },
  10051. "require": {
  10052. "php": ">=7.3",
  10053. "sebastian/diff": "^4.0",
  10054. "sebastian/exporter": "^4.0"
  10055. },
  10056. "require-dev": {
  10057. "phpunit/phpunit": "^9.3"
  10058. },
  10059. "type": "library",
  10060. "extra": {
  10061. "branch-alias": {
  10062. "dev-master": "4.0-dev"
  10063. }
  10064. },
  10065. "autoload": {
  10066. "classmap": [
  10067. "src/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "BSD-3-Clause"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Sebastian Bergmann",
  10077. "email": "sebastian@phpunit.de"
  10078. },
  10079. {
  10080. "name": "Jeff Welch",
  10081. "email": "whatthejeff@gmail.com"
  10082. },
  10083. {
  10084. "name": "Volker Dusch",
  10085. "email": "github@wallbash.com"
  10086. },
  10087. {
  10088. "name": "Bernhard Schussek",
  10089. "email": "bschussek@2bepublished.at"
  10090. }
  10091. ],
  10092. "description": "Provides the functionality to compare PHP values for equality",
  10093. "homepage": "https://github.com/sebastianbergmann/comparator",
  10094. "keywords": [
  10095. "comparator",
  10096. "compare",
  10097. "equality"
  10098. ],
  10099. "support": {
  10100. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10101. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/sebastianbergmann",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2020-10-26T15:49:45+00:00"
  10110. },
  10111. {
  10112. "name": "sebastian/complexity",
  10113. "version": "2.0.2",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/sebastianbergmann/complexity.git",
  10117. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10122. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10123. "shasum": ""
  10124. },
  10125. "require": {
  10126. "nikic/php-parser": "^4.7",
  10127. "php": ">=7.3"
  10128. },
  10129. "require-dev": {
  10130. "phpunit/phpunit": "^9.3"
  10131. },
  10132. "type": "library",
  10133. "extra": {
  10134. "branch-alias": {
  10135. "dev-master": "2.0-dev"
  10136. }
  10137. },
  10138. "autoload": {
  10139. "classmap": [
  10140. "src/"
  10141. ]
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "BSD-3-Clause"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Sebastian Bergmann",
  10150. "email": "sebastian@phpunit.de",
  10151. "role": "lead"
  10152. }
  10153. ],
  10154. "description": "Library for calculating the complexity of PHP code units",
  10155. "homepage": "https://github.com/sebastianbergmann/complexity",
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10158. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10159. },
  10160. "funding": [
  10161. {
  10162. "url": "https://github.com/sebastianbergmann",
  10163. "type": "github"
  10164. }
  10165. ],
  10166. "time": "2020-10-26T15:52:27+00:00"
  10167. },
  10168. {
  10169. "name": "sebastian/diff",
  10170. "version": "4.0.4",
  10171. "source": {
  10172. "type": "git",
  10173. "url": "https://github.com/sebastianbergmann/diff.git",
  10174. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10175. },
  10176. "dist": {
  10177. "type": "zip",
  10178. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10179. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10180. "shasum": ""
  10181. },
  10182. "require": {
  10183. "php": ">=7.3"
  10184. },
  10185. "require-dev": {
  10186. "phpunit/phpunit": "^9.3",
  10187. "symfony/process": "^4.2 || ^5"
  10188. },
  10189. "type": "library",
  10190. "extra": {
  10191. "branch-alias": {
  10192. "dev-master": "4.0-dev"
  10193. }
  10194. },
  10195. "autoload": {
  10196. "classmap": [
  10197. "src/"
  10198. ]
  10199. },
  10200. "notification-url": "https://packagist.org/downloads/",
  10201. "license": [
  10202. "BSD-3-Clause"
  10203. ],
  10204. "authors": [
  10205. {
  10206. "name": "Sebastian Bergmann",
  10207. "email": "sebastian@phpunit.de"
  10208. },
  10209. {
  10210. "name": "Kore Nordmann",
  10211. "email": "mail@kore-nordmann.de"
  10212. }
  10213. ],
  10214. "description": "Diff implementation",
  10215. "homepage": "https://github.com/sebastianbergmann/diff",
  10216. "keywords": [
  10217. "diff",
  10218. "udiff",
  10219. "unidiff",
  10220. "unified diff"
  10221. ],
  10222. "support": {
  10223. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10224. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10225. },
  10226. "funding": [
  10227. {
  10228. "url": "https://github.com/sebastianbergmann",
  10229. "type": "github"
  10230. }
  10231. ],
  10232. "time": "2020-10-26T13:10:38+00:00"
  10233. },
  10234. {
  10235. "name": "sebastian/environment",
  10236. "version": "5.1.3",
  10237. "source": {
  10238. "type": "git",
  10239. "url": "https://github.com/sebastianbergmann/environment.git",
  10240. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10241. },
  10242. "dist": {
  10243. "type": "zip",
  10244. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10245. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10246. "shasum": ""
  10247. },
  10248. "require": {
  10249. "php": ">=7.3"
  10250. },
  10251. "require-dev": {
  10252. "phpunit/phpunit": "^9.3"
  10253. },
  10254. "suggest": {
  10255. "ext-posix": "*"
  10256. },
  10257. "type": "library",
  10258. "extra": {
  10259. "branch-alias": {
  10260. "dev-master": "5.1-dev"
  10261. }
  10262. },
  10263. "autoload": {
  10264. "classmap": [
  10265. "src/"
  10266. ]
  10267. },
  10268. "notification-url": "https://packagist.org/downloads/",
  10269. "license": [
  10270. "BSD-3-Clause"
  10271. ],
  10272. "authors": [
  10273. {
  10274. "name": "Sebastian Bergmann",
  10275. "email": "sebastian@phpunit.de"
  10276. }
  10277. ],
  10278. "description": "Provides functionality to handle HHVM/PHP environments",
  10279. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10280. "keywords": [
  10281. "Xdebug",
  10282. "environment",
  10283. "hhvm"
  10284. ],
  10285. "support": {
  10286. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10287. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10288. },
  10289. "funding": [
  10290. {
  10291. "url": "https://github.com/sebastianbergmann",
  10292. "type": "github"
  10293. }
  10294. ],
  10295. "time": "2020-09-28T05:52:38+00:00"
  10296. },
  10297. {
  10298. "name": "sebastian/exporter",
  10299. "version": "4.0.3",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/sebastianbergmann/exporter.git",
  10303. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10308. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10309. "shasum": ""
  10310. },
  10311. "require": {
  10312. "php": ">=7.3",
  10313. "sebastian/recursion-context": "^4.0"
  10314. },
  10315. "require-dev": {
  10316. "ext-mbstring": "*",
  10317. "phpunit/phpunit": "^9.3"
  10318. },
  10319. "type": "library",
  10320. "extra": {
  10321. "branch-alias": {
  10322. "dev-master": "4.0-dev"
  10323. }
  10324. },
  10325. "autoload": {
  10326. "classmap": [
  10327. "src/"
  10328. ]
  10329. },
  10330. "notification-url": "https://packagist.org/downloads/",
  10331. "license": [
  10332. "BSD-3-Clause"
  10333. ],
  10334. "authors": [
  10335. {
  10336. "name": "Sebastian Bergmann",
  10337. "email": "sebastian@phpunit.de"
  10338. },
  10339. {
  10340. "name": "Jeff Welch",
  10341. "email": "whatthejeff@gmail.com"
  10342. },
  10343. {
  10344. "name": "Volker Dusch",
  10345. "email": "github@wallbash.com"
  10346. },
  10347. {
  10348. "name": "Adam Harvey",
  10349. "email": "aharvey@php.net"
  10350. },
  10351. {
  10352. "name": "Bernhard Schussek",
  10353. "email": "bschussek@gmail.com"
  10354. }
  10355. ],
  10356. "description": "Provides the functionality to export PHP variables for visualization",
  10357. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10358. "keywords": [
  10359. "export",
  10360. "exporter"
  10361. ],
  10362. "support": {
  10363. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10364. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10365. },
  10366. "funding": [
  10367. {
  10368. "url": "https://github.com/sebastianbergmann",
  10369. "type": "github"
  10370. }
  10371. ],
  10372. "time": "2020-09-28T05:24:23+00:00"
  10373. },
  10374. {
  10375. "name": "sebastian/global-state",
  10376. "version": "5.0.2",
  10377. "source": {
  10378. "type": "git",
  10379. "url": "https://github.com/sebastianbergmann/global-state.git",
  10380. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10381. },
  10382. "dist": {
  10383. "type": "zip",
  10384. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10385. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10386. "shasum": ""
  10387. },
  10388. "require": {
  10389. "php": ">=7.3",
  10390. "sebastian/object-reflector": "^2.0",
  10391. "sebastian/recursion-context": "^4.0"
  10392. },
  10393. "require-dev": {
  10394. "ext-dom": "*",
  10395. "phpunit/phpunit": "^9.3"
  10396. },
  10397. "suggest": {
  10398. "ext-uopz": "*"
  10399. },
  10400. "type": "library",
  10401. "extra": {
  10402. "branch-alias": {
  10403. "dev-master": "5.0-dev"
  10404. }
  10405. },
  10406. "autoload": {
  10407. "classmap": [
  10408. "src/"
  10409. ]
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "BSD-3-Clause"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Sebastian Bergmann",
  10418. "email": "sebastian@phpunit.de"
  10419. }
  10420. ],
  10421. "description": "Snapshotting of global state",
  10422. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10423. "keywords": [
  10424. "global state"
  10425. ],
  10426. "support": {
  10427. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10428. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10429. },
  10430. "funding": [
  10431. {
  10432. "url": "https://github.com/sebastianbergmann",
  10433. "type": "github"
  10434. }
  10435. ],
  10436. "time": "2020-10-26T15:55:19+00:00"
  10437. },
  10438. {
  10439. "name": "sebastian/lines-of-code",
  10440. "version": "1.0.3",
  10441. "source": {
  10442. "type": "git",
  10443. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10444. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10445. },
  10446. "dist": {
  10447. "type": "zip",
  10448. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10449. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10450. "shasum": ""
  10451. },
  10452. "require": {
  10453. "nikic/php-parser": "^4.6",
  10454. "php": ">=7.3"
  10455. },
  10456. "require-dev": {
  10457. "phpunit/phpunit": "^9.3"
  10458. },
  10459. "type": "library",
  10460. "extra": {
  10461. "branch-alias": {
  10462. "dev-master": "1.0-dev"
  10463. }
  10464. },
  10465. "autoload": {
  10466. "classmap": [
  10467. "src/"
  10468. ]
  10469. },
  10470. "notification-url": "https://packagist.org/downloads/",
  10471. "license": [
  10472. "BSD-3-Clause"
  10473. ],
  10474. "authors": [
  10475. {
  10476. "name": "Sebastian Bergmann",
  10477. "email": "sebastian@phpunit.de",
  10478. "role": "lead"
  10479. }
  10480. ],
  10481. "description": "Library for counting the lines of code in PHP source code",
  10482. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10483. "support": {
  10484. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10485. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10486. },
  10487. "funding": [
  10488. {
  10489. "url": "https://github.com/sebastianbergmann",
  10490. "type": "github"
  10491. }
  10492. ],
  10493. "time": "2020-11-28T06:42:11+00:00"
  10494. },
  10495. {
  10496. "name": "sebastian/object-enumerator",
  10497. "version": "4.0.4",
  10498. "source": {
  10499. "type": "git",
  10500. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10501. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10502. },
  10503. "dist": {
  10504. "type": "zip",
  10505. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10506. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10507. "shasum": ""
  10508. },
  10509. "require": {
  10510. "php": ">=7.3",
  10511. "sebastian/object-reflector": "^2.0",
  10512. "sebastian/recursion-context": "^4.0"
  10513. },
  10514. "require-dev": {
  10515. "phpunit/phpunit": "^9.3"
  10516. },
  10517. "type": "library",
  10518. "extra": {
  10519. "branch-alias": {
  10520. "dev-master": "4.0-dev"
  10521. }
  10522. },
  10523. "autoload": {
  10524. "classmap": [
  10525. "src/"
  10526. ]
  10527. },
  10528. "notification-url": "https://packagist.org/downloads/",
  10529. "license": [
  10530. "BSD-3-Clause"
  10531. ],
  10532. "authors": [
  10533. {
  10534. "name": "Sebastian Bergmann",
  10535. "email": "sebastian@phpunit.de"
  10536. }
  10537. ],
  10538. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10539. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10540. "support": {
  10541. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10542. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10543. },
  10544. "funding": [
  10545. {
  10546. "url": "https://github.com/sebastianbergmann",
  10547. "type": "github"
  10548. }
  10549. ],
  10550. "time": "2020-10-26T13:12:34+00:00"
  10551. },
  10552. {
  10553. "name": "sebastian/object-reflector",
  10554. "version": "2.0.4",
  10555. "source": {
  10556. "type": "git",
  10557. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10558. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10559. },
  10560. "dist": {
  10561. "type": "zip",
  10562. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10563. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10564. "shasum": ""
  10565. },
  10566. "require": {
  10567. "php": ">=7.3"
  10568. },
  10569. "require-dev": {
  10570. "phpunit/phpunit": "^9.3"
  10571. },
  10572. "type": "library",
  10573. "extra": {
  10574. "branch-alias": {
  10575. "dev-master": "2.0-dev"
  10576. }
  10577. },
  10578. "autoload": {
  10579. "classmap": [
  10580. "src/"
  10581. ]
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "BSD-3-Clause"
  10586. ],
  10587. "authors": [
  10588. {
  10589. "name": "Sebastian Bergmann",
  10590. "email": "sebastian@phpunit.de"
  10591. }
  10592. ],
  10593. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10594. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10595. "support": {
  10596. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10597. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10598. },
  10599. "funding": [
  10600. {
  10601. "url": "https://github.com/sebastianbergmann",
  10602. "type": "github"
  10603. }
  10604. ],
  10605. "time": "2020-10-26T13:14:26+00:00"
  10606. },
  10607. {
  10608. "name": "sebastian/recursion-context",
  10609. "version": "4.0.4",
  10610. "source": {
  10611. "type": "git",
  10612. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10613. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10614. },
  10615. "dist": {
  10616. "type": "zip",
  10617. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10618. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10619. "shasum": ""
  10620. },
  10621. "require": {
  10622. "php": ">=7.3"
  10623. },
  10624. "require-dev": {
  10625. "phpunit/phpunit": "^9.3"
  10626. },
  10627. "type": "library",
  10628. "extra": {
  10629. "branch-alias": {
  10630. "dev-master": "4.0-dev"
  10631. }
  10632. },
  10633. "autoload": {
  10634. "classmap": [
  10635. "src/"
  10636. ]
  10637. },
  10638. "notification-url": "https://packagist.org/downloads/",
  10639. "license": [
  10640. "BSD-3-Clause"
  10641. ],
  10642. "authors": [
  10643. {
  10644. "name": "Sebastian Bergmann",
  10645. "email": "sebastian@phpunit.de"
  10646. },
  10647. {
  10648. "name": "Jeff Welch",
  10649. "email": "whatthejeff@gmail.com"
  10650. },
  10651. {
  10652. "name": "Adam Harvey",
  10653. "email": "aharvey@php.net"
  10654. }
  10655. ],
  10656. "description": "Provides functionality to recursively process PHP variables",
  10657. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10658. "support": {
  10659. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10660. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10661. },
  10662. "funding": [
  10663. {
  10664. "url": "https://github.com/sebastianbergmann",
  10665. "type": "github"
  10666. }
  10667. ],
  10668. "time": "2020-10-26T13:17:30+00:00"
  10669. },
  10670. {
  10671. "name": "sebastian/resource-operations",
  10672. "version": "3.0.3",
  10673. "source": {
  10674. "type": "git",
  10675. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10676. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10677. },
  10678. "dist": {
  10679. "type": "zip",
  10680. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10681. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10682. "shasum": ""
  10683. },
  10684. "require": {
  10685. "php": ">=7.3"
  10686. },
  10687. "require-dev": {
  10688. "phpunit/phpunit": "^9.0"
  10689. },
  10690. "type": "library",
  10691. "extra": {
  10692. "branch-alias": {
  10693. "dev-master": "3.0-dev"
  10694. }
  10695. },
  10696. "autoload": {
  10697. "classmap": [
  10698. "src/"
  10699. ]
  10700. },
  10701. "notification-url": "https://packagist.org/downloads/",
  10702. "license": [
  10703. "BSD-3-Clause"
  10704. ],
  10705. "authors": [
  10706. {
  10707. "name": "Sebastian Bergmann",
  10708. "email": "sebastian@phpunit.de"
  10709. }
  10710. ],
  10711. "description": "Provides a list of PHP built-in functions that operate on resources",
  10712. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10713. "support": {
  10714. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10715. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10716. },
  10717. "funding": [
  10718. {
  10719. "url": "https://github.com/sebastianbergmann",
  10720. "type": "github"
  10721. }
  10722. ],
  10723. "time": "2020-09-28T06:45:17+00:00"
  10724. },
  10725. {
  10726. "name": "sebastian/type",
  10727. "version": "2.3.1",
  10728. "source": {
  10729. "type": "git",
  10730. "url": "https://github.com/sebastianbergmann/type.git",
  10731. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  10732. },
  10733. "dist": {
  10734. "type": "zip",
  10735. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10736. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10737. "shasum": ""
  10738. },
  10739. "require": {
  10740. "php": ">=7.3"
  10741. },
  10742. "require-dev": {
  10743. "phpunit/phpunit": "^9.3"
  10744. },
  10745. "type": "library",
  10746. "extra": {
  10747. "branch-alias": {
  10748. "dev-master": "2.3-dev"
  10749. }
  10750. },
  10751. "autoload": {
  10752. "classmap": [
  10753. "src/"
  10754. ]
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "BSD-3-Clause"
  10759. ],
  10760. "authors": [
  10761. {
  10762. "name": "Sebastian Bergmann",
  10763. "email": "sebastian@phpunit.de",
  10764. "role": "lead"
  10765. }
  10766. ],
  10767. "description": "Collection of value objects that represent the types of the PHP type system",
  10768. "homepage": "https://github.com/sebastianbergmann/type",
  10769. "support": {
  10770. "issues": "https://github.com/sebastianbergmann/type/issues",
  10771. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  10772. },
  10773. "funding": [
  10774. {
  10775. "url": "https://github.com/sebastianbergmann",
  10776. "type": "github"
  10777. }
  10778. ],
  10779. "time": "2020-10-26T13:18:59+00:00"
  10780. },
  10781. {
  10782. "name": "sebastian/version",
  10783. "version": "3.0.2",
  10784. "source": {
  10785. "type": "git",
  10786. "url": "https://github.com/sebastianbergmann/version.git",
  10787. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10788. },
  10789. "dist": {
  10790. "type": "zip",
  10791. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10792. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10793. "shasum": ""
  10794. },
  10795. "require": {
  10796. "php": ">=7.3"
  10797. },
  10798. "type": "library",
  10799. "extra": {
  10800. "branch-alias": {
  10801. "dev-master": "3.0-dev"
  10802. }
  10803. },
  10804. "autoload": {
  10805. "classmap": [
  10806. "src/"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "BSD-3-Clause"
  10812. ],
  10813. "authors": [
  10814. {
  10815. "name": "Sebastian Bergmann",
  10816. "email": "sebastian@phpunit.de",
  10817. "role": "lead"
  10818. }
  10819. ],
  10820. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10821. "homepage": "https://github.com/sebastianbergmann/version",
  10822. "support": {
  10823. "issues": "https://github.com/sebastianbergmann/version/issues",
  10824. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10825. },
  10826. "funding": [
  10827. {
  10828. "url": "https://github.com/sebastianbergmann",
  10829. "type": "github"
  10830. }
  10831. ],
  10832. "time": "2020-09-28T06:39:44+00:00"
  10833. },
  10834. {
  10835. "name": "seld/jsonlint",
  10836. "version": "1.8.3",
  10837. "source": {
  10838. "type": "git",
  10839. "url": "https://github.com/Seldaek/jsonlint.git",
  10840. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  10841. },
  10842. "dist": {
  10843. "type": "zip",
  10844. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10845. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10846. "shasum": ""
  10847. },
  10848. "require": {
  10849. "php": "^5.3 || ^7.0 || ^8.0"
  10850. },
  10851. "require-dev": {
  10852. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10853. },
  10854. "bin": [
  10855. "bin/jsonlint"
  10856. ],
  10857. "type": "library",
  10858. "autoload": {
  10859. "psr-4": {
  10860. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10861. }
  10862. },
  10863. "notification-url": "https://packagist.org/downloads/",
  10864. "license": [
  10865. "MIT"
  10866. ],
  10867. "authors": [
  10868. {
  10869. "name": "Jordi Boggiano",
  10870. "email": "j.boggiano@seld.be",
  10871. "homepage": "http://seld.be"
  10872. }
  10873. ],
  10874. "description": "JSON Linter",
  10875. "keywords": [
  10876. "json",
  10877. "linter",
  10878. "parser",
  10879. "validator"
  10880. ],
  10881. "support": {
  10882. "issues": "https://github.com/Seldaek/jsonlint/issues",
  10883. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  10884. },
  10885. "funding": [
  10886. {
  10887. "url": "https://github.com/Seldaek",
  10888. "type": "github"
  10889. },
  10890. {
  10891. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10892. "type": "tidelift"
  10893. }
  10894. ],
  10895. "time": "2020-11-11T09:19:24+00:00"
  10896. },
  10897. {
  10898. "name": "seld/phar-utils",
  10899. "version": "1.1.1",
  10900. "source": {
  10901. "type": "git",
  10902. "url": "https://github.com/Seldaek/phar-utils.git",
  10903. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10904. },
  10905. "dist": {
  10906. "type": "zip",
  10907. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10908. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10909. "shasum": ""
  10910. },
  10911. "require": {
  10912. "php": ">=5.3"
  10913. },
  10914. "type": "library",
  10915. "extra": {
  10916. "branch-alias": {
  10917. "dev-master": "1.x-dev"
  10918. }
  10919. },
  10920. "autoload": {
  10921. "psr-4": {
  10922. "Seld\\PharUtils\\": "src/"
  10923. }
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "MIT"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Jordi Boggiano",
  10932. "email": "j.boggiano@seld.be"
  10933. }
  10934. ],
  10935. "description": "PHAR file format utilities, for when PHP phars you up",
  10936. "keywords": [
  10937. "phar"
  10938. ],
  10939. "support": {
  10940. "issues": "https://github.com/Seldaek/phar-utils/issues",
  10941. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  10942. },
  10943. "time": "2020-07-07T18:42:57+00:00"
  10944. },
  10945. {
  10946. "name": "symfony/debug",
  10947. "version": "v4.4.17",
  10948. "source": {
  10949. "type": "git",
  10950. "url": "https://github.com/symfony/debug.git",
  10951. "reference": "65fe7b49868378319b82da3035fb30801b931c47"
  10952. },
  10953. "dist": {
  10954. "type": "zip",
  10955. "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47",
  10956. "reference": "65fe7b49868378319b82da3035fb30801b931c47",
  10957. "shasum": ""
  10958. },
  10959. "require": {
  10960. "php": ">=7.1.3",
  10961. "psr/log": "~1.0",
  10962. "symfony/polyfill-php80": "^1.15"
  10963. },
  10964. "conflict": {
  10965. "symfony/http-kernel": "<3.4"
  10966. },
  10967. "require-dev": {
  10968. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10969. },
  10970. "type": "library",
  10971. "autoload": {
  10972. "psr-4": {
  10973. "Symfony\\Component\\Debug\\": ""
  10974. },
  10975. "exclude-from-classmap": [
  10976. "/Tests/"
  10977. ]
  10978. },
  10979. "notification-url": "https://packagist.org/downloads/",
  10980. "license": [
  10981. "MIT"
  10982. ],
  10983. "authors": [
  10984. {
  10985. "name": "Fabien Potencier",
  10986. "email": "fabien@symfony.com"
  10987. },
  10988. {
  10989. "name": "Symfony Community",
  10990. "homepage": "https://symfony.com/contributors"
  10991. }
  10992. ],
  10993. "description": "Symfony Debug Component",
  10994. "homepage": "https://symfony.com",
  10995. "support": {
  10996. "source": "https://github.com/symfony/debug/tree/v4.4.17"
  10997. },
  10998. "funding": [
  10999. {
  11000. "url": "https://symfony.com/sponsor",
  11001. "type": "custom"
  11002. },
  11003. {
  11004. "url": "https://github.com/fabpot",
  11005. "type": "github"
  11006. },
  11007. {
  11008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11009. "type": "tidelift"
  11010. }
  11011. ],
  11012. "time": "2020-10-28T20:42:29+00:00"
  11013. },
  11014. {
  11015. "name": "symfony/filesystem",
  11016. "version": "v5.2.0",
  11017. "source": {
  11018. "type": "git",
  11019. "url": "https://github.com/symfony/filesystem.git",
  11020. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238"
  11021. },
  11022. "dist": {
  11023. "type": "zip",
  11024. "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb92ba7f38b037e531908590a858a04d85c0e238",
  11025. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238",
  11026. "shasum": ""
  11027. },
  11028. "require": {
  11029. "php": ">=7.2.5",
  11030. "symfony/polyfill-ctype": "~1.8"
  11031. },
  11032. "type": "library",
  11033. "autoload": {
  11034. "psr-4": {
  11035. "Symfony\\Component\\Filesystem\\": ""
  11036. },
  11037. "exclude-from-classmap": [
  11038. "/Tests/"
  11039. ]
  11040. },
  11041. "notification-url": "https://packagist.org/downloads/",
  11042. "license": [
  11043. "MIT"
  11044. ],
  11045. "authors": [
  11046. {
  11047. "name": "Fabien Potencier",
  11048. "email": "fabien@symfony.com"
  11049. },
  11050. {
  11051. "name": "Symfony Community",
  11052. "homepage": "https://symfony.com/contributors"
  11053. }
  11054. ],
  11055. "description": "Symfony Filesystem Component",
  11056. "homepage": "https://symfony.com",
  11057. "support": {
  11058. "source": "https://github.com/symfony/filesystem/tree/v5.2.0"
  11059. },
  11060. "funding": [
  11061. {
  11062. "url": "https://symfony.com/sponsor",
  11063. "type": "custom"
  11064. },
  11065. {
  11066. "url": "https://github.com/fabpot",
  11067. "type": "github"
  11068. },
  11069. {
  11070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11071. "type": "tidelift"
  11072. }
  11073. ],
  11074. "time": "2020-11-12T09:58:18+00:00"
  11075. },
  11076. {
  11077. "name": "theseer/tokenizer",
  11078. "version": "1.2.0",
  11079. "source": {
  11080. "type": "git",
  11081. "url": "https://github.com/theseer/tokenizer.git",
  11082. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11083. },
  11084. "dist": {
  11085. "type": "zip",
  11086. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11087. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11088. "shasum": ""
  11089. },
  11090. "require": {
  11091. "ext-dom": "*",
  11092. "ext-tokenizer": "*",
  11093. "ext-xmlwriter": "*",
  11094. "php": "^7.2 || ^8.0"
  11095. },
  11096. "type": "library",
  11097. "autoload": {
  11098. "classmap": [
  11099. "src/"
  11100. ]
  11101. },
  11102. "notification-url": "https://packagist.org/downloads/",
  11103. "license": [
  11104. "BSD-3-Clause"
  11105. ],
  11106. "authors": [
  11107. {
  11108. "name": "Arne Blankerts",
  11109. "email": "arne@blankerts.de",
  11110. "role": "Developer"
  11111. }
  11112. ],
  11113. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11114. "support": {
  11115. "issues": "https://github.com/theseer/tokenizer/issues",
  11116. "source": "https://github.com/theseer/tokenizer/tree/master"
  11117. },
  11118. "funding": [
  11119. {
  11120. "url": "https://github.com/theseer",
  11121. "type": "github"
  11122. }
  11123. ],
  11124. "time": "2020-07-12T23:59:07+00:00"
  11125. },
  11126. {
  11127. "name": "webmozart/assert",
  11128. "version": "1.9.1",
  11129. "source": {
  11130. "type": "git",
  11131. "url": "https://github.com/webmozart/assert.git",
  11132. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11133. },
  11134. "dist": {
  11135. "type": "zip",
  11136. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11137. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11138. "shasum": ""
  11139. },
  11140. "require": {
  11141. "php": "^5.3.3 || ^7.0 || ^8.0",
  11142. "symfony/polyfill-ctype": "^1.8"
  11143. },
  11144. "conflict": {
  11145. "phpstan/phpstan": "<0.12.20",
  11146. "vimeo/psalm": "<3.9.1"
  11147. },
  11148. "require-dev": {
  11149. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11150. },
  11151. "type": "library",
  11152. "autoload": {
  11153. "psr-4": {
  11154. "Webmozart\\Assert\\": "src/"
  11155. }
  11156. },
  11157. "notification-url": "https://packagist.org/downloads/",
  11158. "license": [
  11159. "MIT"
  11160. ],
  11161. "authors": [
  11162. {
  11163. "name": "Bernhard Schussek",
  11164. "email": "bschussek@gmail.com"
  11165. }
  11166. ],
  11167. "description": "Assertions to validate method input/output with nice error messages.",
  11168. "keywords": [
  11169. "assert",
  11170. "check",
  11171. "validate"
  11172. ],
  11173. "support": {
  11174. "issues": "https://github.com/webmozart/assert/issues",
  11175. "source": "https://github.com/webmozart/assert/tree/master"
  11176. },
  11177. "time": "2020-07-08T17:02:28+00:00"
  11178. }
  11179. ],
  11180. "aliases": [],
  11181. "minimum-stability": "dev",
  11182. "stability-flags": [],
  11183. "prefer-stable": true,
  11184. "prefer-lowest": false,
  11185. "platform": {
  11186. "php": "^7.2.5|^8.0",
  11187. "ext-json": "*",
  11188. "ext-mbstring": "*",
  11189. "ext-openssl": "*",
  11190. "ext-simplexml": "*"
  11191. },
  11192. "platform-dev": [],
  11193. "plugin-api-version": "2.0.0"
  11194. }