composer.lock 295 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282
  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": "ce2fb9151a5b29afa4b1e2ed2f5c7579",
  8. "packages": [
  9. {
  10. "name": "barryvdh/laravel-dompdf",
  11. "version": "v0.8.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  15. "reference": "30310e0a675462bf2aa9d448c8dcbf57fbcc517d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/30310e0a675462bf2aa9d448c8dcbf57fbcc517d",
  20. "reference": "30310e0a675462bf2aa9d448c8dcbf57fbcc517d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dompdf/dompdf": "^0.8",
  25. "illuminate/support": "^5.5|^6|^7|^8",
  26. "php": ">=7"
  27. },
  28. "type": "library",
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "0.8-dev"
  32. },
  33. "laravel": {
  34. "providers": [
  35. "Barryvdh\\DomPDF\\ServiceProvider"
  36. ],
  37. "aliases": {
  38. "PDF": "Barryvdh\\DomPDF\\Facade"
  39. }
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Barryvdh\\DomPDF\\": "src"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Barry vd. Heuvel",
  54. "email": "barryvdh@gmail.com"
  55. }
  56. ],
  57. "description": "A DOMPDF Wrapper for Laravel",
  58. "keywords": [
  59. "dompdf",
  60. "laravel",
  61. "pdf"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  65. "source": "https://github.com/barryvdh/laravel-dompdf/tree/master"
  66. },
  67. "funding": [
  68. {
  69. "url": "https://github.com/barryvdh",
  70. "type": "github"
  71. }
  72. ],
  73. "time": "2020-09-07T11:50:18+00:00"
  74. },
  75. {
  76. "name": "binarytorch/larecipe",
  77. "version": "v1.4.0",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/saleem-hadad/larecipe.git",
  81. "reference": "1d7e8b45ca6d16cb85f00bdda10cf923ff9c3b06"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/saleem-hadad/larecipe/zipball/1d7e8b45ca6d16cb85f00bdda10cf923ff9c3b06",
  86. "reference": "1d7e8b45ca6d16cb85f00bdda10cf923ff9c3b06",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "erusev/parsedown-extra": "^0.7.1",
  91. "illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  92. "illuminate/view": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  93. "symfony/dom-crawler": "^4.1"
  94. },
  95. "require-dev": {
  96. "laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  97. "orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0|~3.7.0",
  98. "phpunit/phpunit": "~7.0|~7.5"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "laravel": {
  103. "providers": [
  104. "BinaryTorch\\LaRecipe\\LaRecipeServiceProvider"
  105. ]
  106. }
  107. },
  108. "autoload": {
  109. "psr-4": {
  110. "BinaryTorch\\LaRecipe\\": "src/"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Saleem Hadad",
  120. "email": "saleem@binary-torch.com"
  121. }
  122. ],
  123. "description": "Generate gorgeous recipes for your Laravel applications using MarkDown",
  124. "keywords": [
  125. "api",
  126. "docs",
  127. "documentation",
  128. "laravel",
  129. "markdown"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/saleem-hadad/larecipe/issues",
  133. "source": "https://github.com/saleem-hadad/larecipe"
  134. },
  135. "time": "2019-02-28T09:33:42+00:00"
  136. },
  137. {
  138. "name": "dnoegel/php-xdg-base-dir",
  139. "version": "v0.1.1",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  143. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  148. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "php": ">=5.3.2"
  153. },
  154. "require-dev": {
  155. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "XdgBaseDir\\": "src/"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "MIT"
  166. ],
  167. "description": "implementation of xdg base directory specification for php",
  168. "support": {
  169. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  170. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  171. },
  172. "time": "2019-12-04T15:06:13+00:00"
  173. },
  174. {
  175. "name": "doctrine/cache",
  176. "version": "1.10.2",
  177. "source": {
  178. "type": "git",
  179. "url": "https://github.com/doctrine/cache.git",
  180. "reference": "13e3381b25847283a91948d04640543941309727"
  181. },
  182. "dist": {
  183. "type": "zip",
  184. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  185. "reference": "13e3381b25847283a91948d04640543941309727",
  186. "shasum": ""
  187. },
  188. "require": {
  189. "php": "~7.1 || ^8.0"
  190. },
  191. "conflict": {
  192. "doctrine/common": ">2.2,<2.4"
  193. },
  194. "require-dev": {
  195. "alcaeus/mongo-php-adapter": "^1.1",
  196. "doctrine/coding-standard": "^6.0",
  197. "mongodb/mongodb": "^1.1",
  198. "phpunit/phpunit": "^7.0",
  199. "predis/predis": "~1.0"
  200. },
  201. "suggest": {
  202. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  203. },
  204. "type": "library",
  205. "extra": {
  206. "branch-alias": {
  207. "dev-master": "1.9.x-dev"
  208. }
  209. },
  210. "autoload": {
  211. "psr-4": {
  212. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Guilherme Blanco",
  222. "email": "guilhermeblanco@gmail.com"
  223. },
  224. {
  225. "name": "Roman Borschel",
  226. "email": "roman@code-factory.org"
  227. },
  228. {
  229. "name": "Benjamin Eberlei",
  230. "email": "kontakt@beberlei.de"
  231. },
  232. {
  233. "name": "Jonathan Wage",
  234. "email": "jonwage@gmail.com"
  235. },
  236. {
  237. "name": "Johannes Schmitt",
  238. "email": "schmittjoh@gmail.com"
  239. }
  240. ],
  241. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  242. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  243. "keywords": [
  244. "abstraction",
  245. "apcu",
  246. "cache",
  247. "caching",
  248. "couchdb",
  249. "memcached",
  250. "php",
  251. "redis",
  252. "xcache"
  253. ],
  254. "support": {
  255. "issues": "https://github.com/doctrine/cache/issues",
  256. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  257. },
  258. "funding": [
  259. {
  260. "url": "https://www.doctrine-project.org/sponsorship.html",
  261. "type": "custom"
  262. },
  263. {
  264. "url": "https://www.patreon.com/phpdoctrine",
  265. "type": "patreon"
  266. },
  267. {
  268. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  269. "type": "tidelift"
  270. }
  271. ],
  272. "time": "2020-07-07T18:54:01+00:00"
  273. },
  274. {
  275. "name": "doctrine/dbal",
  276. "version": "2.12.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/doctrine/dbal.git",
  280. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  285. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "doctrine/cache": "^1.0",
  290. "doctrine/event-manager": "^1.0",
  291. "ext-pdo": "*",
  292. "php": "^7.3 || ^8"
  293. },
  294. "require-dev": {
  295. "doctrine/coding-standard": "^8.1",
  296. "jetbrains/phpstorm-stubs": "^2019.1",
  297. "phpstan/phpstan": "^0.12.40",
  298. "phpunit/phpunit": "^9.4",
  299. "psalm/plugin-phpunit": "^0.10.0",
  300. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  301. "vimeo/psalm": "^3.17.2"
  302. },
  303. "suggest": {
  304. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  305. },
  306. "bin": [
  307. "bin/doctrine-dbal"
  308. ],
  309. "type": "library",
  310. "extra": {
  311. "branch-alias": {
  312. "dev-master": "4.0.x-dev"
  313. }
  314. },
  315. "autoload": {
  316. "psr-4": {
  317. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  318. }
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Guilherme Blanco",
  327. "email": "guilhermeblanco@gmail.com"
  328. },
  329. {
  330. "name": "Roman Borschel",
  331. "email": "roman@code-factory.org"
  332. },
  333. {
  334. "name": "Benjamin Eberlei",
  335. "email": "kontakt@beberlei.de"
  336. },
  337. {
  338. "name": "Jonathan Wage",
  339. "email": "jonwage@gmail.com"
  340. }
  341. ],
  342. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  343. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  344. "keywords": [
  345. "abstraction",
  346. "database",
  347. "db2",
  348. "dbal",
  349. "mariadb",
  350. "mssql",
  351. "mysql",
  352. "oci8",
  353. "oracle",
  354. "pdo",
  355. "pgsql",
  356. "postgresql",
  357. "queryobject",
  358. "sasql",
  359. "sql",
  360. "sqlanywhere",
  361. "sqlite",
  362. "sqlserver",
  363. "sqlsrv"
  364. ],
  365. "support": {
  366. "issues": "https://github.com/doctrine/dbal/issues",
  367. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  368. },
  369. "funding": [
  370. {
  371. "url": "https://www.doctrine-project.org/sponsorship.html",
  372. "type": "custom"
  373. },
  374. {
  375. "url": "https://www.patreon.com/phpdoctrine",
  376. "type": "patreon"
  377. },
  378. {
  379. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  380. "type": "tidelift"
  381. }
  382. ],
  383. "time": "2020-11-14T20:26:58+00:00"
  384. },
  385. {
  386. "name": "doctrine/event-manager",
  387. "version": "1.1.1",
  388. "source": {
  389. "type": "git",
  390. "url": "https://github.com/doctrine/event-manager.git",
  391. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  392. },
  393. "dist": {
  394. "type": "zip",
  395. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  396. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  397. "shasum": ""
  398. },
  399. "require": {
  400. "php": "^7.1 || ^8.0"
  401. },
  402. "conflict": {
  403. "doctrine/common": "<2.9@dev"
  404. },
  405. "require-dev": {
  406. "doctrine/coding-standard": "^6.0",
  407. "phpunit/phpunit": "^7.0"
  408. },
  409. "type": "library",
  410. "extra": {
  411. "branch-alias": {
  412. "dev-master": "1.0.x-dev"
  413. }
  414. },
  415. "autoload": {
  416. "psr-4": {
  417. "Doctrine\\Common\\": "lib/Doctrine/Common"
  418. }
  419. },
  420. "notification-url": "https://packagist.org/downloads/",
  421. "license": [
  422. "MIT"
  423. ],
  424. "authors": [
  425. {
  426. "name": "Guilherme Blanco",
  427. "email": "guilhermeblanco@gmail.com"
  428. },
  429. {
  430. "name": "Roman Borschel",
  431. "email": "roman@code-factory.org"
  432. },
  433. {
  434. "name": "Benjamin Eberlei",
  435. "email": "kontakt@beberlei.de"
  436. },
  437. {
  438. "name": "Jonathan Wage",
  439. "email": "jonwage@gmail.com"
  440. },
  441. {
  442. "name": "Johannes Schmitt",
  443. "email": "schmittjoh@gmail.com"
  444. },
  445. {
  446. "name": "Marco Pivetta",
  447. "email": "ocramius@gmail.com"
  448. }
  449. ],
  450. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  451. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  452. "keywords": [
  453. "event",
  454. "event dispatcher",
  455. "event manager",
  456. "event system",
  457. "events"
  458. ],
  459. "support": {
  460. "issues": "https://github.com/doctrine/event-manager/issues",
  461. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  462. },
  463. "funding": [
  464. {
  465. "url": "https://www.doctrine-project.org/sponsorship.html",
  466. "type": "custom"
  467. },
  468. {
  469. "url": "https://www.patreon.com/phpdoctrine",
  470. "type": "patreon"
  471. },
  472. {
  473. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  474. "type": "tidelift"
  475. }
  476. ],
  477. "time": "2020-05-29T18:28:51+00:00"
  478. },
  479. {
  480. "name": "doctrine/inflector",
  481. "version": "1.4.3",
  482. "source": {
  483. "type": "git",
  484. "url": "https://github.com/doctrine/inflector.git",
  485. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  486. },
  487. "dist": {
  488. "type": "zip",
  489. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  490. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  491. "shasum": ""
  492. },
  493. "require": {
  494. "php": "^7.2 || ^8.0"
  495. },
  496. "require-dev": {
  497. "doctrine/coding-standard": "^7.0",
  498. "phpstan/phpstan": "^0.11",
  499. "phpstan/phpstan-phpunit": "^0.11",
  500. "phpstan/phpstan-strict-rules": "^0.11",
  501. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  502. },
  503. "type": "library",
  504. "extra": {
  505. "branch-alias": {
  506. "dev-master": "2.0.x-dev"
  507. }
  508. },
  509. "autoload": {
  510. "psr-4": {
  511. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  512. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "MIT"
  518. ],
  519. "authors": [
  520. {
  521. "name": "Guilherme Blanco",
  522. "email": "guilhermeblanco@gmail.com"
  523. },
  524. {
  525. "name": "Roman Borschel",
  526. "email": "roman@code-factory.org"
  527. },
  528. {
  529. "name": "Benjamin Eberlei",
  530. "email": "kontakt@beberlei.de"
  531. },
  532. {
  533. "name": "Jonathan Wage",
  534. "email": "jonwage@gmail.com"
  535. },
  536. {
  537. "name": "Johannes Schmitt",
  538. "email": "schmittjoh@gmail.com"
  539. }
  540. ],
  541. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  542. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  543. "keywords": [
  544. "inflection",
  545. "inflector",
  546. "lowercase",
  547. "manipulation",
  548. "php",
  549. "plural",
  550. "singular",
  551. "strings",
  552. "uppercase",
  553. "words"
  554. ],
  555. "support": {
  556. "issues": "https://github.com/doctrine/inflector/issues",
  557. "source": "https://github.com/doctrine/inflector/tree/1.4.x"
  558. },
  559. "funding": [
  560. {
  561. "url": "https://www.doctrine-project.org/sponsorship.html",
  562. "type": "custom"
  563. },
  564. {
  565. "url": "https://www.patreon.com/phpdoctrine",
  566. "type": "patreon"
  567. },
  568. {
  569. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  570. "type": "tidelift"
  571. }
  572. ],
  573. "time": "2020-05-29T07:19:59+00:00"
  574. },
  575. {
  576. "name": "doctrine/lexer",
  577. "version": "1.2.1",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/doctrine/lexer.git",
  581. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  586. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "php": "^7.2 || ^8.0"
  591. },
  592. "require-dev": {
  593. "doctrine/coding-standard": "^6.0",
  594. "phpstan/phpstan": "^0.11.8",
  595. "phpunit/phpunit": "^8.2"
  596. },
  597. "type": "library",
  598. "extra": {
  599. "branch-alias": {
  600. "dev-master": "1.2.x-dev"
  601. }
  602. },
  603. "autoload": {
  604. "psr-4": {
  605. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Guilherme Blanco",
  615. "email": "guilhermeblanco@gmail.com"
  616. },
  617. {
  618. "name": "Roman Borschel",
  619. "email": "roman@code-factory.org"
  620. },
  621. {
  622. "name": "Johannes Schmitt",
  623. "email": "schmittjoh@gmail.com"
  624. }
  625. ],
  626. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  627. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  628. "keywords": [
  629. "annotations",
  630. "docblock",
  631. "lexer",
  632. "parser",
  633. "php"
  634. ],
  635. "support": {
  636. "issues": "https://github.com/doctrine/lexer/issues",
  637. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  638. },
  639. "funding": [
  640. {
  641. "url": "https://www.doctrine-project.org/sponsorship.html",
  642. "type": "custom"
  643. },
  644. {
  645. "url": "https://www.patreon.com/phpdoctrine",
  646. "type": "patreon"
  647. },
  648. {
  649. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  650. "type": "tidelift"
  651. }
  652. ],
  653. "time": "2020-05-25T17:44:05+00:00"
  654. },
  655. {
  656. "name": "dompdf/dompdf",
  657. "version": "v0.8.6",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/dompdf/dompdf.git",
  661. "reference": "db91d81866c69a42dad1d2926f61515a1e3f42c5"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/db91d81866c69a42dad1d2926f61515a1e3f42c5",
  666. "reference": "db91d81866c69a42dad1d2926f61515a1e3f42c5",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "ext-dom": "*",
  671. "ext-mbstring": "*",
  672. "phenx/php-font-lib": "^0.5.2",
  673. "phenx/php-svg-lib": "^0.3.3",
  674. "php": "^7.1"
  675. },
  676. "require-dev": {
  677. "mockery/mockery": "^1.3",
  678. "phpunit/phpunit": "^7.5",
  679. "squizlabs/php_codesniffer": "^3.5"
  680. },
  681. "suggest": {
  682. "ext-gd": "Needed to process images",
  683. "ext-gmagick": "Improves image processing performance",
  684. "ext-imagick": "Improves image processing performance",
  685. "ext-zlib": "Needed for pdf stream compression"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "branch-alias": {
  690. "dev-develop": "0.7-dev"
  691. }
  692. },
  693. "autoload": {
  694. "psr-4": {
  695. "Dompdf\\": "src/"
  696. },
  697. "classmap": [
  698. "lib/"
  699. ]
  700. },
  701. "notification-url": "https://packagist.org/downloads/",
  702. "license": [
  703. "LGPL-2.1"
  704. ],
  705. "authors": [
  706. {
  707. "name": "Fabien Ménager",
  708. "email": "fabien.menager@gmail.com"
  709. },
  710. {
  711. "name": "Brian Sweeney",
  712. "email": "eclecticgeek@gmail.com"
  713. },
  714. {
  715. "name": "Gabriel Bull",
  716. "email": "me@gabrielbull.com"
  717. }
  718. ],
  719. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  720. "homepage": "https://github.com/dompdf/dompdf",
  721. "support": {
  722. "issues": "https://github.com/dompdf/dompdf/issues",
  723. "source": "https://github.com/dompdf/dompdf/tree/master"
  724. },
  725. "time": "2020-08-30T22:54:22+00:00"
  726. },
  727. {
  728. "name": "dragonmantank/cron-expression",
  729. "version": "v2.3.1",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/dragonmantank/cron-expression.git",
  733. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  738. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^7.0|^8.0"
  743. },
  744. "require-dev": {
  745. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "2.3-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Cron\\": "src/Cron/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Michael Dowling",
  765. "email": "mtdowling@gmail.com",
  766. "homepage": "https://github.com/mtdowling"
  767. },
  768. {
  769. "name": "Chris Tankersley",
  770. "email": "chris@ctankersley.com",
  771. "homepage": "https://github.com/dragonmantank"
  772. }
  773. ],
  774. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  775. "keywords": [
  776. "cron",
  777. "schedule"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  781. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  782. },
  783. "funding": [
  784. {
  785. "url": "https://github.com/dragonmantank",
  786. "type": "github"
  787. }
  788. ],
  789. "time": "2020-10-13T00:52:37+00:00"
  790. },
  791. {
  792. "name": "egulias/email-validator",
  793. "version": "2.1.24",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/egulias/EmailValidator.git",
  797. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  802. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "doctrine/lexer": "^1.0.1",
  807. "php": ">=5.5",
  808. "symfony/polyfill-intl-idn": "^1.10"
  809. },
  810. "require-dev": {
  811. "dominicsayers/isemail": "^3.0.7",
  812. "phpunit/phpunit": "^4.8.36|^7.5.15",
  813. "satooshi/php-coveralls": "^1.0.1"
  814. },
  815. "suggest": {
  816. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  817. },
  818. "type": "library",
  819. "extra": {
  820. "branch-alias": {
  821. "dev-master": "2.1.x-dev"
  822. }
  823. },
  824. "autoload": {
  825. "psr-4": {
  826. "Egulias\\EmailValidator\\": "src"
  827. }
  828. },
  829. "notification-url": "https://packagist.org/downloads/",
  830. "license": [
  831. "MIT"
  832. ],
  833. "authors": [
  834. {
  835. "name": "Eduardo Gulias Davis"
  836. }
  837. ],
  838. "description": "A library for validating emails against several RFCs",
  839. "homepage": "https://github.com/egulias/EmailValidator",
  840. "keywords": [
  841. "email",
  842. "emailvalidation",
  843. "emailvalidator",
  844. "validation",
  845. "validator"
  846. ],
  847. "support": {
  848. "issues": "https://github.com/egulias/EmailValidator/issues",
  849. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  850. },
  851. "funding": [
  852. {
  853. "url": "https://github.com/egulias",
  854. "type": "github"
  855. }
  856. ],
  857. "time": "2020-11-14T15:56:27+00:00"
  858. },
  859. {
  860. "name": "erusev/parsedown",
  861. "version": "1.7.4",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/erusev/parsedown.git",
  865. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  870. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "ext-mbstring": "*",
  875. "php": ">=5.3.0"
  876. },
  877. "require-dev": {
  878. "phpunit/phpunit": "^4.8.35"
  879. },
  880. "type": "library",
  881. "autoload": {
  882. "psr-0": {
  883. "Parsedown": ""
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Emanuil Rusev",
  893. "email": "hello@erusev.com",
  894. "homepage": "http://erusev.com"
  895. }
  896. ],
  897. "description": "Parser for Markdown.",
  898. "homepage": "http://parsedown.org",
  899. "keywords": [
  900. "markdown",
  901. "parser"
  902. ],
  903. "support": {
  904. "issues": "https://github.com/erusev/parsedown/issues",
  905. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  906. },
  907. "time": "2019-12-30T22:54:17+00:00"
  908. },
  909. {
  910. "name": "erusev/parsedown-extra",
  911. "version": "0.7.1",
  912. "source": {
  913. "type": "git",
  914. "url": "https://github.com/erusev/parsedown-extra.git",
  915. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  916. },
  917. "dist": {
  918. "type": "zip",
  919. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  920. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  921. "shasum": ""
  922. },
  923. "require": {
  924. "erusev/parsedown": "~1.4"
  925. },
  926. "type": "library",
  927. "autoload": {
  928. "psr-0": {
  929. "ParsedownExtra": ""
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Emanuil Rusev",
  939. "email": "hello@erusev.com",
  940. "homepage": "http://erusev.com"
  941. }
  942. ],
  943. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  944. "homepage": "https://github.com/erusev/parsedown-extra",
  945. "keywords": [
  946. "markdown",
  947. "markdown extra",
  948. "parsedown",
  949. "parser"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/erusev/parsedown-extra/issues",
  953. "source": "https://github.com/erusev/parsedown-extra/tree/master"
  954. },
  955. "time": "2015-11-01T10:19:22+00:00"
  956. },
  957. {
  958. "name": "fideloper/proxy",
  959. "version": "4.4.1",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/fideloper/TrustedProxy.git",
  963. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  968. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  973. "php": ">=5.4.0"
  974. },
  975. "require-dev": {
  976. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  977. "mockery/mockery": "^1.0",
  978. "phpunit/phpunit": "^6.0"
  979. },
  980. "type": "library",
  981. "extra": {
  982. "laravel": {
  983. "providers": [
  984. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  985. ]
  986. }
  987. },
  988. "autoload": {
  989. "psr-4": {
  990. "Fideloper\\Proxy\\": "src/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Chris Fidao",
  1000. "email": "fideloper@gmail.com"
  1001. }
  1002. ],
  1003. "description": "Set trusted proxies for Laravel",
  1004. "keywords": [
  1005. "load balancing",
  1006. "proxy",
  1007. "trusted proxy"
  1008. ],
  1009. "support": {
  1010. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1011. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1012. },
  1013. "time": "2020-10-22T13:48:01+00:00"
  1014. },
  1015. {
  1016. "name": "firebase/php-jwt",
  1017. "version": "v5.2.0",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/firebase/php-jwt.git",
  1021. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb",
  1026. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb",
  1027. "shasum": ""
  1028. },
  1029. "require": {
  1030. "php": ">=5.3.0"
  1031. },
  1032. "require-dev": {
  1033. "phpunit/phpunit": ">=4.8 <=9"
  1034. },
  1035. "type": "library",
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Firebase\\JWT\\": "src"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "BSD-3-Clause"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Neuman Vong",
  1048. "email": "neuman+pear@twilio.com",
  1049. "role": "Developer"
  1050. },
  1051. {
  1052. "name": "Anant Narayanan",
  1053. "email": "anant@php.net",
  1054. "role": "Developer"
  1055. }
  1056. ],
  1057. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1058. "homepage": "https://github.com/firebase/php-jwt",
  1059. "keywords": [
  1060. "jwt",
  1061. "php"
  1062. ],
  1063. "support": {
  1064. "issues": "https://github.com/firebase/php-jwt/issues",
  1065. "source": "https://github.com/firebase/php-jwt/tree/master"
  1066. },
  1067. "time": "2020-03-25T18:49:23+00:00"
  1068. },
  1069. {
  1070. "name": "gloudemans/shoppingcart",
  1071. "version": "dev-master",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/Crinsane/LaravelShoppingcart.git",
  1075. "reference": "f460ab7312cce32cb428cf39a500a2d16600b1d6"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/Crinsane/LaravelShoppingcart/zipball/f460ab7312cce32cb428cf39a500a2d16600b1d6",
  1080. "reference": "f460ab7312cce32cb428cf39a500a2d16600b1d6",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "illuminate/events": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*|| 5.6.* || 5.7.*",
  1085. "illuminate/session": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*|| 5.6.* || 5.7.*",
  1086. "illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.*|| 5.6.* || 5.7.*"
  1087. },
  1088. "require-dev": {
  1089. "mockery/mockery": "~0.9.0",
  1090. "orchestra/testbench": "~3.1",
  1091. "phpunit/phpunit": "~5.0 || ~6.0 || ~7.0"
  1092. },
  1093. "suggest": {
  1094. "gloudemans/notify": "Simple flash notifications for Laravel"
  1095. },
  1096. "default-branch": true,
  1097. "type": "library",
  1098. "extra": {
  1099. "laravel": {
  1100. "providers": [
  1101. "Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider"
  1102. ],
  1103. "aliases": {
  1104. "Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart"
  1105. }
  1106. }
  1107. },
  1108. "autoload": {
  1109. "psr-4": {
  1110. "Gloudemans\\Shoppingcart\\": "src/"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "authors": [
  1118. {
  1119. "name": "Rob Gloudemans",
  1120. "email": "info@robgloudemans.nl"
  1121. }
  1122. ],
  1123. "description": "Laravel Shoppingcart",
  1124. "keywords": [
  1125. "laravel",
  1126. "shoppingcart"
  1127. ],
  1128. "support": {
  1129. "issues": "https://github.com/Crinsane/LaravelShoppingcart/issues",
  1130. "source": "https://github.com/Crinsane/LaravelShoppingcart/tree/2.6.0"
  1131. },
  1132. "time": "2019-02-04T14:29:34+00:00"
  1133. },
  1134. {
  1135. "name": "guzzlehttp/guzzle",
  1136. "version": "6.5.5",
  1137. "source": {
  1138. "type": "git",
  1139. "url": "https://github.com/guzzle/guzzle.git",
  1140. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1141. },
  1142. "dist": {
  1143. "type": "zip",
  1144. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1145. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1146. "shasum": ""
  1147. },
  1148. "require": {
  1149. "ext-json": "*",
  1150. "guzzlehttp/promises": "^1.0",
  1151. "guzzlehttp/psr7": "^1.6.1",
  1152. "php": ">=5.5",
  1153. "symfony/polyfill-intl-idn": "^1.17.0"
  1154. },
  1155. "require-dev": {
  1156. "ext-curl": "*",
  1157. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1158. "psr/log": "^1.1"
  1159. },
  1160. "suggest": {
  1161. "psr/log": "Required for using the Log middleware"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "6.5-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "GuzzleHttp\\": "src/"
  1172. },
  1173. "files": [
  1174. "src/functions_include.php"
  1175. ]
  1176. },
  1177. "notification-url": "https://packagist.org/downloads/",
  1178. "license": [
  1179. "MIT"
  1180. ],
  1181. "authors": [
  1182. {
  1183. "name": "Michael Dowling",
  1184. "email": "mtdowling@gmail.com",
  1185. "homepage": "https://github.com/mtdowling"
  1186. }
  1187. ],
  1188. "description": "Guzzle is a PHP HTTP client library",
  1189. "homepage": "http://guzzlephp.org/",
  1190. "keywords": [
  1191. "client",
  1192. "curl",
  1193. "framework",
  1194. "http",
  1195. "http client",
  1196. "rest",
  1197. "web service"
  1198. ],
  1199. "support": {
  1200. "issues": "https://github.com/guzzle/guzzle/issues",
  1201. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1202. },
  1203. "time": "2020-06-16T21:01:06+00:00"
  1204. },
  1205. {
  1206. "name": "guzzlehttp/promises",
  1207. "version": "1.4.0",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/guzzle/promises.git",
  1211. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1216. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1217. "shasum": ""
  1218. },
  1219. "require": {
  1220. "php": ">=5.5"
  1221. },
  1222. "require-dev": {
  1223. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "1.4-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-4": {
  1233. "GuzzleHttp\\Promise\\": "src/"
  1234. },
  1235. "files": [
  1236. "src/functions_include.php"
  1237. ]
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "Michael Dowling",
  1246. "email": "mtdowling@gmail.com",
  1247. "homepage": "https://github.com/mtdowling"
  1248. }
  1249. ],
  1250. "description": "Guzzle promises library",
  1251. "keywords": [
  1252. "promise"
  1253. ],
  1254. "support": {
  1255. "issues": "https://github.com/guzzle/promises/issues",
  1256. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1257. },
  1258. "time": "2020-09-30T07:37:28+00:00"
  1259. },
  1260. {
  1261. "name": "guzzlehttp/psr7",
  1262. "version": "1.7.0",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/guzzle/psr7.git",
  1266. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1271. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": ">=5.4.0",
  1276. "psr/http-message": "~1.0",
  1277. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1278. },
  1279. "provide": {
  1280. "psr/http-message-implementation": "1.0"
  1281. },
  1282. "require-dev": {
  1283. "ext-zlib": "*",
  1284. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1285. },
  1286. "suggest": {
  1287. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.7-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "GuzzleHttp\\Psr7\\": "src/"
  1298. },
  1299. "files": [
  1300. "src/functions_include.php"
  1301. ]
  1302. },
  1303. "notification-url": "https://packagist.org/downloads/",
  1304. "license": [
  1305. "MIT"
  1306. ],
  1307. "authors": [
  1308. {
  1309. "name": "Michael Dowling",
  1310. "email": "mtdowling@gmail.com",
  1311. "homepage": "https://github.com/mtdowling"
  1312. },
  1313. {
  1314. "name": "Tobias Schultze",
  1315. "homepage": "https://github.com/Tobion"
  1316. }
  1317. ],
  1318. "description": "PSR-7 message implementation that also provides common utility methods",
  1319. "keywords": [
  1320. "http",
  1321. "message",
  1322. "psr-7",
  1323. "request",
  1324. "response",
  1325. "stream",
  1326. "uri",
  1327. "url"
  1328. ],
  1329. "support": {
  1330. "issues": "https://github.com/guzzle/psr7/issues",
  1331. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1332. },
  1333. "time": "2020-09-30T07:37:11+00:00"
  1334. },
  1335. {
  1336. "name": "jakub-onderka/php-console-color",
  1337. "version": "v0.2",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1341. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1346. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "php": ">=5.4.0"
  1351. },
  1352. "require-dev": {
  1353. "jakub-onderka/php-code-style": "1.0",
  1354. "jakub-onderka/php-parallel-lint": "1.0",
  1355. "jakub-onderka/php-var-dump-check": "0.*",
  1356. "phpunit/phpunit": "~4.3",
  1357. "squizlabs/php_codesniffer": "1.*"
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "BSD-2-Clause"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Jakub Onderka",
  1372. "email": "jakub.onderka@gmail.com"
  1373. }
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues",
  1377. "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master"
  1378. },
  1379. "abandoned": "php-parallel-lint/php-console-color",
  1380. "time": "2018-09-29T17:23:10+00:00"
  1381. },
  1382. {
  1383. "name": "jakub-onderka/php-console-highlighter",
  1384. "version": "v0.4",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1388. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1393. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1394. "shasum": ""
  1395. },
  1396. "require": {
  1397. "ext-tokenizer": "*",
  1398. "jakub-onderka/php-console-color": "~0.2",
  1399. "php": ">=5.4.0"
  1400. },
  1401. "require-dev": {
  1402. "jakub-onderka/php-code-style": "~1.0",
  1403. "jakub-onderka/php-parallel-lint": "~1.0",
  1404. "jakub-onderka/php-var-dump-check": "~0.1",
  1405. "phpunit/phpunit": "~4.0",
  1406. "squizlabs/php_codesniffer": "~1.5"
  1407. },
  1408. "type": "library",
  1409. "autoload": {
  1410. "psr-4": {
  1411. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1412. }
  1413. },
  1414. "notification-url": "https://packagist.org/downloads/",
  1415. "license": [
  1416. "MIT"
  1417. ],
  1418. "authors": [
  1419. {
  1420. "name": "Jakub Onderka",
  1421. "email": "acci@acci.cz",
  1422. "homepage": "http://www.acci.cz/"
  1423. }
  1424. ],
  1425. "description": "Highlight PHP code in terminal",
  1426. "support": {
  1427. "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues",
  1428. "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master"
  1429. },
  1430. "abandoned": "php-parallel-lint/php-console-highlighter",
  1431. "time": "2018-09-29T18:48:56+00:00"
  1432. },
  1433. {
  1434. "name": "jsdecena/baserepo",
  1435. "version": "v1.0.10",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/jsdecena/baserepo.git",
  1439. "reference": "ffc88b035ef3d39770d6296083866ffe6e206e44"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/jsdecena/baserepo/zipball/ffc88b035ef3d39770d6296083866ffe6e206e44",
  1444. "reference": "ffc88b035ef3d39770d6296083866ffe6e206e44",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "ext-json": "*",
  1449. "illuminate/support": "^5.5|^5.6|^5.7|^5.8|^5.9|^6.0|^7.0|^8.0",
  1450. "league/fractal": "^0.19.0",
  1451. "php": "^7.1.3"
  1452. },
  1453. "require-dev": {
  1454. "orchestra/testbench": "~3.0",
  1455. "phpunit/phpunit": "^7.5"
  1456. },
  1457. "type": "library",
  1458. "extra": {
  1459. "laravel": {
  1460. "providers": [
  1461. "Jsdecena\\Baserepo\\BaseRepositoryProvider"
  1462. ]
  1463. }
  1464. },
  1465. "autoload": {
  1466. "classmap": [
  1467. "tests/database/seeds",
  1468. "tests/database/factories"
  1469. ],
  1470. "psr-4": {
  1471. "Jsdecena\\Baserepo\\": "src/"
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Jeff Simons Decena",
  1481. "email": "jeff.decena@yahoo.com"
  1482. }
  1483. ],
  1484. "description": "Base repository",
  1485. "support": {
  1486. "issues": "https://github.com/jsdecena/baserepo/issues",
  1487. "source": "https://github.com/jsdecena/baserepo/tree/v1.0.10"
  1488. },
  1489. "time": "2020-08-30T04:01:50+00:00"
  1490. },
  1491. {
  1492. "name": "jsdecena/mailchimp",
  1493. "version": "7.0.5",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/jsdecena/mailchimp.git",
  1497. "reference": "d6bac0e179e21816e2e7ea75a49ce50fffee10e0"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/jsdecena/mailchimp/zipball/d6bac0e179e21816e2e7ea75a49ce50fffee10e0",
  1502. "reference": "d6bac0e179e21816e2e7ea75a49ce50fffee10e0",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "illuminate/http": "^5.3",
  1507. "mailchimp/mailchimp": "^2.0",
  1508. "vlucas/phpdotenv": "~2.2"
  1509. },
  1510. "require-dev": {
  1511. "fzaninotto/faker": "~1.4",
  1512. "mockery/mockery": "0.9.*",
  1513. "phpunit/phpunit": "~4.0"
  1514. },
  1515. "type": "project",
  1516. "autoload": {
  1517. "psr-4": {
  1518. "Jsdecena\\MailChimp\\": "src/"
  1519. }
  1520. },
  1521. "notification-url": "https://packagist.org/downloads/",
  1522. "license": [
  1523. "MIT"
  1524. ],
  1525. "authors": [
  1526. {
  1527. "name": "Jeff Simons Decena",
  1528. "email": "jeff.decena@yahoo.com"
  1529. }
  1530. ],
  1531. "description": "MailChimp subscription",
  1532. "keywords": [
  1533. "e-commerce",
  1534. "ecommerce",
  1535. "framework",
  1536. "laracom",
  1537. "laravel",
  1538. "laravel-ecommerce",
  1539. "laravel5",
  1540. "package",
  1541. "shop",
  1542. "shopping-cart"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/jsdecena/mailchimp/issues",
  1546. "source": "https://github.com/jsdecena/mailchimp/tree/7.0.5"
  1547. },
  1548. "time": "2017-09-15T14:38:23+00:00"
  1549. },
  1550. {
  1551. "name": "jsdecena/mcpro",
  1552. "version": "1.1.0",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/jsdecena/mcpro.git",
  1556. "reference": "5bb2c2fd01b1a9d4951f76cf2ac51b93e461f3fc"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/jsdecena/mcpro/zipball/5bb2c2fd01b1a9d4951f76cf2ac51b93e461f3fc",
  1561. "reference": "5bb2c2fd01b1a9d4951f76cf2ac51b93e461f3fc",
  1562. "shasum": ""
  1563. },
  1564. "type": "library",
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Jsdecena\\MCPro\\": "src/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Jeff Simons Decena",
  1577. "email": "jeff.decena@yahoo.com"
  1578. }
  1579. ],
  1580. "description": "Municipalities, Cities and Provinces package for the Philippines.",
  1581. "support": {
  1582. "issues": "https://github.com/jsdecena/mcpro/issues",
  1583. "source": "https://github.com/jsdecena/mcpro/tree/1.1.0"
  1584. },
  1585. "time": "2017-06-11T14:30:37+00:00"
  1586. },
  1587. {
  1588. "name": "kalnoy/nestedset",
  1589. "version": "v4.3.5",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  1593. "reference": "086807a60f740b4bc1ba361fdc31dffa401d2bc0"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/086807a60f740b4bc1ba361fdc31dffa401d2bc0",
  1598. "reference": "086807a60f740b4bc1ba361fdc31dffa401d2bc0",
  1599. "shasum": ""
  1600. },
  1601. "require": {
  1602. "illuminate/database": "~5.7.0|~5.8.0",
  1603. "illuminate/events": "~5.7.0|~5.8.0",
  1604. "illuminate/support": "~5.7.0|~5.8.0",
  1605. "php": ">=7.1.3"
  1606. },
  1607. "require-dev": {
  1608. "phpunit/phpunit": "7.*"
  1609. },
  1610. "type": "library",
  1611. "extra": {
  1612. "branch-alias": {
  1613. "dev-master": "v5.0.x-dev"
  1614. },
  1615. "laravel": {
  1616. "providers": [
  1617. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  1618. ]
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Kalnoy\\Nestedset\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Alexander Kalnoy",
  1633. "email": "lazychaser@gmail.com"
  1634. }
  1635. ],
  1636. "description": "Nested Set Model for Laravel 5.7 and up",
  1637. "keywords": [
  1638. "database",
  1639. "hierarchy",
  1640. "laravel",
  1641. "nested sets",
  1642. "nsm"
  1643. ],
  1644. "support": {
  1645. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  1646. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v4.3.5"
  1647. },
  1648. "time": "2019-06-16T08:41:28+00:00"
  1649. },
  1650. {
  1651. "name": "kkszymanowski/traitor",
  1652. "version": "0.2.5",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/KKSzymanowski/Traitor.git",
  1656. "reference": "9770fc7de72ff585601dc9c42b31715d9fc40a24"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/KKSzymanowski/Traitor/zipball/9770fc7de72ff585601dc9c42b31715d9fc40a24",
  1661. "reference": "9770fc7de72ff585601dc9c42b31715d9fc40a24",
  1662. "shasum": ""
  1663. },
  1664. "require": {
  1665. "nikic/php-parser": "^1.0|^2.0|^3.0|^4.0",
  1666. "php": ">=5.4"
  1667. },
  1668. "require-dev": {
  1669. "phpunit/phpunit": "~4.1"
  1670. },
  1671. "type": "library",
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Traitor\\": "src/"
  1675. }
  1676. },
  1677. "notification-url": "https://packagist.org/downloads/",
  1678. "license": [
  1679. "MIT"
  1680. ],
  1681. "authors": [
  1682. {
  1683. "name": "Kuba Szymanowski",
  1684. "email": "kuba.szymanowski@inf24.pl"
  1685. }
  1686. ],
  1687. "description": "Add a trait use statement to existing PHP class",
  1688. "keywords": [
  1689. "add",
  1690. "php",
  1691. "trait"
  1692. ],
  1693. "support": {
  1694. "email": "kuba.szymanowski@inf24.pl",
  1695. "issues": "https://github.com/kkszymanowski/traitor/issues",
  1696. "source": "https://github.com/kkszymanowski/traitor"
  1697. },
  1698. "time": "2018-04-19T12:24:36+00:00"
  1699. },
  1700. {
  1701. "name": "kylekatarnls/update-helper",
  1702. "version": "1.2.1",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/kylekatarnls/update-helper.git",
  1706. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
  1711. "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "composer-plugin-api": "^1.1.0 || ^2.0.0",
  1716. "php": ">=5.3.0"
  1717. },
  1718. "require-dev": {
  1719. "codeclimate/php-test-reporter": "dev-master",
  1720. "composer/composer": "2.0.x-dev || ^2.0.0-dev",
  1721. "phpunit/phpunit": ">=4.8.35 <6.0"
  1722. },
  1723. "type": "composer-plugin",
  1724. "extra": {
  1725. "class": "UpdateHelper\\ComposerPlugin"
  1726. },
  1727. "autoload": {
  1728. "psr-0": {
  1729. "UpdateHelper\\": "src/"
  1730. }
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Kyle",
  1739. "email": "kylekatarnls@gmail.com"
  1740. }
  1741. ],
  1742. "description": "Update helper",
  1743. "support": {
  1744. "issues": "https://github.com/kylekatarnls/update-helper/issues",
  1745. "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1"
  1746. },
  1747. "funding": [
  1748. {
  1749. "url": "https://github.com/kylekatarnls",
  1750. "type": "github"
  1751. },
  1752. {
  1753. "url": "https://opencollective.com/Carbon",
  1754. "type": "open_collective"
  1755. },
  1756. {
  1757. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1758. "type": "tidelift"
  1759. }
  1760. ],
  1761. "time": "2020-04-07T20:44:10+00:00"
  1762. },
  1763. {
  1764. "name": "laravel/cashier",
  1765. "version": "v7.2.2",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/laravel/cashier.git",
  1769. "reference": "d450aa31f1b5e9f9618088ebe9fa4c2d77962d5d"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/laravel/cashier/zipball/d450aa31f1b5e9f9618088ebe9fa4c2d77962d5d",
  1774. "reference": "d450aa31f1b5e9f9618088ebe9fa4c2d77962d5d",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "dompdf/dompdf": "^0.8.0",
  1779. "illuminate/database": "~5.3",
  1780. "illuminate/support": "~5.3",
  1781. "nesbot/carbon": "~1.0",
  1782. "php": ">=5.5.9",
  1783. "stripe/stripe-php": "~5.0",
  1784. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  1785. },
  1786. "require-dev": {
  1787. "illuminate/http": "~5.3",
  1788. "illuminate/routing": "~5.3",
  1789. "illuminate/view": "~5.3",
  1790. "mockery/mockery": "~1.0",
  1791. "phpunit/phpunit": "~5.0",
  1792. "vlucas/phpdotenv": "~2.0"
  1793. },
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-master": "8.0-dev"
  1798. },
  1799. "laravel": {
  1800. "providers": [
  1801. "Laravel\\Cashier\\CashierServiceProvider"
  1802. ]
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Laravel\\Cashier\\": "src/"
  1808. }
  1809. },
  1810. "notification-url": "https://packagist.org/downloads/",
  1811. "license": [
  1812. "MIT"
  1813. ],
  1814. "authors": [
  1815. {
  1816. "name": "Taylor Otwell",
  1817. "email": "taylorotwell@gmail.com"
  1818. }
  1819. ],
  1820. "description": "Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.",
  1821. "keywords": [
  1822. "billing",
  1823. "laravel",
  1824. "stripe"
  1825. ],
  1826. "support": {
  1827. "issues": "https://github.com/laravel/cashier/issues",
  1828. "source": "https://github.com/laravel/cashier"
  1829. },
  1830. "time": "2018-10-11T15:18:37+00:00"
  1831. },
  1832. {
  1833. "name": "laravel/framework",
  1834. "version": "v5.7.29",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/laravel/framework.git",
  1838. "reference": "2555bf6ef6e6739e5f49f4a5d40f6264c57abd56"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/laravel/framework/zipball/2555bf6ef6e6739e5f49f4a5d40f6264c57abd56",
  1843. "reference": "2555bf6ef6e6739e5f49f4a5d40f6264c57abd56",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "doctrine/inflector": "^1.1",
  1848. "dragonmantank/cron-expression": "^2.0",
  1849. "erusev/parsedown": "^1.7",
  1850. "ext-mbstring": "*",
  1851. "ext-openssl": "*",
  1852. "laravel/nexmo-notification-channel": "^1.0",
  1853. "laravel/slack-notification-channel": "^1.0",
  1854. "league/flysystem": "^1.0.8",
  1855. "monolog/monolog": "^1.12",
  1856. "nesbot/carbon": "^1.26.3",
  1857. "opis/closure": "^3.1",
  1858. "php": "^7.1.3",
  1859. "psr/container": "^1.0",
  1860. "psr/simple-cache": "^1.0",
  1861. "ramsey/uuid": "^3.7",
  1862. "swiftmailer/swiftmailer": "^6.0",
  1863. "symfony/console": "^4.1",
  1864. "symfony/debug": "^4.1",
  1865. "symfony/finder": "^4.1",
  1866. "symfony/http-foundation": "^4.1",
  1867. "symfony/http-kernel": "^4.1",
  1868. "symfony/process": "^4.1",
  1869. "symfony/routing": "^4.1",
  1870. "symfony/var-dumper": "^4.1",
  1871. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1872. "vlucas/phpdotenv": "^2.2"
  1873. },
  1874. "conflict": {
  1875. "tightenco/collect": "<5.5.33"
  1876. },
  1877. "replace": {
  1878. "illuminate/auth": "self.version",
  1879. "illuminate/broadcasting": "self.version",
  1880. "illuminate/bus": "self.version",
  1881. "illuminate/cache": "self.version",
  1882. "illuminate/config": "self.version",
  1883. "illuminate/console": "self.version",
  1884. "illuminate/container": "self.version",
  1885. "illuminate/contracts": "self.version",
  1886. "illuminate/cookie": "self.version",
  1887. "illuminate/database": "self.version",
  1888. "illuminate/encryption": "self.version",
  1889. "illuminate/events": "self.version",
  1890. "illuminate/filesystem": "self.version",
  1891. "illuminate/hashing": "self.version",
  1892. "illuminate/http": "self.version",
  1893. "illuminate/log": "self.version",
  1894. "illuminate/mail": "self.version",
  1895. "illuminate/notifications": "self.version",
  1896. "illuminate/pagination": "self.version",
  1897. "illuminate/pipeline": "self.version",
  1898. "illuminate/queue": "self.version",
  1899. "illuminate/redis": "self.version",
  1900. "illuminate/routing": "self.version",
  1901. "illuminate/session": "self.version",
  1902. "illuminate/support": "self.version",
  1903. "illuminate/translation": "self.version",
  1904. "illuminate/validation": "self.version",
  1905. "illuminate/view": "self.version"
  1906. },
  1907. "require-dev": {
  1908. "aws/aws-sdk-php": "^3.0",
  1909. "doctrine/dbal": "^2.6",
  1910. "filp/whoops": "^2.1.4",
  1911. "guzzlehttp/guzzle": "^6.3",
  1912. "league/flysystem-cached-adapter": "^1.0",
  1913. "mockery/mockery": "^1.0",
  1914. "moontoast/math": "^1.1",
  1915. "orchestra/testbench-core": "3.7.*",
  1916. "pda/pheanstalk": "^3.0|^4.0",
  1917. "phpunit/phpunit": "^7.5",
  1918. "predis/predis": "^1.1.1",
  1919. "symfony/css-selector": "^4.1",
  1920. "symfony/dom-crawler": "^4.1",
  1921. "true/punycode": "^2.1"
  1922. },
  1923. "suggest": {
  1924. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1925. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1926. "ext-pcntl": "Required to use all features of the queue worker.",
  1927. "ext-posix": "Required to use all features of the queue worker.",
  1928. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1929. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1930. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1931. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1932. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1933. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1934. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1935. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1936. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1937. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1938. "pda/pheanstalk": "Required to use the beanstalk queue driver (^3.0|^4.0).",
  1939. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1940. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1941. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.1).",
  1942. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.1).",
  1943. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (^1.0)."
  1944. },
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "5.7-dev"
  1949. }
  1950. },
  1951. "autoload": {
  1952. "files": [
  1953. "src/Illuminate/Foundation/helpers.php",
  1954. "src/Illuminate/Support/helpers.php"
  1955. ],
  1956. "psr-4": {
  1957. "Illuminate\\": "src/Illuminate/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Taylor Otwell",
  1967. "email": "taylor@laravel.com"
  1968. }
  1969. ],
  1970. "description": "The Laravel Framework.",
  1971. "homepage": "https://laravel.com",
  1972. "keywords": [
  1973. "framework",
  1974. "laravel"
  1975. ],
  1976. "support": {
  1977. "issues": "https://github.com/laravel/framework/issues",
  1978. "source": "https://github.com/laravel/framework"
  1979. },
  1980. "time": "2020-04-14T14:16:19+00:00"
  1981. },
  1982. {
  1983. "name": "laravel/nexmo-notification-channel",
  1984. "version": "v1.0.1",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/laravel/nexmo-notification-channel.git",
  1988. "reference": "03edd42a55b306ff980c9950899d5a2b03260d48"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/laravel/nexmo-notification-channel/zipball/03edd42a55b306ff980c9950899d5a2b03260d48",
  1993. "reference": "03edd42a55b306ff980c9950899d5a2b03260d48",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "nexmo/client": "^1.0",
  1998. "php": "^7.1.3"
  1999. },
  2000. "require-dev": {
  2001. "illuminate/notifications": "~5.7",
  2002. "mockery/mockery": "^1.0",
  2003. "phpunit/phpunit": "^7.0"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "1.0-dev"
  2009. },
  2010. "laravel": {
  2011. "providers": [
  2012. "Illuminate\\Notifications\\NexmoChannelServiceProvider"
  2013. ]
  2014. }
  2015. },
  2016. "autoload": {
  2017. "psr-4": {
  2018. "Illuminate\\Notifications\\": "src/"
  2019. }
  2020. },
  2021. "notification-url": "https://packagist.org/downloads/",
  2022. "license": [
  2023. "MIT"
  2024. ],
  2025. "authors": [
  2026. {
  2027. "name": "Taylor Otwell",
  2028. "email": "taylor@laravel.com"
  2029. }
  2030. ],
  2031. "description": "Nexmo Notification Channel for laravel.",
  2032. "keywords": [
  2033. "laravel",
  2034. "nexmo",
  2035. "notifications"
  2036. ],
  2037. "support": {
  2038. "issues": "https://github.com/laravel/nexmo-notification-channel/issues",
  2039. "source": "https://github.com/laravel/nexmo-notification-channel/tree/1.0"
  2040. },
  2041. "time": "2018-12-04T12:57:08+00:00"
  2042. },
  2043. {
  2044. "name": "laravel/slack-notification-channel",
  2045. "version": "v1.0.3",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/laravel/slack-notification-channel.git",
  2049. "reference": "6e164293b754a95f246faf50ab2bbea3e4923cc9"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/laravel/slack-notification-channel/zipball/6e164293b754a95f246faf50ab2bbea3e4923cc9",
  2054. "reference": "6e164293b754a95f246faf50ab2bbea3e4923cc9",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "guzzlehttp/guzzle": "^6.0",
  2059. "php": "^7.1.3"
  2060. },
  2061. "require-dev": {
  2062. "illuminate/notifications": "~5.7",
  2063. "mockery/mockery": "^1.0",
  2064. "phpunit/phpunit": "^7.0"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "1.0-dev"
  2070. },
  2071. "laravel": {
  2072. "providers": [
  2073. "Illuminate\\Notifications\\SlackChannelServiceProvider"
  2074. ]
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Illuminate\\Notifications\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Taylor Otwell",
  2089. "email": "taylor@laravel.com"
  2090. }
  2091. ],
  2092. "description": "Slack Notification Channel for laravel.",
  2093. "keywords": [
  2094. "laravel",
  2095. "notifications",
  2096. "slack"
  2097. ],
  2098. "support": {
  2099. "issues": "https://github.com/laravel/slack-notification-channel/issues",
  2100. "source": "https://github.com/laravel/slack-notification-channel/tree/1.0"
  2101. },
  2102. "time": "2018-12-12T13:12:06+00:00"
  2103. },
  2104. {
  2105. "name": "laravel/tinker",
  2106. "version": "v1.0.10",
  2107. "source": {
  2108. "type": "git",
  2109. "url": "https://github.com/laravel/tinker.git",
  2110. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2111. },
  2112. "dist": {
  2113. "type": "zip",
  2114. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2115. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2116. "shasum": ""
  2117. },
  2118. "require": {
  2119. "illuminate/console": "~5.1|^6.0",
  2120. "illuminate/contracts": "~5.1|^6.0",
  2121. "illuminate/support": "~5.1|^6.0",
  2122. "php": ">=5.5.9",
  2123. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2124. "symfony/var-dumper": "~3.0|~4.0"
  2125. },
  2126. "require-dev": {
  2127. "phpunit/phpunit": "~4.0|~5.0"
  2128. },
  2129. "suggest": {
  2130. "illuminate/database": "The Illuminate Database package (~5.1)."
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "1.0-dev"
  2136. },
  2137. "laravel": {
  2138. "providers": [
  2139. "Laravel\\Tinker\\TinkerServiceProvider"
  2140. ]
  2141. }
  2142. },
  2143. "autoload": {
  2144. "psr-4": {
  2145. "Laravel\\Tinker\\": "src/"
  2146. }
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "MIT"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "Taylor Otwell",
  2155. "email": "taylor@laravel.com"
  2156. }
  2157. ],
  2158. "description": "Powerful REPL for the Laravel framework.",
  2159. "keywords": [
  2160. "REPL",
  2161. "Tinker",
  2162. "laravel",
  2163. "psysh"
  2164. ],
  2165. "support": {
  2166. "issues": "https://github.com/laravel/tinker/issues",
  2167. "source": "https://github.com/laravel/tinker/tree/v1.0.10"
  2168. },
  2169. "time": "2019-08-07T15:10:45+00:00"
  2170. },
  2171. {
  2172. "name": "lcobucci/jwt",
  2173. "version": "3.4.2",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/lcobucci/jwt.git",
  2177. "reference": "17cb82dd625ccb17c74bf8f38563d3b260306483"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/17cb82dd625ccb17c74bf8f38563d3b260306483",
  2182. "reference": "17cb82dd625ccb17c74bf8f38563d3b260306483",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "ext-mbstring": "*",
  2187. "ext-openssl": "*",
  2188. "php": "^5.6 || ^7.0"
  2189. },
  2190. "require-dev": {
  2191. "mikey179/vfsstream": "~1.5",
  2192. "phpmd/phpmd": "~2.2",
  2193. "phpunit/php-invoker": "~1.1",
  2194. "phpunit/phpunit": "^5.7 || ^7.3",
  2195. "squizlabs/php_codesniffer": "~2.3"
  2196. },
  2197. "suggest": {
  2198. "lcobucci/clock": "*"
  2199. },
  2200. "type": "library",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-master": "3.1-dev"
  2204. }
  2205. },
  2206. "autoload": {
  2207. "psr-4": {
  2208. "Lcobucci\\JWT\\": "src"
  2209. },
  2210. "files": [
  2211. "compat/class-aliases.php",
  2212. "compat/json-exception-polyfill.php",
  2213. "compat/lcobucci-clock-polyfill.php"
  2214. ]
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "BSD-3-Clause"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "Luís Otávio Cobucci Oblonczyk",
  2223. "email": "lcobucci@gmail.com",
  2224. "role": "Developer"
  2225. }
  2226. ],
  2227. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2228. "keywords": [
  2229. "JWS",
  2230. "jwt"
  2231. ],
  2232. "support": {
  2233. "issues": "https://github.com/lcobucci/jwt/issues",
  2234. "source": "https://github.com/lcobucci/jwt/tree/3.4.2"
  2235. },
  2236. "funding": [
  2237. {
  2238. "url": "https://github.com/lcobucci",
  2239. "type": "github"
  2240. },
  2241. {
  2242. "url": "https://www.patreon.com/lcobucci",
  2243. "type": "patreon"
  2244. }
  2245. ],
  2246. "time": "2020-12-03T13:43:45+00:00"
  2247. },
  2248. {
  2249. "name": "league/flysystem",
  2250. "version": "1.1.3",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/thephpleague/flysystem.git",
  2254. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2259. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "ext-fileinfo": "*",
  2264. "league/mime-type-detection": "^1.3",
  2265. "php": "^7.2.5 || ^8.0"
  2266. },
  2267. "conflict": {
  2268. "league/flysystem-sftp": "<1.0.6"
  2269. },
  2270. "require-dev": {
  2271. "phpspec/prophecy": "^1.11.1",
  2272. "phpunit/phpunit": "^8.5.8"
  2273. },
  2274. "suggest": {
  2275. "ext-fileinfo": "Required for MimeType",
  2276. "ext-ftp": "Allows you to use FTP server storage",
  2277. "ext-openssl": "Allows you to use FTPS server storage",
  2278. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2279. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2280. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2281. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2282. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2283. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2284. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2285. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2286. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2287. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2288. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2289. },
  2290. "type": "library",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-master": "1.1-dev"
  2294. }
  2295. },
  2296. "autoload": {
  2297. "psr-4": {
  2298. "League\\Flysystem\\": "src/"
  2299. }
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "Frank de Jonge",
  2308. "email": "info@frenky.net"
  2309. }
  2310. ],
  2311. "description": "Filesystem abstraction: Many filesystems, one API.",
  2312. "keywords": [
  2313. "Cloud Files",
  2314. "WebDAV",
  2315. "abstraction",
  2316. "aws",
  2317. "cloud",
  2318. "copy.com",
  2319. "dropbox",
  2320. "file systems",
  2321. "files",
  2322. "filesystem",
  2323. "filesystems",
  2324. "ftp",
  2325. "rackspace",
  2326. "remote",
  2327. "s3",
  2328. "sftp",
  2329. "storage"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/thephpleague/flysystem/issues",
  2333. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://offset.earth/frankdejonge",
  2338. "type": "other"
  2339. }
  2340. ],
  2341. "time": "2020-08-23T07:39:11+00:00"
  2342. },
  2343. {
  2344. "name": "league/fractal",
  2345. "version": "0.19.2",
  2346. "source": {
  2347. "type": "git",
  2348. "url": "https://github.com/thephpleague/fractal.git",
  2349. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  2350. },
  2351. "dist": {
  2352. "type": "zip",
  2353. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2354. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2355. "shasum": ""
  2356. },
  2357. "require": {
  2358. "php": ">=5.4"
  2359. },
  2360. "require-dev": {
  2361. "doctrine/orm": "^2.5",
  2362. "illuminate/contracts": "~5.0",
  2363. "mockery/mockery": "~0.9",
  2364. "pagerfanta/pagerfanta": "~1.0.0",
  2365. "phpunit/phpunit": "^4.8.35 || ^7.5",
  2366. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  2367. "zendframework/zend-paginator": "~2.3"
  2368. },
  2369. "suggest": {
  2370. "illuminate/pagination": "The Illuminate Pagination component.",
  2371. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2372. "zendframework/zend-paginator": "Zend Framework Paginator"
  2373. },
  2374. "type": "library",
  2375. "extra": {
  2376. "branch-alias": {
  2377. "dev-master": "0.13-dev"
  2378. }
  2379. },
  2380. "autoload": {
  2381. "psr-4": {
  2382. "League\\Fractal\\": "src"
  2383. }
  2384. },
  2385. "notification-url": "https://packagist.org/downloads/",
  2386. "license": [
  2387. "MIT"
  2388. ],
  2389. "authors": [
  2390. {
  2391. "name": "Phil Sturgeon",
  2392. "email": "me@philsturgeon.uk",
  2393. "homepage": "http://philsturgeon.uk/",
  2394. "role": "Developer"
  2395. }
  2396. ],
  2397. "description": "Handle the output of complex data structures ready for API output.",
  2398. "homepage": "http://fractal.thephpleague.com/",
  2399. "keywords": [
  2400. "api",
  2401. "json",
  2402. "league",
  2403. "rest"
  2404. ],
  2405. "support": {
  2406. "issues": "https://github.com/thephpleague/fractal/issues",
  2407. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  2408. },
  2409. "time": "2020-01-24T23:17:29+00:00"
  2410. },
  2411. {
  2412. "name": "league/mime-type-detection",
  2413. "version": "1.5.1",
  2414. "source": {
  2415. "type": "git",
  2416. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2417. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2418. },
  2419. "dist": {
  2420. "type": "zip",
  2421. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2422. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2423. "shasum": ""
  2424. },
  2425. "require": {
  2426. "ext-fileinfo": "*",
  2427. "php": "^7.2 || ^8.0"
  2428. },
  2429. "require-dev": {
  2430. "phpstan/phpstan": "^0.12.36",
  2431. "phpunit/phpunit": "^8.5.8"
  2432. },
  2433. "type": "library",
  2434. "autoload": {
  2435. "psr-4": {
  2436. "League\\MimeTypeDetection\\": "src"
  2437. }
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "MIT"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "Frank de Jonge",
  2446. "email": "info@frankdejonge.nl"
  2447. }
  2448. ],
  2449. "description": "Mime-type detection for Flysystem",
  2450. "support": {
  2451. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2452. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://github.com/frankdejonge",
  2457. "type": "github"
  2458. },
  2459. {
  2460. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2461. "type": "tidelift"
  2462. }
  2463. ],
  2464. "time": "2020-10-18T11:50:25+00:00"
  2465. },
  2466. {
  2467. "name": "mailchimp/mailchimp",
  2468. "version": "2.0.6",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://bitbucket.org/mailchimp/mailchimp-api-php.git",
  2472. "reference": "7ac99b5ac746d5875c5c350ad7e3b83674c83ec1"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://bitbucket.org/mailchimp/mailchimp-api-php/get/7ac99b5ac746d5875c5c350ad7e3b83674c83ec1.zip",
  2477. "reference": "7ac99b5ac746d5875c5c350ad7e3b83674c83ec1",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "php": ">=5.2.0"
  2482. },
  2483. "require-dev": {
  2484. "apigen/apigen": "dev-master"
  2485. },
  2486. "type": "library",
  2487. "autoload": {
  2488. "psr-0": {
  2489. "Mailchimp": "src/"
  2490. }
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "MIT"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "MailChimp Devs",
  2499. "email": "api@mailchimp.com",
  2500. "homepage": "http://mailchimp.com",
  2501. "role": "Developer"
  2502. }
  2503. ],
  2504. "description": "API client library for the MailChimp bulk email as a service platform",
  2505. "homepage": "https://bitbucket.org/mailchimp/mailchimp-api-php",
  2506. "keywords": [
  2507. "api",
  2508. "email"
  2509. ],
  2510. "time": "2014-10-30T20:38:12+00:00"
  2511. },
  2512. {
  2513. "name": "monolog/monolog",
  2514. "version": "1.26.0",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/Seldaek/monolog.git",
  2518. "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
  2523. "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
  2524. "shasum": ""
  2525. },
  2526. "require": {
  2527. "php": ">=5.3.0",
  2528. "psr/log": "~1.0"
  2529. },
  2530. "provide": {
  2531. "psr/log-implementation": "1.0.0"
  2532. },
  2533. "require-dev": {
  2534. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2535. "doctrine/couchdb": "~1.0@dev",
  2536. "graylog2/gelf-php": "~1.0",
  2537. "php-amqplib/php-amqplib": "~2.4",
  2538. "php-console/php-console": "^3.1.3",
  2539. "phpstan/phpstan": "^0.12.59",
  2540. "phpunit/phpunit": "~4.5",
  2541. "ruflin/elastica": ">=0.90 <3.0",
  2542. "sentry/sentry": "^0.13",
  2543. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2544. },
  2545. "suggest": {
  2546. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2547. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2548. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2549. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2550. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2551. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2552. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2553. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2554. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2555. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2556. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2557. },
  2558. "type": "library",
  2559. "autoload": {
  2560. "psr-4": {
  2561. "Monolog\\": "src/Monolog"
  2562. }
  2563. },
  2564. "notification-url": "https://packagist.org/downloads/",
  2565. "license": [
  2566. "MIT"
  2567. ],
  2568. "authors": [
  2569. {
  2570. "name": "Jordi Boggiano",
  2571. "email": "j.boggiano@seld.be",
  2572. "homepage": "http://seld.be"
  2573. }
  2574. ],
  2575. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2576. "homepage": "http://github.com/Seldaek/monolog",
  2577. "keywords": [
  2578. "log",
  2579. "logging",
  2580. "psr-3"
  2581. ],
  2582. "support": {
  2583. "issues": "https://github.com/Seldaek/monolog/issues",
  2584. "source": "https://github.com/Seldaek/monolog/tree/1.26.0"
  2585. },
  2586. "funding": [
  2587. {
  2588. "url": "https://github.com/Seldaek",
  2589. "type": "github"
  2590. },
  2591. {
  2592. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2593. "type": "tidelift"
  2594. }
  2595. ],
  2596. "time": "2020-12-14T12:56:38+00:00"
  2597. },
  2598. {
  2599. "name": "nesbot/carbon",
  2600. "version": "1.39.1",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/briannesbitt/Carbon.git",
  2604. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2609. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "kylekatarnls/update-helper": "^1.1",
  2614. "php": ">=5.3.9",
  2615. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  2616. },
  2617. "require-dev": {
  2618. "composer/composer": "^1.2",
  2619. "friendsofphp/php-cs-fixer": "~2",
  2620. "phpunit/phpunit": "^4.8.35 || ^5.7"
  2621. },
  2622. "bin": [
  2623. "bin/upgrade-carbon"
  2624. ],
  2625. "type": "library",
  2626. "extra": {
  2627. "update-helper": "Carbon\\Upgrade",
  2628. "laravel": {
  2629. "providers": [
  2630. "Carbon\\Laravel\\ServiceProvider"
  2631. ]
  2632. }
  2633. },
  2634. "autoload": {
  2635. "psr-4": {
  2636. "": "src/"
  2637. }
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Brian Nesbitt",
  2646. "email": "brian@nesbot.com",
  2647. "homepage": "http://nesbot.com"
  2648. }
  2649. ],
  2650. "description": "A simple API extension for DateTime.",
  2651. "homepage": "http://carbon.nesbot.com",
  2652. "keywords": [
  2653. "date",
  2654. "datetime",
  2655. "time"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2659. "source": "https://github.com/briannesbitt/Carbon"
  2660. },
  2661. "time": "2019-10-14T05:51:36+00:00"
  2662. },
  2663. {
  2664. "name": "nexmo/client",
  2665. "version": "1.9.1",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/Nexmo/nexmo-php-complete.git",
  2669. "reference": "c6d11d953c8c5594590bb9ebaba9616e76948f93"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/Nexmo/nexmo-php-complete/zipball/c6d11d953c8c5594590bb9ebaba9616e76948f93",
  2674. "reference": "c6d11d953c8c5594590bb9ebaba9616e76948f93",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "nexmo/client-core": "^1.0",
  2679. "php": ">=5.6",
  2680. "php-http/guzzle6-adapter": "^1.0"
  2681. },
  2682. "type": "library",
  2683. "notification-url": "https://packagist.org/downloads/",
  2684. "license": [
  2685. "MIT"
  2686. ],
  2687. "authors": [
  2688. {
  2689. "name": "Tim Lytle",
  2690. "email": "tim@nexmo.com",
  2691. "homepage": "http://twitter.com/tjlytle",
  2692. "role": "Developer"
  2693. },
  2694. {
  2695. "name": "Michael Heap",
  2696. "email": "michael.heap@vonage.com",
  2697. "role": "Developer"
  2698. },
  2699. {
  2700. "name": "Lorna Mitchell",
  2701. "email": "lorna.mitchell@vonage.com",
  2702. "role": "Developer"
  2703. }
  2704. ],
  2705. "description": "PHP Client for using Nexmo's API.",
  2706. "support": {
  2707. "email": "devrel@nexmo.com",
  2708. "source": "https://github.com/Nexmo/nexmo-php-complete/tree/1.9.1"
  2709. },
  2710. "time": "2019-11-26T15:25:11+00:00"
  2711. },
  2712. {
  2713. "name": "nexmo/client-core",
  2714. "version": "1.8.1",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/Nexmo/nexmo-php.git",
  2718. "reference": "182d41a02ebd3e4be147baea45458ccfe2f528c4"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/Nexmo/nexmo-php/zipball/182d41a02ebd3e4be147baea45458ccfe2f528c4",
  2723. "reference": "182d41a02ebd3e4be147baea45458ccfe2f528c4",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "lcobucci/jwt": "^3.2",
  2728. "php": ">=5.6",
  2729. "php-http/client-implementation": "^1.0",
  2730. "php-http/guzzle6-adapter": "^1.0",
  2731. "zendframework/zend-diactoros": "^1.8.4 || ^2.0"
  2732. },
  2733. "require-dev": {
  2734. "estahn/phpunit-json-assertions": "^1.0.0",
  2735. "php-http/mock-client": "^0.3.0",
  2736. "phpunit/phpunit": "^5.7",
  2737. "squizlabs/php_codesniffer": "^3.1"
  2738. },
  2739. "type": "library",
  2740. "autoload": {
  2741. "psr-4": {
  2742. "Nexmo\\": "src/"
  2743. }
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "MIT"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Tim Lytle",
  2752. "email": "tim@nexmo.com",
  2753. "homepage": "http://twitter.com/tjlytle",
  2754. "role": "Developer"
  2755. }
  2756. ],
  2757. "description": "PHP Client for using Nexmo's API.",
  2758. "support": {
  2759. "email": "devrel@nexmo.com",
  2760. "source": "https://github.com/Nexmo/nexmo-php/tree/1.8.1"
  2761. },
  2762. "time": "2019-05-13T20:27:43+00:00"
  2763. },
  2764. {
  2765. "name": "nicolaslopezj/searchable",
  2766. "version": "1.13.0",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/nicolaslopezj/searchable.git",
  2770. "reference": "b1d24ea45f75e36a11a093efa46fe44c06dd10b7"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/nicolaslopezj/searchable/zipball/b1d24ea45f75e36a11a093efa46fe44c06dd10b7",
  2775. "reference": "b1d24ea45f75e36a11a093efa46fe44c06dd10b7",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "ext-mbstring": "*",
  2780. "illuminate/database": ">=4.2",
  2781. "php": ">=5.4.0"
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "psr-4": {
  2786. "Nicolaslopezj\\Searchable\\": "src/"
  2787. }
  2788. },
  2789. "notification-url": "https://packagist.org/downloads/",
  2790. "license": [
  2791. "MIT"
  2792. ],
  2793. "authors": [
  2794. {
  2795. "name": "Nicolas Lopez",
  2796. "email": "nicolaslopezj@me.com"
  2797. }
  2798. ],
  2799. "description": "Eloquent model search trait.",
  2800. "keywords": [
  2801. "database",
  2802. "eloquent",
  2803. "laravel",
  2804. "model",
  2805. "search",
  2806. "searchable"
  2807. ],
  2808. "support": {
  2809. "issues": "https://github.com/nicolaslopezj/searchable/issues",
  2810. "source": "https://github.com/nicolaslopezj/searchable/tree/master"
  2811. },
  2812. "time": "2020-03-30T12:30:18+00:00"
  2813. },
  2814. {
  2815. "name": "nikic/php-parser",
  2816. "version": "v4.10.4",
  2817. "source": {
  2818. "type": "git",
  2819. "url": "https://github.com/nikic/PHP-Parser.git",
  2820. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  2821. },
  2822. "dist": {
  2823. "type": "zip",
  2824. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  2825. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  2826. "shasum": ""
  2827. },
  2828. "require": {
  2829. "ext-tokenizer": "*",
  2830. "php": ">=7.0"
  2831. },
  2832. "require-dev": {
  2833. "ircmaxell/php-yacc": "^0.0.7",
  2834. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2835. },
  2836. "bin": [
  2837. "bin/php-parse"
  2838. ],
  2839. "type": "library",
  2840. "extra": {
  2841. "branch-alias": {
  2842. "dev-master": "4.9-dev"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "PhpParser\\": "lib/PhpParser"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "BSD-3-Clause"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Nikita Popov"
  2857. }
  2858. ],
  2859. "description": "A PHP parser written in PHP",
  2860. "keywords": [
  2861. "parser",
  2862. "php"
  2863. ],
  2864. "support": {
  2865. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2866. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  2867. },
  2868. "time": "2020-12-20T10:01:03+00:00"
  2869. },
  2870. {
  2871. "name": "opis/closure",
  2872. "version": "3.6.1",
  2873. "source": {
  2874. "type": "git",
  2875. "url": "https://github.com/opis/closure.git",
  2876. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  2877. },
  2878. "dist": {
  2879. "type": "zip",
  2880. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2881. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2882. "shasum": ""
  2883. },
  2884. "require": {
  2885. "php": "^5.4 || ^7.0 || ^8.0"
  2886. },
  2887. "require-dev": {
  2888. "jeremeamia/superclosure": "^2.0",
  2889. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2890. },
  2891. "type": "library",
  2892. "extra": {
  2893. "branch-alias": {
  2894. "dev-master": "3.6.x-dev"
  2895. }
  2896. },
  2897. "autoload": {
  2898. "psr-4": {
  2899. "Opis\\Closure\\": "src/"
  2900. },
  2901. "files": [
  2902. "functions.php"
  2903. ]
  2904. },
  2905. "notification-url": "https://packagist.org/downloads/",
  2906. "license": [
  2907. "MIT"
  2908. ],
  2909. "authors": [
  2910. {
  2911. "name": "Marius Sarca",
  2912. "email": "marius.sarca@gmail.com"
  2913. },
  2914. {
  2915. "name": "Sorin Sarca",
  2916. "email": "sarca_sorin@hotmail.com"
  2917. }
  2918. ],
  2919. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2920. "homepage": "https://opis.io/closure",
  2921. "keywords": [
  2922. "anonymous functions",
  2923. "closure",
  2924. "function",
  2925. "serializable",
  2926. "serialization",
  2927. "serialize"
  2928. ],
  2929. "support": {
  2930. "issues": "https://github.com/opis/closure/issues",
  2931. "source": "https://github.com/opis/closure/tree/3.6.1"
  2932. },
  2933. "time": "2020-11-07T02:01:34+00:00"
  2934. },
  2935. {
  2936. "name": "paragonie/random_compat",
  2937. "version": "v9.99.99",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/paragonie/random_compat.git",
  2941. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2946. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "php": "^7"
  2951. },
  2952. "require-dev": {
  2953. "phpunit/phpunit": "4.*|5.*",
  2954. "vimeo/psalm": "^1"
  2955. },
  2956. "suggest": {
  2957. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2958. },
  2959. "type": "library",
  2960. "notification-url": "https://packagist.org/downloads/",
  2961. "license": [
  2962. "MIT"
  2963. ],
  2964. "authors": [
  2965. {
  2966. "name": "Paragon Initiative Enterprises",
  2967. "email": "security@paragonie.com",
  2968. "homepage": "https://paragonie.com"
  2969. }
  2970. ],
  2971. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2972. "keywords": [
  2973. "csprng",
  2974. "polyfill",
  2975. "pseudorandom",
  2976. "random"
  2977. ],
  2978. "support": {
  2979. "email": "info@paragonie.com",
  2980. "issues": "https://github.com/paragonie/random_compat/issues",
  2981. "source": "https://github.com/paragonie/random_compat"
  2982. },
  2983. "time": "2018-07-02T15:55:56+00:00"
  2984. },
  2985. {
  2986. "name": "paypal/rest-api-sdk-php",
  2987. "version": "1.14.0",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  2991. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  2996. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "ext-curl": "*",
  3001. "ext-json": "*",
  3002. "php": ">=5.3.0",
  3003. "psr/log": "^1.0.0"
  3004. },
  3005. "require-dev": {
  3006. "phpunit/phpunit": "^4.8.35"
  3007. },
  3008. "type": "library",
  3009. "autoload": {
  3010. "psr-0": {
  3011. "PayPal": "lib/"
  3012. }
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "Apache-2.0"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "PayPal",
  3021. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3022. }
  3023. ],
  3024. "description": "PayPal's PHP SDK for REST APIs",
  3025. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3026. "keywords": [
  3027. "payments",
  3028. "paypal",
  3029. "rest",
  3030. "sdk"
  3031. ],
  3032. "support": {
  3033. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3034. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3035. },
  3036. "abandoned": true,
  3037. "time": "2019-01-04T20:04:25+00:00"
  3038. },
  3039. {
  3040. "name": "phenx/php-font-lib",
  3041. "version": "0.5.2",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/PhenX/php-font-lib.git",
  3045. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  3050. "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
  3051. "shasum": ""
  3052. },
  3053. "require-dev": {
  3054. "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
  3055. },
  3056. "type": "library",
  3057. "autoload": {
  3058. "psr-4": {
  3059. "FontLib\\": "src/FontLib"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "LGPL-3.0"
  3065. ],
  3066. "authors": [
  3067. {
  3068. "name": "Fabien Ménager",
  3069. "email": "fabien.menager@gmail.com"
  3070. }
  3071. ],
  3072. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3073. "homepage": "https://github.com/PhenX/php-font-lib",
  3074. "support": {
  3075. "issues": "https://github.com/PhenX/php-font-lib/issues",
  3076. "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
  3077. },
  3078. "time": "2020-03-08T15:31:32+00:00"
  3079. },
  3080. {
  3081. "name": "phenx/php-svg-lib",
  3082. "version": "v0.3.3",
  3083. "source": {
  3084. "type": "git",
  3085. "url": "https://github.com/PhenX/php-svg-lib.git",
  3086. "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32"
  3087. },
  3088. "dist": {
  3089. "type": "zip",
  3090. "url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
  3091. "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
  3092. "shasum": ""
  3093. },
  3094. "require": {
  3095. "sabberworm/php-css-parser": "^8.3"
  3096. },
  3097. "require-dev": {
  3098. "phpunit/phpunit": "^5.5|^6.5"
  3099. },
  3100. "type": "library",
  3101. "autoload": {
  3102. "psr-4": {
  3103. "Svg\\": "src/Svg"
  3104. }
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "LGPL-3.0"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Fabien Ménager",
  3113. "email": "fabien.menager@gmail.com"
  3114. }
  3115. ],
  3116. "description": "A library to read, parse and export to PDF SVG files.",
  3117. "homepage": "https://github.com/PhenX/php-svg-lib",
  3118. "support": {
  3119. "issues": "https://github.com/PhenX/php-svg-lib/issues",
  3120. "source": "https://github.com/PhenX/php-svg-lib/tree/master"
  3121. },
  3122. "time": "2019-09-11T20:02:13+00:00"
  3123. },
  3124. {
  3125. "name": "php-http/guzzle6-adapter",
  3126. "version": "v1.1.1",
  3127. "source": {
  3128. "type": "git",
  3129. "url": "https://github.com/php-http/guzzle6-adapter.git",
  3130. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab"
  3131. },
  3132. "dist": {
  3133. "type": "zip",
  3134. "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/a56941f9dc6110409cfcddc91546ee97039277ab",
  3135. "reference": "a56941f9dc6110409cfcddc91546ee97039277ab",
  3136. "shasum": ""
  3137. },
  3138. "require": {
  3139. "guzzlehttp/guzzle": "^6.0",
  3140. "php": ">=5.5.0",
  3141. "php-http/httplug": "^1.0"
  3142. },
  3143. "provide": {
  3144. "php-http/async-client-implementation": "1.0",
  3145. "php-http/client-implementation": "1.0"
  3146. },
  3147. "require-dev": {
  3148. "ext-curl": "*",
  3149. "php-http/adapter-integration-tests": "^0.4"
  3150. },
  3151. "type": "library",
  3152. "extra": {
  3153. "branch-alias": {
  3154. "dev-master": "1.2-dev"
  3155. }
  3156. },
  3157. "autoload": {
  3158. "psr-4": {
  3159. "Http\\Adapter\\Guzzle6\\": "src/"
  3160. }
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Márk Sági-Kazár",
  3169. "email": "mark.sagikazar@gmail.com"
  3170. },
  3171. {
  3172. "name": "David de Boer",
  3173. "email": "david@ddeboer.nl"
  3174. }
  3175. ],
  3176. "description": "Guzzle 6 HTTP Adapter",
  3177. "homepage": "http://httplug.io",
  3178. "keywords": [
  3179. "Guzzle",
  3180. "http"
  3181. ],
  3182. "support": {
  3183. "issues": "https://github.com/php-http/guzzle6-adapter/issues",
  3184. "source": "https://github.com/php-http/guzzle6-adapter/tree/master"
  3185. },
  3186. "time": "2016-05-10T06:13:32+00:00"
  3187. },
  3188. {
  3189. "name": "php-http/httplug",
  3190. "version": "v1.1.0",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/php-http/httplug.git",
  3194. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3199. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  3200. "shasum": ""
  3201. },
  3202. "require": {
  3203. "php": ">=5.4",
  3204. "php-http/promise": "^1.0",
  3205. "psr/http-message": "^1.0"
  3206. },
  3207. "require-dev": {
  3208. "henrikbjorn/phpspec-code-coverage": "^1.0",
  3209. "phpspec/phpspec": "^2.4"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "1.1-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Http\\Client\\": "src/"
  3220. }
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "Eric GELOEN",
  3229. "email": "geloen.eric@gmail.com"
  3230. },
  3231. {
  3232. "name": "Márk Sági-Kazár",
  3233. "email": "mark.sagikazar@gmail.com"
  3234. }
  3235. ],
  3236. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3237. "homepage": "http://httplug.io",
  3238. "keywords": [
  3239. "client",
  3240. "http"
  3241. ],
  3242. "support": {
  3243. "issues": "https://github.com/php-http/httplug/issues",
  3244. "source": "https://github.com/php-http/httplug/tree/master"
  3245. },
  3246. "time": "2016-08-31T08:30:17+00:00"
  3247. },
  3248. {
  3249. "name": "php-http/promise",
  3250. "version": "1.1.0",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/php-http/promise.git",
  3254. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3259. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "php": "^7.1 || ^8.0"
  3264. },
  3265. "require-dev": {
  3266. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  3267. "phpspec/phpspec": "^5.1.2 || ^6.2"
  3268. },
  3269. "type": "library",
  3270. "extra": {
  3271. "branch-alias": {
  3272. "dev-master": "1.1-dev"
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "Http\\Promise\\": "src/"
  3278. }
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "Joel Wurtz",
  3287. "email": "joel.wurtz@gmail.com"
  3288. },
  3289. {
  3290. "name": "Márk Sági-Kazár",
  3291. "email": "mark.sagikazar@gmail.com"
  3292. }
  3293. ],
  3294. "description": "Promise used for asynchronous HTTP requests",
  3295. "homepage": "http://httplug.io",
  3296. "keywords": [
  3297. "promise"
  3298. ],
  3299. "support": {
  3300. "issues": "https://github.com/php-http/promise/issues",
  3301. "source": "https://github.com/php-http/promise/tree/1.1.0"
  3302. },
  3303. "time": "2020-07-07T09:29:14+00:00"
  3304. },
  3305. {
  3306. "name": "psr/container",
  3307. "version": "1.0.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/php-fig/container.git",
  3311. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3316. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3317. "shasum": ""
  3318. },
  3319. "require": {
  3320. "php": ">=5.3.0"
  3321. },
  3322. "type": "library",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "1.0.x-dev"
  3326. }
  3327. },
  3328. "autoload": {
  3329. "psr-4": {
  3330. "Psr\\Container\\": "src/"
  3331. }
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "MIT"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "PHP-FIG",
  3340. "homepage": "http://www.php-fig.org/"
  3341. }
  3342. ],
  3343. "description": "Common Container Interface (PHP FIG PSR-11)",
  3344. "homepage": "https://github.com/php-fig/container",
  3345. "keywords": [
  3346. "PSR-11",
  3347. "container",
  3348. "container-interface",
  3349. "container-interop",
  3350. "psr"
  3351. ],
  3352. "support": {
  3353. "issues": "https://github.com/php-fig/container/issues",
  3354. "source": "https://github.com/php-fig/container/tree/master"
  3355. },
  3356. "time": "2017-02-14T16:28:37+00:00"
  3357. },
  3358. {
  3359. "name": "psr/http-factory",
  3360. "version": "1.0.1",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/php-fig/http-factory.git",
  3364. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3369. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3370. "shasum": ""
  3371. },
  3372. "require": {
  3373. "php": ">=7.0.0",
  3374. "psr/http-message": "^1.0"
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "branch-alias": {
  3379. "dev-master": "1.0.x-dev"
  3380. }
  3381. },
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Psr\\Http\\Message\\": "src/"
  3385. }
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "authors": [
  3392. {
  3393. "name": "PHP-FIG",
  3394. "homepage": "http://www.php-fig.org/"
  3395. }
  3396. ],
  3397. "description": "Common interfaces for PSR-7 HTTP message factories",
  3398. "keywords": [
  3399. "factory",
  3400. "http",
  3401. "message",
  3402. "psr",
  3403. "psr-17",
  3404. "psr-7",
  3405. "request",
  3406. "response"
  3407. ],
  3408. "support": {
  3409. "source": "https://github.com/php-fig/http-factory/tree/master"
  3410. },
  3411. "time": "2019-04-30T12:38:16+00:00"
  3412. },
  3413. {
  3414. "name": "psr/http-message",
  3415. "version": "1.0.1",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/php-fig/http-message.git",
  3419. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3424. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3425. "shasum": ""
  3426. },
  3427. "require": {
  3428. "php": ">=5.3.0"
  3429. },
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-master": "1.0.x-dev"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "psr-4": {
  3438. "Psr\\Http\\Message\\": "src/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "MIT"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "PHP-FIG",
  3448. "homepage": "http://www.php-fig.org/"
  3449. }
  3450. ],
  3451. "description": "Common interface for HTTP messages",
  3452. "homepage": "https://github.com/php-fig/http-message",
  3453. "keywords": [
  3454. "http",
  3455. "http-message",
  3456. "psr",
  3457. "psr-7",
  3458. "request",
  3459. "response"
  3460. ],
  3461. "support": {
  3462. "source": "https://github.com/php-fig/http-message/tree/master"
  3463. },
  3464. "time": "2016-08-06T14:39:51+00:00"
  3465. },
  3466. {
  3467. "name": "psr/log",
  3468. "version": "1.1.3",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/php-fig/log.git",
  3472. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3477. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "php": ">=5.3.0"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "1.1.x-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Psr\\Log\\": "Psr/Log/"
  3492. }
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "MIT"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "PHP-FIG",
  3501. "homepage": "http://www.php-fig.org/"
  3502. }
  3503. ],
  3504. "description": "Common interface for logging libraries",
  3505. "homepage": "https://github.com/php-fig/log",
  3506. "keywords": [
  3507. "log",
  3508. "psr",
  3509. "psr-3"
  3510. ],
  3511. "support": {
  3512. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3513. },
  3514. "time": "2020-03-23T09:12:05+00:00"
  3515. },
  3516. {
  3517. "name": "psr/simple-cache",
  3518. "version": "1.0.1",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/php-fig/simple-cache.git",
  3522. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3527. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": ">=5.3.0"
  3532. },
  3533. "type": "library",
  3534. "extra": {
  3535. "branch-alias": {
  3536. "dev-master": "1.0.x-dev"
  3537. }
  3538. },
  3539. "autoload": {
  3540. "psr-4": {
  3541. "Psr\\SimpleCache\\": "src/"
  3542. }
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "MIT"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "PHP-FIG",
  3551. "homepage": "http://www.php-fig.org/"
  3552. }
  3553. ],
  3554. "description": "Common interfaces for simple caching",
  3555. "keywords": [
  3556. "cache",
  3557. "caching",
  3558. "psr",
  3559. "psr-16",
  3560. "simple-cache"
  3561. ],
  3562. "support": {
  3563. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3564. },
  3565. "time": "2017-10-23T01:57:42+00:00"
  3566. },
  3567. {
  3568. "name": "psy/psysh",
  3569. "version": "v0.9.12",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/bobthecow/psysh.git",
  3573. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  3578. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "dnoegel/php-xdg-base-dir": "0.1.*",
  3583. "ext-json": "*",
  3584. "ext-tokenizer": "*",
  3585. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3586. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3587. "php": ">=5.4.0",
  3588. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  3589. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  3590. },
  3591. "require-dev": {
  3592. "bamarni/composer-bin-plugin": "^1.2",
  3593. "hoa/console": "~2.15|~3.16",
  3594. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3595. },
  3596. "suggest": {
  3597. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3598. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3599. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3600. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3601. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3602. },
  3603. "bin": [
  3604. "bin/psysh"
  3605. ],
  3606. "type": "library",
  3607. "extra": {
  3608. "branch-alias": {
  3609. "dev-develop": "0.9.x-dev"
  3610. }
  3611. },
  3612. "autoload": {
  3613. "files": [
  3614. "src/functions.php"
  3615. ],
  3616. "psr-4": {
  3617. "Psy\\": "src/"
  3618. }
  3619. },
  3620. "notification-url": "https://packagist.org/downloads/",
  3621. "license": [
  3622. "MIT"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "Justin Hileman",
  3627. "email": "justin@justinhileman.info",
  3628. "homepage": "http://justinhileman.com"
  3629. }
  3630. ],
  3631. "description": "An interactive shell for modern PHP.",
  3632. "homepage": "http://psysh.org",
  3633. "keywords": [
  3634. "REPL",
  3635. "console",
  3636. "interactive",
  3637. "shell"
  3638. ],
  3639. "support": {
  3640. "issues": "https://github.com/bobthecow/psysh/issues",
  3641. "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
  3642. },
  3643. "time": "2019-12-06T14:19:43+00:00"
  3644. },
  3645. {
  3646. "name": "ralouphie/getallheaders",
  3647. "version": "3.0.3",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://github.com/ralouphie/getallheaders.git",
  3651. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3656. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3657. "shasum": ""
  3658. },
  3659. "require": {
  3660. "php": ">=5.6"
  3661. },
  3662. "require-dev": {
  3663. "php-coveralls/php-coveralls": "^2.1",
  3664. "phpunit/phpunit": "^5 || ^6.5"
  3665. },
  3666. "type": "library",
  3667. "autoload": {
  3668. "files": [
  3669. "src/getallheaders.php"
  3670. ]
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "authors": [
  3677. {
  3678. "name": "Ralph Khattar",
  3679. "email": "ralph.khattar@gmail.com"
  3680. }
  3681. ],
  3682. "description": "A polyfill for getallheaders.",
  3683. "support": {
  3684. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3685. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3686. },
  3687. "time": "2019-03-08T08:55:37+00:00"
  3688. },
  3689. {
  3690. "name": "ramsey/uuid",
  3691. "version": "3.9.3",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/ramsey/uuid.git",
  3695. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  3700. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "ext-json": "*",
  3705. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  3706. "php": "^5.4 | ^7 | ^8",
  3707. "symfony/polyfill-ctype": "^1.8"
  3708. },
  3709. "replace": {
  3710. "rhumsaa/uuid": "self.version"
  3711. },
  3712. "require-dev": {
  3713. "codeception/aspect-mock": "^1 | ^2",
  3714. "doctrine/annotations": "^1.2",
  3715. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  3716. "jakub-onderka/php-parallel-lint": "^1",
  3717. "mockery/mockery": "^0.9.11 | ^1",
  3718. "moontoast/math": "^1.1",
  3719. "paragonie/random-lib": "^2",
  3720. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  3721. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  3722. "squizlabs/php_codesniffer": "^3.5"
  3723. },
  3724. "suggest": {
  3725. "ext-ctype": "Provides support for PHP Ctype functions",
  3726. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3727. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3728. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3729. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3730. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3731. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3732. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3733. },
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-master": "3.x-dev"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "psr-4": {
  3742. "Ramsey\\Uuid\\": "src/"
  3743. },
  3744. "files": [
  3745. "src/functions.php"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Ben Ramsey",
  3755. "email": "ben@benramsey.com",
  3756. "homepage": "https://benramsey.com"
  3757. },
  3758. {
  3759. "name": "Marijn Huizendveld",
  3760. "email": "marijn.huizendveld@gmail.com"
  3761. },
  3762. {
  3763. "name": "Thibaud Fabre",
  3764. "email": "thibaud@aztech.io"
  3765. }
  3766. ],
  3767. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3768. "homepage": "https://github.com/ramsey/uuid",
  3769. "keywords": [
  3770. "guid",
  3771. "identifier",
  3772. "uuid"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/ramsey/uuid/issues",
  3776. "rss": "https://github.com/ramsey/uuid/releases.atom",
  3777. "source": "https://github.com/ramsey/uuid",
  3778. "wiki": "https://github.com/ramsey/uuid/wiki"
  3779. },
  3780. "time": "2020-02-21T04:36:14+00:00"
  3781. },
  3782. {
  3783. "name": "sabberworm/php-css-parser",
  3784. "version": "8.3.1",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  3788. "reference": "d217848e1396ef962fb1997cf3e2421acba7f796"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/d217848e1396ef962fb1997cf3e2421acba7f796",
  3793. "reference": "d217848e1396ef962fb1997cf3e2421acba7f796",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "php": ">=5.3.2"
  3798. },
  3799. "require-dev": {
  3800. "codacy/coverage": "^1.4",
  3801. "phpunit/phpunit": "~4.8"
  3802. },
  3803. "type": "library",
  3804. "autoload": {
  3805. "psr-0": {
  3806. "Sabberworm\\CSS": "lib/"
  3807. }
  3808. },
  3809. "notification-url": "https://packagist.org/downloads/",
  3810. "license": [
  3811. "MIT"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "Raphael Schweikert"
  3816. }
  3817. ],
  3818. "description": "Parser for CSS Files written in PHP",
  3819. "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  3820. "keywords": [
  3821. "css",
  3822. "parser",
  3823. "stylesheet"
  3824. ],
  3825. "support": {
  3826. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  3827. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1"
  3828. },
  3829. "time": "2020-06-01T09:10:00+00:00"
  3830. },
  3831. {
  3832. "name": "santigarcor/laratrust",
  3833. "version": "5.0.9",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/santigarcor/laratrust.git",
  3837. "reference": "526cc3e8970c35b97c71a7a6d8b63c2073568bb1"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/santigarcor/laratrust/zipball/526cc3e8970c35b97c71a7a6d8b63c2073568bb1",
  3842. "reference": "526cc3e8970c35b97c71a7a6d8b63c2073568bb1",
  3843. "shasum": ""
  3844. },
  3845. "require": {
  3846. "illuminate/auth": "~5.2",
  3847. "illuminate/cache": "~5.2",
  3848. "illuminate/console": "~5.2",
  3849. "illuminate/database": "^5.2.32",
  3850. "illuminate/support": "~5.2",
  3851. "kkszymanowski/traitor": "^0.2.0",
  3852. "php": ">=5.5.9"
  3853. },
  3854. "require-dev": {
  3855. "mockery/mockery": ">=0.9.9",
  3856. "orchestra/testbench": "~3.2",
  3857. "phpunit/phpunit": ">=4.1"
  3858. },
  3859. "type": "library",
  3860. "extra": {
  3861. "laravel": {
  3862. "providers": [
  3863. "Laratrust\\LaratrustServiceProvider"
  3864. ],
  3865. "aliases": {
  3866. "Laratrust": "Laratrust\\LaratrustFacade"
  3867. }
  3868. }
  3869. },
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Laratrust\\": "src/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Santiago Garcia",
  3882. "homepage": "http://santigarcor.me"
  3883. }
  3884. ],
  3885. "description": "This package provides a flexible way to add Role-based Permissions to Laravel",
  3886. "keywords": [
  3887. "Teams",
  3888. "acl",
  3889. "authorization",
  3890. "laratrust",
  3891. "laravel",
  3892. "multiusers",
  3893. "permissions",
  3894. "php",
  3895. "rbac",
  3896. "roles"
  3897. ],
  3898. "support": {
  3899. "issues": "https://github.com/santigarcor/laratrust/issues",
  3900. "source": "https://github.com/santigarcor/laratrust/tree/5.0"
  3901. },
  3902. "time": "2018-03-05T13:21:52+00:00"
  3903. },
  3904. {
  3905. "name": "shippo/shippo-php",
  3906. "version": "v1.4.4",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/goshippo/shippo-php-client.git",
  3910. "reference": "a2edfa7766f322ef9b719710a5b90df089a4008e"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/goshippo/shippo-php-client/zipball/a2edfa7766f322ef9b719710a5b90df089a4008e",
  3915. "reference": "a2edfa7766f322ef9b719710a5b90df089a4008e",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "ext-curl": "*",
  3920. "ext-json": "*",
  3921. "ext-mbstring": "*",
  3922. "php": ">=5.2"
  3923. },
  3924. "require-dev": {
  3925. "phpunit/phpunit": "5.5.*"
  3926. },
  3927. "type": "library",
  3928. "autoload": {
  3929. "classmap": [
  3930. "lib/Shippo/"
  3931. ]
  3932. },
  3933. "notification-url": "https://packagist.org/downloads/",
  3934. "license": [
  3935. "MIT"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "Shippo & Contributors",
  3940. "homepage": "https://goshippo.com/"
  3941. }
  3942. ],
  3943. "description": "A PHP library for connecting with multiple carriers (FedEx, UPS, USPS) using Shippo.",
  3944. "homepage": "https://goshippo.com/",
  3945. "keywords": [
  3946. "FedEx",
  3947. "Uber",
  3948. "address",
  3949. "dhl",
  3950. "shipping",
  3951. "shyp",
  3952. "tracking",
  3953. "ups",
  3954. "usps"
  3955. ],
  3956. "support": {
  3957. "issues": "https://github.com/goshippo/shippo-php-client/issues",
  3958. "source": "https://github.com/goshippo/shippo-php-client/tree/v1.4.4"
  3959. },
  3960. "time": "2020-09-14T13:26:17+00:00"
  3961. },
  3962. {
  3963. "name": "stripe/stripe-php",
  3964. "version": "v5.9.2",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/stripe/stripe-php.git",
  3968. "reference": "026191d12241a76c957884dff75e4f3721b0e77f"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/026191d12241a76c957884dff75e4f3721b0e77f",
  3973. "reference": "026191d12241a76c957884dff75e4f3721b0e77f",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "ext-curl": "*",
  3978. "ext-json": "*",
  3979. "ext-mbstring": "*",
  3980. "php": ">=5.3.3"
  3981. },
  3982. "require-dev": {
  3983. "phpunit/phpunit": "~4.0",
  3984. "satooshi/php-coveralls": "~0.6.1",
  3985. "squizlabs/php_codesniffer": "~2.0"
  3986. },
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-master": "2.0-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "Stripe\\": "lib/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Stripe and contributors",
  4005. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4006. }
  4007. ],
  4008. "description": "Stripe PHP Library",
  4009. "homepage": "https://stripe.com/",
  4010. "keywords": [
  4011. "api",
  4012. "payment processing",
  4013. "stripe"
  4014. ],
  4015. "support": {
  4016. "issues": "https://github.com/stripe/stripe-php/issues",
  4017. "source": "https://github.com/stripe/stripe-php/tree/master"
  4018. },
  4019. "time": "2018-02-07T18:36:55+00:00"
  4020. },
  4021. {
  4022. "name": "swiftmailer/swiftmailer",
  4023. "version": "v6.2.4",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4027. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4032. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "egulias/email-validator": "^2.0",
  4037. "php": ">=7.0.0",
  4038. "symfony/polyfill-iconv": "^1.0",
  4039. "symfony/polyfill-intl-idn": "^1.10",
  4040. "symfony/polyfill-mbstring": "^1.0"
  4041. },
  4042. "require-dev": {
  4043. "mockery/mockery": "^1.0",
  4044. "symfony/phpunit-bridge": "^4.4|^5.0"
  4045. },
  4046. "suggest": {
  4047. "ext-intl": "Needed to support internationalized email addresses"
  4048. },
  4049. "type": "library",
  4050. "extra": {
  4051. "branch-alias": {
  4052. "dev-master": "6.2-dev"
  4053. }
  4054. },
  4055. "autoload": {
  4056. "files": [
  4057. "lib/swift_required.php"
  4058. ]
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "Chris Corbyn"
  4067. },
  4068. {
  4069. "name": "Fabien Potencier",
  4070. "email": "fabien@symfony.com"
  4071. }
  4072. ],
  4073. "description": "Swiftmailer, free feature-rich PHP mailer",
  4074. "homepage": "https://swiftmailer.symfony.com",
  4075. "keywords": [
  4076. "email",
  4077. "mail",
  4078. "mailer"
  4079. ],
  4080. "support": {
  4081. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4082. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4083. },
  4084. "funding": [
  4085. {
  4086. "url": "https://github.com/fabpot",
  4087. "type": "github"
  4088. },
  4089. {
  4090. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4091. "type": "tidelift"
  4092. }
  4093. ],
  4094. "time": "2020-12-08T18:02:06+00:00"
  4095. },
  4096. {
  4097. "name": "symfony/console",
  4098. "version": "v4.4.18",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/symfony/console.git",
  4102. "reference": "12e071278e396cc3e1c149857337e9e192deca0b"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/symfony/console/zipball/12e071278e396cc3e1c149857337e9e192deca0b",
  4107. "reference": "12e071278e396cc3e1c149857337e9e192deca0b",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "php": ">=7.1.3",
  4112. "symfony/polyfill-mbstring": "~1.0",
  4113. "symfony/polyfill-php73": "^1.8",
  4114. "symfony/polyfill-php80": "^1.15",
  4115. "symfony/service-contracts": "^1.1|^2"
  4116. },
  4117. "conflict": {
  4118. "symfony/dependency-injection": "<3.4",
  4119. "symfony/event-dispatcher": "<4.3|>=5",
  4120. "symfony/lock": "<4.4",
  4121. "symfony/process": "<3.3"
  4122. },
  4123. "provide": {
  4124. "psr/log-implementation": "1.0"
  4125. },
  4126. "require-dev": {
  4127. "psr/log": "~1.0",
  4128. "symfony/config": "^3.4|^4.0|^5.0",
  4129. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4130. "symfony/event-dispatcher": "^4.3",
  4131. "symfony/lock": "^4.4|^5.0",
  4132. "symfony/process": "^3.4|^4.0|^5.0",
  4133. "symfony/var-dumper": "^4.3|^5.0"
  4134. },
  4135. "suggest": {
  4136. "psr/log": "For using the console logger",
  4137. "symfony/event-dispatcher": "",
  4138. "symfony/lock": "",
  4139. "symfony/process": ""
  4140. },
  4141. "type": "library",
  4142. "autoload": {
  4143. "psr-4": {
  4144. "Symfony\\Component\\Console\\": ""
  4145. },
  4146. "exclude-from-classmap": [
  4147. "/Tests/"
  4148. ]
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "Fabien Potencier",
  4157. "email": "fabien@symfony.com"
  4158. },
  4159. {
  4160. "name": "Symfony Community",
  4161. "homepage": "https://symfony.com/contributors"
  4162. }
  4163. ],
  4164. "description": "Symfony Console Component",
  4165. "homepage": "https://symfony.com",
  4166. "support": {
  4167. "source": "https://github.com/symfony/console/tree/v4.4.18"
  4168. },
  4169. "funding": [
  4170. {
  4171. "url": "https://symfony.com/sponsor",
  4172. "type": "custom"
  4173. },
  4174. {
  4175. "url": "https://github.com/fabpot",
  4176. "type": "github"
  4177. },
  4178. {
  4179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4180. "type": "tidelift"
  4181. }
  4182. ],
  4183. "time": "2020-12-18T07:41:31+00:00"
  4184. },
  4185. {
  4186. "name": "symfony/css-selector",
  4187. "version": "v5.2.1",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://github.com/symfony/css-selector.git",
  4191. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4196. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4197. "shasum": ""
  4198. },
  4199. "require": {
  4200. "php": ">=7.2.5"
  4201. },
  4202. "type": "library",
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Symfony\\Component\\CssSelector\\": ""
  4206. },
  4207. "exclude-from-classmap": [
  4208. "/Tests/"
  4209. ]
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Fabien Potencier",
  4218. "email": "fabien@symfony.com"
  4219. },
  4220. {
  4221. "name": "Jean-François Simon",
  4222. "email": "jeanfrancois.simon@sensiolabs.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Symfony CssSelector Component",
  4230. "homepage": "https://symfony.com",
  4231. "support": {
  4232. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4233. },
  4234. "funding": [
  4235. {
  4236. "url": "https://symfony.com/sponsor",
  4237. "type": "custom"
  4238. },
  4239. {
  4240. "url": "https://github.com/fabpot",
  4241. "type": "github"
  4242. },
  4243. {
  4244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4245. "type": "tidelift"
  4246. }
  4247. ],
  4248. "time": "2020-12-08T17:02:38+00:00"
  4249. },
  4250. {
  4251. "name": "symfony/debug",
  4252. "version": "v4.4.18",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/symfony/debug.git",
  4256. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  4261. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "php": ">=7.1.3",
  4266. "psr/log": "~1.0",
  4267. "symfony/polyfill-php80": "^1.15"
  4268. },
  4269. "conflict": {
  4270. "symfony/http-kernel": "<3.4"
  4271. },
  4272. "require-dev": {
  4273. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Symfony\\Component\\Debug\\": ""
  4279. },
  4280. "exclude-from-classmap": [
  4281. "/Tests/"
  4282. ]
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Fabien Potencier",
  4291. "email": "fabien@symfony.com"
  4292. },
  4293. {
  4294. "name": "Symfony Community",
  4295. "homepage": "https://symfony.com/contributors"
  4296. }
  4297. ],
  4298. "description": "Symfony Debug Component",
  4299. "homepage": "https://symfony.com",
  4300. "support": {
  4301. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  4302. },
  4303. "funding": [
  4304. {
  4305. "url": "https://symfony.com/sponsor",
  4306. "type": "custom"
  4307. },
  4308. {
  4309. "url": "https://github.com/fabpot",
  4310. "type": "github"
  4311. },
  4312. {
  4313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4314. "type": "tidelift"
  4315. }
  4316. ],
  4317. "time": "2020-12-10T16:34:26+00:00"
  4318. },
  4319. {
  4320. "name": "symfony/deprecation-contracts",
  4321. "version": "v2.2.0",
  4322. "source": {
  4323. "type": "git",
  4324. "url": "https://github.com/symfony/deprecation-contracts.git",
  4325. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4326. },
  4327. "dist": {
  4328. "type": "zip",
  4329. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4330. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4331. "shasum": ""
  4332. },
  4333. "require": {
  4334. "php": ">=7.1"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "2.2-dev"
  4340. },
  4341. "thanks": {
  4342. "name": "symfony/contracts",
  4343. "url": "https://github.com/symfony/contracts"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "files": [
  4348. "function.php"
  4349. ]
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "authors": [
  4356. {
  4357. "name": "Nicolas Grekas",
  4358. "email": "p@tchwork.com"
  4359. },
  4360. {
  4361. "name": "Symfony Community",
  4362. "homepage": "https://symfony.com/contributors"
  4363. }
  4364. ],
  4365. "description": "A generic function and convention to trigger deprecation notices",
  4366. "homepage": "https://symfony.com",
  4367. "support": {
  4368. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://symfony.com/sponsor",
  4373. "type": "custom"
  4374. },
  4375. {
  4376. "url": "https://github.com/fabpot",
  4377. "type": "github"
  4378. },
  4379. {
  4380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4381. "type": "tidelift"
  4382. }
  4383. ],
  4384. "time": "2020-09-07T11:33:47+00:00"
  4385. },
  4386. {
  4387. "name": "symfony/dom-crawler",
  4388. "version": "v4.4.18",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/symfony/dom-crawler.git",
  4392. "reference": "d44fbb02b458fe18d00fea18f24c97cefb87577e"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d44fbb02b458fe18d00fea18f24c97cefb87577e",
  4397. "reference": "d44fbb02b458fe18d00fea18f24c97cefb87577e",
  4398. "shasum": ""
  4399. },
  4400. "require": {
  4401. "php": ">=7.1.3",
  4402. "symfony/polyfill-ctype": "~1.8",
  4403. "symfony/polyfill-mbstring": "~1.0"
  4404. },
  4405. "conflict": {
  4406. "masterminds/html5": "<2.6"
  4407. },
  4408. "require-dev": {
  4409. "masterminds/html5": "^2.6",
  4410. "symfony/css-selector": "^3.4|^4.0|^5.0"
  4411. },
  4412. "suggest": {
  4413. "symfony/css-selector": ""
  4414. },
  4415. "type": "library",
  4416. "autoload": {
  4417. "psr-4": {
  4418. "Symfony\\Component\\DomCrawler\\": ""
  4419. },
  4420. "exclude-from-classmap": [
  4421. "/Tests/"
  4422. ]
  4423. },
  4424. "notification-url": "https://packagist.org/downloads/",
  4425. "license": [
  4426. "MIT"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "Fabien Potencier",
  4431. "email": "fabien@symfony.com"
  4432. },
  4433. {
  4434. "name": "Symfony Community",
  4435. "homepage": "https://symfony.com/contributors"
  4436. }
  4437. ],
  4438. "description": "Symfony DomCrawler Component",
  4439. "homepage": "https://symfony.com",
  4440. "support": {
  4441. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.18"
  4442. },
  4443. "funding": [
  4444. {
  4445. "url": "https://symfony.com/sponsor",
  4446. "type": "custom"
  4447. },
  4448. {
  4449. "url": "https://github.com/fabpot",
  4450. "type": "github"
  4451. },
  4452. {
  4453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4454. "type": "tidelift"
  4455. }
  4456. ],
  4457. "time": "2020-12-18T07:41:31+00:00"
  4458. },
  4459. {
  4460. "name": "symfony/error-handler",
  4461. "version": "v4.4.18",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/symfony/error-handler.git",
  4465. "reference": "ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3",
  4470. "reference": "ef2f7ddd3b9177bbf8ff2ecd8d0e970ed48da0c3",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "php": ">=7.1.3",
  4475. "psr/log": "~1.0",
  4476. "symfony/debug": "^4.4.5",
  4477. "symfony/polyfill-php80": "^1.15",
  4478. "symfony/var-dumper": "^4.4|^5.0"
  4479. },
  4480. "require-dev": {
  4481. "symfony/http-kernel": "^4.4|^5.0",
  4482. "symfony/serializer": "^4.4|^5.0"
  4483. },
  4484. "type": "library",
  4485. "autoload": {
  4486. "psr-4": {
  4487. "Symfony\\Component\\ErrorHandler\\": ""
  4488. },
  4489. "exclude-from-classmap": [
  4490. "/Tests/"
  4491. ]
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Fabien Potencier",
  4500. "email": "fabien@symfony.com"
  4501. },
  4502. {
  4503. "name": "Symfony Community",
  4504. "homepage": "https://symfony.com/contributors"
  4505. }
  4506. ],
  4507. "description": "Symfony ErrorHandler Component",
  4508. "homepage": "https://symfony.com",
  4509. "support": {
  4510. "source": "https://github.com/symfony/error-handler/tree/v4.4.18"
  4511. },
  4512. "funding": [
  4513. {
  4514. "url": "https://symfony.com/sponsor",
  4515. "type": "custom"
  4516. },
  4517. {
  4518. "url": "https://github.com/fabpot",
  4519. "type": "github"
  4520. },
  4521. {
  4522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4523. "type": "tidelift"
  4524. }
  4525. ],
  4526. "time": "2020-12-09T11:15:38+00:00"
  4527. },
  4528. {
  4529. "name": "symfony/event-dispatcher",
  4530. "version": "v4.4.18",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://github.com/symfony/event-dispatcher.git",
  4534. "reference": "5d4c874b0eb1c32d40328a09dbc37307a5a910b0"
  4535. },
  4536. "dist": {
  4537. "type": "zip",
  4538. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5d4c874b0eb1c32d40328a09dbc37307a5a910b0",
  4539. "reference": "5d4c874b0eb1c32d40328a09dbc37307a5a910b0",
  4540. "shasum": ""
  4541. },
  4542. "require": {
  4543. "php": ">=7.1.3",
  4544. "symfony/event-dispatcher-contracts": "^1.1"
  4545. },
  4546. "conflict": {
  4547. "symfony/dependency-injection": "<3.4"
  4548. },
  4549. "provide": {
  4550. "psr/event-dispatcher-implementation": "1.0",
  4551. "symfony/event-dispatcher-implementation": "1.1"
  4552. },
  4553. "require-dev": {
  4554. "psr/log": "~1.0",
  4555. "symfony/config": "^3.4|^4.0|^5.0",
  4556. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4557. "symfony/error-handler": "~3.4|~4.4",
  4558. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4559. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4560. "symfony/service-contracts": "^1.1|^2",
  4561. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4562. },
  4563. "suggest": {
  4564. "symfony/dependency-injection": "",
  4565. "symfony/http-kernel": ""
  4566. },
  4567. "type": "library",
  4568. "autoload": {
  4569. "psr-4": {
  4570. "Symfony\\Component\\EventDispatcher\\": ""
  4571. },
  4572. "exclude-from-classmap": [
  4573. "/Tests/"
  4574. ]
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "MIT"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Fabien Potencier",
  4583. "email": "fabien@symfony.com"
  4584. },
  4585. {
  4586. "name": "Symfony Community",
  4587. "homepage": "https://symfony.com/contributors"
  4588. }
  4589. ],
  4590. "description": "Symfony EventDispatcher Component",
  4591. "homepage": "https://symfony.com",
  4592. "support": {
  4593. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.18"
  4594. },
  4595. "funding": [
  4596. {
  4597. "url": "https://symfony.com/sponsor",
  4598. "type": "custom"
  4599. },
  4600. {
  4601. "url": "https://github.com/fabpot",
  4602. "type": "github"
  4603. },
  4604. {
  4605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4606. "type": "tidelift"
  4607. }
  4608. ],
  4609. "time": "2020-12-18T07:41:31+00:00"
  4610. },
  4611. {
  4612. "name": "symfony/event-dispatcher-contracts",
  4613. "version": "v1.1.9",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4617. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4622. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  4623. "shasum": ""
  4624. },
  4625. "require": {
  4626. "php": ">=7.1.3"
  4627. },
  4628. "suggest": {
  4629. "psr/event-dispatcher": "",
  4630. "symfony/event-dispatcher-implementation": ""
  4631. },
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "1.1-dev"
  4636. },
  4637. "thanks": {
  4638. "name": "symfony/contracts",
  4639. "url": "https://github.com/symfony/contracts"
  4640. }
  4641. },
  4642. "autoload": {
  4643. "psr-4": {
  4644. "Symfony\\Contracts\\EventDispatcher\\": ""
  4645. }
  4646. },
  4647. "notification-url": "https://packagist.org/downloads/",
  4648. "license": [
  4649. "MIT"
  4650. ],
  4651. "authors": [
  4652. {
  4653. "name": "Nicolas Grekas",
  4654. "email": "p@tchwork.com"
  4655. },
  4656. {
  4657. "name": "Symfony Community",
  4658. "homepage": "https://symfony.com/contributors"
  4659. }
  4660. ],
  4661. "description": "Generic abstractions related to dispatching event",
  4662. "homepage": "https://symfony.com",
  4663. "keywords": [
  4664. "abstractions",
  4665. "contracts",
  4666. "decoupling",
  4667. "interfaces",
  4668. "interoperability",
  4669. "standards"
  4670. ],
  4671. "support": {
  4672. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
  4673. },
  4674. "funding": [
  4675. {
  4676. "url": "https://symfony.com/sponsor",
  4677. "type": "custom"
  4678. },
  4679. {
  4680. "url": "https://github.com/fabpot",
  4681. "type": "github"
  4682. },
  4683. {
  4684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4685. "type": "tidelift"
  4686. }
  4687. ],
  4688. "time": "2020-07-06T13:19:58+00:00"
  4689. },
  4690. {
  4691. "name": "symfony/finder",
  4692. "version": "v4.4.18",
  4693. "source": {
  4694. "type": "git",
  4695. "url": "https://github.com/symfony/finder.git",
  4696. "reference": "ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b"
  4697. },
  4698. "dist": {
  4699. "type": "zip",
  4700. "url": "https://api.github.com/repos/symfony/finder/zipball/ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b",
  4701. "reference": "ebd0965f2dc2d4e0f11487c16fbb041e50b5c09b",
  4702. "shasum": ""
  4703. },
  4704. "require": {
  4705. "php": ">=7.1.3"
  4706. },
  4707. "type": "library",
  4708. "autoload": {
  4709. "psr-4": {
  4710. "Symfony\\Component\\Finder\\": ""
  4711. },
  4712. "exclude-from-classmap": [
  4713. "/Tests/"
  4714. ]
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "authors": [
  4721. {
  4722. "name": "Fabien Potencier",
  4723. "email": "fabien@symfony.com"
  4724. },
  4725. {
  4726. "name": "Symfony Community",
  4727. "homepage": "https://symfony.com/contributors"
  4728. }
  4729. ],
  4730. "description": "Symfony Finder Component",
  4731. "homepage": "https://symfony.com",
  4732. "support": {
  4733. "source": "https://github.com/symfony/finder/tree/v4.4.18"
  4734. },
  4735. "funding": [
  4736. {
  4737. "url": "https://symfony.com/sponsor",
  4738. "type": "custom"
  4739. },
  4740. {
  4741. "url": "https://github.com/fabpot",
  4742. "type": "github"
  4743. },
  4744. {
  4745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4746. "type": "tidelift"
  4747. }
  4748. ],
  4749. "time": "2020-12-08T16:59:59+00:00"
  4750. },
  4751. {
  4752. "name": "symfony/http-client-contracts",
  4753. "version": "v2.3.1",
  4754. "source": {
  4755. "type": "git",
  4756. "url": "https://github.com/symfony/http-client-contracts.git",
  4757. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4758. },
  4759. "dist": {
  4760. "type": "zip",
  4761. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4762. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4763. "shasum": ""
  4764. },
  4765. "require": {
  4766. "php": ">=7.2.5"
  4767. },
  4768. "suggest": {
  4769. "symfony/http-client-implementation": ""
  4770. },
  4771. "type": "library",
  4772. "extra": {
  4773. "branch-version": "2.3",
  4774. "branch-alias": {
  4775. "dev-main": "2.3-dev"
  4776. },
  4777. "thanks": {
  4778. "name": "symfony/contracts",
  4779. "url": "https://github.com/symfony/contracts"
  4780. }
  4781. },
  4782. "autoload": {
  4783. "psr-4": {
  4784. "Symfony\\Contracts\\HttpClient\\": ""
  4785. }
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Nicolas Grekas",
  4794. "email": "p@tchwork.com"
  4795. },
  4796. {
  4797. "name": "Symfony Community",
  4798. "homepage": "https://symfony.com/contributors"
  4799. }
  4800. ],
  4801. "description": "Generic abstractions related to HTTP clients",
  4802. "homepage": "https://symfony.com",
  4803. "keywords": [
  4804. "abstractions",
  4805. "contracts",
  4806. "decoupling",
  4807. "interfaces",
  4808. "interoperability",
  4809. "standards"
  4810. ],
  4811. "support": {
  4812. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4813. },
  4814. "funding": [
  4815. {
  4816. "url": "https://symfony.com/sponsor",
  4817. "type": "custom"
  4818. },
  4819. {
  4820. "url": "https://github.com/fabpot",
  4821. "type": "github"
  4822. },
  4823. {
  4824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4825. "type": "tidelift"
  4826. }
  4827. ],
  4828. "time": "2020-10-14T17:08:19+00:00"
  4829. },
  4830. {
  4831. "name": "symfony/http-foundation",
  4832. "version": "v4.4.18",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://github.com/symfony/http-foundation.git",
  4836. "reference": "5ebda66b51612516bf338d5f87da2f37ff74cf34"
  4837. },
  4838. "dist": {
  4839. "type": "zip",
  4840. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5ebda66b51612516bf338d5f87da2f37ff74cf34",
  4841. "reference": "5ebda66b51612516bf338d5f87da2f37ff74cf34",
  4842. "shasum": ""
  4843. },
  4844. "require": {
  4845. "php": ">=7.1.3",
  4846. "symfony/mime": "^4.3|^5.0",
  4847. "symfony/polyfill-mbstring": "~1.1",
  4848. "symfony/polyfill-php80": "^1.15"
  4849. },
  4850. "require-dev": {
  4851. "predis/predis": "~1.0",
  4852. "symfony/expression-language": "^3.4|^4.0|^5.0"
  4853. },
  4854. "type": "library",
  4855. "autoload": {
  4856. "psr-4": {
  4857. "Symfony\\Component\\HttpFoundation\\": ""
  4858. },
  4859. "exclude-from-classmap": [
  4860. "/Tests/"
  4861. ]
  4862. },
  4863. "notification-url": "https://packagist.org/downloads/",
  4864. "license": [
  4865. "MIT"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Fabien Potencier",
  4870. "email": "fabien@symfony.com"
  4871. },
  4872. {
  4873. "name": "Symfony Community",
  4874. "homepage": "https://symfony.com/contributors"
  4875. }
  4876. ],
  4877. "description": "Symfony HttpFoundation Component",
  4878. "homepage": "https://symfony.com",
  4879. "support": {
  4880. "source": "https://github.com/symfony/http-foundation/tree/v4.4.18"
  4881. },
  4882. "funding": [
  4883. {
  4884. "url": "https://symfony.com/sponsor",
  4885. "type": "custom"
  4886. },
  4887. {
  4888. "url": "https://github.com/fabpot",
  4889. "type": "github"
  4890. },
  4891. {
  4892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4893. "type": "tidelift"
  4894. }
  4895. ],
  4896. "time": "2020-12-18T07:41:31+00:00"
  4897. },
  4898. {
  4899. "name": "symfony/http-kernel",
  4900. "version": "v4.4.18",
  4901. "source": {
  4902. "type": "git",
  4903. "url": "https://github.com/symfony/http-kernel.git",
  4904. "reference": "eaff9a43e74513508867ecfa66ef94fbb96ab128"
  4905. },
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/eaff9a43e74513508867ecfa66ef94fbb96ab128",
  4909. "reference": "eaff9a43e74513508867ecfa66ef94fbb96ab128",
  4910. "shasum": ""
  4911. },
  4912. "require": {
  4913. "php": ">=7.1.3",
  4914. "psr/log": "~1.0",
  4915. "symfony/error-handler": "^4.4",
  4916. "symfony/event-dispatcher": "^4.4",
  4917. "symfony/http-client-contracts": "^1.1|^2",
  4918. "symfony/http-foundation": "^4.4|^5.0",
  4919. "symfony/polyfill-ctype": "^1.8",
  4920. "symfony/polyfill-php73": "^1.9",
  4921. "symfony/polyfill-php80": "^1.15"
  4922. },
  4923. "conflict": {
  4924. "symfony/browser-kit": "<4.3",
  4925. "symfony/config": "<3.4",
  4926. "symfony/console": ">=5",
  4927. "symfony/dependency-injection": "<4.3",
  4928. "symfony/translation": "<4.2",
  4929. "twig/twig": "<1.34|<2.4,>=2"
  4930. },
  4931. "provide": {
  4932. "psr/log-implementation": "1.0"
  4933. },
  4934. "require-dev": {
  4935. "psr/cache": "~1.0",
  4936. "symfony/browser-kit": "^4.3|^5.0",
  4937. "symfony/config": "^3.4|^4.0|^5.0",
  4938. "symfony/console": "^3.4|^4.0",
  4939. "symfony/css-selector": "^3.4|^4.0|^5.0",
  4940. "symfony/dependency-injection": "^4.3|^5.0",
  4941. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  4942. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4943. "symfony/finder": "^3.4|^4.0|^5.0",
  4944. "symfony/process": "^3.4|^4.0|^5.0",
  4945. "symfony/routing": "^3.4|^4.0|^5.0",
  4946. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  4947. "symfony/templating": "^3.4|^4.0|^5.0",
  4948. "symfony/translation": "^4.2|^5.0",
  4949. "symfony/translation-contracts": "^1.1|^2",
  4950. "twig/twig": "^1.34|^2.4|^3.0"
  4951. },
  4952. "suggest": {
  4953. "symfony/browser-kit": "",
  4954. "symfony/config": "",
  4955. "symfony/console": "",
  4956. "symfony/dependency-injection": ""
  4957. },
  4958. "type": "library",
  4959. "autoload": {
  4960. "psr-4": {
  4961. "Symfony\\Component\\HttpKernel\\": ""
  4962. },
  4963. "exclude-from-classmap": [
  4964. "/Tests/"
  4965. ]
  4966. },
  4967. "notification-url": "https://packagist.org/downloads/",
  4968. "license": [
  4969. "MIT"
  4970. ],
  4971. "authors": [
  4972. {
  4973. "name": "Fabien Potencier",
  4974. "email": "fabien@symfony.com"
  4975. },
  4976. {
  4977. "name": "Symfony Community",
  4978. "homepage": "https://symfony.com/contributors"
  4979. }
  4980. ],
  4981. "description": "Symfony HttpKernel Component",
  4982. "homepage": "https://symfony.com",
  4983. "support": {
  4984. "source": "https://github.com/symfony/http-kernel/tree/v4.4.18"
  4985. },
  4986. "funding": [
  4987. {
  4988. "url": "https://symfony.com/sponsor",
  4989. "type": "custom"
  4990. },
  4991. {
  4992. "url": "https://github.com/fabpot",
  4993. "type": "github"
  4994. },
  4995. {
  4996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4997. "type": "tidelift"
  4998. }
  4999. ],
  5000. "time": "2020-12-18T13:32:33+00:00"
  5001. },
  5002. {
  5003. "name": "symfony/mime",
  5004. "version": "v5.2.1",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/symfony/mime.git",
  5008. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5013. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "php": ">=7.2.5",
  5018. "symfony/deprecation-contracts": "^2.1",
  5019. "symfony/polyfill-intl-idn": "^1.10",
  5020. "symfony/polyfill-mbstring": "^1.0",
  5021. "symfony/polyfill-php80": "^1.15"
  5022. },
  5023. "conflict": {
  5024. "symfony/mailer": "<4.4"
  5025. },
  5026. "require-dev": {
  5027. "egulias/email-validator": "^2.1.10",
  5028. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5029. "symfony/dependency-injection": "^4.4|^5.0",
  5030. "symfony/property-access": "^4.4|^5.1",
  5031. "symfony/property-info": "^4.4|^5.1",
  5032. "symfony/serializer": "^5.2"
  5033. },
  5034. "type": "library",
  5035. "autoload": {
  5036. "psr-4": {
  5037. "Symfony\\Component\\Mime\\": ""
  5038. },
  5039. "exclude-from-classmap": [
  5040. "/Tests/"
  5041. ]
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Fabien Potencier",
  5050. "email": "fabien@symfony.com"
  5051. },
  5052. {
  5053. "name": "Symfony Community",
  5054. "homepage": "https://symfony.com/contributors"
  5055. }
  5056. ],
  5057. "description": "A library to manipulate MIME messages",
  5058. "homepage": "https://symfony.com",
  5059. "keywords": [
  5060. "mime",
  5061. "mime-type"
  5062. ],
  5063. "support": {
  5064. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5065. },
  5066. "funding": [
  5067. {
  5068. "url": "https://symfony.com/sponsor",
  5069. "type": "custom"
  5070. },
  5071. {
  5072. "url": "https://github.com/fabpot",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5077. "type": "tidelift"
  5078. }
  5079. ],
  5080. "time": "2020-12-09T18:54:12+00:00"
  5081. },
  5082. {
  5083. "name": "symfony/polyfill-ctype",
  5084. "version": "v1.20.0",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/symfony/polyfill-ctype.git",
  5088. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5093. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=7.1"
  5098. },
  5099. "suggest": {
  5100. "ext-ctype": "For best performance"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-main": "1.20-dev"
  5106. },
  5107. "thanks": {
  5108. "name": "symfony/polyfill",
  5109. "url": "https://github.com/symfony/polyfill"
  5110. }
  5111. },
  5112. "autoload": {
  5113. "psr-4": {
  5114. "Symfony\\Polyfill\\Ctype\\": ""
  5115. },
  5116. "files": [
  5117. "bootstrap.php"
  5118. ]
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Gert de Pagter",
  5127. "email": "BackEndTea@gmail.com"
  5128. },
  5129. {
  5130. "name": "Symfony Community",
  5131. "homepage": "https://symfony.com/contributors"
  5132. }
  5133. ],
  5134. "description": "Symfony polyfill for ctype functions",
  5135. "homepage": "https://symfony.com",
  5136. "keywords": [
  5137. "compatibility",
  5138. "ctype",
  5139. "polyfill",
  5140. "portable"
  5141. ],
  5142. "support": {
  5143. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5144. },
  5145. "funding": [
  5146. {
  5147. "url": "https://symfony.com/sponsor",
  5148. "type": "custom"
  5149. },
  5150. {
  5151. "url": "https://github.com/fabpot",
  5152. "type": "github"
  5153. },
  5154. {
  5155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5156. "type": "tidelift"
  5157. }
  5158. ],
  5159. "time": "2020-10-23T14:02:19+00:00"
  5160. },
  5161. {
  5162. "name": "symfony/polyfill-iconv",
  5163. "version": "v1.20.0",
  5164. "source": {
  5165. "type": "git",
  5166. "url": "https://github.com/symfony/polyfill-iconv.git",
  5167. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5168. },
  5169. "dist": {
  5170. "type": "zip",
  5171. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5172. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5173. "shasum": ""
  5174. },
  5175. "require": {
  5176. "php": ">=7.1"
  5177. },
  5178. "suggest": {
  5179. "ext-iconv": "For best performance"
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-main": "1.20-dev"
  5185. },
  5186. "thanks": {
  5187. "name": "symfony/polyfill",
  5188. "url": "https://github.com/symfony/polyfill"
  5189. }
  5190. },
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Symfony\\Polyfill\\Iconv\\": ""
  5194. },
  5195. "files": [
  5196. "bootstrap.php"
  5197. ]
  5198. },
  5199. "notification-url": "https://packagist.org/downloads/",
  5200. "license": [
  5201. "MIT"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Nicolas Grekas",
  5206. "email": "p@tchwork.com"
  5207. },
  5208. {
  5209. "name": "Symfony Community",
  5210. "homepage": "https://symfony.com/contributors"
  5211. }
  5212. ],
  5213. "description": "Symfony polyfill for the Iconv extension",
  5214. "homepage": "https://symfony.com",
  5215. "keywords": [
  5216. "compatibility",
  5217. "iconv",
  5218. "polyfill",
  5219. "portable",
  5220. "shim"
  5221. ],
  5222. "support": {
  5223. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5224. },
  5225. "funding": [
  5226. {
  5227. "url": "https://symfony.com/sponsor",
  5228. "type": "custom"
  5229. },
  5230. {
  5231. "url": "https://github.com/fabpot",
  5232. "type": "github"
  5233. },
  5234. {
  5235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5236. "type": "tidelift"
  5237. }
  5238. ],
  5239. "time": "2020-10-23T14:02:19+00:00"
  5240. },
  5241. {
  5242. "name": "symfony/polyfill-intl-idn",
  5243. "version": "v1.20.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5247. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5252. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5253. "shasum": ""
  5254. },
  5255. "require": {
  5256. "php": ">=7.1",
  5257. "symfony/polyfill-intl-normalizer": "^1.10",
  5258. "symfony/polyfill-php72": "^1.10"
  5259. },
  5260. "suggest": {
  5261. "ext-intl": "For best performance"
  5262. },
  5263. "type": "library",
  5264. "extra": {
  5265. "branch-alias": {
  5266. "dev-main": "1.20-dev"
  5267. },
  5268. "thanks": {
  5269. "name": "symfony/polyfill",
  5270. "url": "https://github.com/symfony/polyfill"
  5271. }
  5272. },
  5273. "autoload": {
  5274. "psr-4": {
  5275. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5276. },
  5277. "files": [
  5278. "bootstrap.php"
  5279. ]
  5280. },
  5281. "notification-url": "https://packagist.org/downloads/",
  5282. "license": [
  5283. "MIT"
  5284. ],
  5285. "authors": [
  5286. {
  5287. "name": "Laurent Bassin",
  5288. "email": "laurent@bassin.info"
  5289. },
  5290. {
  5291. "name": "Trevor Rowbotham",
  5292. "email": "trevor.rowbotham@pm.me"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5300. "homepage": "https://symfony.com",
  5301. "keywords": [
  5302. "compatibility",
  5303. "idn",
  5304. "intl",
  5305. "polyfill",
  5306. "portable",
  5307. "shim"
  5308. ],
  5309. "support": {
  5310. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5311. },
  5312. "funding": [
  5313. {
  5314. "url": "https://symfony.com/sponsor",
  5315. "type": "custom"
  5316. },
  5317. {
  5318. "url": "https://github.com/fabpot",
  5319. "type": "github"
  5320. },
  5321. {
  5322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5323. "type": "tidelift"
  5324. }
  5325. ],
  5326. "time": "2020-10-23T14:02:19+00:00"
  5327. },
  5328. {
  5329. "name": "symfony/polyfill-intl-normalizer",
  5330. "version": "v1.20.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5334. "reference": "727d1096295d807c309fb01a851577302394c897"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5339. "reference": "727d1096295d807c309fb01a851577302394c897",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "php": ">=7.1"
  5344. },
  5345. "suggest": {
  5346. "ext-intl": "For best performance"
  5347. },
  5348. "type": "library",
  5349. "extra": {
  5350. "branch-alias": {
  5351. "dev-main": "1.20-dev"
  5352. },
  5353. "thanks": {
  5354. "name": "symfony/polyfill",
  5355. "url": "https://github.com/symfony/polyfill"
  5356. }
  5357. },
  5358. "autoload": {
  5359. "psr-4": {
  5360. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5361. },
  5362. "files": [
  5363. "bootstrap.php"
  5364. ],
  5365. "classmap": [
  5366. "Resources/stubs"
  5367. ]
  5368. },
  5369. "notification-url": "https://packagist.org/downloads/",
  5370. "license": [
  5371. "MIT"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Nicolas Grekas",
  5376. "email": "p@tchwork.com"
  5377. },
  5378. {
  5379. "name": "Symfony Community",
  5380. "homepage": "https://symfony.com/contributors"
  5381. }
  5382. ],
  5383. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5384. "homepage": "https://symfony.com",
  5385. "keywords": [
  5386. "compatibility",
  5387. "intl",
  5388. "normalizer",
  5389. "polyfill",
  5390. "portable",
  5391. "shim"
  5392. ],
  5393. "support": {
  5394. "source": "https://github.com/symfony/polyfill-intl-normalizer/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-mbstring",
  5414. "version": "v1.20.0",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5418. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5423. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "php": ">=7.1"
  5428. },
  5429. "suggest": {
  5430. "ext-mbstring": "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\\Mbstring\\": ""
  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 the Mbstring extension",
  5465. "homepage": "https://symfony.com",
  5466. "keywords": [
  5467. "compatibility",
  5468. "mbstring",
  5469. "polyfill",
  5470. "portable",
  5471. "shim"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5475. },
  5476. "funding": [
  5477. {
  5478. "url": "https://symfony.com/sponsor",
  5479. "type": "custom"
  5480. },
  5481. {
  5482. "url": "https://github.com/fabpot",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2020-10-23T14:02:19+00:00"
  5491. },
  5492. {
  5493. "name": "symfony/polyfill-php72",
  5494. "version": "v1.20.0",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/symfony/polyfill-php72.git",
  5498. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5503. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "php": ">=7.1"
  5508. },
  5509. "type": "library",
  5510. "extra": {
  5511. "branch-alias": {
  5512. "dev-main": "1.20-dev"
  5513. },
  5514. "thanks": {
  5515. "name": "symfony/polyfill",
  5516. "url": "https://github.com/symfony/polyfill"
  5517. }
  5518. },
  5519. "autoload": {
  5520. "psr-4": {
  5521. "Symfony\\Polyfill\\Php72\\": ""
  5522. },
  5523. "files": [
  5524. "bootstrap.php"
  5525. ]
  5526. },
  5527. "notification-url": "https://packagist.org/downloads/",
  5528. "license": [
  5529. "MIT"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "Nicolas Grekas",
  5534. "email": "p@tchwork.com"
  5535. },
  5536. {
  5537. "name": "Symfony Community",
  5538. "homepage": "https://symfony.com/contributors"
  5539. }
  5540. ],
  5541. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5542. "homepage": "https://symfony.com",
  5543. "keywords": [
  5544. "compatibility",
  5545. "polyfill",
  5546. "portable",
  5547. "shim"
  5548. ],
  5549. "support": {
  5550. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5551. },
  5552. "funding": [
  5553. {
  5554. "url": "https://symfony.com/sponsor",
  5555. "type": "custom"
  5556. },
  5557. {
  5558. "url": "https://github.com/fabpot",
  5559. "type": "github"
  5560. },
  5561. {
  5562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5563. "type": "tidelift"
  5564. }
  5565. ],
  5566. "time": "2020-10-23T14:02:19+00:00"
  5567. },
  5568. {
  5569. "name": "symfony/polyfill-php73",
  5570. "version": "v1.20.0",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://github.com/symfony/polyfill-php73.git",
  5574. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5575. },
  5576. "dist": {
  5577. "type": "zip",
  5578. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5579. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5580. "shasum": ""
  5581. },
  5582. "require": {
  5583. "php": ">=7.1"
  5584. },
  5585. "type": "library",
  5586. "extra": {
  5587. "branch-alias": {
  5588. "dev-main": "1.20-dev"
  5589. },
  5590. "thanks": {
  5591. "name": "symfony/polyfill",
  5592. "url": "https://github.com/symfony/polyfill"
  5593. }
  5594. },
  5595. "autoload": {
  5596. "psr-4": {
  5597. "Symfony\\Polyfill\\Php73\\": ""
  5598. },
  5599. "files": [
  5600. "bootstrap.php"
  5601. ],
  5602. "classmap": [
  5603. "Resources/stubs"
  5604. ]
  5605. },
  5606. "notification-url": "https://packagist.org/downloads/",
  5607. "license": [
  5608. "MIT"
  5609. ],
  5610. "authors": [
  5611. {
  5612. "name": "Nicolas Grekas",
  5613. "email": "p@tchwork.com"
  5614. },
  5615. {
  5616. "name": "Symfony Community",
  5617. "homepage": "https://symfony.com/contributors"
  5618. }
  5619. ],
  5620. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5621. "homepage": "https://symfony.com",
  5622. "keywords": [
  5623. "compatibility",
  5624. "polyfill",
  5625. "portable",
  5626. "shim"
  5627. ],
  5628. "support": {
  5629. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5630. },
  5631. "funding": [
  5632. {
  5633. "url": "https://symfony.com/sponsor",
  5634. "type": "custom"
  5635. },
  5636. {
  5637. "url": "https://github.com/fabpot",
  5638. "type": "github"
  5639. },
  5640. {
  5641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5642. "type": "tidelift"
  5643. }
  5644. ],
  5645. "time": "2020-10-23T14:02:19+00:00"
  5646. },
  5647. {
  5648. "name": "symfony/polyfill-php80",
  5649. "version": "v1.20.0",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/symfony/polyfill-php80.git",
  5653. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5658. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=7.1"
  5663. },
  5664. "type": "library",
  5665. "extra": {
  5666. "branch-alias": {
  5667. "dev-main": "1.20-dev"
  5668. },
  5669. "thanks": {
  5670. "name": "symfony/polyfill",
  5671. "url": "https://github.com/symfony/polyfill"
  5672. }
  5673. },
  5674. "autoload": {
  5675. "psr-4": {
  5676. "Symfony\\Polyfill\\Php80\\": ""
  5677. },
  5678. "files": [
  5679. "bootstrap.php"
  5680. ],
  5681. "classmap": [
  5682. "Resources/stubs"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "MIT"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Ion Bazan",
  5692. "email": "ion.bazan@gmail.com"
  5693. },
  5694. {
  5695. "name": "Nicolas Grekas",
  5696. "email": "p@tchwork.com"
  5697. },
  5698. {
  5699. "name": "Symfony Community",
  5700. "homepage": "https://symfony.com/contributors"
  5701. }
  5702. ],
  5703. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5704. "homepage": "https://symfony.com",
  5705. "keywords": [
  5706. "compatibility",
  5707. "polyfill",
  5708. "portable",
  5709. "shim"
  5710. ],
  5711. "support": {
  5712. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5713. },
  5714. "funding": [
  5715. {
  5716. "url": "https://symfony.com/sponsor",
  5717. "type": "custom"
  5718. },
  5719. {
  5720. "url": "https://github.com/fabpot",
  5721. "type": "github"
  5722. },
  5723. {
  5724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5725. "type": "tidelift"
  5726. }
  5727. ],
  5728. "time": "2020-10-23T14:02:19+00:00"
  5729. },
  5730. {
  5731. "name": "symfony/process",
  5732. "version": "v4.4.18",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://github.com/symfony/process.git",
  5736. "reference": "075316ff72233ce3d04a9743414292e834f2cb4a"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://api.github.com/repos/symfony/process/zipball/075316ff72233ce3d04a9743414292e834f2cb4a",
  5741. "reference": "075316ff72233ce3d04a9743414292e834f2cb4a",
  5742. "shasum": ""
  5743. },
  5744. "require": {
  5745. "php": ">=7.1.3"
  5746. },
  5747. "type": "library",
  5748. "autoload": {
  5749. "psr-4": {
  5750. "Symfony\\Component\\Process\\": ""
  5751. },
  5752. "exclude-from-classmap": [
  5753. "/Tests/"
  5754. ]
  5755. },
  5756. "notification-url": "https://packagist.org/downloads/",
  5757. "license": [
  5758. "MIT"
  5759. ],
  5760. "authors": [
  5761. {
  5762. "name": "Fabien Potencier",
  5763. "email": "fabien@symfony.com"
  5764. },
  5765. {
  5766. "name": "Symfony Community",
  5767. "homepage": "https://symfony.com/contributors"
  5768. }
  5769. ],
  5770. "description": "Symfony Process Component",
  5771. "homepage": "https://symfony.com",
  5772. "support": {
  5773. "source": "https://github.com/symfony/process/tree/v4.4.18"
  5774. },
  5775. "funding": [
  5776. {
  5777. "url": "https://symfony.com/sponsor",
  5778. "type": "custom"
  5779. },
  5780. {
  5781. "url": "https://github.com/fabpot",
  5782. "type": "github"
  5783. },
  5784. {
  5785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5786. "type": "tidelift"
  5787. }
  5788. ],
  5789. "time": "2020-12-08T16:59:59+00:00"
  5790. },
  5791. {
  5792. "name": "symfony/routing",
  5793. "version": "v4.4.18",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/symfony/routing.git",
  5797. "reference": "80b042c20b035818daec844723e23b9825134ba0"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/symfony/routing/zipball/80b042c20b035818daec844723e23b9825134ba0",
  5802. "reference": "80b042c20b035818daec844723e23b9825134ba0",
  5803. "shasum": ""
  5804. },
  5805. "require": {
  5806. "php": ">=7.1.3"
  5807. },
  5808. "conflict": {
  5809. "symfony/config": "<4.2",
  5810. "symfony/dependency-injection": "<3.4",
  5811. "symfony/yaml": "<3.4"
  5812. },
  5813. "require-dev": {
  5814. "doctrine/annotations": "~1.2",
  5815. "psr/log": "~1.0",
  5816. "symfony/config": "^4.2|^5.0",
  5817. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5818. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5819. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5820. "symfony/yaml": "^3.4|^4.0|^5.0"
  5821. },
  5822. "suggest": {
  5823. "doctrine/annotations": "For using the annotation loader",
  5824. "symfony/config": "For using the all-in-one router or any loader",
  5825. "symfony/expression-language": "For using expression matching",
  5826. "symfony/http-foundation": "For using a Symfony Request object",
  5827. "symfony/yaml": "For using the YAML loader"
  5828. },
  5829. "type": "library",
  5830. "autoload": {
  5831. "psr-4": {
  5832. "Symfony\\Component\\Routing\\": ""
  5833. },
  5834. "exclude-from-classmap": [
  5835. "/Tests/"
  5836. ]
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Fabien Potencier",
  5845. "email": "fabien@symfony.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Symfony Routing Component",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "router",
  5856. "routing",
  5857. "uri",
  5858. "url"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/routing/tree/v4.4.18"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5874. "type": "tidelift"
  5875. }
  5876. ],
  5877. "time": "2020-12-08T16:59:59+00:00"
  5878. },
  5879. {
  5880. "name": "symfony/service-contracts",
  5881. "version": "v2.2.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/symfony/service-contracts.git",
  5885. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5890. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "php": ">=7.2.5",
  5895. "psr/container": "^1.0"
  5896. },
  5897. "suggest": {
  5898. "symfony/service-implementation": ""
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "2.2-dev"
  5904. },
  5905. "thanks": {
  5906. "name": "symfony/contracts",
  5907. "url": "https://github.com/symfony/contracts"
  5908. }
  5909. },
  5910. "autoload": {
  5911. "psr-4": {
  5912. "Symfony\\Contracts\\Service\\": ""
  5913. }
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "MIT"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Nicolas Grekas",
  5922. "email": "p@tchwork.com"
  5923. },
  5924. {
  5925. "name": "Symfony Community",
  5926. "homepage": "https://symfony.com/contributors"
  5927. }
  5928. ],
  5929. "description": "Generic abstractions related to writing services",
  5930. "homepage": "https://symfony.com",
  5931. "keywords": [
  5932. "abstractions",
  5933. "contracts",
  5934. "decoupling",
  5935. "interfaces",
  5936. "interoperability",
  5937. "standards"
  5938. ],
  5939. "support": {
  5940. "source": "https://github.com/symfony/service-contracts/tree/master"
  5941. },
  5942. "funding": [
  5943. {
  5944. "url": "https://symfony.com/sponsor",
  5945. "type": "custom"
  5946. },
  5947. {
  5948. "url": "https://github.com/fabpot",
  5949. "type": "github"
  5950. },
  5951. {
  5952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5953. "type": "tidelift"
  5954. }
  5955. ],
  5956. "time": "2020-09-07T11:33:47+00:00"
  5957. },
  5958. {
  5959. "name": "symfony/translation",
  5960. "version": "v4.4.18",
  5961. "source": {
  5962. "type": "git",
  5963. "url": "https://github.com/symfony/translation.git",
  5964. "reference": "c1001b7d75b3136648f94b245588209d881c6939"
  5965. },
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://api.github.com/repos/symfony/translation/zipball/c1001b7d75b3136648f94b245588209d881c6939",
  5969. "reference": "c1001b7d75b3136648f94b245588209d881c6939",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "php": ">=7.1.3",
  5974. "symfony/polyfill-mbstring": "~1.0",
  5975. "symfony/translation-contracts": "^1.1.6|^2"
  5976. },
  5977. "conflict": {
  5978. "symfony/config": "<3.4",
  5979. "symfony/dependency-injection": "<3.4",
  5980. "symfony/http-kernel": "<4.4",
  5981. "symfony/yaml": "<3.4"
  5982. },
  5983. "provide": {
  5984. "symfony/translation-implementation": "1.0"
  5985. },
  5986. "require-dev": {
  5987. "psr/log": "~1.0",
  5988. "symfony/config": "^3.4|^4.0|^5.0",
  5989. "symfony/console": "^3.4|^4.0|^5.0",
  5990. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5991. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  5992. "symfony/http-kernel": "^4.4",
  5993. "symfony/intl": "^3.4|^4.0|^5.0",
  5994. "symfony/service-contracts": "^1.1.2|^2",
  5995. "symfony/yaml": "^3.4|^4.0|^5.0"
  5996. },
  5997. "suggest": {
  5998. "psr/log-implementation": "To use logging capability in translator",
  5999. "symfony/config": "",
  6000. "symfony/yaml": ""
  6001. },
  6002. "type": "library",
  6003. "autoload": {
  6004. "psr-4": {
  6005. "Symfony\\Component\\Translation\\": ""
  6006. },
  6007. "exclude-from-classmap": [
  6008. "/Tests/"
  6009. ]
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "MIT"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Fabien Potencier",
  6018. "email": "fabien@symfony.com"
  6019. },
  6020. {
  6021. "name": "Symfony Community",
  6022. "homepage": "https://symfony.com/contributors"
  6023. }
  6024. ],
  6025. "description": "Symfony Translation Component",
  6026. "homepage": "https://symfony.com",
  6027. "support": {
  6028. "source": "https://github.com/symfony/translation/tree/v4.4.18"
  6029. },
  6030. "funding": [
  6031. {
  6032. "url": "https://symfony.com/sponsor",
  6033. "type": "custom"
  6034. },
  6035. {
  6036. "url": "https://github.com/fabpot",
  6037. "type": "github"
  6038. },
  6039. {
  6040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6041. "type": "tidelift"
  6042. }
  6043. ],
  6044. "time": "2020-12-08T16:59:59+00:00"
  6045. },
  6046. {
  6047. "name": "symfony/translation-contracts",
  6048. "version": "v2.3.0",
  6049. "source": {
  6050. "type": "git",
  6051. "url": "https://github.com/symfony/translation-contracts.git",
  6052. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6053. },
  6054. "dist": {
  6055. "type": "zip",
  6056. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6057. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6058. "shasum": ""
  6059. },
  6060. "require": {
  6061. "php": ">=7.2.5"
  6062. },
  6063. "suggest": {
  6064. "symfony/translation-implementation": ""
  6065. },
  6066. "type": "library",
  6067. "extra": {
  6068. "branch-alias": {
  6069. "dev-master": "2.3-dev"
  6070. },
  6071. "thanks": {
  6072. "name": "symfony/contracts",
  6073. "url": "https://github.com/symfony/contracts"
  6074. }
  6075. },
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Symfony\\Contracts\\Translation\\": ""
  6079. }
  6080. },
  6081. "notification-url": "https://packagist.org/downloads/",
  6082. "license": [
  6083. "MIT"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Nicolas Grekas",
  6088. "email": "p@tchwork.com"
  6089. },
  6090. {
  6091. "name": "Symfony Community",
  6092. "homepage": "https://symfony.com/contributors"
  6093. }
  6094. ],
  6095. "description": "Generic abstractions related to translation",
  6096. "homepage": "https://symfony.com",
  6097. "keywords": [
  6098. "abstractions",
  6099. "contracts",
  6100. "decoupling",
  6101. "interfaces",
  6102. "interoperability",
  6103. "standards"
  6104. ],
  6105. "support": {
  6106. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6107. },
  6108. "funding": [
  6109. {
  6110. "url": "https://symfony.com/sponsor",
  6111. "type": "custom"
  6112. },
  6113. {
  6114. "url": "https://github.com/fabpot",
  6115. "type": "github"
  6116. },
  6117. {
  6118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6119. "type": "tidelift"
  6120. }
  6121. ],
  6122. "time": "2020-09-28T13:05:58+00:00"
  6123. },
  6124. {
  6125. "name": "symfony/var-dumper",
  6126. "version": "v4.4.18",
  6127. "source": {
  6128. "type": "git",
  6129. "url": "https://github.com/symfony/var-dumper.git",
  6130. "reference": "4f31364bbc8177f2a6dbc125ac3851634ebe2a03"
  6131. },
  6132. "dist": {
  6133. "type": "zip",
  6134. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4f31364bbc8177f2a6dbc125ac3851634ebe2a03",
  6135. "reference": "4f31364bbc8177f2a6dbc125ac3851634ebe2a03",
  6136. "shasum": ""
  6137. },
  6138. "require": {
  6139. "php": ">=7.1.3",
  6140. "symfony/polyfill-mbstring": "~1.0",
  6141. "symfony/polyfill-php72": "~1.5",
  6142. "symfony/polyfill-php80": "^1.15"
  6143. },
  6144. "conflict": {
  6145. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6146. "symfony/console": "<3.4"
  6147. },
  6148. "require-dev": {
  6149. "ext-iconv": "*",
  6150. "symfony/console": "^3.4|^4.0|^5.0",
  6151. "symfony/process": "^4.4|^5.0",
  6152. "twig/twig": "^1.34|^2.4|^3.0"
  6153. },
  6154. "suggest": {
  6155. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6156. "ext-intl": "To show region name in time zone dump",
  6157. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6158. },
  6159. "bin": [
  6160. "Resources/bin/var-dump-server"
  6161. ],
  6162. "type": "library",
  6163. "autoload": {
  6164. "files": [
  6165. "Resources/functions/dump.php"
  6166. ],
  6167. "psr-4": {
  6168. "Symfony\\Component\\VarDumper\\": ""
  6169. },
  6170. "exclude-from-classmap": [
  6171. "/Tests/"
  6172. ]
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Nicolas Grekas",
  6181. "email": "p@tchwork.com"
  6182. },
  6183. {
  6184. "name": "Symfony Community",
  6185. "homepage": "https://symfony.com/contributors"
  6186. }
  6187. ],
  6188. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6189. "homepage": "https://symfony.com",
  6190. "keywords": [
  6191. "debug",
  6192. "dump"
  6193. ],
  6194. "support": {
  6195. "source": "https://github.com/symfony/var-dumper/tree/v4.4.18"
  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-12-08T16:59:59+00:00"
  6212. },
  6213. {
  6214. "name": "tijsverkoyen/css-to-inline-styles",
  6215. "version": "2.2.3",
  6216. "source": {
  6217. "type": "git",
  6218. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6219. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6220. },
  6221. "dist": {
  6222. "type": "zip",
  6223. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6224. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6225. "shasum": ""
  6226. },
  6227. "require": {
  6228. "ext-dom": "*",
  6229. "ext-libxml": "*",
  6230. "php": "^5.5 || ^7.0 || ^8.0",
  6231. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6232. },
  6233. "require-dev": {
  6234. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6235. },
  6236. "type": "library",
  6237. "extra": {
  6238. "branch-alias": {
  6239. "dev-master": "2.2.x-dev"
  6240. }
  6241. },
  6242. "autoload": {
  6243. "psr-4": {
  6244. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6245. }
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "BSD-3-Clause"
  6250. ],
  6251. "authors": [
  6252. {
  6253. "name": "Tijs Verkoyen",
  6254. "email": "css_to_inline_styles@verkoyen.eu",
  6255. "role": "Developer"
  6256. }
  6257. ],
  6258. "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.",
  6259. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6260. "support": {
  6261. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6262. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6263. },
  6264. "time": "2020-07-13T06:12:54+00:00"
  6265. },
  6266. {
  6267. "name": "vlucas/phpdotenv",
  6268. "version": "v2.6.6",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/vlucas/phpdotenv.git",
  6272. "reference": "e1d57f62db3db00d9139078cbedf262280701479"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e1d57f62db3db00d9139078cbedf262280701479",
  6277. "reference": "e1d57f62db3db00d9139078cbedf262280701479",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": "^5.3.9 || ^7.0 || ^8.0",
  6282. "symfony/polyfill-ctype": "^1.17"
  6283. },
  6284. "require-dev": {
  6285. "ext-filter": "*",
  6286. "ext-pcre": "*",
  6287. "phpunit/phpunit": "^4.8.35 || ^5.7.27"
  6288. },
  6289. "suggest": {
  6290. "ext-filter": "Required to use the boolean validator.",
  6291. "ext-pcre": "Required to use most of the library."
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "branch-alias": {
  6296. "dev-master": "2.6-dev"
  6297. }
  6298. },
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Dotenv\\": "src/"
  6302. }
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "BSD-3-Clause"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Graham Campbell",
  6311. "email": "graham@alt-three.com",
  6312. "homepage": "https://gjcampbell.co.uk/"
  6313. },
  6314. {
  6315. "name": "Vance Lucas",
  6316. "email": "vance@vancelucas.com",
  6317. "homepage": "https://vancelucas.com/"
  6318. }
  6319. ],
  6320. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6321. "keywords": [
  6322. "dotenv",
  6323. "env",
  6324. "environment"
  6325. ],
  6326. "support": {
  6327. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6328. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.6"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://github.com/GrahamCampbell",
  6333. "type": "github"
  6334. },
  6335. {
  6336. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6337. "type": "tidelift"
  6338. }
  6339. ],
  6340. "time": "2020-07-14T17:54:18+00:00"
  6341. },
  6342. {
  6343. "name": "zendframework/zend-diactoros",
  6344. "version": "2.2.1",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/zendframework/zend-diactoros.git",
  6348. "reference": "de5847b068362a88684a55b0dbb40d85986cfa52"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/de5847b068362a88684a55b0dbb40d85986cfa52",
  6353. "reference": "de5847b068362a88684a55b0dbb40d85986cfa52",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "php": "^7.1",
  6358. "psr/http-factory": "^1.0",
  6359. "psr/http-message": "^1.0"
  6360. },
  6361. "provide": {
  6362. "psr/http-factory-implementation": "1.0",
  6363. "psr/http-message-implementation": "1.0"
  6364. },
  6365. "require-dev": {
  6366. "ext-curl": "*",
  6367. "ext-dom": "*",
  6368. "ext-libxml": "*",
  6369. "http-interop/http-factory-tests": "^0.5.0",
  6370. "php-http/psr7-integration-tests": "dev-master",
  6371. "phpunit/phpunit": "^7.0.2",
  6372. "zendframework/zend-coding-standard": "~1.0.0"
  6373. },
  6374. "type": "library",
  6375. "extra": {
  6376. "branch-alias": {
  6377. "dev-master": "2.1.x-dev",
  6378. "dev-develop": "2.2.x-dev",
  6379. "dev-release-1.8": "1.8.x-dev"
  6380. }
  6381. },
  6382. "autoload": {
  6383. "files": [
  6384. "src/functions/create_uploaded_file.php",
  6385. "src/functions/marshal_headers_from_sapi.php",
  6386. "src/functions/marshal_method_from_sapi.php",
  6387. "src/functions/marshal_protocol_version_from_sapi.php",
  6388. "src/functions/marshal_uri_from_sapi.php",
  6389. "src/functions/normalize_server.php",
  6390. "src/functions/normalize_uploaded_files.php",
  6391. "src/functions/parse_cookie_header.php"
  6392. ],
  6393. "psr-4": {
  6394. "Zend\\Diactoros\\": "src/"
  6395. }
  6396. },
  6397. "notification-url": "https://packagist.org/downloads/",
  6398. "license": [
  6399. "BSD-3-Clause"
  6400. ],
  6401. "description": "PSR HTTP Message implementations",
  6402. "keywords": [
  6403. "http",
  6404. "psr",
  6405. "psr-7"
  6406. ],
  6407. "support": {
  6408. "docs": "https://docs.zendframework.com/zend-diactoros/",
  6409. "forum": "https://discourse.zendframework.com/c/questions/exprssive",
  6410. "issues": "https://github.com/zendframework/zend-diactoros/issues",
  6411. "rss": "https://github.com/zendframework/zend-diactoros/releases.atom",
  6412. "slack": "https://zendframework-slack.herokuapp.com",
  6413. "source": "https://github.com/zendframework/zend-diactoros"
  6414. },
  6415. "abandoned": "laminas/laminas-diactoros",
  6416. "time": "2019-11-13T19:16:13+00:00"
  6417. }
  6418. ],
  6419. "packages-dev": [
  6420. {
  6421. "name": "doctrine/instantiator",
  6422. "version": "1.4.0",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/doctrine/instantiator.git",
  6426. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  6431. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  6432. "shasum": ""
  6433. },
  6434. "require": {
  6435. "php": "^7.1 || ^8.0"
  6436. },
  6437. "require-dev": {
  6438. "doctrine/coding-standard": "^8.0",
  6439. "ext-pdo": "*",
  6440. "ext-phar": "*",
  6441. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  6442. "phpstan/phpstan": "^0.12",
  6443. "phpstan/phpstan-phpunit": "^0.12",
  6444. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  6445. },
  6446. "type": "library",
  6447. "autoload": {
  6448. "psr-4": {
  6449. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6450. }
  6451. },
  6452. "notification-url": "https://packagist.org/downloads/",
  6453. "license": [
  6454. "MIT"
  6455. ],
  6456. "authors": [
  6457. {
  6458. "name": "Marco Pivetta",
  6459. "email": "ocramius@gmail.com",
  6460. "homepage": "https://ocramius.github.io/"
  6461. }
  6462. ],
  6463. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6464. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6465. "keywords": [
  6466. "constructor",
  6467. "instantiate"
  6468. ],
  6469. "support": {
  6470. "issues": "https://github.com/doctrine/instantiator/issues",
  6471. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  6472. },
  6473. "funding": [
  6474. {
  6475. "url": "https://www.doctrine-project.org/sponsorship.html",
  6476. "type": "custom"
  6477. },
  6478. {
  6479. "url": "https://www.patreon.com/phpdoctrine",
  6480. "type": "patreon"
  6481. },
  6482. {
  6483. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  6484. "type": "tidelift"
  6485. }
  6486. ],
  6487. "time": "2020-11-10T18:47:58+00:00"
  6488. },
  6489. {
  6490. "name": "filp/whoops",
  6491. "version": "2.9.1",
  6492. "source": {
  6493. "type": "git",
  6494. "url": "https://github.com/filp/whoops.git",
  6495. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  6496. },
  6497. "dist": {
  6498. "type": "zip",
  6499. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  6500. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  6501. "shasum": ""
  6502. },
  6503. "require": {
  6504. "php": "^5.5.9 || ^7.0 || ^8.0",
  6505. "psr/log": "^1.0.1"
  6506. },
  6507. "require-dev": {
  6508. "mockery/mockery": "^0.9 || ^1.0",
  6509. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6510. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6511. },
  6512. "suggest": {
  6513. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6514. "whoops/soap": "Formats errors as SOAP responses"
  6515. },
  6516. "type": "library",
  6517. "extra": {
  6518. "branch-alias": {
  6519. "dev-master": "2.7-dev"
  6520. }
  6521. },
  6522. "autoload": {
  6523. "psr-4": {
  6524. "Whoops\\": "src/Whoops/"
  6525. }
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Filipe Dobreira",
  6534. "homepage": "https://github.com/filp",
  6535. "role": "Developer"
  6536. }
  6537. ],
  6538. "description": "php error handling for cool kids",
  6539. "homepage": "https://filp.github.io/whoops/",
  6540. "keywords": [
  6541. "error",
  6542. "exception",
  6543. "handling",
  6544. "library",
  6545. "throwable",
  6546. "whoops"
  6547. ],
  6548. "support": {
  6549. "issues": "https://github.com/filp/whoops/issues",
  6550. "source": "https://github.com/filp/whoops/tree/2.9.1"
  6551. },
  6552. "time": "2020-11-01T12:00:00+00:00"
  6553. },
  6554. {
  6555. "name": "fzaninotto/faker",
  6556. "version": "v1.9.2",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/fzaninotto/Faker.git",
  6560. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  6565. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  6566. "shasum": ""
  6567. },
  6568. "require": {
  6569. "php": "^5.3.3 || ^7.0"
  6570. },
  6571. "require-dev": {
  6572. "ext-intl": "*",
  6573. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6574. "squizlabs/php_codesniffer": "^2.9.2"
  6575. },
  6576. "type": "library",
  6577. "extra": {
  6578. "branch-alias": {
  6579. "dev-master": "1.9-dev"
  6580. }
  6581. },
  6582. "autoload": {
  6583. "psr-4": {
  6584. "Faker\\": "src/Faker/"
  6585. }
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "François Zaninotto"
  6594. }
  6595. ],
  6596. "description": "Faker is a PHP library that generates fake data for you.",
  6597. "keywords": [
  6598. "data",
  6599. "faker",
  6600. "fixtures"
  6601. ],
  6602. "support": {
  6603. "issues": "https://github.com/fzaninotto/Faker/issues",
  6604. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  6605. },
  6606. "abandoned": true,
  6607. "time": "2020-12-11T09:56:16+00:00"
  6608. },
  6609. {
  6610. "name": "hamcrest/hamcrest-php",
  6611. "version": "v2.0.1",
  6612. "source": {
  6613. "type": "git",
  6614. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6615. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6616. },
  6617. "dist": {
  6618. "type": "zip",
  6619. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6620. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6621. "shasum": ""
  6622. },
  6623. "require": {
  6624. "php": "^5.3|^7.0|^8.0"
  6625. },
  6626. "replace": {
  6627. "cordoval/hamcrest-php": "*",
  6628. "davedevelopment/hamcrest-php": "*",
  6629. "kodova/hamcrest-php": "*"
  6630. },
  6631. "require-dev": {
  6632. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6633. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-master": "2.1-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "classmap": [
  6643. "hamcrest"
  6644. ]
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "BSD-3-Clause"
  6649. ],
  6650. "description": "This is the PHP port of Hamcrest Matchers",
  6651. "keywords": [
  6652. "test"
  6653. ],
  6654. "support": {
  6655. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6656. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6657. },
  6658. "time": "2020-07-09T08:09:16+00:00"
  6659. },
  6660. {
  6661. "name": "mockery/mockery",
  6662. "version": "1.3.3",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/mockery/mockery.git",
  6666. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6671. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "hamcrest/hamcrest-php": "^2.0.1",
  6676. "lib-pcre": ">=7.0",
  6677. "php": ">=5.6.0"
  6678. },
  6679. "require-dev": {
  6680. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  6681. },
  6682. "type": "library",
  6683. "extra": {
  6684. "branch-alias": {
  6685. "dev-master": "1.3.x-dev"
  6686. }
  6687. },
  6688. "autoload": {
  6689. "psr-0": {
  6690. "Mockery": "library/"
  6691. }
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "BSD-3-Clause"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Pádraic Brady",
  6700. "email": "padraic.brady@gmail.com",
  6701. "homepage": "http://blog.astrumfutura.com"
  6702. },
  6703. {
  6704. "name": "Dave Marshall",
  6705. "email": "dave.marshall@atstsolutions.co.uk",
  6706. "homepage": "http://davedevelopment.co.uk"
  6707. }
  6708. ],
  6709. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6710. "homepage": "https://github.com/mockery/mockery",
  6711. "keywords": [
  6712. "BDD",
  6713. "TDD",
  6714. "library",
  6715. "mock",
  6716. "mock objects",
  6717. "mockery",
  6718. "stub",
  6719. "test",
  6720. "test double",
  6721. "testing"
  6722. ],
  6723. "support": {
  6724. "issues": "https://github.com/mockery/mockery/issues",
  6725. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  6726. },
  6727. "time": "2020-08-11T18:10:21+00:00"
  6728. },
  6729. {
  6730. "name": "myclabs/deep-copy",
  6731. "version": "1.10.2",
  6732. "source": {
  6733. "type": "git",
  6734. "url": "https://github.com/myclabs/DeepCopy.git",
  6735. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  6736. },
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6740. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  6741. "shasum": ""
  6742. },
  6743. "require": {
  6744. "php": "^7.1 || ^8.0"
  6745. },
  6746. "replace": {
  6747. "myclabs/deep-copy": "self.version"
  6748. },
  6749. "require-dev": {
  6750. "doctrine/collections": "^1.0",
  6751. "doctrine/common": "^2.6",
  6752. "phpunit/phpunit": "^7.1"
  6753. },
  6754. "type": "library",
  6755. "autoload": {
  6756. "psr-4": {
  6757. "DeepCopy\\": "src/DeepCopy/"
  6758. },
  6759. "files": [
  6760. "src/DeepCopy/deep_copy.php"
  6761. ]
  6762. },
  6763. "notification-url": "https://packagist.org/downloads/",
  6764. "license": [
  6765. "MIT"
  6766. ],
  6767. "description": "Create deep copies (clones) of your objects",
  6768. "keywords": [
  6769. "clone",
  6770. "copy",
  6771. "duplicate",
  6772. "object",
  6773. "object graph"
  6774. ],
  6775. "support": {
  6776. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6777. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  6778. },
  6779. "funding": [
  6780. {
  6781. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6782. "type": "tidelift"
  6783. }
  6784. ],
  6785. "time": "2020-11-13T09:40:50+00:00"
  6786. },
  6787. {
  6788. "name": "phar-io/manifest",
  6789. "version": "1.0.3",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/phar-io/manifest.git",
  6793. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6798. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6799. "shasum": ""
  6800. },
  6801. "require": {
  6802. "ext-dom": "*",
  6803. "ext-phar": "*",
  6804. "phar-io/version": "^2.0",
  6805. "php": "^5.6 || ^7.0"
  6806. },
  6807. "type": "library",
  6808. "extra": {
  6809. "branch-alias": {
  6810. "dev-master": "1.0.x-dev"
  6811. }
  6812. },
  6813. "autoload": {
  6814. "classmap": [
  6815. "src/"
  6816. ]
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "BSD-3-Clause"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Arne Blankerts",
  6825. "email": "arne@blankerts.de",
  6826. "role": "Developer"
  6827. },
  6828. {
  6829. "name": "Sebastian Heuer",
  6830. "email": "sebastian@phpeople.de",
  6831. "role": "Developer"
  6832. },
  6833. {
  6834. "name": "Sebastian Bergmann",
  6835. "email": "sebastian@phpunit.de",
  6836. "role": "Developer"
  6837. }
  6838. ],
  6839. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6840. "support": {
  6841. "issues": "https://github.com/phar-io/manifest/issues",
  6842. "source": "https://github.com/phar-io/manifest/tree/master"
  6843. },
  6844. "time": "2018-07-08T19:23:20+00:00"
  6845. },
  6846. {
  6847. "name": "phar-io/version",
  6848. "version": "2.0.1",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/phar-io/version.git",
  6852. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6857. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6858. "shasum": ""
  6859. },
  6860. "require": {
  6861. "php": "^5.6 || ^7.0"
  6862. },
  6863. "type": "library",
  6864. "autoload": {
  6865. "classmap": [
  6866. "src/"
  6867. ]
  6868. },
  6869. "notification-url": "https://packagist.org/downloads/",
  6870. "license": [
  6871. "BSD-3-Clause"
  6872. ],
  6873. "authors": [
  6874. {
  6875. "name": "Arne Blankerts",
  6876. "email": "arne@blankerts.de",
  6877. "role": "Developer"
  6878. },
  6879. {
  6880. "name": "Sebastian Heuer",
  6881. "email": "sebastian@phpeople.de",
  6882. "role": "Developer"
  6883. },
  6884. {
  6885. "name": "Sebastian Bergmann",
  6886. "email": "sebastian@phpunit.de",
  6887. "role": "Developer"
  6888. }
  6889. ],
  6890. "description": "Library for handling version information and constraints",
  6891. "support": {
  6892. "issues": "https://github.com/phar-io/version/issues",
  6893. "source": "https://github.com/phar-io/version/tree/master"
  6894. },
  6895. "time": "2018-07-08T19:19:57+00:00"
  6896. },
  6897. {
  6898. "name": "phpdocumentor/reflection-common",
  6899. "version": "2.2.0",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6903. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6908. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  6909. "shasum": ""
  6910. },
  6911. "require": {
  6912. "php": "^7.2 || ^8.0"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-2.x": "2.x-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "psr-4": {
  6922. "phpDocumentor\\Reflection\\": "src/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Jaap van Otterdijk",
  6932. "email": "opensource@ijaap.nl"
  6933. }
  6934. ],
  6935. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6936. "homepage": "http://www.phpdoc.org",
  6937. "keywords": [
  6938. "FQSEN",
  6939. "phpDocumentor",
  6940. "phpdoc",
  6941. "reflection",
  6942. "static analysis"
  6943. ],
  6944. "support": {
  6945. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  6946. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  6947. },
  6948. "time": "2020-06-27T09:03:43+00:00"
  6949. },
  6950. {
  6951. "name": "phpdocumentor/reflection-docblock",
  6952. "version": "5.2.2",
  6953. "source": {
  6954. "type": "git",
  6955. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6956. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  6957. },
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  6961. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "ext-filter": "*",
  6966. "php": "^7.2 || ^8.0",
  6967. "phpdocumentor/reflection-common": "^2.2",
  6968. "phpdocumentor/type-resolver": "^1.3",
  6969. "webmozart/assert": "^1.9.1"
  6970. },
  6971. "require-dev": {
  6972. "mockery/mockery": "~1.3.2"
  6973. },
  6974. "type": "library",
  6975. "extra": {
  6976. "branch-alias": {
  6977. "dev-master": "5.x-dev"
  6978. }
  6979. },
  6980. "autoload": {
  6981. "psr-4": {
  6982. "phpDocumentor\\Reflection\\": "src"
  6983. }
  6984. },
  6985. "notification-url": "https://packagist.org/downloads/",
  6986. "license": [
  6987. "MIT"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "Mike van Riel",
  6992. "email": "me@mikevanriel.com"
  6993. },
  6994. {
  6995. "name": "Jaap van Otterdijk",
  6996. "email": "account@ijaap.nl"
  6997. }
  6998. ],
  6999. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7000. "support": {
  7001. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  7002. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  7003. },
  7004. "time": "2020-09-03T19:13:55+00:00"
  7005. },
  7006. {
  7007. "name": "phpdocumentor/type-resolver",
  7008. "version": "1.4.0",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7012. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7017. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": "^7.2 || ^8.0",
  7022. "phpdocumentor/reflection-common": "^2.0"
  7023. },
  7024. "require-dev": {
  7025. "ext-tokenizer": "*"
  7026. },
  7027. "type": "library",
  7028. "extra": {
  7029. "branch-alias": {
  7030. "dev-1.x": "1.x-dev"
  7031. }
  7032. },
  7033. "autoload": {
  7034. "psr-4": {
  7035. "phpDocumentor\\Reflection\\": "src"
  7036. }
  7037. },
  7038. "notification-url": "https://packagist.org/downloads/",
  7039. "license": [
  7040. "MIT"
  7041. ],
  7042. "authors": [
  7043. {
  7044. "name": "Mike van Riel",
  7045. "email": "me@mikevanriel.com"
  7046. }
  7047. ],
  7048. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7049. "support": {
  7050. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  7051. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  7052. },
  7053. "time": "2020-09-17T18:55:26+00:00"
  7054. },
  7055. {
  7056. "name": "phpspec/prophecy",
  7057. "version": "1.12.2",
  7058. "source": {
  7059. "type": "git",
  7060. "url": "https://github.com/phpspec/prophecy.git",
  7061. "reference": "245710e971a030f42e08f4912863805570f23d39"
  7062. },
  7063. "dist": {
  7064. "type": "zip",
  7065. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  7066. "reference": "245710e971a030f42e08f4912863805570f23d39",
  7067. "shasum": ""
  7068. },
  7069. "require": {
  7070. "doctrine/instantiator": "^1.2",
  7071. "php": "^7.2 || ~8.0, <8.1",
  7072. "phpdocumentor/reflection-docblock": "^5.2",
  7073. "sebastian/comparator": "^3.0 || ^4.0",
  7074. "sebastian/recursion-context": "^3.0 || ^4.0"
  7075. },
  7076. "require-dev": {
  7077. "phpspec/phpspec": "^6.0",
  7078. "phpunit/phpunit": "^8.0 || ^9.0"
  7079. },
  7080. "type": "library",
  7081. "extra": {
  7082. "branch-alias": {
  7083. "dev-master": "1.11.x-dev"
  7084. }
  7085. },
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Prophecy\\": "src/Prophecy"
  7089. }
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Konstantin Kudryashov",
  7098. "email": "ever.zet@gmail.com",
  7099. "homepage": "http://everzet.com"
  7100. },
  7101. {
  7102. "name": "Marcello Duarte",
  7103. "email": "marcello.duarte@gmail.com"
  7104. }
  7105. ],
  7106. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7107. "homepage": "https://github.com/phpspec/prophecy",
  7108. "keywords": [
  7109. "Double",
  7110. "Dummy",
  7111. "fake",
  7112. "mock",
  7113. "spy",
  7114. "stub"
  7115. ],
  7116. "support": {
  7117. "issues": "https://github.com/phpspec/prophecy/issues",
  7118. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  7119. },
  7120. "time": "2020-12-19T10:15:11+00:00"
  7121. },
  7122. {
  7123. "name": "phpunit/php-code-coverage",
  7124. "version": "6.1.4",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7128. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7133. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7134. "shasum": ""
  7135. },
  7136. "require": {
  7137. "ext-dom": "*",
  7138. "ext-xmlwriter": "*",
  7139. "php": "^7.1",
  7140. "phpunit/php-file-iterator": "^2.0",
  7141. "phpunit/php-text-template": "^1.2.1",
  7142. "phpunit/php-token-stream": "^3.0",
  7143. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7144. "sebastian/environment": "^3.1 || ^4.0",
  7145. "sebastian/version": "^2.0.1",
  7146. "theseer/tokenizer": "^1.1"
  7147. },
  7148. "require-dev": {
  7149. "phpunit/phpunit": "^7.0"
  7150. },
  7151. "suggest": {
  7152. "ext-xdebug": "^2.6.0"
  7153. },
  7154. "type": "library",
  7155. "extra": {
  7156. "branch-alias": {
  7157. "dev-master": "6.1-dev"
  7158. }
  7159. },
  7160. "autoload": {
  7161. "classmap": [
  7162. "src/"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "BSD-3-Clause"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Sebastian Bergmann",
  7172. "email": "sebastian@phpunit.de",
  7173. "role": "lead"
  7174. }
  7175. ],
  7176. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7177. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7178. "keywords": [
  7179. "coverage",
  7180. "testing",
  7181. "xunit"
  7182. ],
  7183. "support": {
  7184. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7185. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  7186. },
  7187. "time": "2018-10-31T16:06:48+00:00"
  7188. },
  7189. {
  7190. "name": "phpunit/php-file-iterator",
  7191. "version": "2.0.3",
  7192. "source": {
  7193. "type": "git",
  7194. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7195. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  7196. },
  7197. "dist": {
  7198. "type": "zip",
  7199. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  7200. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  7201. "shasum": ""
  7202. },
  7203. "require": {
  7204. "php": ">=7.1"
  7205. },
  7206. "require-dev": {
  7207. "phpunit/phpunit": "^8.5"
  7208. },
  7209. "type": "library",
  7210. "extra": {
  7211. "branch-alias": {
  7212. "dev-master": "2.0.x-dev"
  7213. }
  7214. },
  7215. "autoload": {
  7216. "classmap": [
  7217. "src/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "BSD-3-Clause"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Sebastian Bergmann",
  7227. "email": "sebastian@phpunit.de",
  7228. "role": "lead"
  7229. }
  7230. ],
  7231. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7232. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7233. "keywords": [
  7234. "filesystem",
  7235. "iterator"
  7236. ],
  7237. "support": {
  7238. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7239. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://github.com/sebastianbergmann",
  7244. "type": "github"
  7245. }
  7246. ],
  7247. "time": "2020-11-30T08:25:21+00:00"
  7248. },
  7249. {
  7250. "name": "phpunit/php-text-template",
  7251. "version": "1.2.1",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7255. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7260. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7261. "shasum": ""
  7262. },
  7263. "require": {
  7264. "php": ">=5.3.3"
  7265. },
  7266. "type": "library",
  7267. "autoload": {
  7268. "classmap": [
  7269. "src/"
  7270. ]
  7271. },
  7272. "notification-url": "https://packagist.org/downloads/",
  7273. "license": [
  7274. "BSD-3-Clause"
  7275. ],
  7276. "authors": [
  7277. {
  7278. "name": "Sebastian Bergmann",
  7279. "email": "sebastian@phpunit.de",
  7280. "role": "lead"
  7281. }
  7282. ],
  7283. "description": "Simple template engine.",
  7284. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7285. "keywords": [
  7286. "template"
  7287. ],
  7288. "support": {
  7289. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7290. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  7291. },
  7292. "time": "2015-06-21T13:50:34+00:00"
  7293. },
  7294. {
  7295. "name": "phpunit/php-timer",
  7296. "version": "2.1.3",
  7297. "source": {
  7298. "type": "git",
  7299. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7300. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  7301. },
  7302. "dist": {
  7303. "type": "zip",
  7304. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  7305. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  7306. "shasum": ""
  7307. },
  7308. "require": {
  7309. "php": ">=7.1"
  7310. },
  7311. "require-dev": {
  7312. "phpunit/phpunit": "^8.5"
  7313. },
  7314. "type": "library",
  7315. "extra": {
  7316. "branch-alias": {
  7317. "dev-master": "2.1-dev"
  7318. }
  7319. },
  7320. "autoload": {
  7321. "classmap": [
  7322. "src/"
  7323. ]
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "BSD-3-Clause"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Sebastian Bergmann",
  7332. "email": "sebastian@phpunit.de",
  7333. "role": "lead"
  7334. }
  7335. ],
  7336. "description": "Utility class for timing",
  7337. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7338. "keywords": [
  7339. "timer"
  7340. ],
  7341. "support": {
  7342. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7343. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  7344. },
  7345. "funding": [
  7346. {
  7347. "url": "https://github.com/sebastianbergmann",
  7348. "type": "github"
  7349. }
  7350. ],
  7351. "time": "2020-11-30T08:20:02+00:00"
  7352. },
  7353. {
  7354. "name": "phpunit/php-token-stream",
  7355. "version": "3.1.2",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7359. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  7364. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  7365. "shasum": ""
  7366. },
  7367. "require": {
  7368. "ext-tokenizer": "*",
  7369. "php": ">=7.1"
  7370. },
  7371. "require-dev": {
  7372. "phpunit/phpunit": "^7.0"
  7373. },
  7374. "type": "library",
  7375. "extra": {
  7376. "branch-alias": {
  7377. "dev-master": "3.1-dev"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "classmap": [
  7382. "src/"
  7383. ]
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "BSD-3-Clause"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Sebastian Bergmann",
  7392. "email": "sebastian@phpunit.de"
  7393. }
  7394. ],
  7395. "description": "Wrapper around PHP's tokenizer extension.",
  7396. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7397. "keywords": [
  7398. "tokenizer"
  7399. ],
  7400. "support": {
  7401. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  7402. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  7403. },
  7404. "funding": [
  7405. {
  7406. "url": "https://github.com/sebastianbergmann",
  7407. "type": "github"
  7408. }
  7409. ],
  7410. "abandoned": true,
  7411. "time": "2020-11-30T08:38:46+00:00"
  7412. },
  7413. {
  7414. "name": "phpunit/phpunit",
  7415. "version": "7.5.20",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7419. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  7424. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  7425. "shasum": ""
  7426. },
  7427. "require": {
  7428. "doctrine/instantiator": "^1.1",
  7429. "ext-dom": "*",
  7430. "ext-json": "*",
  7431. "ext-libxml": "*",
  7432. "ext-mbstring": "*",
  7433. "ext-xml": "*",
  7434. "myclabs/deep-copy": "^1.7",
  7435. "phar-io/manifest": "^1.0.2",
  7436. "phar-io/version": "^2.0",
  7437. "php": "^7.1",
  7438. "phpspec/prophecy": "^1.7",
  7439. "phpunit/php-code-coverage": "^6.0.7",
  7440. "phpunit/php-file-iterator": "^2.0.1",
  7441. "phpunit/php-text-template": "^1.2.1",
  7442. "phpunit/php-timer": "^2.1",
  7443. "sebastian/comparator": "^3.0",
  7444. "sebastian/diff": "^3.0",
  7445. "sebastian/environment": "^4.0",
  7446. "sebastian/exporter": "^3.1",
  7447. "sebastian/global-state": "^2.0",
  7448. "sebastian/object-enumerator": "^3.0.3",
  7449. "sebastian/resource-operations": "^2.0",
  7450. "sebastian/version": "^2.0.1"
  7451. },
  7452. "conflict": {
  7453. "phpunit/phpunit-mock-objects": "*"
  7454. },
  7455. "require-dev": {
  7456. "ext-pdo": "*"
  7457. },
  7458. "suggest": {
  7459. "ext-soap": "*",
  7460. "ext-xdebug": "*",
  7461. "phpunit/php-invoker": "^2.0"
  7462. },
  7463. "bin": [
  7464. "phpunit"
  7465. ],
  7466. "type": "library",
  7467. "extra": {
  7468. "branch-alias": {
  7469. "dev-master": "7.5-dev"
  7470. }
  7471. },
  7472. "autoload": {
  7473. "classmap": [
  7474. "src/"
  7475. ]
  7476. },
  7477. "notification-url": "https://packagist.org/downloads/",
  7478. "license": [
  7479. "BSD-3-Clause"
  7480. ],
  7481. "authors": [
  7482. {
  7483. "name": "Sebastian Bergmann",
  7484. "email": "sebastian@phpunit.de",
  7485. "role": "lead"
  7486. }
  7487. ],
  7488. "description": "The PHP Unit Testing framework.",
  7489. "homepage": "https://phpunit.de/",
  7490. "keywords": [
  7491. "phpunit",
  7492. "testing",
  7493. "xunit"
  7494. ],
  7495. "support": {
  7496. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7497. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  7498. },
  7499. "time": "2020-01-08T08:45:45+00:00"
  7500. },
  7501. {
  7502. "name": "sebastian/code-unit-reverse-lookup",
  7503. "version": "1.0.2",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7507. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7512. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": ">=5.6"
  7517. },
  7518. "require-dev": {
  7519. "phpunit/phpunit": "^8.5"
  7520. },
  7521. "type": "library",
  7522. "extra": {
  7523. "branch-alias": {
  7524. "dev-master": "1.0.x-dev"
  7525. }
  7526. },
  7527. "autoload": {
  7528. "classmap": [
  7529. "src/"
  7530. ]
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "BSD-3-Clause"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Sebastian Bergmann",
  7539. "email": "sebastian@phpunit.de"
  7540. }
  7541. ],
  7542. "description": "Looks up which function or method a line of code belongs to",
  7543. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7544. "support": {
  7545. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7546. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  7547. },
  7548. "funding": [
  7549. {
  7550. "url": "https://github.com/sebastianbergmann",
  7551. "type": "github"
  7552. }
  7553. ],
  7554. "time": "2020-11-30T08:15:22+00:00"
  7555. },
  7556. {
  7557. "name": "sebastian/comparator",
  7558. "version": "3.0.3",
  7559. "source": {
  7560. "type": "git",
  7561. "url": "https://github.com/sebastianbergmann/comparator.git",
  7562. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  7563. },
  7564. "dist": {
  7565. "type": "zip",
  7566. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  7567. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  7568. "shasum": ""
  7569. },
  7570. "require": {
  7571. "php": ">=7.1",
  7572. "sebastian/diff": "^3.0",
  7573. "sebastian/exporter": "^3.1"
  7574. },
  7575. "require-dev": {
  7576. "phpunit/phpunit": "^8.5"
  7577. },
  7578. "type": "library",
  7579. "extra": {
  7580. "branch-alias": {
  7581. "dev-master": "3.0-dev"
  7582. }
  7583. },
  7584. "autoload": {
  7585. "classmap": [
  7586. "src/"
  7587. ]
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "BSD-3-Clause"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Sebastian Bergmann",
  7596. "email": "sebastian@phpunit.de"
  7597. },
  7598. {
  7599. "name": "Jeff Welch",
  7600. "email": "whatthejeff@gmail.com"
  7601. },
  7602. {
  7603. "name": "Volker Dusch",
  7604. "email": "github@wallbash.com"
  7605. },
  7606. {
  7607. "name": "Bernhard Schussek",
  7608. "email": "bschussek@2bepublished.at"
  7609. }
  7610. ],
  7611. "description": "Provides the functionality to compare PHP values for equality",
  7612. "homepage": "https://github.com/sebastianbergmann/comparator",
  7613. "keywords": [
  7614. "comparator",
  7615. "compare",
  7616. "equality"
  7617. ],
  7618. "support": {
  7619. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7620. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  7621. },
  7622. "funding": [
  7623. {
  7624. "url": "https://github.com/sebastianbergmann",
  7625. "type": "github"
  7626. }
  7627. ],
  7628. "time": "2020-11-30T08:04:30+00:00"
  7629. },
  7630. {
  7631. "name": "sebastian/diff",
  7632. "version": "3.0.3",
  7633. "source": {
  7634. "type": "git",
  7635. "url": "https://github.com/sebastianbergmann/diff.git",
  7636. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  7637. },
  7638. "dist": {
  7639. "type": "zip",
  7640. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  7641. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  7642. "shasum": ""
  7643. },
  7644. "require": {
  7645. "php": ">=7.1"
  7646. },
  7647. "require-dev": {
  7648. "phpunit/phpunit": "^7.5 || ^8.0",
  7649. "symfony/process": "^2 || ^3.3 || ^4"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "branch-alias": {
  7654. "dev-master": "3.0-dev"
  7655. }
  7656. },
  7657. "autoload": {
  7658. "classmap": [
  7659. "src/"
  7660. ]
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "BSD-3-Clause"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "Sebastian Bergmann",
  7669. "email": "sebastian@phpunit.de"
  7670. },
  7671. {
  7672. "name": "Kore Nordmann",
  7673. "email": "mail@kore-nordmann.de"
  7674. }
  7675. ],
  7676. "description": "Diff implementation",
  7677. "homepage": "https://github.com/sebastianbergmann/diff",
  7678. "keywords": [
  7679. "diff",
  7680. "udiff",
  7681. "unidiff",
  7682. "unified diff"
  7683. ],
  7684. "support": {
  7685. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7686. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://github.com/sebastianbergmann",
  7691. "type": "github"
  7692. }
  7693. ],
  7694. "time": "2020-11-30T07:59:04+00:00"
  7695. },
  7696. {
  7697. "name": "sebastian/environment",
  7698. "version": "4.2.4",
  7699. "source": {
  7700. "type": "git",
  7701. "url": "https://github.com/sebastianbergmann/environment.git",
  7702. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  7703. },
  7704. "dist": {
  7705. "type": "zip",
  7706. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  7707. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  7708. "shasum": ""
  7709. },
  7710. "require": {
  7711. "php": ">=7.1"
  7712. },
  7713. "require-dev": {
  7714. "phpunit/phpunit": "^7.5"
  7715. },
  7716. "suggest": {
  7717. "ext-posix": "*"
  7718. },
  7719. "type": "library",
  7720. "extra": {
  7721. "branch-alias": {
  7722. "dev-master": "4.2-dev"
  7723. }
  7724. },
  7725. "autoload": {
  7726. "classmap": [
  7727. "src/"
  7728. ]
  7729. },
  7730. "notification-url": "https://packagist.org/downloads/",
  7731. "license": [
  7732. "BSD-3-Clause"
  7733. ],
  7734. "authors": [
  7735. {
  7736. "name": "Sebastian Bergmann",
  7737. "email": "sebastian@phpunit.de"
  7738. }
  7739. ],
  7740. "description": "Provides functionality to handle HHVM/PHP environments",
  7741. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7742. "keywords": [
  7743. "Xdebug",
  7744. "environment",
  7745. "hhvm"
  7746. ],
  7747. "support": {
  7748. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7749. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  7750. },
  7751. "funding": [
  7752. {
  7753. "url": "https://github.com/sebastianbergmann",
  7754. "type": "github"
  7755. }
  7756. ],
  7757. "time": "2020-11-30T07:53:42+00:00"
  7758. },
  7759. {
  7760. "name": "sebastian/exporter",
  7761. "version": "3.1.3",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/sebastianbergmann/exporter.git",
  7765. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  7770. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  7771. "shasum": ""
  7772. },
  7773. "require": {
  7774. "php": ">=7.0",
  7775. "sebastian/recursion-context": "^3.0"
  7776. },
  7777. "require-dev": {
  7778. "ext-mbstring": "*",
  7779. "phpunit/phpunit": "^6.0"
  7780. },
  7781. "type": "library",
  7782. "extra": {
  7783. "branch-alias": {
  7784. "dev-master": "3.1.x-dev"
  7785. }
  7786. },
  7787. "autoload": {
  7788. "classmap": [
  7789. "src/"
  7790. ]
  7791. },
  7792. "notification-url": "https://packagist.org/downloads/",
  7793. "license": [
  7794. "BSD-3-Clause"
  7795. ],
  7796. "authors": [
  7797. {
  7798. "name": "Sebastian Bergmann",
  7799. "email": "sebastian@phpunit.de"
  7800. },
  7801. {
  7802. "name": "Jeff Welch",
  7803. "email": "whatthejeff@gmail.com"
  7804. },
  7805. {
  7806. "name": "Volker Dusch",
  7807. "email": "github@wallbash.com"
  7808. },
  7809. {
  7810. "name": "Adam Harvey",
  7811. "email": "aharvey@php.net"
  7812. },
  7813. {
  7814. "name": "Bernhard Schussek",
  7815. "email": "bschussek@gmail.com"
  7816. }
  7817. ],
  7818. "description": "Provides the functionality to export PHP variables for visualization",
  7819. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7820. "keywords": [
  7821. "export",
  7822. "exporter"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7826. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  7827. },
  7828. "funding": [
  7829. {
  7830. "url": "https://github.com/sebastianbergmann",
  7831. "type": "github"
  7832. }
  7833. ],
  7834. "time": "2020-11-30T07:47:53+00:00"
  7835. },
  7836. {
  7837. "name": "sebastian/global-state",
  7838. "version": "2.0.0",
  7839. "source": {
  7840. "type": "git",
  7841. "url": "https://github.com/sebastianbergmann/global-state.git",
  7842. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  7843. },
  7844. "dist": {
  7845. "type": "zip",
  7846. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7847. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  7848. "shasum": ""
  7849. },
  7850. "require": {
  7851. "php": "^7.0"
  7852. },
  7853. "require-dev": {
  7854. "phpunit/phpunit": "^6.0"
  7855. },
  7856. "suggest": {
  7857. "ext-uopz": "*"
  7858. },
  7859. "type": "library",
  7860. "extra": {
  7861. "branch-alias": {
  7862. "dev-master": "2.0-dev"
  7863. }
  7864. },
  7865. "autoload": {
  7866. "classmap": [
  7867. "src/"
  7868. ]
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "BSD-3-Clause"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Sebastian Bergmann",
  7877. "email": "sebastian@phpunit.de"
  7878. }
  7879. ],
  7880. "description": "Snapshotting of global state",
  7881. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7882. "keywords": [
  7883. "global state"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7887. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  7888. },
  7889. "time": "2017-04-27T15:39:26+00:00"
  7890. },
  7891. {
  7892. "name": "sebastian/object-enumerator",
  7893. "version": "3.0.4",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7897. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7902. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "php": ">=7.0",
  7907. "sebastian/object-reflector": "^1.1.1",
  7908. "sebastian/recursion-context": "^3.0"
  7909. },
  7910. "require-dev": {
  7911. "phpunit/phpunit": "^6.0"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "branch-alias": {
  7916. "dev-master": "3.0.x-dev"
  7917. }
  7918. },
  7919. "autoload": {
  7920. "classmap": [
  7921. "src/"
  7922. ]
  7923. },
  7924. "notification-url": "https://packagist.org/downloads/",
  7925. "license": [
  7926. "BSD-3-Clause"
  7927. ],
  7928. "authors": [
  7929. {
  7930. "name": "Sebastian Bergmann",
  7931. "email": "sebastian@phpunit.de"
  7932. }
  7933. ],
  7934. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7935. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7936. "support": {
  7937. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7938. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  7939. },
  7940. "funding": [
  7941. {
  7942. "url": "https://github.com/sebastianbergmann",
  7943. "type": "github"
  7944. }
  7945. ],
  7946. "time": "2020-11-30T07:40:27+00:00"
  7947. },
  7948. {
  7949. "name": "sebastian/object-reflector",
  7950. "version": "1.1.2",
  7951. "source": {
  7952. "type": "git",
  7953. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7954. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  7955. },
  7956. "dist": {
  7957. "type": "zip",
  7958. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  7959. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  7960. "shasum": ""
  7961. },
  7962. "require": {
  7963. "php": ">=7.0"
  7964. },
  7965. "require-dev": {
  7966. "phpunit/phpunit": "^6.0"
  7967. },
  7968. "type": "library",
  7969. "extra": {
  7970. "branch-alias": {
  7971. "dev-master": "1.1-dev"
  7972. }
  7973. },
  7974. "autoload": {
  7975. "classmap": [
  7976. "src/"
  7977. ]
  7978. },
  7979. "notification-url": "https://packagist.org/downloads/",
  7980. "license": [
  7981. "BSD-3-Clause"
  7982. ],
  7983. "authors": [
  7984. {
  7985. "name": "Sebastian Bergmann",
  7986. "email": "sebastian@phpunit.de"
  7987. }
  7988. ],
  7989. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7990. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7991. "support": {
  7992. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7993. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  7994. },
  7995. "funding": [
  7996. {
  7997. "url": "https://github.com/sebastianbergmann",
  7998. "type": "github"
  7999. }
  8000. ],
  8001. "time": "2020-11-30T07:37:18+00:00"
  8002. },
  8003. {
  8004. "name": "sebastian/recursion-context",
  8005. "version": "3.0.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8009. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8014. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=7.0"
  8019. },
  8020. "require-dev": {
  8021. "phpunit/phpunit": "^6.0"
  8022. },
  8023. "type": "library",
  8024. "extra": {
  8025. "branch-alias": {
  8026. "dev-master": "3.0.x-dev"
  8027. }
  8028. },
  8029. "autoload": {
  8030. "classmap": [
  8031. "src/"
  8032. ]
  8033. },
  8034. "notification-url": "https://packagist.org/downloads/",
  8035. "license": [
  8036. "BSD-3-Clause"
  8037. ],
  8038. "authors": [
  8039. {
  8040. "name": "Sebastian Bergmann",
  8041. "email": "sebastian@phpunit.de"
  8042. },
  8043. {
  8044. "name": "Jeff Welch",
  8045. "email": "whatthejeff@gmail.com"
  8046. },
  8047. {
  8048. "name": "Adam Harvey",
  8049. "email": "aharvey@php.net"
  8050. }
  8051. ],
  8052. "description": "Provides functionality to recursively process PHP variables",
  8053. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8054. "support": {
  8055. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8056. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://github.com/sebastianbergmann",
  8061. "type": "github"
  8062. }
  8063. ],
  8064. "time": "2020-11-30T07:34:24+00:00"
  8065. },
  8066. {
  8067. "name": "sebastian/resource-operations",
  8068. "version": "2.0.2",
  8069. "source": {
  8070. "type": "git",
  8071. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8072. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  8073. },
  8074. "dist": {
  8075. "type": "zip",
  8076. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8077. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8078. "shasum": ""
  8079. },
  8080. "require": {
  8081. "php": ">=7.1"
  8082. },
  8083. "type": "library",
  8084. "extra": {
  8085. "branch-alias": {
  8086. "dev-master": "2.0-dev"
  8087. }
  8088. },
  8089. "autoload": {
  8090. "classmap": [
  8091. "src/"
  8092. ]
  8093. },
  8094. "notification-url": "https://packagist.org/downloads/",
  8095. "license": [
  8096. "BSD-3-Clause"
  8097. ],
  8098. "authors": [
  8099. {
  8100. "name": "Sebastian Bergmann",
  8101. "email": "sebastian@phpunit.de"
  8102. }
  8103. ],
  8104. "description": "Provides a list of PHP built-in functions that operate on resources",
  8105. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8106. "support": {
  8107. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8108. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://github.com/sebastianbergmann",
  8113. "type": "github"
  8114. }
  8115. ],
  8116. "time": "2020-11-30T07:30:19+00:00"
  8117. },
  8118. {
  8119. "name": "sebastian/version",
  8120. "version": "2.0.1",
  8121. "source": {
  8122. "type": "git",
  8123. "url": "https://github.com/sebastianbergmann/version.git",
  8124. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8125. },
  8126. "dist": {
  8127. "type": "zip",
  8128. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8129. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8130. "shasum": ""
  8131. },
  8132. "require": {
  8133. "php": ">=5.6"
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-master": "2.0.x-dev"
  8139. }
  8140. },
  8141. "autoload": {
  8142. "classmap": [
  8143. "src/"
  8144. ]
  8145. },
  8146. "notification-url": "https://packagist.org/downloads/",
  8147. "license": [
  8148. "BSD-3-Clause"
  8149. ],
  8150. "authors": [
  8151. {
  8152. "name": "Sebastian Bergmann",
  8153. "email": "sebastian@phpunit.de",
  8154. "role": "lead"
  8155. }
  8156. ],
  8157. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8158. "homepage": "https://github.com/sebastianbergmann/version",
  8159. "support": {
  8160. "issues": "https://github.com/sebastianbergmann/version/issues",
  8161. "source": "https://github.com/sebastianbergmann/version/tree/master"
  8162. },
  8163. "time": "2016-10-03T07:35:21+00:00"
  8164. },
  8165. {
  8166. "name": "theseer/tokenizer",
  8167. "version": "1.2.0",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/theseer/tokenizer.git",
  8171. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8176. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8177. "shasum": ""
  8178. },
  8179. "require": {
  8180. "ext-dom": "*",
  8181. "ext-tokenizer": "*",
  8182. "ext-xmlwriter": "*",
  8183. "php": "^7.2 || ^8.0"
  8184. },
  8185. "type": "library",
  8186. "autoload": {
  8187. "classmap": [
  8188. "src/"
  8189. ]
  8190. },
  8191. "notification-url": "https://packagist.org/downloads/",
  8192. "license": [
  8193. "BSD-3-Clause"
  8194. ],
  8195. "authors": [
  8196. {
  8197. "name": "Arne Blankerts",
  8198. "email": "arne@blankerts.de",
  8199. "role": "Developer"
  8200. }
  8201. ],
  8202. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8203. "support": {
  8204. "issues": "https://github.com/theseer/tokenizer/issues",
  8205. "source": "https://github.com/theseer/tokenizer/tree/master"
  8206. },
  8207. "funding": [
  8208. {
  8209. "url": "https://github.com/theseer",
  8210. "type": "github"
  8211. }
  8212. ],
  8213. "time": "2020-07-12T23:59:07+00:00"
  8214. },
  8215. {
  8216. "name": "webmozart/assert",
  8217. "version": "1.9.1",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/webmozart/assert.git",
  8221. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8226. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": "^5.3.3 || ^7.0 || ^8.0",
  8231. "symfony/polyfill-ctype": "^1.8"
  8232. },
  8233. "conflict": {
  8234. "phpstan/phpstan": "<0.12.20",
  8235. "vimeo/psalm": "<3.9.1"
  8236. },
  8237. "require-dev": {
  8238. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8239. },
  8240. "type": "library",
  8241. "autoload": {
  8242. "psr-4": {
  8243. "Webmozart\\Assert\\": "src/"
  8244. }
  8245. },
  8246. "notification-url": "https://packagist.org/downloads/",
  8247. "license": [
  8248. "MIT"
  8249. ],
  8250. "authors": [
  8251. {
  8252. "name": "Bernhard Schussek",
  8253. "email": "bschussek@gmail.com"
  8254. }
  8255. ],
  8256. "description": "Assertions to validate method input/output with nice error messages.",
  8257. "keywords": [
  8258. "assert",
  8259. "check",
  8260. "validate"
  8261. ],
  8262. "support": {
  8263. "issues": "https://github.com/webmozart/assert/issues",
  8264. "source": "https://github.com/webmozart/assert/tree/master"
  8265. },
  8266. "time": "2020-07-08T17:02:28+00:00"
  8267. }
  8268. ],
  8269. "aliases": [],
  8270. "minimum-stability": "dev",
  8271. "stability-flags": {
  8272. "gloudemans/shoppingcart": 20
  8273. },
  8274. "prefer-stable": true,
  8275. "prefer-lowest": false,
  8276. "platform": {
  8277. "php": ">=7.1.3",
  8278. "ext-json": "*"
  8279. },
  8280. "platform-dev": [],
  8281. "plugin-api-version": "2.0.0"
  8282. }