composer.lock 293 KB

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